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