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