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