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