xref: /plan9-contrib/sys/src/ape/lib/ap/stdio/rewind.c (revision ec59a3ddbfceee0efe34584c2c9981a5e5ff1ec4)
1 /*
2  * pANS stdio -- rewind
3  */
4 #include "iolib.h"
5 void rewind(FILE *f){
6 	fseek(f, 0L, SEEK_SET);
7 }
8