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