Difference between revisions of "cpp/io/c/rewind"
From cppreference.com
m (1 revision: import content) |
m (Text replace - "{{see also}}" to "===See also===") |
||
Line 18: | Line 18: | ||
<!-- ======== --> | <!-- ======== --> | ||
− | + | ===See also=== | |
{{dcl list begin}} | {{dcl list begin}} | ||
{{dcl list template | cpp/io/c/dcl list fseek}} | {{dcl list template | cpp/io/c/dcl list fseek}} | ||
{{dcl list end}} | {{dcl list end}} |
Revision as of 17:08, 2 August 2011
Defined in header <cstdio>
|
||
void rewind( FILE *stream ); |
||
Moves the file position indicator to the beginning of the given file stream. Template:cpp and error flags are also cleared.
stream | - | file stream to modify |
Template:returns Template:return none