ref: 41be41b4936b4d58312cc99993511f0f09d6161d dir: /sys/src/ape/lib/ap/stdio/fputs.c/
/* * pANS stdio -- fputs */ #include "iolib.h" int fputs(const char *s, FILE *f){ while(*s) putc(*s++, f); return ferror(f)?EOF:0; }