home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / avogl.tar.gz / avogl.tar / vogl / drivers / ibmpc / pc_getke.c < prev    next >
Text File  |  1992-09-22  |  104b  |  13 lines

  1. int
  2. pc_getkey()
  3. {
  4.     return((int)getch());
  5. }
  6.  
  7. int
  8. pc_checkkey()
  9. {
  10.     if (kbhit())
  11.         return((int)getch());
  12. }
  13.