diff options
Diffstat (limited to 'src/stdio/rewind.c')
-rw-r--r-- | src/stdio/rewind.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stdio/rewind.c b/src/stdio/rewind.c new file mode 100644 index 00000000..7944b434 --- /dev/null +++ b/src/stdio/rewind.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +void rewind(FILE *f) +{ + fseek(f, 0, SEEK_SET); +} |