ack/lang/cem/libcc/stdio/fputs.c
1987-01-27 15:57:55 +00:00

10 lines
111 B
C

#include <stdio.h>
fputs(s,file)
register char *s;
register FILE *file;
{
while ( *s )
putc(*s++,file);
}