1 /* Moved from zrpn.c -pop */
8 #define XPATH_STEP_COUNT 10
9 struct xpath_predicate {
12 #define XPATH_PREDICATE_RELATION 1
18 #define XPATH_PREDICATE_BOOLEAN 2
21 struct xpath_predicate *left;
22 struct xpath_predicate *right;
27 struct xpath_location_step {
29 struct xpath_predicate *predicate;
32 int zebra_parse_xpath_str(const char *xpath_string,
33 struct xpath_location_step *xpath,
36 void dump_xp_steps (struct xpath_location_step *xpath, int no);