#include "xml.h"
+xmlNode
+*zak_utils_new_text_child (xmlNode *xnode, const xmlChar *name, const xmlChar *content, ...)
+{
+ xmlNode *cur;
+
+ va_list ap;
+
+ xmlChar *prop;
+ xmlChar *value;
+
+ cur = xmlNewTextChild (xnode,
+ NULL,
+ name,
+ content);
+
+ va_start (ap, content);
+ do
+ {
+ prop = va_arg (ap, xmlChar *);
+ if (prop != NULL)
+ {
+ value = va_arg (ap, xmlChar *);
+ if (value != NULL)
+ {
+ xmlSetProp (cur, prop, value);
+ }
+ else
+ {
+ break;
+ }
+ }
+ else
+ {
+ break;
+ }
+ } while (TRUE);
+
+ return cur;
+}
+
xmlNodeSet
*zak_utils_xml_filter (xmlDoc *xdoc, xmlNode *xnode, const xmlChar *filter)
{
G_BEGIN_DECLS
+xmlNode *zak_utils_new_text_child (xmlNode *xnode, const xmlChar *name, const xmlChar *content, ...);
+
xmlNodeSet *zak_utils_xml_filter (xmlDoc *xdoc, xmlNode *xnode, const xmlChar *filter);