| 12345678910111213141516171819 |
- //
- // Created by 李晓明 on 2023/6/14.
- //
- #ifndef CLOX__COMMON_H_
- #define CLOX__COMMON_H_
- #include <stdbool.h>
- #include <stddef.h>
- #include <stdint.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #define DEBUG_PRINT_CODE
- #define DEBUG_TRACE_EXECUTION
- #endif//CLOX__COMMON_H_
|