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