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