diff options
| author | Nakidai <nakidai@disroot.org> | 2025-03-25 14:35:06 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2025-03-25 14:35:06 +0300 |
| commit | 2d5f634d0d28a0762835afa01dd1e9eb212e4803 (patch) | |
| tree | e3e141464181f88dff69c32e1cb48b6f9e258f37 /cccl.c | |
| parent | 98a243bf9ab1a3e8bd2de56d7b16302f303f323a (diff) | |
| download | 3cl-2d5f634d0d28a0762835afa01dd1e9eb212e4803.tar.gz 3cl-2d5f634d0d28a0762835afa01dd1e9eb212e4803.zip | |
Implement all instructions
Something doesn't work, though
Diffstat (limited to 'cccl.c')
| -rw-r--r-- | cccl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cccl.c b/cccl.c index 64da3b1..234fa7e 100644 --- a/cccl.c +++ b/cccl.c @@ -14,6 +14,6 @@ void cccl(struct cccl_File file) struct cccl_Node *parsed = cccl_parse(tokens, tokens_amount, 0, 0); - struct cccl_Variables scope; - cccl_execute(parsed, &scope); + struct cccl_Variables scope = {0}; + cccl_execute(parsed, &scope, 0); } |