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