Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/io/c/rewind"

From cppreference.com
< cpp‎ | io‎ | c
m (1 revision: import content)
m (Text replace - "{{see also}}" to "===See also===")
Line 18: Line 18:
  
 
<!-- ======== -->
 
<!-- ======== -->
{{see also}}
+
===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

Template:cpp/io/c/sidebar

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.

Template:params

stream - file stream to modify

Template:returns Template:return none

See also

Template:cpp/io/c/dcl list fseek