diff options
| author | 0x221e <x221e@0xinfinity.dev> | 2026-06-22 13:18:43 +0300 |
|---|---|---|
| committer | 0x221e <x221e@0xinfinity.dev> | 2026-06-22 13:22:10 +0300 |
| commit | ad5d641ad41f415cca3cc01c88bc063319aba937 (patch) | |
| tree | f03b2c0116bb41535e2fe7aa11294948b66e99c8 /include/passdbg.h | |
| parent | 45f4a6afd2a5683fa53f9d6787e3c5b0f70229fd (diff) | |
| download | metalc-master.tar.gz | |
lex: add bang
passes: add initial debug pass
Diffstat (limited to 'include/passdbg.h')
| -rw-r--r-- | include/passdbg.h | 9 |
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 |
