home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-07-09 | 445 b | 18 lines | [TEXT/RLAB] |
- fseek:
-
- Syntax: fseek ( FILENAME, OFFSET )
- fseek ( FILENAME, OFFSET, ORIGIN )
-
- Description:
-
- fseek sets the current position in FILENAME. a subsequent read
- will access data beginning at the new position. fseek is an
- interface to the C library function of the same name. OFFSET
- is specified in bytes.
-
- ORIGIN "SEEK_SET" beginning of file (default)
- "SEEK_CUR" current position
- "SEEK_END" end of file
-
- See Also: FILES, fread, open, close
-