home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-385-Vol-1of3.iso
/
c
/
croutes.zip
/
WRITEC.C
< prev
next >
Wrap
Text File
|
1984-06-25
|
818b
|
19 lines
/* *** writec.c *** */
/* */
/* IBM-PC microsoft "C" under PC-DOS v2.0 */
/* */
/* Function to write a character to the screen using a DOS function. */
/* */
/* Written by L. Cuthbertson, March 1984. */
/* */
/*********************************************************************/
/* */
int writec(c)
char c;
{
int iret,bdos();
iret = bdos(2,c);
return (iret);
}