clox/common.h
2026-01-13 19:52:23 +00:00

14 lines
229 B
C

#ifndef clox_common_h
#define clox_common_h
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
//#define DEBUG_PRINT_CODE
//#define DEBUG_TRACE_EXECUTION
#define UINT8_COUNT (UINT8_MAX + 1)
#endif // clox_common_h