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