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