xref: /plan9-contrib/sys/src/ape/lib/ap/stdio/fputs.c (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
1 /*
2  * pANS stdio -- fputs
3  */
4 #include "iolib.h"
5 int fputs(const char *s, FILE *f){
6 	while(*s) putc(*s++, f);
7 	return ferror(f)?EOF:0;
8 }
9