home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc_prog / chap12 / 12_10b.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-07  |  177 b   |  11 lines

  1. #include "texed.h"
  2. struct key_struct *Read_key()
  3. {
  4.     struct key_struct k;
  5.  
  6.     k.key = getch();
  7.     if (k.key == ERROR)
  8.     k.move = getch();
  9.         return (&k);
  10. }
  11.