git: 9front

ref: db55dbe309d6abe4f9d903e65366ecb4c9923e08
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;
}