rewind()

This is a file I/O function, also hardware dependent. It is not implemented in this 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.

Return
See also

fopen()

fseek()

fsetpos()