ack/lang/cem/libcc.ansi/stdio/fputs.c
2018-06-21 22:33:47 +02:00

20 lines
235 B
C

/*
* fputs - print a string
*/
/* $Id$ */
#include <stdio.h>
int fputs(register const char* s, register FILE* stream)
{
register int i = 0;
while (*s)
if (putc(*s++, stream) == EOF)
return EOF;
else
i++;
return i;
}