Consolidate expression creation functions in expr module

This commit is contained in:
2025-08-10 13:27:20 +01:00
parent fade9395fa
commit 03bd0ff597
9 changed files with 189 additions and 76 deletions

View File

@@ -5,7 +5,7 @@
#define STORE_SIZE 256U
typedef struct {
typedef struct store {
expr_t *free;
expr_t buffer[STORE_SIZE];
} store_t;