home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_07_03 / v7n3104b.txt < prev    next >
Text File  |  1989-03-17  |  313b  |  20 lines

  1. #define EMPTY -1
  2. #define stop  -1
  3. #define forbid -1
  4.  
  5. #ifdef DEBUG
  6. #define TRACE report(state,token)
  7. #else
  8. #define TRACE
  9. #endif
  10.  
  11. /* structure of a single transition specification */
  12. struct trans{
  13.    int nextstate;
  14.    void (*act)(void);
  15.    };
  16.  
  17. extern void report(void);
  18. extern void fault(void);
  19.  
  20.