home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
getchar.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
384b
|
19 lines
/*
** getchar() Direct console input via BDOS(6)
*/
#include <stdio.h>
#asm
GETKBD::
#endasm
static char c;
getchar() {
while(!(c = bdos(6,255)));
return(c == 0x1a ? -1 : c);
}