aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/debug.h
blob: 9381ba64b2655a5cbb6376147d712d9a37c03518 (plain)
1
2
3
4
5
6
7
8
9
#ifndef clox_debug_h
#define clox_debug_h

#include "chunk.h"

void disassembleChunk(Chunk *chunk, const char *name);
int disassembleInstruction(Chunk *chunk, int offset);

#endif