ref: 0cd57b4514cb22dc3304f523680a1679e6e0479b
dir: /xml.h/
typedef struct Xelem Xelem; typedef struct Xattr Xattr; struct Xelem { char *n; char *v; Xattr *a; Xelem *ch; Xelem *next; void *priv; }; struct Xattr { char *n; char *v; Xattr *next; }; enum { Xmlstartonly = 1, }; Xelem *xmlread(Biobuf *b, int flags); void xmlfree(Xelem *x); Xelem *xmlget(Xelem *x, char *path, ...); Xattr *xmlgetattr(Xattr *a, char *n); void xmlprint(Xelem *x, int fd);