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