Subversion Repositories Kolibri OS

Rev

Rev 647 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
647 andrew_pro 1
#include 
2
void rewind(FILE* file)
3
{
6433 siemargl 4
    if(!file)
5
    {
6
        errno = E_INVALIDPTR;
7
        return;
8
    }
9
 
647 andrew_pro 10
	file->filepos=0;
6433 siemargl 11
}