Node:Line-Oriented Input, Next:Formatted Output, Previous:Simple Output, Up:C-Style I/O Functions
fgetl (fid, len) | Built-in Function |
Read characters from a file, stopping after a newline, or EOF,
or len characters have been read. The characters read, excluding
the possible trailing newline, are returned as a string.
If len is omitted, If there are no more characters to read, |
fgets (fid, len) | Built-in Function |
Read characters from a file, stopping after a newline, or EOF,
or len characters have been read. The characters read, including
the possible trailing newline, are returned as a string.
If len is omitted, If there are no more characters to read, |