common.h 332 B

123456789101112131415161718192021
  1. //
  2. // Created by 李晓明 on 2023/6/14.
  3. //
  4. #ifndef CLOX__COMMON_H_
  5. #define CLOX__COMMON_H_
  6. #include <stdbool.h>
  7. #include <stddef.h>
  8. #include <stdint.h>
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #define DEBUG_PRINT_CODE
  13. #define DEBUG_TRACE_EXECUTION
  14. #define UINT8_COUNT (UINT8_MAX + 1)
  15. #endif//CLOX__COMMON_H_