C Programming/stdio.h/rewind
< C Programming | stdio.h
rewind is a function in the C programming language that is specified in the stdio.h
library header file. The function moves the file position indicator to the beginning of the specified stream, while also clearing the error and EOF flags associated with that stream.[1]
rewind
acts as if fseek(stream, 0L, SEEK_SET)
was called for the stream passed, except that rewind
causes the error indicator to also be cleared.
Syntax
edit#include <stdio.h>
void rewind( FILE *stream );