contents   index   previous   next



Clib.feof()

syntax:

Clib.feof(filePointer)

where:

filePointer - pointer to file to use.

 

return:

number - 0 if at end of file, else a non-zero number.

 

description:

The parameter filePointer is a file pointer as returned by Clib.fopen(). This method returns an integer which is non-zero if the file cursor is at the end of the file, and 0 if it is NOT at the end of the file.

 

see:

Clib.fopen()

 

 


Clib.fflush()