mirror of
https://github.com/cahirwpz/libnix.git
synced 2025-12-08 14:58:56 +00:00
10 lines
136 B
C
10 lines
136 B
C
#include <stdio.h>
|
|
|
|
int fputs(const char *s,FILE *stream)
|
|
{
|
|
while(*s)
|
|
if(fputc(*s++,stream)==EOF)
|
|
return EOF;
|
|
return 0;
|
|
}
|