ref: e864dc493153ca5083018c94a3737165613ef0d5
dir: /xpath.h/
#pragma lib "libxpath.a"
enum {
XTelem = 1,
XTstring = 2,
};
typedef struct XpResult XpResult;
struct XpResult {
int type;
int size;
int num;
union {
char **strings;
Elem **elems;
};
};
XpResult xmllookpath(Elem *, char *);