shithub: xml-9atom

ref: e864dc493153ca5083018c94a3737165613ef0d5
dir: /xpath.h/

View raw version
#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 *);