macro.h 321 B

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