|
fileEof |
|
fileEof( const handle) // check for eof Check if EOF has occurred during read. Returns true if eof occurred, otherwise false. Example:
// show contents of file test.txt
var fh = fileOpen('test.txt', fileOpenRead);
while (!fileEof(fh)) sysLog(fileReadLine(fh));
fileClose(fh);
|
||||||||
| Copyright © IBK Landquart | Last revision: 27.05.2002 | << Back Top Next >> |