blob: b6d885191a52144509cbdd03712439a5cdb1b8dd [file] [log] [blame] [raw]
#include <stdio.h>
void rewind(FILE *stream) {
fseek(stream, 0, SEEK_SET);
}