rewind.c 131 B

123456789
  1. #include "stdio_impl.h"
  2. void rewind(FILE *f)
  3. {
  4. FLOCK(f);
  5. __fseeko_unlocked(f, 0, SEEK_SET);
  6. f->flags &= ~F_ERR;
  7. FUNLOCK(f);
  8. }