bool
simple boolean algebra solver
Log
|
Files
|
Refs
expr.h (71B)
1
typedef struct btree {
2
char op;
3
struct btree *left, *right;
4
} btree;