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