1 #ifndef __EXPRESSION_BASE_H
2 #define __EXPRESSION_BASE_H
4 #include "expression.h"
6 typedef struct expressionBase
{
7 Expression
*first
, *last
;
10 ExpressionBase
*new_expression_base();
11 void add_tail(ExpressionBase
*base
, Expression
*expr
);