14 lines
157 B
C
14 lines
157 B
C
#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
|