Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
/*
2
 * pANS stdio -- rewind
3
 */
4
#include "iolib.h"
5
void rewind(FILE *f){
6
	fseek(f, 0L, SEEK_SET);
7
}