From 713711821b3e32097ebb945510431d5b49c07fcc Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 16 Mar 2026 11:12:18 +0100 Subject: [PATCH] Mon 16 Mar 11:09:06 CET 2026 --- src/cconst.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/cconst.h diff --git a/src/cconst.h b/src/cconst.h new file mode 100644 index 0000000..8a00ea3 --- /dev/null +++ b/src/cconst.h @@ -0,0 +1,18 @@ +#ifndef _CCONST_H +#define _CCONST_H +/* + Extern C-Const API +*/ +typedef struct { + char* name; + number_t value; + char *string; + index_t next; // index of next first character group +} cconst_t; + +extern cconst_t *cconst; + +void CConstInit(cconst_t *cconst); + + +#endif