Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdio
rewind.c
pretty
plain
permalink
blame
history
•
9 lines
•
131 B
1
#include "stdio_impl.h"
2
3
void rewind(FILE *f)
4
{
5
	FLOCK(f);
6
	__fseeko_unlocked(f, 0, SEEK_SET);
7
	f->flags &= ~F_ERR;
8
	FUNLOCK(f);
9
}