std::fsetpos
From cppreference.com
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.