1
0
mirror of https://github.com/KolibriOS/kolibrios.git synced 2024-12-18 04:43:06 +03:00
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;
}