ref: 812d03ee2ccaa29b3d4648f1f54e8b5e7be30282 dir: /sys/src/libstdio/rewind.c/
/* * pANS stdio -- rewind */ #include "iolib.h" void rewind(FILE *f){ fseek(f, 0L, SEEK_SET); }