summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/feof.c
blob: 0b3eb1ec9f9e7e29f2e4fa857fa3909357370e80 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <io.h>

int feof(FILE *stream)
{
	if (!stream)
		return 0;

	return stream->eof;
}