mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 12:22:35 +03:00
6 lines
78 B
C
6 lines
78 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void rewind(FILE *stream) {
|
||
|
stream->position = 0;
|
||
|
}
|