#ifndef EXPR_H #define EXPR_H #define MAX_SYMBOL_LEN 32U #include typedef struct { char buf[MAX_SYMBOL_LEN]; size_t len; } symbol_t; #endif