21 lines
321 B
C
21 lines
321 B
C
|
/*
|
||
|
* puts.c - print a string onto the standard output stream
|
||
|
*/
|
||
|
/* $Header$ */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int
|
||
|
puts(register const char *s)
|
||
|
{
|
||
|
register FILE *file = stdout;
|
||
|
register int i = 0;
|
||
|
|
||
|
while (*s) {
|
||
|
if (putc(*s++, file) == EOF) return EOF;
|
||
|
else i++;
|
||
|
}
|
||
|
if (putc('\n', file) == EOF) return EOF;
|
||
|
return i + 1;
|
||
|
}
|