xref: /plan9/sys/src/ape/lib/ap/stdio/fputs.c (revision 0b459c2cb92b7c9d88818e9a2f72e678e5bc4553)
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