Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: make fread more general #1421

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/IO.carp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module are wrappers around the C standard library.")
(register fread- (Fn [a Int Int (Ptr FILE)] Int) "fread")
(doc fread "reads from a file into C-String (thin wrapper for fread(cstr, item-size, items-count, file) from C standard library). Consider using [`read-file`](#read-file) or [`unsafe-read-file`](#unsafe-read-file) instead.")
(defn fread [file-name item-size items-count file]
(fread- (String.cstr file-name) item-size items-count file) )
(fread- file-name item-size items-count file) )
(doc fflush "flushes a file pointer, i.e. commits every write (thin wrapper for the C standard library).")
(register fflush (Fn [(Ptr FILE)] Int) "fflush")
(doc fflush! "same as (fflush) but to be used as a side effect.")
Expand Down