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