home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
alde_c
/
misc
/
lib
/
dlibssrc
/
cputs.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
|
1987-07-15
|
293 b
|
16 lines
#include <stdio.h>
extern int putch();
void cputs(data)
register char *data;
/*
* Write the characters in <data> directly to the console using the
* system dependent putch() function. A newline WILL NOT be written
* after the data.
*/
{
while(*data)
putch(*data++);
}