git: 9front

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