ref: 809522e80f4011925e8d92aa480fad04c7ff9e10 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; }