m_seek
This call sets the current position in the file associated with fp.
- Syntax: int far m_seek(FCB far *fp, int mode, long seek)
- Parameters: FCB far *fp - Pointer to the file
int mode - Type of seek to perform:
Beginning - 0 - from the start of file
Current - 1 - from the current position
End - 2 - from the end of file
long seek - Signed byte offset of where to set the position, relative
to the value of mode
- Returns: 0 - if successful
Any other value indicates an error condition.