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