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