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