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

  1. #include <stdio.h>
  2.  
  3. void fault()
  4. {
  5. printf("\nIllegal transition to unused state!\n\n");
  6. exit(1);
  7. }
  8.  
  9. void report(state, token)
  10. {
  11. printf("\nState=%d, input=%d, char = %c",state,token);
  12. }
  13.  
  14.  
  15.  
  16.