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