void rewind( FILE *fp )
FILE *fp; /* open stream pointer */
Synopsis
#include "stdio.h"
The rewind function resets a file stream to its beginning.
Parameters
fp is a pointer to an open stream.
Return Value
none.
Comments
rewind( fp ) is equivalent to fseek( fp, 0L, SEEK_SET ).
See Also
fseek
Help URL: http://www.yourdomain.com/help/index.html?idh_silverc_compiler_reference_rewind.htm