__macro.h 417 B

12345678910111213141516171819
  1. #ifndef VIRTUALMATH___MACRO_H
  2. #define VIRTUALMATH___MACRO_H
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <stdlib.h>
  6. #define bool int
  7. #define true 1
  8. #define false 0
  9. #define PASS ;
  10. #define NUMBER_TYPE long int
  11. #define HASH_INDEX unsigned int
  12. #define INTER_FUNCTIONSIG Statement *st, Inter *inter, VarList *var_list
  13. #define CALL_INTER_FUNCTIONSIG(st, var_list) st, inter, var_list
  14. #endif //VIRTUALMATH___MACRO_H