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