/usr/share/freemat/help/text/fclose.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 16 17 | FCLOSE FCLOSE File Close Function
Usage
Closes a file handle, or all open file handles. The general syntax
for its use is either
fclose(handle)
or
fclose('all')
In the first case a specific file is closed, In the second, all open
files are closed. Note that until a file is closed the file buffers
are not flushed. Returns a '0' if the close was successful and a '-1' if
the close failed for some reason.
|