C++ Programming/Code/Standard C Library/Functions/fsetpos
< C++ Programming < Code < Standard C Library < Functionsfsetpos
Syntax |
#include <cstdio>
int fsetpos( FILE *stream, const fpos_t *position );
|
The fsetpos() function moves the file position indicator for the given stream to a location specified by the position object. fpos_t is defined in cstdio. The return value for fsetpos() is zero upon success, non-zero on failure.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.