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