macs.hpp 658 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef MACS__
  2. #define MACS__
  3. #include "system.h"
  4. #include <stdio.h>
  5. #define ERROR(x,st) { if (!(x)) \
  6. { printf("Error on line %d of %s : %s\n", \
  7. __LINE__,__FILE__,st); exit(1); } }
  8. // These macros should be removed for the non-debugging version
  9. #ifdef NO_CHECK
  10. #define CONDITION(x,st)
  11. #define CHECK(x)
  12. #else
  13. #define CONDITION(x,st) ERROR(x,st)
  14. #define CHECK(x) CONDITION(x,"Check stop");
  15. #endif
  16. #ifndef min
  17. #define min(x,y) (x<y ? x:y)
  18. #endif
  19. #ifndef max
  20. #define max(x,y) (x>y ? x:y)
  21. #endif
  22. #define uchar unsigned char
  23. #define schar signed char
  24. #define ushort unsigned short
  25. #define sshort signed short
  26. #define ulong unsigned long
  27. #endif