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