macro.h 260 B

123456789101112131415
  1. #ifndef VIRTUALMATH_MACRO_H
  2. #define VIRTUALMATH_MACRO_H
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <stdlib.h>
  6. #include <stdarg.h>
  7. #include <getopt.h>
  8. // 布尔逻辑的定义
  9. #define bool int
  10. #define true 1
  11. #define false 0
  12. #endif //VIRTUALMATH_MACRO_H