SilverScreen Solid Modeler

rewind

rewind

Previous topic Next topic  

rewind

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

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