rewind.c - vx32 - Local 9vx git repository for patches.
(HTM) git clone git://r-36.net/vx32
(DIR) Log
(DIR) Files
(DIR) Refs
---
rewind.c (87B)
---
1 #include <stdio.h>
2
3 void rewind(FILE *f)
4 {
5 fseek(f, 0, SEEK_SET);
6 f->errflag = 0;
7 }
8