|
rewindfunction
<cstdio>
void rewind ( FILE * stream ); Set position indicator to the beginning Sets the position indicator associated with stream to the beginning of the file.A call to rewind is equivalent to: fseek ( stream , 0L , SEEK_SET ); except that, unlike fseek, rewind clears the error indicator. On streams open for update (read+write), a call to rewind allows to switch between reading and writing. Parameters
Return ValuenoneExample
A file called myfile.txt is created for reading and writing and filled with the alphabet. The file is then rewinded, read and its content is stored in a buffer, that then is written to the standard output: ABCDEFGHIJKLMNOPQRSTUVWXYZ See also
|