Implement tokenisation
This commit is contained in:
13
lib/include/expr.h
Normal file
13
lib/include/expr.h
Normal 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
|
||||
Reference in New Issue
Block a user