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