Subversion Repositories planix.SVN

Rev

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

/*
 * pANS stdio -- rewind
 */
#include "iolib.h"
void rewind(FILE *f){
        fseek(f, 0L, SEEK_SET);
}