From d619f81b834c7f1816963e5ebd65cc52a5f613c4 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Fri, 5 Jul 2024 17:53:05 +0300 Subject: Add continue (:) This was the last single-char operation. Only ones with brackets are left (procedures, loops, if statement) --- include/cccl.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'include/cccl.h') 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__ */ -- cgit 1.4.1