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:
C/C++ Source or Header  |  1988-08-11  |  269 b   |  19 lines

  1. /*
  2.  *    keyready -- non-zero if the keyboard buffer
  3.  *    has any codes waiting
  4.  */
  5.  
  6. #include <dos.h>
  7. #include <local\doslib.h>
  8.  
  9. int
  10. keyready()
  11. {
  12.     union REGS inregs, outregs;
  13.  
  14.     inregs.h.ah = CH_READY;
  15.     intdos(&inregs, &outregs);
  16.  
  17.     return (outregs.h.al);
  18. }
  19.