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