fxlibc/src/stdio/rewind.c

7 lines
71 B
C

#include <stdio.h>
void rewind(FILE *fp)
{
fseek(fp, 0, SEEK_SET);
}