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