kolibrios/programs/games/nsider/stdio/rewind.c
eugene455 efd8f1922c The first stable version of N-sider. Level editor, 2 redraw technologies and save/load data added.
git-svn-id: svn://kolibrios.org@5266 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-12-26 20:27:51 +00:00

5 lines
68 B
C

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