musl/src/stdio/rewind.c

7 lines
69 B
C

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