Implement tokenisation

This commit is contained in:
2025-08-09 12:13:55 +01:00
parent 657f0922bb
commit 3e8a9d6789
10 changed files with 550 additions and 0 deletions

13
lib/include/expr.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef EXPR_H
#define EXPR_H
#define MAX_SYMBOL_LEN 32U
#include <stddef.h>
typedef struct {
char buf[MAX_SYMBOL_LEN];
size_t len;
} symbol_t;
#endif