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