ref: 6a7602ccce7d0a6489c101866c8372c99cac43d8 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); }