Lines Matching full:file
20 <<ftell>>, <<ftello>>---return position in a stream or file
33 long ftell(FILE *<[fp]>);
34 off_t ftello(FILE *<[fp]>);
35 long ftell( FILE *<[fp]>);
36 off_t ftello( FILE *<[fp]>);
39 Objects of type <<FILE>> can have a ``position'' that records how much
40 of the file your program has already read. Many of the <<stdio>> functions
43 The result of <<ftell>>/<<ftello>> is the current position for a file
45 use it with <<fseek>>/<<fseeko>> to return the file to this
50 count to represent the file position; this is the same number that
54 <<ftell>>/<<ftello>> return the file position, if possible. If they cannot do
86 register FILE * fp) in ftell()