contents   index   previous   next



Clib.rewind()

syntax:

Clib.rewind(filePointer)

where:

filePointer - pointer to file to use.

 

return:

void.

 

description:

This method sets the file cursor to the beginning of file. This call is the same as Clib.fseek(filePointer, 0, SEEK_SET) except that it also clears the error indicator for this stream.

 

see:

Clib.fseek()

 

 


Clib.tmpfile()