This commit is contained in:
Ron Pedde 2005-10-18 22:35:10 +00:00
parent 7e5535d9bd
commit 939db9fcf9

View File

@ -24,6 +24,21 @@ typedef struct tag_token {
} data;
} SP_TOKEN;
typedef struct tag_sp_node {
union {
struct tag_sp_node *node;
char *field;
} left;
int op;
union {
struct tag_sp_node *node;
int ivalue;
char *cvalue;
} right;
} SP_NODE;
/*
#define T_ID 0x00
#define T_PATH 0x01