ref: 6ca785e95ec3dae3a5afd5aa604178db8350925d dir: /sys/src/ape/lib/ap/stdio/feof.c/
/* * pANS stdio -- feof */ #include "iolib.h" int feof(FILE *f){ return f->state==END; }