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