aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/common.h
blob: 5cd0cf49630fad554ba257a09e143e4bfc76a3eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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