C
long FSftell( FSFILE * fo );
Description
The FSftell function will return the current position in the file pointed to by 'fo' by returning the 'seek' variable in the FSFILE object, which is used to keep track of the absolute location of the current position in the file.
Preconditions
File opened
Parameters
Parameters |
Description |
fo |
Pointer to file structure |
Returns
Current location in the file
Side Effects
The FSerrno variable will be changed
Remarks
None