home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
prof_c
/
05oslib
/
dos
/
keyready.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
|
1988-08-11
|
269 b
|
19 lines
/*
* keyready -- non-zero if the keyboard buffer
* has any codes waiting
*/
#include <dos.h>
#include <local\doslib.h>
int
keyready()
{
union REGS inregs, outregs;
inregs.h.ah = CH_READY;
intdos(&inregs, &outregs);
return (outregs.h.al);
}