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