home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
puts.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1979-12-31
|
384 b
|
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');
}