aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/debug.h
blob: 5731d0569e9f1224d6ca000aa019fc8b9ce42161 (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