ref: be766038eb87df8f0009daf96d91efec27b17cef dir: /sys/src/libstdio/feof.c/
/* * pANS stdio -- feof */ #include "iolib.h" int feof(FILE *f){ return f->state==END; }