feof.c 92 B

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