This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs. |
Set the current position of a file
#include <stdio.h> int fsetpos( FILE* fp, const fpos_t* pos );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The fsetpos() function sets the current position of the stream specified by fp according to the value of the fpos_t object pointed to by pos.
0 for success, or nonzero if an error occurs (errno is set).
See fgetpos().
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |
errno, fgetpos(), fopen(), fseek(), ftell()