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