summaryrefslogtreecommitdiff
path: root/05/musl-0.6.0/src/stdio/feof.c
blob: 9038a7c3de91e44cc6e6fb4b73f0cf5fefa51a6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "stdio_impl.h"

#undef feof

int feof(FILE *f)
{
	return !!(f->flags & F_EOF);
}

int feof_unlocked(FILE *f)
{
	return !!(f->flags & F_EOF);
}