1 2 3 4 5 6 7
/* * pANS stdio -- feof */ #include "iolib.h" int feof(FILE *f){ return f->state==END; }