Clib.fgetc()
syntax: |
Clib.fgetc(filePointer) |
where: |
filePointer - pointer to file to use.
|
return: |
number - EOF if there is a read error or the file cursor is at the end of the file. If there is a read error then Clib.ferror() will indicate the error condition.
|
description: |
This method returns the next character in the file stream indicated by filePointer as a byte converted to an integer.
|
see: |
|