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