ref: 0d2a10e4416dc7e9d94c8f37e4b0b27ddf2ccc73 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; }