common.h 270 B

123456789101112131415161718
  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_TRACE_EXECUTION
  13. #endif//CLOX__COMMON_H_