5 lines
68 B
C
Raw Normal View History

#include "stdio.h"
void rewind(FILE* file)
{
file->filepos=0;
}