Mon 16 Mar 11:09:06 CET 2026

This commit is contained in:
sbosse 2026-03-16 11:12:18 +01:00
parent d571145a25
commit 713711821b

18
src/cconst.h Normal file
View File

@ -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