6 lines
78 B
C
Raw Normal View History

#include <stdio.h>
void rewind(FILE *stream) {
stream->position = 0;
}