8bb rewind[reinitialize a file or stream]

Contents|Index|Previous|Next

rewind
[reinitialize a file or stream]

SYNOPSIS
#include <stdio.h> void rewind(FILE *fp);

DESCRIPTION
rewind returns the file position indicator (if any) for the file or stream identified by fp to the beginning of the file. It also clears any error indicator and flushes any pending output.

RETURNS
rewind does not return a result.

COMPLIANCE
ANSI C requires
rewind.

No supporting OS subroutines are required.

0