C
int FSfeof( FSFILE * stream );
Description
The FSfeof function will indicate that the end-of- file has been reached for the specified file by comparing the absolute location in the file to the size of the file.
Preconditions
File is open in a read mode
Parameters
Parameters |
Description |
stream |
Pointer to the target file |
Return Values
Return Values |
Description |
Non-Zero |
EOF reached |
0 |
Not at end of File |
Side Effects
The FSerrno variable will be changed.
Remarks
None.