plan9fox/sys/src/ape/lib/ap/stdio/feof.c

8 lines
92 B
C
Raw Normal View History

/*
* pANS stdio -- feof
*/
#include "iolib.h"
int feof(FILE *f){
return f->state==END;
}