Namespaces
Variants
Views
Actions

std::fsetpos

From cppreference.com
< cpp‎ | io‎ | c
Revision as of 13:59, 4 May 2012 by P12bot (Talk | contribs)

Template:cpp/io/c/sidebar

Defined in header <cstdio>
int fsetpos( FILE *stream, const fpos_t *pos );

Sets the file position indicator for the file stream stream to the value pointed to by pos.

Parameters

stream - file stream to modify
pos - pointer to a fpos_t object to use as new value of file position indicator

Return value

0 upon success, nonzero value otherwise.

See also

Template:cpp/io/c/dcl list fgetposTemplate:cpp/io/c/dcl list ftellTemplate:cpp/io/c/dcl list fseek