Query: fgetpos
OS: opensolaris
Section: 3c
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
fgetpos(3C) Standard C Library Functions fgetpos(3C)NAMEfgetpos - get current file position informationSYNOPSIS#include <stdio.h> int fgetpos(FILE *stream, fpos_t *pos);DESCRIPTIONThe fgetpos() function stores the current value of the file position indicator for the stream pointed to by stream in the object pointed to by pos. The value stored contains unspecified information usable by fsetpos(3C) for repositioning the stream to its position at the time of the call to fgetpos().RETURN VALUESUpon successful completion, fgetpos() returns 0. Otherwise, it returns a non-zero value and sets errno to indicate the error.ERRORSThe fgetpos() function may fail if: EBADF The file descriptor underlying stream is not valid. ESPIPE The file descriptor underlying stream is associated with a pipe, a FIFO, or a socket. EOVERFLOW The current value of the file position cannot be represented correctly in an object of type fpos_t.USAGEThe fgetpos() function has a transitional interface for 64-bit file offsets. See lf64(5).ATTRIBUTESSee attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ |ATTRIBUTE TYPE |ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+SEE ALSOfopen(3C), fsetpos(3C), ftell(3C), rewind(3C), ungetc(3C), attributes(5), lf64(5), standards(5) SunOS 5.11 24 Jul 2002 fgetpos(3C)
Related Man Pages |
---|
fseek(3) - redhat |
fseek(3) - linux |
fgetpos(3) - redhat |
fgetpos(3) - debian |
fsetpos(3) - debian |
Similar Topics in the Unix Linux Community |
---|
fread64 fwrite64 compilation problem (undefined symbol) |
Hi Urgent |
C reading file |
Incompatible data type fpos_t in C |