feof.c\stdio\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdio/feof.c
blob: 5d7f4b02332b8825f01dd6745ed08bf4ffa66602 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "stdio_impl.h"
#undef feof
int feof(FILE *f)
{
	return !!(f->flags & F_EOF);
}
weak_alias(feof, feof_unlocked);
weak_alias(feof, _IO_feof_unlocked);
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月04日 21:04:13 +0000

AltStyle によって変換されたページ (->オリジナル) /