diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-05-12 13:50:06 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-05-12 13:50:06 -0400 |
| commit | d143c72b2267883c229a09cc27bbeafcf2c3fd70 (patch) | |
| tree | 90312f0e4ee553e0588dc3c45f955b5184bf3778 /interfaces.h | |
| parent | a20f522fd61698282d3e01931260c588dd7f40b1 (diff) | |
WIP, but functional interfaces
Diffstat (limited to 'interfaces.h')
| -rw-r--r-- | interfaces.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/interfaces.h b/interfaces.h new file mode 100644 index 00000000..47dc4790 --- /dev/null +++ b/interfaces.h @@ -0,0 +1,10 @@ +#pragma once + +// Compilation of user-defined interfaces + +#include "ast.h" +#include "environment.h" + +void compile_interface_def(env_t *env, ast_t *ast); + +// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 |
