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