Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*
* pANS stdio -- feof
*/
#include "iolib.h"
int feof(FILE *f){
return f->state==END;
}