summaryrefslogtreecommitdiff
path: root/include/passdbg.h
diff options
context:
space:
mode:
author0x221e <x221e@0xinfinity.dev>2026-06-22 13:18:43 +0300
committer0x221e <x221e@0xinfinity.dev>2026-06-22 13:22:10 +0300
commitad5d641ad41f415cca3cc01c88bc063319aba937 (patch)
treef03b2c0116bb41535e2fe7aa11294948b66e99c8 /include/passdbg.h
parent45f4a6afd2a5683fa53f9d6787e3c5b0f70229fd (diff)
downloadmetalc-master.tar.gz
parser: add unary, and binary operationsHEADmaster
lex: add bang passes: add initial debug pass
Diffstat (limited to 'include/passdbg.h')
-rw-r--r--include/passdbg.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/passdbg.h b/include/passdbg.h
new file mode 100644
index 0000000..15643d8
--- /dev/null
+++ b/include/passdbg.h
@@ -0,0 +1,9 @@
+#ifndef PASSDBG_H
+#define PASSDBG_H
+
+void passdbg_primary(void *n);
+void passdbg_unary(void *n);
+void passdbg_binary(void *n);
+void passdbg_walk(void *n);
+
+#endif