rewind()

This is a File I/O function. It is not implemented in the Compiler.

Syntax
  #include <stdio.h>

  
  void rewind(FILE *f);

  
Description

rewind() resets the current position in file f to the beginning of the file. It also clears the file's error indicator.

See also

fopen(),

fseek(), and

fsetpos()