mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-16 20:02:35 +03:00
5 lines
68 B
C
5 lines
68 B
C
|
#include "stdio.h"
|
||
|
void rewind(FILE* file)
|
||
|
{
|
||
|
file->filepos=0;
|
||
|
}
|