| 123456789101112131415161718192021 |
- //
- // 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
- #define UINT8_COUNT (UINT8_MAX + 1)
- #endif//CLOX__COMMON_H_
|