mirror of
https://github.com/fluencelabs/musl
synced 2025-07-03 00:22:11 +00:00
7 lines
69 B
C
7 lines
69 B
C
![]() |
#include <stdio.h>
|
||
|
|
||
|
void rewind(FILE *f)
|
||
|
{
|
||
|
fseek(f, 0, SEEK_SET);
|
||
|
}
|