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