8 lines
101 B
C
8 lines
101 B
C
#include <stdio.h>
|
|
|
|
fputs(str, fp) FILE *fp; char *str; {
|
|
while(*str) fputc(*str++, fp);
|
|
|
|
}
|
|
|