home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource2 / sclib_1 / 1_3 / v7n3104a.txt < prev    next >
Encoding:
Text File  |  1995-11-01  |  203 b   |  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.