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