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