#include <nitro/fs.h>inline BOOL FS_SeekFileToEnd( FSFile *p_file );
This function moves the file pointer to the end of the file. It is equivalent to FS_SeekFile(p_file, 0, FS_SEEK_END).
p_file |
FSFile structure's address |
If the file pointer is correctly moved, it returns TRUE. Otherwise it returns FALSE.
FSFile,
FSSeekFileMode,
FS_SeekFile,
FS_SeekFileToBegin
04/01/2004 Initial Version