X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_xml.h;h=79fe2ae5208e2ae4e0808ebbff6d68d32c035032;hb=9e70ba8a6d2bae61d62c99cbab56753cf1440716;hp=680c41ad006e3b81e0e4fcc4bb73d813fd7d2408;hpb=786d89d4e5c6bb25c3dd07ec3bb375c5964f2af2;p=palacios.releases.git diff --git a/palacios/include/palacios/vmm_xml.h b/palacios/include/palacios/vmm_xml.h index 680c41a..79fe2ae 100644 --- a/palacios/include/palacios/vmm_xml.h +++ b/palacios/include/palacios/vmm_xml.h @@ -78,14 +78,6 @@ const char *v3_xml_attr(struct v3_xml * xml, const char * attr); -// Traverses the v3_xml sturcture to retrieve a specific subtag. Takes a -// variable length list of tag names and indexes. The argument list must be -// terminated by either an index of -1 or an empty string tag name. Example: -// title = v3_xml_get(library, "shelf", 0, "book", 2, "title", -1); -// This retrieves the title of the 3rd book on the 1st shelf of library. -// Returns NULL if not found. -struct v3_xml * v3_xml_get(struct v3_xml * xml, ...); - // frees the memory allocated for an v3_xml structure void v3_xml_free(struct v3_xml * xml); @@ -97,7 +89,7 @@ void v3_xml_free(struct v3_xml * xml); char * v3_xml_tostr(struct v3_xml * xml); -struct v3_xml * v3_xml_insert(struct v3_xml * xml, struct v3_xml * dest, size_t off) +struct v3_xml * v3_xml_insert(struct v3_xml * xml, struct v3_xml * dest, size_t off); struct v3_xml * v3_xml_set_txt(struct v3_xml * xml, const char *txt);