aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/debug.h
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-08-14 16:13:49 -0700
committerGravatar Tom Willemse2022-08-14 16:13:49 -0700
commite91006b59a143ad0083b3fb303a493f9d97e6c9b (patch)
tree9a0865ed67a930ffdb1e143f80c69f4c9643874c /clox/src/debug.h
parentcb42c811218b30ff9ff1a194b18fe3d85ea68a50 (diff)
downloadcrafting-interpreters-e91006b59a143ad0083b3fb303a493f9d97e6c9b.tar.gz
crafting-interpreters-e91006b59a143ad0083b3fb303a493f9d97e6c9b.zip
Apply new formatting
Diffstat (limited to 'clox/src/debug.h')
-rw-r--r--clox/src/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/clox/src/debug.h b/clox/src/debug.h
index 5731d05..9381ba6 100644
--- a/clox/src/debug.h
+++ b/clox/src/debug.h
@@ -3,7 +3,7 @@
#include "chunk.h"
-void disassembleChunk(Chunk* chunk, const char* name);
-int disassembleInstruction(Chunk* chunk, int offset);
+void disassembleChunk(Chunk *chunk, const char *name);
+int disassembleInstruction(Chunk *chunk, int offset);
#endif