blob: fffca949dd692b6d7abeeb66863e0a907cd50df1 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 | #ifndef TREE_H
#define TREE_H
typedef struct parse_tree {
	int type;
	union {
		int ival; /* NUM */
		float rval; /* RNUM */
		node *nval;
		int opval; /* RELOP: LT LE GT GE EQ NE
			      ADDOP: PLUS MINUS OR
			      MULOP: MUL DIV
		*/
	} attr;
	struct parse_tree *l, *r;
} ptree;
void aux_tree_print(ptree*, int);
void print_tree(ptree*);
ptree* mktree(int, ptree*, ptree*);
ptree* mkid(node*);
ptree* mkinum(int);
ptree* mkrnum(float);
ptree* mkop(int, int, ptree*, ptree*);
#endif
 |