diff options
| author | Nakidai <plaza521@inbox.ru> | 2024-07-05 17:53:05 +0300 |
|---|---|---|
| committer | Nakidai <plaza521@inbox.ru> | 2024-07-05 17:53:05 +0300 |
| commit | d619f81b834c7f1816963e5ebd65cc52a5f613c4 (patch) | |
| tree | 488101f86890708f4fe2f5d4a85db22d298ec736 /include/cccl.h | |
| parent | afbc03b293887e1e06b0fc0603ba86bbfa920795 (diff) | |
| download | 3cl-d619f81b834c7f1816963e5ebd65cc52a5f613c4.tar.gz 3cl-d619f81b834c7f1816963e5ebd65cc52a5f613c4.zip | |
Add continue (:)
This was the last single-char operation. Only ones with brackets are left (procedures, loops, if statement)
Diffstat (limited to 'include/cccl.h')
| -rw-r--r-- | include/cccl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/cccl.h b/include/cccl.h index 9e41730..50b7d64 100644 --- a/include/cccl.h +++ b/include/cccl.h @@ -21,7 +21,7 @@ typedef struct cccl_procpair typedef struct cccl_pointer { i32 value; - bool is_loop; + i32 meta; } cccl_pointer; typedef struct cccl @@ -43,6 +43,4 @@ void cccl_read(void); void cccl_run(void); void cccl_free(void); -i32 cccl_readnext(void); - #endif /* __CCCL_H__ */ |