home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 21 / CD_ASCQ_21_040595.iso / dos / prg / c / freedos3 / source / jh_utils / getkey.c < prev    next >
C/C++ Source or Header  |  1995-01-07  |  388b  |  17 lines

  1. #include <stdio.h>
  2. #include <conio.h>        /* For getch() */
  3.  
  4. /***************************************************************************
  5.  * This function reads a character from the keyboard and returns it.  Some
  6.  * compilers already provide a getch.. this is an interface for those that
  7.  * do not.
  8.  * maitainer: James Hall
  9.  * date: 12/26/94
  10.  */
  11.  
  12. int 
  13. getkey (void)
  14. {
  15.   return (getch ());
  16. }
  17.