ref: eb8459e384b8d2597f51e944c4cfff40480c9fff dir: /lib/c/src/rewind.c/
#include <stdio.h> #undef rewind void rewind(FILE *fp) { fp->flags &= ~_IOERR; fseek(fp, 0, SEEK_SET); clearerr(fp); }