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