ref: 973178991aaa884277a009f4064dfe56e84f2ed5 dir: /sys/src/libstdio/feof.c/
/* * pANS stdio -- feof */ #include "iolib.h" int feof(FILE *f){ return f->state==END; }