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