10 lines
111 B
C
10 lines
111 B
C
|
#include <stdio.h>
|
||
|
|
||
|
fputs(s,file)
|
||
|
register char *s;
|
||
|
register FILE *file;
|
||
|
{
|
||
|
while ( *s )
|
||
|
putc(*s++,file);
|
||
|
}
|