home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
vol_200
/
223_01
/
puts.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
384b
|
18 lines
#define NOCCARGC /* no argument count passing */
/*
** puts(string)
*/
static int i;
puts(string) char *string; {
i=0;
while(string[i] != 0){
putchar(string[i]);
i++;
}
putchar('\n');
}