axe_errors.h 408 B

123456789101112131415161718192021
  1. /*
  2. * Andrea Di Biagio
  3. * Politecnico di Milano, 2007
  4. *
  5. * axe_errors.h
  6. * Formal Languages & Compilers Machine, 2007/2008
  7. *
  8. */
  9. #ifndef _AXE_ERRORS_H
  10. #define _AXE_ERRORS_H
  11. #include "axe_engine.h"
  12. #include "axe_constants.h"
  13. extern void printWarningMessage(int warningcode);
  14. extern void printMessage(const char *msg);
  15. extern void notifyError(int axe_errorcode);
  16. extern void checkConsistency();
  17. #endif