clox/include/common.h

12 lines
166 B
C
Raw Normal View History

2024-08-31 17:41:43 +00:00
#ifndef CLOX_COMMON
#define CLOX_COMMON
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
2024-09-08 20:57:08 +00:00
#define DEBUG_PRINT_CODE
2024-09-02 22:15:41 +00:00
#define DEBUG_TRACE_EXECUTION
2024-08-31 17:41:43 +00:00
#endif