home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / grafik / cgraphix / inkey.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-05-01  |  243 b   |  16 lines

  1. /* «RM120»«PL99999»«TS4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76» */
  2. #include    <stdio.h>
  3.  
  4. int inkey()
  5. {
  6.     extern int bdos();
  7.     int        ch;
  8.  
  9.     if (0 == (ch = 0xff & bdos(8))) {
  10.         ch = -(0xff & bdos(8));
  11.     }
  12.     return(ch);
  13. }
  14.  
  15.  
  16.