/usr/share/freemat/help/text/fgetline.mdc is in freemat-help 4.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FGETLINE FGETLINE Read a String from a File
Usage
Reads a string from a file. The general syntax for its use
is
s = fgetline(handle)
This function reads characters from the file handle into
a string array s until it encounters the end of the file
or a newline. The newline, if any, is retained in the output
string. If the file is at its end, (i.e., that feof would
return true on this handle), fgetline returns an empty
string.
|