home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_07_02 / v7n2035a.txt < prev    next >
Text File  |  1988-11-29  |  340b  |  19 lines

  1.  
  2. /* Define machine inputs */
  3. #define I_ESC 0
  4. #define I_Q 1
  5. #define I_S 2
  6. /* Define machine actions */
  7. #define A_DO_ESC 0
  8. #define A_ESC_Q 1
  9. #define A_ESC_S 2
  10. #define A_PASSTHRU 3  /* default */
  11.  
  12. esc_matrix[2][3] = {
  13. /* State 'S_START' */
  14. { I_ESC, A_PASSTHRU, A_PASSTHRU },
  15. /* State 'S_ESC' */
  16. { A_PASSTHRU, I_Q, I_S },
  17. };
  18.  
  19.