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