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