The Single UNIX ® Specification, Version 2
Copyright © 1997 The Open Group

 NAME

fsetpos - set current file position

 SYNOPSIS



#include <stdio.h>

int fsetpos(FILE *stream, const fpos_t *pos);

 DESCRIPTION

The fsetpos() function sets the file position and state indicators for the stream pointed to by stream according to the value of the object pointed to by pos, which must be a value obtained from an earlier call to fgetpos() on the same stream.

A successful call to fsetpos() function clears the end-of-file indicator for the stream and undoes any effects of ungetc() on the same stream. After an fsetpos() call, the next operation on an update stream may be either input or output.

 RETURN VALUE

The fsetpos() function returns 0 if it succeeds; otherwise it returns a non-zero value and sets errno to indicate the error.

 ERRORS

The fsetpos() function may fail if:
[EBADF]
The file descriptor underlying stream is not valid.
[ESPIPE]
The file descriptor underlying stream is associated with a pipe or FIFO.

 EXAMPLES

None.

 APPLICATION USAGE

None.

 FUTURE DIRECTIONS

None.

 SEE ALSO

fopen(), ftell(), rewind(), ungetc(), <stdio.h>.

DERIVATION

Derived from the ISO C standard.

UNIX ® is a registered Trademark of The Open Group.
Copyright © 1997 The Open Group
[ Main Index | XSH | XCU | XBD | XCURSES | XNS ]