git: 9front

ref: 37d68b18e213ef6d551f6386f3f7038c381bfdf1
dir: /sys/src/ape/lib/ap/stdio/feof.c/

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