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