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