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