diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-24 13:27:49 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-24 13:27:49 -0500 |
| commit | a4c3faa525dde0eb8b79cc8fa7a5dba15945b8e4 (patch) | |
| tree | 4bf3936544340893a2fea4c95b4a3728c6245aa5 /structs.h | |
| parent | 6d904abe14301437aa63655f20268f88f053fdf2 (diff) | |
Split struct code into a separate file
Diffstat (limited to 'structs.h')
| -rw-r--r-- | structs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/structs.h b/structs.h new file mode 100644 index 00000000..026e09ac --- /dev/null +++ b/structs.h @@ -0,0 +1,9 @@ +#pragma once +#include <gc/cord.h> + +#include "ast.h" +#include "environment.h" + +void compile_struct_def(env_t *env, ast_t *ast); + +// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 |
