# # Functions to Open and Close the XML file # e.g. # id = xmlOpen("/tmp/file.xml"); # xmlClose(id); # void *xmlOpen(const char *); void xmlClose(const void *); # # Get the Id of a node at the specified path # e.g. # xnid = xmlGetNode(id, "/path/to/specified/node"); # void *xmlGetNode(const void *, const char *); void *xmlCopyNode(void *, const char *); # # Functions to walk the node tree an process them one by one. # e.g. # xmid = xmlMarkId(id); # num = xmlGetNumElements(xmid); # for (i=0; i