Lines Matching full:file
20 <<fseek>>, <<fseeko>>---set file position
33 int fseek(FILE *<[fp]>, long <[offset]>, int <[whence]>);
34 int fseeko(FILE *<[fp]>, off_t <[offset]>, int <[whence]>);
35 int fseek( FILE *<[fp]>,
37 int fseeko( FILE *<[fp]>,
41 Objects of type <<FILE>> can have a ``position'' that records how much
42 of the file your program has already read. Many of the <<stdio>> functions
45 You can use <<fseek>>/<<fseeko>> to set the position for the file identified by
50 <<SEEK_SET>>---<[offset]> is the absolute file position (an offset
51 from the beginning of the file) desired. <[offset]> must be positive.
53 <<SEEK_CUR>>---<[offset]> is relative to the current file position.
56 <<SEEK_END>>---<[offset]> is relative to the current end of file.
58 of the file) or negative.
60 See <<ftell>>/<<ftello>> to determine the current file position.
66 repositioning) or <<EINVAL>> (invalid file position).
84 register FILE *fp, in fseek()