Imported Upstream version 2.10.1 upstream/2.10.1
authorDongHun Kwak <dh0128.kwak@samsung.com>
Wed, 7 Sep 2022 00:32:31 +0000 (09:32 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Wed, 7 Sep 2022 00:32:31 +0000 (09:32 +0900)
63 files changed:
CMakeLists.txt
HTMLparser.c
Makefile.am
NEWS
configure.ac
doc/apibuild.py
doc/devhelp/devhelp2.xsl
doc/devhelp/general.html
doc/devhelp/html.xsl
doc/devhelp/index.html
doc/devhelp/libxml2-HTMLparser.html
doc/devhelp/libxml2-HTMLtree.html
doc/devhelp/libxml2-SAX.html
doc/devhelp/libxml2-SAX2.html
doc/devhelp/libxml2-c14n.html
doc/devhelp/libxml2-catalog.html
doc/devhelp/libxml2-chvalid.html
doc/devhelp/libxml2-debugXML.html
doc/devhelp/libxml2-dict.html
doc/devhelp/libxml2-encoding.html
doc/devhelp/libxml2-entities.html
doc/devhelp/libxml2-globals.html
doc/devhelp/libxml2-hash.html
doc/devhelp/libxml2-list.html
doc/devhelp/libxml2-nanoftp.html
doc/devhelp/libxml2-nanohttp.html
doc/devhelp/libxml2-parser.html
doc/devhelp/libxml2-parserInternals.html
doc/devhelp/libxml2-pattern.html
doc/devhelp/libxml2-relaxng.html
doc/devhelp/libxml2-schemasInternals.html
doc/devhelp/libxml2-schematron.html
doc/devhelp/libxml2-threads.html
doc/devhelp/libxml2-tree.html
doc/devhelp/libxml2-uri.html
doc/devhelp/libxml2-valid.html
doc/devhelp/libxml2-xinclude.html
doc/devhelp/libxml2-xlink.html
doc/devhelp/libxml2-xmlIO.html
doc/devhelp/libxml2-xmlautomata.html
doc/devhelp/libxml2-xmlerror.html
doc/devhelp/libxml2-xmlexports.html
doc/devhelp/libxml2-xmlmemory.html
doc/devhelp/libxml2-xmlmodule.html
doc/devhelp/libxml2-xmlreader.html
doc/devhelp/libxml2-xmlregexp.html
doc/devhelp/libxml2-xmlsave.html
doc/devhelp/libxml2-xmlschemas.html
doc/devhelp/libxml2-xmlschemastypes.html
doc/devhelp/libxml2-xmlstring.html
doc/devhelp/libxml2-xmlunicode.html
doc/devhelp/libxml2-xmlversion.html
doc/devhelp/libxml2-xmlwriter.html
doc/devhelp/libxml2-xpath.html
doc/devhelp/libxml2-xpathInternals.html
doc/devhelp/libxml2-xpointer.html
doc/examples/examples.xml
doc/examples/examples.xsl
doc/examples/index.html
doc/examples/index.py
doc/libxml2-api.xml
doc/libxml2-refs.xml [deleted file]
parser.c

index e3d7c93..730aec7 100644 (file)
@@ -367,7 +367,7 @@ if(NOT BUILD_SHARED_LIBS)
        set(XML_CFLAGS "-DLIBXML_STATIC")
 endif()
 
-if(BUILD_SHARED_LIBS AND UNIX)
+if(BUILD_SHARED_LIBS AND UNIX AND NOT APPLE)
        if(CMAKE_C_COMPILER_ID MATCHES "Clang" OR CMAKE_C_COMPILER_ID STREQUAL "GNU")
                target_link_options(LibXml2 PRIVATE "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/libxml2.syms")
        endif()
index abc4e90..ba88690 100644 (file)
@@ -5056,8 +5056,7 @@ htmlInitParserCtxt(htmlParserCtxtPtr ctxt)
         htmlErrMemory(NULL, "htmlInitParserCtxt: out of memory\n");
        return(-1);
     }
-    else
-        memset(sax, 0, sizeof(htmlSAXHandler));
+    memset(sax, 0, sizeof(htmlSAXHandler));
 
     /* Allocate the Input stack */
     ctxt->inputTab = (htmlParserInputPtr *)
@@ -5116,11 +5115,9 @@ htmlInitParserCtxt(htmlParserCtxtPtr ctxt)
     ctxt->nodeInfoNr  = 0;
     ctxt->nodeInfoMax = 0;
 
-    if (sax == NULL) ctxt->sax = (xmlSAXHandlerPtr) &htmlDefaultSAXHandler;
-    else {
-        ctxt->sax = sax;
-       memcpy(sax, &htmlDefaultSAXHandler, sizeof(xmlSAXHandlerV1));
-    }
+    ctxt->sax = sax;
+    xmlSAX2InitHtmlDefaultSAXHandler(sax);
+
     ctxt->userData = ctxt;
     ctxt->myDoc = NULL;
     ctxt->wellFormed = 1;
@@ -7116,22 +7113,10 @@ htmlDocPtr
 htmlCtxtReadDoc(htmlParserCtxtPtr ctxt, const xmlChar * cur,
                const char *URL, const char *encoding, int options)
 {
-    xmlParserInputPtr stream;
-
     if (cur == NULL)
         return (NULL);
-    if (ctxt == NULL)
-        return (NULL);
-    xmlInitParser();
-
-    htmlCtxtReset(ctxt);
-
-    stream = xmlNewStringInputStream(ctxt, cur);
-    if (stream == NULL) {
-        return (NULL);
-    }
-    inputPush(ctxt, stream);
-    return (htmlDoRead(ctxt, URL, encoding, options, 1));
+    return (htmlCtxtReadMemory(ctxt, (const char *) cur, xmlStrlen(cur), URL,
+                               encoding, options));
 }
 
 /**
index cb1a075..eaa9a7a 100644 (file)
@@ -135,14 +135,6 @@ rebuild_testapi:
        -@(if [ "$(PYTHON)" != "" ] ; then \
            $(PYTHON) $(srcdir)/gentest.py $(srcdir) ; fi )
 
-# that one is just to make sure it is rebuilt if missing
-# but adding the dependances generate mess
-testapi.c: $(srcdir)/gentest.py
-       -@(if [ "$(PYTHON)" != "" ] ; then \
-           $(PYTHON) $(srcdir)/gentest.py $(srcdir) ; fi )
-
-BUILT_SOURCES = testapi.c
-
 testapi_SOURCES=testapi.c
 testapi_LDFLAGS = 
 testapi_DEPENDENCIES = $(DEPS)
diff --git a/NEWS b/NEWS
index 0a3dd6b..5f562a2 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,29 @@
 NEWS file for libxml2
 
+v2.10.1: Aug 25 2022
+
+### Regressions
+
+- Fix xmlCtxtReadDoc with encoding
+
+### Bug fixes
+
+- Fix HTML parser with threads and --without-legacy
+
+### Build system
+
+- Fix build with Python 3.10
+- cmake: Disable version script on macOS
+- Remove Makefile rule to build testapi.c
+
+### Documentation
+
+- Switch back to HTML output for API documentation
+- Port doc/examples/index.py to Python 3
+- Fix order of exports in libxml2-api.xml
+- Remove libxml2-refs.xml
+
+
 v2.10.0: Aug 17 2022
 
 ### Security
index 3b27365..4d8e0cb 100644 (file)
@@ -3,7 +3,7 @@ AC_PREREQ([2.63])
 
 m4_define([MAJOR_VERSION], 2)
 m4_define([MINOR_VERSION], 10)
-m4_define([MICRO_VERSION], 0)
+m4_define([MICRO_VERSION], 1)
 
 AC_INIT([libxml2],[MAJOR_VERSION.MINOR_VERSION.MICRO_VERSION])
 AC_CONFIG_SRCDIR([entities.c])
index 6fd6b84..f46e106 100755 (executable)
@@ -83,12 +83,6 @@ def escape(raw):
     raw = raw.replace('"', '&quot;')
     return raw
 
-def uniq(items):
-    d = {}
-    for item in items:
-        d[item]=1
-    return list(d.keys())
-
 class identifier:
     def __init__(self, name, header=None, module=None, type=None, lineno = 0,
                  info=None, extra=None, conditionals = None):
@@ -1603,51 +1597,12 @@ class docBuilder:
         self.modules = {}
         self.headers = {}
         self.idx = index()
-        self.xref = {}
         self.index = {}
         if name == 'libxml2':
             self.basename = 'libxml'
         else:
             self.basename = name
 
-    def indexString(self, id, str):
-        if str == None:
-            return
-        str = str.replace("'", ' ')
-        str = str.replace('"', ' ')
-        str = str.replace("/", ' ')
-        str = str.replace('*', ' ')
-        str = str.replace("[", ' ')
-        str = str.replace("]", ' ')
-        str = str.replace("(", ' ')
-        str = str.replace(")", ' ')
-        str = str.replace("<", ' ')
-        str = str.replace('>', ' ')
-        str = str.replace("&", ' ')
-        str = str.replace('#', ' ')
-        str = str.replace(",", ' ')
-        str = str.replace('.', ' ')
-        str = str.replace(';', ' ')
-        tokens = str.split()
-        for token in tokens:
-            try:
-                c = token[0]
-                if string.ascii_letters.find(c) < 0:
-                    pass
-                elif len(token) < 3:
-                    pass
-                else:
-                    lower = token.lower()
-                    # TODO: generalize this a bit
-                    if lower == 'and' or lower == 'the':
-                        pass
-                    elif token in self.xref:
-                        self.xref[token].append(id)
-                    else:
-                        self.xref[token] = [id]
-            except:
-                pass
-
     def analyze(self):
         print("Project %s : %d headers, %d modules" % (self.name, len(list(self.headers.keys())), len(list(self.modules.keys()))))
         self.idx.analyze()
@@ -1727,13 +1682,11 @@ class docBuilder:
                 (args, desc) = id.info
                 if desc != None and desc != "":
                     output.write("      <info>%s</info>\n" % (escape(desc)))
-                    self.indexString(name, desc)
                 for arg in args:
                     (name, desc) = arg
                     if desc != None and desc != "":
                         output.write("      <arg name='%s' info='%s'/>\n" % (
                                      name, escape(desc)))
-                        self.indexString(name, desc)
                     else:
                         output.write("      <arg name='%s'/>\n" % (name))
             except:
@@ -1753,7 +1706,6 @@ class docBuilder:
                 try:
                     for field in self.idx.structs[name].info:
                         desc = field[2]
-                        self.indexString(name, desc)
                         if desc == None:
                             desc = ''
                         else:
@@ -1812,14 +1764,12 @@ class docBuilder:
                        self.modulename_file(id.module)))
 
             output.write("      <info>%s</info>\n" % (escape(desc)))
-            self.indexString(name, desc)
             if ret[0] != None:
                 if ret[0] == "void":
                     output.write("      <return type='void'/>\n")
                 else:
                     output.write("      <return type='%s' info='%s'/>\n" % (
                              ret[0], escape(ret[1])))
-                    self.indexString(name, ret[1])
             for param in params:
                 if param[0] == 'void':
                     continue
@@ -1827,7 +1777,6 @@ class docBuilder:
                     output.write("      <arg name='%s' type='%s' info=''/>\n" % (param[1], param[0]))
                 else:
                     output.write("      <arg name='%s' type='%s' info='%s'/>\n" % (param[1], param[0], escape(param[2])))
-                    self.indexString(name, param[2])
         except:
             print("Failed to save function %s info: " % name, repr(id.info))
         output.write("    </%s>\n" % (id.type))
@@ -1852,7 +1801,7 @@ class docBuilder:
 
         ids = list(dict.macros.keys())
         ids.sort()
-        for id in uniq(ids):
+        for id in ids:
             # Macros are sometime used to masquerade other types.
             if id in dict.functions:
                 continue
@@ -1867,192 +1816,26 @@ class docBuilder:
             output.write("     <exports symbol='%s' type='macro'/>\n" % (id))
         ids = list(dict.enums.keys())
         ids.sort()
-        for id in uniq(ids):
+        for id in ids:
             output.write("     <exports symbol='%s' type='enum'/>\n" % (id))
         ids = list(dict.typedefs.keys())
         ids.sort()
-        for id in uniq(ids):
+        for id in ids:
             output.write("     <exports symbol='%s' type='typedef'/>\n" % (id))
         ids = list(dict.structs.keys())
         ids.sort()
-        for id in uniq(ids):
+        for id in ids:
             output.write("     <exports symbol='%s' type='struct'/>\n" % (id))
         ids = list(dict.variables.keys())
         ids.sort()
-        for id in uniq(ids):
+        for id in ids:
             output.write("     <exports symbol='%s' type='variable'/>\n" % (id))
         ids = list(dict.functions.keys())
         ids.sort()
-        for id in uniq(ids):
+        for id in ids:
             output.write("     <exports symbol='%s' type='function'/>\n" % (id))
         output.write("    </file>\n")
 
-    def serialize_xrefs_files(self, output):
-        headers = list(self.headers.keys())
-        headers.sort()
-        for file in headers:
-            module = self.modulename_file(file)
-            output.write("    <file name='%s'>\n" % (module))
-            dict = self.headers[file]
-            ids = uniq(list(dict.functions.keys()) + list(dict.variables.keys()) + \
-                  list(dict.macros.keys()) + list(dict.typedefs.keys()) + \
-                  list(dict.structs.keys()) + list(dict.enums.keys()))
-            ids.sort()
-            for id in ids:
-                output.write("      <ref name='%s'/>\n" % (id))
-            output.write("    </file>\n")
-        pass
-
-    def serialize_xrefs_functions(self, output):
-        funcs = {}
-        for name in list(self.idx.functions.keys()):
-            id = self.idx.functions[name]
-            try:
-                (ret, params, desc) = id.info
-                for param in params:
-                    if param[0] == 'void':
-                        continue
-                    if param[0] in funcs:
-                        funcs[param[0]].append(name)
-                    else:
-                        funcs[param[0]] = [name]
-            except:
-                pass
-        typ = list(funcs.keys())
-        typ.sort()
-        for type in typ:
-            if type == '' or type == 'void' or type == "int" or \
-               type == "char *" or type == "const char *" :
-                continue
-            output.write("    <type name='%s'>\n" % (type))
-            ids = funcs[type]
-            ids.sort()
-            pid = ''        # not sure why we have dups, but get rid of them!
-            for id in ids:
-                if id != pid:
-                    output.write("      <ref name='%s'/>\n" % (id))
-                    pid = id
-            output.write("    </type>\n")
-
-    def serialize_xrefs_constructors(self, output):
-        funcs = {}
-        for name in list(self.idx.functions.keys()):
-            id = self.idx.functions[name]
-            try:
-                (ret, params, desc) = id.info
-                if ret[0] == "void":
-                    continue
-                if ret[0] in funcs:
-                    funcs[ret[0]].append(name)
-                else:
-                    funcs[ret[0]] = [name]
-            except:
-                pass
-        typ = list(funcs.keys())
-        typ.sort()
-        for type in typ:
-            if type == '' or type == 'void' or type == "int" or \
-               type == "char *" or type == "const char *" :
-                continue
-            output.write("    <type name='%s'>\n" % (type))
-            ids = funcs[type]
-            ids.sort()
-            for id in ids:
-                output.write("      <ref name='%s'/>\n" % (id))
-            output.write("    </type>\n")
-
-    def serialize_xrefs_alpha(self, output):
-        letter = None
-        ids = list(self.idx.identifiers.keys())
-        ids.sort()
-        for id in ids:
-            if id[0] != letter:
-                if letter != None:
-                    output.write("    </letter>\n")
-                letter = id[0]
-                output.write("    <letter name='%s'>\n" % (letter))
-            output.write("      <ref name='%s'/>\n" % (id))
-        if letter != None:
-            output.write("    </letter>\n")
-
-    def serialize_xrefs_references(self, output):
-        typ = list(self.idx.identifiers.keys())
-        typ.sort()
-        for id in typ:
-            idf = self.idx.identifiers[id]
-            module = idf.header
-            output.write("    <reference name='%s' href='%s'/>\n" % (id,
-                         'html/' + self.basename + '-' +
-                         self.modulename_file(module) + '.html#' +
-                         id))
-
-    def serialize_xrefs_index(self, output):
-        index = self.xref
-        typ = list(index.keys())
-        typ.sort()
-        letter = None
-        count = 0
-        chunk = 0
-        chunks = []
-        for id in typ:
-            if len(index[id]) > 30:
-                continue
-            if id[0] != letter:
-                if letter == None or count > 200:
-                    if letter != None:
-                        output.write("      </letter>\n")
-                        output.write("    </chunk>\n")
-                        count = 0
-                        chunks.append(["chunk%s" % (chunk -1), first_letter, letter])
-                    output.write("    <chunk name='chunk%s'>\n" % (chunk))
-                    first_letter = id[0]
-                    chunk = chunk + 1
-                elif letter != None:
-                    output.write("      </letter>\n")
-                letter = id[0]
-                output.write("      <letter name='%s'>\n" % (letter))
-            output.write("        <word name='%s'>\n" % (id))
-            tokens = index[id];
-            tokens.sort()
-            tok = None
-            for token in tokens:
-                if tok == token:
-                    continue
-                tok = token
-                output.write("          <ref name='%s'/>\n" % (token))
-                count = count + 1
-            output.write("        </word>\n")
-        if letter != None:
-            output.write("      </letter>\n")
-            output.write("    </chunk>\n")
-            if count != 0:
-                chunks.append(["chunk%s" % (chunk -1), first_letter, letter])
-            output.write("    <chunks>\n")
-            for ch in chunks:
-                output.write("      <chunk name='%s' start='%s' end='%s'/>\n" % (
-                             ch[0], ch[1], ch[2]))
-            output.write("    </chunks>\n")
-
-    def serialize_xrefs(self, output):
-        output.write("  <references>\n")
-        self.serialize_xrefs_references(output)
-        output.write("  </references>\n")
-        output.write("  <alpha>\n")
-        self.serialize_xrefs_alpha(output)
-        output.write("  </alpha>\n")
-        output.write("  <constructors>\n")
-        self.serialize_xrefs_constructors(output)
-        output.write("  </constructors>\n")
-        output.write("  <functions>\n")
-        self.serialize_xrefs_functions(output)
-        output.write("  </functions>\n")
-        output.write("  <files>\n")
-        self.serialize_xrefs_files(output)
-        output.write("  </files>\n")
-        output.write("  <index>\n")
-        self.serialize_xrefs_index(output)
-        output.write("  </index>\n")
-
     def serialize(self):
         filename = "%s-api.xml" % self.name
         print("Saving XML description %s" % (filename))
@@ -2090,15 +1873,6 @@ class docBuilder:
         output.write("</api>\n")
         output.close()
 
-        filename = "%s-refs.xml" % self.name
-        print("Saving XML Cross References %s" % (filename))
-        output = open(filename, "w")
-        output.write('<?xml version="1.0" encoding="ISO-8859-1"?>\n')
-        output.write("<apirefs name='%s'>\n" % self.name)
-        self.serialize_xrefs(output)
-        output.write("</apirefs>\n")
-        output.close()
-
 
 def rebuild():
     builder = None
index 92cc7f6..d04dc50 100644 (file)
@@ -33,7 +33,7 @@
     <xsl:variable name="prev" select="string(preceding-sibling::file[position()=1]/@name)"/>
     <xsl:variable name="next" select="string(following-sibling::file[position()=1]/@name)"/>
     <sub name="{@name}" link="libxml2-{@name}.html"/>
-    <xsl:document xmlns="" href="libxml2-{@name}.html" method="xml" indent="yes" encoding="UTF-8">
+    <xsl:document xmlns="" href="libxml2-{@name}.html" method="html" indent="yes" encoding="UTF-8">
       <html>
         <head>
          <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
index a7403bd..8b7ae7b 100644 (file)
@@ -1,38 +1,21 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>libxml2: </title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="index.html" title="libxml2 Reference Manual"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="u" href="index.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-HTMLparser.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">libxml2 API Modules</span>
-    </h2>
-    <p><a href="libxml2-HTMLparser.html">HTMLparser</a> - interface for an HTML 4.0 non-verifying parser<br/><a href="libxml2-HTMLtree.html">HTMLtree</a> - specific APIs to process HTML tree, especially serialization<br/><a href="libxml2-SAX.html">SAX</a> - Old SAX version 1 handler, deprecated<br/><a href="libxml2-SAX2.html">SAX2</a> - SAX2 parser interface used to build the DOM tree<br/><a href="libxml2-c14n.html">c14n</a> - Provide Canonical XML and Exclusive XML Canonicalization<br/><a href="libxml2-catalog.html">catalog</a> - interfaces to the Catalog handling system<br/><a href="libxml2-chvalid.html">chvalid</a> - Unicode character range checking<br/><a href="libxml2-debugXML.html">debugXML</a> - Tree debugging APIs<br/><a href="libxml2-dict.html">dict</a> - string dictionary<br/><a href="libxml2-encoding.html">encoding</a> - interface for the encoding conversion functions<br/><a href="libxml2-entities.html">entities</a> - interface for the XML entities handling<br/><a href="libxml2-globals.html">globals</a> - interface for all global variables of the library<br/><a href="libxml2-hash.html">hash</a> - Chained hash tables<br/><a href="libxml2-list.html">list</a> - lists interfaces<br/><a href="libxml2-nanoftp.html">nanoftp</a> - minimal FTP implementation<br/><a href="libxml2-nanohttp.html">nanohttp</a> - minimal HTTP implementation<br/><a href="libxml2-parser.html">parser</a> - the core parser module<br/><a href="libxml2-parserInternals.html">parserInternals</a> - internals routines and limits exported by the parser.<br/><a href="libxml2-pattern.html">pattern</a> - pattern expression handling<br/><a href="libxml2-relaxng.html">relaxng</a> - implementation of the Relax-NG validation<br/><a href="libxml2-schemasInternals.html">schemasInternals</a> - internal interfaces for XML Schemas<br/><a href="libxml2-schematron.html">schematron</a> - XML Schematron implementation<br/><a href="libxml2-threads.html">threads</a> - interfaces for thread handling<br/><a href="libxml2-tree.html">tree</a> - interfaces for tree manipulation<br/><a href="libxml2-uri.html">uri</a> - library of generic URI related routines<br/><a href="libxml2-valid.html">valid</a> - The DTD validation<br/><a href="libxml2-xinclude.html">xinclude</a> - implementation of XInclude<br/><a href="libxml2-xlink.html">xlink</a> - unfinished XLink detection module<br/><a href="libxml2-xmlIO.html">xmlIO</a> - interface for the I/O interfaces used by the parser<br/><a href="libxml2-xmlautomata.html">xmlautomata</a> - API to build regexp automata<br/><a href="libxml2-xmlerror.html">xmlerror</a> - error handling<br/><a href="libxml2-xmlexports.html">xmlexports</a> - macros for marking symbols as exportable/importable.<br/><a href="libxml2-xmlmemory.html">xmlmemory</a> - interface for the memory allocator<br/><a href="libxml2-xmlmodule.html">xmlmodule</a> - dynamic module loading<br/><a href="libxml2-xmlreader.html">xmlreader</a> - the XMLReader implementation<br/><a href="libxml2-xmlregexp.html">xmlregexp</a> - regular expressions handling<br/><a href="libxml2-xmlsave.html">xmlsave</a> - the XML document serializer<br/><a href="libxml2-xmlschemas.html">xmlschemas</a> - incomplete XML Schemas structure implementation<br/><a href="libxml2-xmlschemastypes.html">xmlschemastypes</a> - implementation of XML Schema Datatypes<br/><a href="libxml2-xmlstring.html">xmlstring</a> - set of routines to process strings<br/><a href="libxml2-xmlunicode.html">xmlunicode</a> - Unicode character APIs<br/><a href="libxml2-xmlversion.html">xmlversion</a> - compile-time version information<br/><a href="libxml2-xmlwriter.html">xmlwriter</a> - text writing API for XML<br/><a href="libxml2-xpath.html">xpath</a> - XML Path Language implementation<br/><a href="libxml2-xpathInternals.html">xpathInternals</a> - internal interfaces for XML Path Language implementation<br/><a href="libxml2-xpointer.html">xpointer</a> - API to handle XML Pointers<br/></p>
-  </body>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>libxml2: </title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="index.html" title="libxml2 Reference Manual">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="index.html" title="libxml2 Reference Manual">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="u" href="index.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-HTMLparser.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">libxml2 API Modules</span></h2>
+<p><a href="libxml2-HTMLparser.html">HTMLparser</a> - interface for an HTML 4.0 non-verifying parser<br><a href="libxml2-HTMLtree.html">HTMLtree</a> - specific APIs to process HTML tree, especially serialization<br><a href="libxml2-SAX.html">SAX</a> - Old SAX version 1 handler, deprecated<br><a href="libxml2-SAX2.html">SAX2</a> - SAX2 parser interface used to build the DOM tree<br><a href="libxml2-c14n.html">c14n</a> - Provide Canonical XML and Exclusive XML Canonicalization<br><a href="libxml2-catalog.html">catalog</a> - interfaces to the Catalog handling system<br><a href="libxml2-chvalid.html">chvalid</a> - Unicode character range checking<br><a href="libxml2-debugXML.html">debugXML</a> - Tree debugging APIs<br><a href="libxml2-dict.html">dict</a> - string dictionary<br><a href="libxml2-encoding.html">encoding</a> - interface for the encoding conversion functions<br><a href="libxml2-entities.html">entities</a> - interface for the XML entities handling<br><a href="libxml2-globals.html">globals</a> - interface for all global variables of the library<br><a href="libxml2-hash.html">hash</a> - Chained hash tables<br><a href="libxml2-list.html">list</a> - lists interfaces<br><a href="libxml2-nanoftp.html">nanoftp</a> - minimal FTP implementation<br><a href="libxml2-nanohttp.html">nanohttp</a> - minimal HTTP implementation<br><a href="libxml2-parser.html">parser</a> - the core parser module<br><a href="libxml2-parserInternals.html">parserInternals</a> - internals routines and limits exported by the parser.<br><a href="libxml2-pattern.html">pattern</a> - pattern expression handling<br><a href="libxml2-relaxng.html">relaxng</a> - implementation of the Relax-NG validation<br><a href="libxml2-schemasInternals.html">schemasInternals</a> - internal interfaces for XML Schemas<br><a href="libxml2-schematron.html">schematron</a> - XML Schematron implementation<br><a href="libxml2-threads.html">threads</a> - interfaces for thread handling<br><a href="libxml2-tree.html">tree</a> - interfaces for tree manipulation<br><a href="libxml2-uri.html">uri</a> - library of generic URI related routines<br><a href="libxml2-valid.html">valid</a> - The DTD validation<br><a href="libxml2-xinclude.html">xinclude</a> - implementation of XInclude<br><a href="libxml2-xlink.html">xlink</a> - unfinished XLink detection module<br><a href="libxml2-xmlIO.html">xmlIO</a> - interface for the I/O interfaces used by the parser<br><a href="libxml2-xmlautomata.html">xmlautomata</a> - API to build regexp automata<br><a href="libxml2-xmlerror.html">xmlerror</a> - error handling<br><a href="libxml2-xmlexports.html">xmlexports</a> - macros for marking symbols as exportable/importable.<br><a href="libxml2-xmlmemory.html">xmlmemory</a> - interface for the memory allocator<br><a href="libxml2-xmlmodule.html">xmlmodule</a> - dynamic module loading<br><a href="libxml2-xmlreader.html">xmlreader</a> - the XMLReader implementation<br><a href="libxml2-xmlregexp.html">xmlregexp</a> - regular expressions handling<br><a href="libxml2-xmlsave.html">xmlsave</a> - the XML document serializer<br><a href="libxml2-xmlschemas.html">xmlschemas</a> - incomplete XML Schemas structure implementation<br><a href="libxml2-xmlschemastypes.html">xmlschemastypes</a> - implementation of XML Schema Datatypes<br><a href="libxml2-xmlstring.html">xmlstring</a> - set of routines to process strings<br><a href="libxml2-xmlunicode.html">xmlunicode</a> - Unicode character APIs<br><a href="libxml2-xmlversion.html">xmlversion</a> - compile-time version information<br><a href="libxml2-xmlwriter.html">xmlwriter</a> - text writing API for XML<br><a href="libxml2-xpath.html">xpath</a> - XML Path Language implementation<br><a href="libxml2-xpathInternals.html">xpathInternals</a> - internal interfaces for XML Path Language implementation<br><a href="libxml2-xpointer.html">xpointer</a> - API to handle XML Pointers<br></p>
+</body>
 </html>
index da22621..b658f67 100644 (file)
@@ -4,8 +4,6 @@
                xmlns:str="http://exslt.org/strings"
                extension-element-prefixes="exsl str"
                exclude-result-prefixes="exsl str">
-  <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
-
   <!-- This is convoluted but needed to force the current document to
        be the API one and not the result tree from the tokenize() result,
        because the keys are only defined on the main document -->
 -->
   <xsl:template name="generate_general">
     <xsl:variable name="next" select="string(/api/files/file[position()=1]/@name)"/>
-    <xsl:document xmlns="" href="general.html" method="xml" indent="yes" encoding="UTF-8">
+    <xsl:document xmlns="" href="general.html" method="html" indent="yes" encoding="UTF-8">
       <html>
         <head>
          <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
 
 -->
   <xsl:template name="generate_index">
-    <xsl:document xmlns="" href="index.html" method="xml" indent="yes" encoding="UTF-8">
+    <xsl:document xmlns="" href="index.html" method="html" indent="yes" encoding="UTF-8">
       <html>
         <head>
          <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
index ae6c49e..66c4ff8 100644 (file)
@@ -1,31 +1,18 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>libxml2 Reference Manual</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="general.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">libxml2 Reference Manual</span>
-    </h2>
-    <p>Libxml2 is the XML C parser and toolkit developed for the Gnome project
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>libxml2 Reference Manual</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="general.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">libxml2 Reference Manual</span></h2>
+<p>Libxml2 is the XML C parser and toolkit developed for the Gnome project
 (but usable outside of the Gnome platform), it is free software available
 under the <a href="http://www.opensource.org/licenses/mit-license.html">MIT
 License</a>. XML itself is a metalanguage to design markup languages, i.e.
@@ -33,30 +20,43 @@ text language where semantic and structure are added to the content using
 extra "markup" information enclosed between angle brackets. HTML is the most
 well-known markup language. Though the library is written in C, a variety of
 language bindings make it available in other environments.</p>
-    <p>Libxml2 implements a number of existing standards related to markup
+<p>Libxml2 implements a number of existing standards related to markup
 languages:</p>
-    <ul>
-      <li>the XML standard: <a href="http://www.w3.org/TR/REC-xml">http://www.w3.org/TR/REC-xml</a></li>
-      <li>Namespaces in XML: <a href="http://www.w3.org/TR/REC-xml-names/">http://www.w3.org/TR/REC-xml-names/</a></li>
-      <li>XML Base: <a href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a></li>
-      <li><a href="http://www.cis.ohio-state.edu/rfc/rfc2396.txt">RFC 2396</a> :
-Uniform Resource Identifiers <a href="http://www.ietf.org/rfc/rfc2396.txt">http://www.ietf.org/rfc/rfc2396.txt</a></li>
-      <li>XML Path Language (XPath) 1.0: <a href="http://www.w3.org/TR/xpath">http://www.w3.org/TR/xpath</a></li>
-      <li>HTML4 parser: <a href="http://www.w3.org/TR/html401/">http://www.w3.org/TR/html401/</a></li>
-      <li>XML Pointer Language (XPointer) Version 1.0: <a href="http://www.w3.org/TR/xptr">http://www.w3.org/TR/xptr</a></li>
-      <li>XML Inclusions (XInclude) Version 1.0: <a href="http://www.w3.org/TR/xinclude/">http://www.w3.org/TR/xinclude/</a></li>
-      <li>ISO-8859-x encodings, as well as <a href="http://www.cis.ohio-state.edu/rfc/rfc2044.txt">rfc2044</a> [UTF-8]
+<ul>
+<li>the XML standard: <a href="http://www.w3.org/TR/REC-xml">http://www.w3.org/TR/REC-xml</a>
+</li>
+<li>Namespaces in XML: <a href="http://www.w3.org/TR/REC-xml-names/">http://www.w3.org/TR/REC-xml-names/</a>
+</li>
+<li>XML Base: <a href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a>
+</li>
+<li>
+<a href="http://www.cis.ohio-state.edu/rfc/rfc2396.txt">RFC 2396</a> :
+Uniform Resource Identifiers <a href="http://www.ietf.org/rfc/rfc2396.txt">http://www.ietf.org/rfc/rfc2396.txt</a>
+</li>
+<li>XML Path Language (XPath) 1.0: <a href="http://www.w3.org/TR/xpath">http://www.w3.org/TR/xpath</a>
+</li>
+<li>HTML4 parser: <a href="http://www.w3.org/TR/html401/">http://www.w3.org/TR/html401/</a>
+</li>
+<li>XML Pointer Language (XPointer) Version 1.0: <a href="http://www.w3.org/TR/xptr">http://www.w3.org/TR/xptr</a>
+</li>
+<li>XML Inclusions (XInclude) Version 1.0: <a href="http://www.w3.org/TR/xinclude/">http://www.w3.org/TR/xinclude/</a>
+</li>
+<li>ISO-8859-x encodings, as well as <a href="http://www.cis.ohio-state.edu/rfc/rfc2044.txt">rfc2044</a> [UTF-8]
 and <a href="http://www.cis.ohio-state.edu/rfc/rfc2781.txt">rfc2781</a>
 [UTF-16] Unicode encodings, and more if using iconv support</li>
-      <li>part of SGML Open Technical Resolution TR9401:1997</li>
-      <li>XML Catalogs Working Draft 06 August 2001: <a href="http://www.oasis-open.org/committees/entity/spec-2001-08-06.html">http://www.oasis-open.org/committees/entity/spec-2001-08-06.html</a></li>
-      <li>Canonical XML Version 1.0: <a href="http://www.w3.org/TR/xml-c14n">http://www.w3.org/TR/xml-c14n</a>
-and the Exclusive XML Canonicalization CR draft <a href="http://www.w3.org/TR/xml-exc-c14n">http://www.w3.org/TR/xml-exc-c14n</a></li>
-      <li>Relax NG, ISO/IEC 19757-2:2003, <a href="http://www.oasis-open.org/committees/relax-ng/spec-20011203.html">http://www.oasis-open.org/committees/relax-ng/spec-20011203.html</a></li>
-      <li>W3C XML Schemas Part 2: Datatypes <a href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/">REC 02 May
-2001</a></li>
-      <li>W3C <a href="http://www.w3.org/TR/xml-id/">xml:id</a> Working Draft 7
+<li>part of SGML Open Technical Resolution TR9401:1997</li>
+<li>XML Catalogs Working Draft 06 August 2001: <a href="http://www.oasis-open.org/committees/entity/spec-2001-08-06.html">http://www.oasis-open.org/committees/entity/spec-2001-08-06.html</a>
+</li>
+<li>Canonical XML Version 1.0: <a href="http://www.w3.org/TR/xml-c14n">http://www.w3.org/TR/xml-c14n</a>
+and the Exclusive XML Canonicalization CR draft <a href="http://www.w3.org/TR/xml-exc-c14n">http://www.w3.org/TR/xml-exc-c14n</a>
+</li>
+<li>Relax NG, ISO/IEC 19757-2:2003, <a href="http://www.oasis-open.org/committees/relax-ng/spec-20011203.html">http://www.oasis-open.org/committees/relax-ng/spec-20011203.html</a>
+</li>
+<li>W3C XML Schemas Part 2: Datatypes <a href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/">REC 02 May
+2001</a>
+</li>
+<li>W3C <a href="http://www.w3.org/TR/xml-id/">xml:id</a> Working Draft 7
 April 2004</li>
-    </ul>
-  </body>
+</ul>
+</body>
 </html>
index b594126..12362b4 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>HTMLparser: interface for an HTML 4.0 non-verifying parser</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-HTMLtree.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">HTMLparser</span>
-    </h2>
-    <p>HTMLparser - interface for an HTML 4.0 non-verifying parser</p>
-    <p>this module implements an HTML 4.0 non-verifying parser with API compatible with the XML parser ones. It should be able to parse "real world" HTML, even if severely broken from a specification point of view. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#htmlDefaultSubelement">htmlDefaultSubelement</a>(elt);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>HTMLparser: interface for an HTML 4.0 non-verifying parser</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-HTMLtree.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">HTMLparser</span></h2>
+<p>HTMLparser - interface for an HTML 4.0 non-verifying parser</p>
+<p>this module implements an HTML 4.0 non-verifying parser with API compatible with the XML parser ones. It should be able to parse "real world" HTML, even if severely broken from a specification point of view. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#htmlDefaultSubelement">htmlDefaultSubelement</a>(elt);
 #define <a href="#htmlElementAllowedHereDesc">htmlElementAllowedHereDesc</a>(parent, elt);
 #define <a href="#htmlRequiredAttrs">htmlRequiredAttrs</a>(elt);
-typedef <a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> <a href="#htmlParserNodeInfo">htmlParserNodeInfo</a>;
-typedef <a href="libxml2-tree.html#xmlParserInput">xmlParserInput</a> <a href="#htmlParserInput">htmlParserInput</a>;
-typedef <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> <a href="#htmlParserCtxtPtr">htmlParserCtxtPtr</a>;
-typedef struct _htmlEntityDesc <a href="#htmlEntityDesc">htmlEntityDesc</a>;
 typedef <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> <a href="#htmlDocPtr">htmlDocPtr</a>;
-typedef <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> <a href="#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a>;
-typedef enum <a href="#htmlStatus">htmlStatus</a>;
-typedef <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> <a href="#htmlNodePtr">htmlNodePtr</a>;
-typedef <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * <a href="#htmlElemDescPtr">htmlElemDescPtr</a>;
 typedef struct _htmlElemDesc <a href="#htmlElemDesc">htmlElemDesc</a>;
-typedef <a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> <a href="#htmlSAXHandler">htmlSAXHandler</a>;
-typedef <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> <a href="#htmlParserInputPtr">htmlParserInputPtr</a>;
-typedef enum <a href="#htmlParserOption">htmlParserOption</a>;
+typedef <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * <a href="#htmlElemDescPtr">htmlElemDescPtr</a>;
+typedef struct _htmlEntityDesc <a href="#htmlEntityDesc">htmlEntityDesc</a>;
 typedef <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> * <a href="#htmlEntityDescPtr">htmlEntityDescPtr</a>;
+typedef <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> <a href="#htmlNodePtr">htmlNodePtr</a>;
 typedef <a href="libxml2-tree.html#xmlParserCtxt">xmlParserCtxt</a> <a href="#htmlParserCtxt">htmlParserCtxt</a>;
-int    <a href="#htmlIsScriptAttribute">htmlIsScriptAttribute</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#htmlHandleOmittedElem">htmlHandleOmittedElem</a>              (int val);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlReadFd">htmlReadFd</a>            (int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlReadIO">htmlReadIO</a>            (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlParseFile">htmlParseFile</a>              (const char * filename, <br/>                                    const char * encoding);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlCtxtReadDoc">htmlCtxtReadDoc</a>          (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-int    <a href="#htmlAutoCloseTag">htmlAutoCloseTag</a>                (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> elem);
-int    <a href="#htmlParseChunk">htmlParseChunk</a>                    (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   const char * chunk, <br/>                                       int size, <br/>                                         int terminate);
-const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> *        <a href="#htmlTagLookup">htmlTagLookup</a>      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * tag);
-<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>      <a href="#htmlCreateMemoryParserCtxt">htmlCreateMemoryParserCtxt</a>    (const char * buffer, <br/>                                                      int size);
+typedef <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> <a href="#htmlParserCtxtPtr">htmlParserCtxtPtr</a>;
+typedef <a href="libxml2-tree.html#xmlParserInput">xmlParserInput</a> <a href="#htmlParserInput">htmlParserInput</a>;
+typedef <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> <a href="#htmlParserInputPtr">htmlParserInputPtr</a>;
+typedef <a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> <a href="#htmlParserNodeInfo">htmlParserNodeInfo</a>;
+typedef enum <a href="#htmlParserOption">htmlParserOption</a>;
+typedef <a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> <a href="#htmlSAXHandler">htmlSAXHandler</a>;
+typedef <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> <a href="#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a>;
+typedef enum <a href="#htmlStatus">htmlStatus</a>;
+int    <a href="#UTF8ToHtml">UTF8ToHtml</a>                    (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen);
+<a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>    <a href="#htmlAttrAllowed">htmlAttrAllowed</a>          (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * elt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * attr, <br>                                         int legacy);
+int    <a href="#htmlAutoCloseTag">htmlAutoCloseTag</a>                (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> elem);
+<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>      <a href="#htmlCreateMemoryParserCtxt">htmlCreateMemoryParserCtxt</a>    (const char * buffer, <br>                                                       int size);
+<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>      <a href="#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a>        (<a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br>                                                     void * user_data, <br>                                                  const char * chunk, <br>                                                        int size, <br>                                                  const char * filename, <br>                                                     <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlCtxtReadDoc">htmlCtxtReadDoc</a>          (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlCtxtReadFd">htmlCtxtReadFd</a>            (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlCtxtReadFile">htmlCtxtReadFile</a>        (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    const char * filename, <br>                                     const char * encoding, <br>                                     int options);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlCtxtReadIO">htmlCtxtReadIO</a>            (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlCtxtReadMemory">htmlCtxtReadMemory</a>    (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    const char * buffer, <br>                                       int size, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options);
 void   <a href="#htmlCtxtReset">htmlCtxtReset</a>                      (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt);
-int    <a href="#htmlElementAllowedHere">htmlElementAllowedHere</a>            (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * parent, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elt);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlCtxtReadIO">htmlCtxtReadIO</a>            (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>      <a href="#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a>        (<a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br/>                                                    void * user_data, <br/>                                                         const char * chunk, <br/>                                                       int size, <br/>                                                         const char * filename, <br/>                                                    <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlReadMemory">htmlReadMemory</a>            (const char * buffer, <br/>                                      int size, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-int    <a href="#htmlIsAutoClosed">htmlIsAutoClosed</a>                (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br/>                                  <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> elem);
-int    <a href="#htmlParseCharRef">htmlParseCharRef</a>                (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlReadDoc">htmlReadDoc</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-int    <a href="#htmlEncodeEntities">htmlEncodeEntities</a>            (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen, <br/>                                      int quoteChar);
-<a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>    <a href="#htmlNodeStatus">htmlNodeStatus</a>            (const <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> node, <br/>                                         int legacy);
-<a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>    <a href="#htmlAttrAllowed">htmlAttrAllowed</a>          (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * elt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * attr, <br/>                                        int legacy);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlSAXParseFile">htmlSAXParseFile</a>        (const char * filename, <br/>                                    const char * encoding, <br/>                                    <a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br/>                                    void * userData);
-const <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> *    <a href="#htmlParseEntityRef">htmlParseEntityRef</a>    (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** str);
-<a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>    <a href="#htmlElementStatusHere">htmlElementStatusHere</a>      (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * parent, <br/>                                   const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * elt);
-const <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> *    <a href="#htmlEntityValueLookup">htmlEntityValueLookup</a>      (unsigned int value);
-void   <a href="#htmlParseElement">htmlParseElement</a>                (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt);
-int    <a href="#UTF8ToHtml">UTF8ToHtml</a>                    (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen);
+int    <a href="#htmlCtxtUseOptions">htmlCtxtUseOptions</a>            (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    int options);
+int    <a href="#htmlElementAllowedHere">htmlElementAllowedHere</a>            (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * parent, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elt);
+<a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>    <a href="#htmlElementStatusHere">htmlElementStatusHere</a>      (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * parent, <br>                                    const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * elt);
+int    <a href="#htmlEncodeEntities">htmlEncodeEntities</a>            (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen, <br>                                       int quoteChar);
 const <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> *    <a href="#htmlEntityLookup">htmlEntityLookup</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+const <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> *    <a href="#htmlEntityValueLookup">htmlEntityValueLookup</a>      (unsigned int value);
 void   <a href="#htmlFreeParserCtxt">htmlFreeParserCtxt</a>            (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlCtxtReadMemory">htmlCtxtReadMemory</a>    (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   const char * buffer, <br/>                                      int size, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlCtxtReadFd">htmlCtxtReadFd</a>            (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlReadFile">htmlReadFile</a>                (const char * filename, <br/>                                    const char * encoding, <br/>                                    int options);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlCtxtReadFile">htmlCtxtReadFile</a>        (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   const char * filename, <br/>                                    const char * encoding, <br/>                                    int options);
-int    <a href="#htmlParseDocument">htmlParseDocument</a>              (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt);
+int    <a href="#htmlHandleOmittedElem">htmlHandleOmittedElem</a>              (int val);
+int    <a href="#htmlIsAutoClosed">htmlIsAutoClosed</a>                (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br>                                   <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> elem);
+int    <a href="#htmlIsScriptAttribute">htmlIsScriptAttribute</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
 <a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>      <a href="#htmlNewParserCtxt">htmlNewParserCtxt</a>      (void);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlSAXParseDoc">htmlSAXParseDoc</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * encoding, <br/>                                    <a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br/>                                    void * userData);
-int    <a href="#htmlCtxtUseOptions">htmlCtxtUseOptions</a>            (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   int options);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlParseDoc">htmlParseDoc</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * encoding);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="htmlDefaultSubelement">Macro </a>htmlDefaultSubelement</h3><pre class="programlisting">#define <a href="#htmlDefaultSubelement">htmlDefaultSubelement</a>(elt);
-</pre><p>Returns the default subelement for this element</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>elt</tt></i>:</span></td><td>HTML element</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlElementAllowedHereDesc">Macro </a>htmlElementAllowedHereDesc</h3><pre class="programlisting">#define <a href="#htmlElementAllowedHereDesc">htmlElementAllowedHereDesc</a>(parent, elt);
-</pre><p>Checks whether an HTML element description may be a direct child of the specified element. Returns 1 if allowed; 0 otherwise.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>HTML parent element</td></tr><tr><td><span class="term"><i><tt>elt</tt></i>:</span></td><td>HTML element</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlRequiredAttrs">Macro </a>htmlRequiredAttrs</h3><pre class="programlisting">#define <a href="#htmlRequiredAttrs">htmlRequiredAttrs</a>(elt);
-</pre><p>Returns the attributes required for the specified element.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>elt</tt></i>:</span></td><td>HTML element</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlDocPtr">Typedef </a>htmlDocPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> htmlDocPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlElemDesc">Structure </a>htmlElemDesc</h3><pre class="programlisting">struct _htmlElemDesc {
+<a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>    <a href="#htmlNodeStatus">htmlNodeStatus</a>            (const <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> node, <br>                                  int legacy);
+int    <a href="#htmlParseCharRef">htmlParseCharRef</a>                (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt);
+int    <a href="#htmlParseChunk">htmlParseChunk</a>                    (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    const char * chunk, <br>                                        int size, <br>                                  int terminate);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlParseDoc">htmlParseDoc</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * encoding);
+int    <a href="#htmlParseDocument">htmlParseDocument</a>              (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt);
+void   <a href="#htmlParseElement">htmlParseElement</a>                (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt);
+const <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> *    <a href="#htmlParseEntityRef">htmlParseEntityRef</a>    (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** str);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlParseFile">htmlParseFile</a>              (const char * filename, <br>                                     const char * encoding);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlReadDoc">htmlReadDoc</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlReadFd">htmlReadFd</a>            (int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlReadFile">htmlReadFile</a>                (const char * filename, <br>                                     const char * encoding, <br>                                     int options);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlReadIO">htmlReadIO</a>            (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlReadMemory">htmlReadMemory</a>            (const char * buffer, <br>                                       int size, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlSAXParseDoc">htmlSAXParseDoc</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * encoding, <br>                                     <a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br>                                     void * userData);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlSAXParseFile">htmlSAXParseFile</a>        (const char * filename, <br>                                     const char * encoding, <br>                                     <a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br>                                     void * userData);
+const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> *        <a href="#htmlTagLookup">htmlTagLookup</a>      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * tag);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlDefaultSubelement">Macro </a>htmlDefaultSubelement</h3>
+<pre class="programlisting">#define <a href="#htmlDefaultSubelement">htmlDefaultSubelement</a>(elt);
+</pre>
+<p>Returns the default subelement for this element</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>elt</tt></i>:</span></td>
+<td>HTML element</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlElementAllowedHereDesc">Macro </a>htmlElementAllowedHereDesc</h3>
+<pre class="programlisting">#define <a href="#htmlElementAllowedHereDesc">htmlElementAllowedHereDesc</a>(parent, elt);
+</pre>
+<p>Checks whether an HTML element description may be a direct child of the specified element. Returns 1 if allowed; 0 otherwise.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>HTML parent element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elt</tt></i>:</span></td>
+<td>HTML element</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlRequiredAttrs">Macro </a>htmlRequiredAttrs</h3>
+<pre class="programlisting">#define <a href="#htmlRequiredAttrs">htmlRequiredAttrs</a>(elt);
+</pre>
+<p>Returns the attributes required for the specified element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>elt</tt></i>:</span></td>
+<td>HTML element</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlDocPtr">Typedef </a>htmlDocPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> htmlDocPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlElemDesc">Structure </a>htmlElemDesc</h3>
+<pre class="programlisting">struct _htmlElemDesc {
     const char *       name    : The tag name
     char       startTag        : Whether the start tag can be implied
     char       endTag  : Whether the end tag can be implied
@@ -134,50 +161,90 @@ int       <a href="#htmlCtxtUseOptions">htmlCtxtUseOptions</a>            (<a href="libxml2-HTML
     const char **      attrs_depr      : Additional deprecated attributes
     const char **      attrs_req       : Required attributes
 } htmlElemDesc;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlElemDescPtr">Typedef </a>htmlElemDescPtr</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * htmlElemDescPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlElemDescPtr">Typedef </a>htmlElemDescPtr</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * htmlElemDescPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlEntityDesc">Structure </a>htmlEntityDesc</h3><pre class="programlisting">struct _htmlEntityDesc {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlEntityDesc">Structure </a>htmlEntityDesc</h3>
+<pre class="programlisting">struct _htmlEntityDesc {
     unsigned int       value   : the UNICODE value for the character
     const char *       name    : The entity name
     const char *       desc    : the description
 } htmlEntityDesc;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlEntityDescPtr">Typedef </a>htmlEntityDescPtr</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> * htmlEntityDescPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlEntityDescPtr">Typedef </a>htmlEntityDescPtr</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> * htmlEntityDescPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlNodePtr">Typedef </a>htmlNodePtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> htmlNodePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlNodePtr">Typedef </a>htmlNodePtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> htmlNodePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParserCtxt">Typedef </a>htmlParserCtxt</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxt">xmlParserCtxt</a> htmlParserCtxt;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParserCtxt">Typedef </a>htmlParserCtxt</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxt">xmlParserCtxt</a> htmlParserCtxt;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParserCtxtPtr">Typedef </a>htmlParserCtxtPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> htmlParserCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParserCtxtPtr">Typedef </a>htmlParserCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> htmlParserCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParserInput">Typedef </a>htmlParserInput</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInput">xmlParserInput</a> htmlParserInput;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParserInput">Typedef </a>htmlParserInput</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInput">xmlParserInput</a> htmlParserInput;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParserInputPtr">Typedef </a>htmlParserInputPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> htmlParserInputPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParserInputPtr">Typedef </a>htmlParserInputPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> htmlParserInputPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParserNodeInfo">Typedef </a>htmlParserNodeInfo</h3><pre class="programlisting"><a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> htmlParserNodeInfo;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParserNodeInfo">Typedef </a>htmlParserNodeInfo</h3>
+<pre class="programlisting"><a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> htmlParserNodeInfo;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParserOption">Enum </a>htmlParserOption</h3><pre class="programlisting">enum <a href="#htmlParserOption">htmlParserOption</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParserOption">Enum </a>htmlParserOption</h3>
+<pre class="programlisting">enum <a href="#htmlParserOption">htmlParserOption</a> {
     <a name="HTML_PARSE_RECOVER">HTML_PARSE_RECOVER</a> = 1 /* Relaxed parsing */
     <a name="HTML_PARSE_NODEFDTD">HTML_PARSE_NODEFDTD</a> = 4 /* do not default a doctype if not found */
     <a name="HTML_PARSE_NOERROR">HTML_PARSE_NOERROR</a> = 32 /* suppress error reports */
@@ -189,180 +256,1112 @@ int    <a href="#htmlCtxtUseOptions">htmlCtxtUseOptions</a>            (<a href="libxml2-HTML
     <a name="HTML_PARSE_COMPACT">HTML_PARSE_COMPACT</a> = 65536 /* compact small text nodes */
     <a name="HTML_PARSE_IGNORE_ENC">HTML_PARSE_IGNORE_ENC</a> = 2097152 /*  ignore internal document encoding hint */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlSAXHandler">Typedef </a>htmlSAXHandler</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> htmlSAXHandler;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlSAXHandler">Typedef </a>htmlSAXHandler</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> htmlSAXHandler;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlSAXHandlerPtr">Typedef </a>htmlSAXHandlerPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> htmlSAXHandlerPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlSAXHandlerPtr">Typedef </a>htmlSAXHandlerPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> htmlSAXHandlerPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlStatus">Enum </a>htmlStatus</h3><pre class="programlisting">enum <a href="#htmlStatus">htmlStatus</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlStatus">Enum </a>htmlStatus</h3>
+<pre class="programlisting">enum <a href="#htmlStatus">htmlStatus</a> {
     <a name="HTML_NA">HTML_NA</a> = 0 /* something we don't check at all */
     <a name="HTML_INVALID">HTML_INVALID</a> = 1
     <a name="HTML_DEPRECATED">HTML_DEPRECATED</a> = 2
     <a name="HTML_VALID">HTML_VALID</a> = 4
     <a name="HTML_REQUIRED">HTML_REQUIRED</a> = 12 /*  VALID bit set so ( &amp; HTML_VALID ) is TRUE */
 };
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="UTF8ToHtml"/>UTF8ToHtml ()</h3><pre class="programlisting">int    UTF8ToHtml                      (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen)<br/>
-</pre><p>Take a block of UTF-8 chars in and try to convert it to an ASCII plus HTML entities block of chars out.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>a pointer to an array of bytes to store the result</td></tr><tr><td><span class="term"><i><tt>outlen</tt></i>:</span></td><td>the length of @out</td></tr><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>a pointer to an array of UTF-8 chars</td></tr><tr><td><span class="term"><i><tt>inlen</tt></i>:</span></td><td>the length of @in</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if success, -2 if the transcoding fails, or -1 otherwise The value of @inlen after return is the number of octets consumed as the return value is positive, else unpredictable. The value of @outlen after return is the number of octets consumed.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlAttrAllowed"/>htmlAttrAllowed ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>  htmlAttrAllowed         (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * elt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * attr, <br/>                                        int legacy)<br/>
-</pre><p>Checks whether an <a href="libxml2-SAX.html#attribute">attribute</a> is valid for an element Has full knowledge of Required and Deprecated attributes</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>elt</tt></i>:</span></td><td>HTML element</td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>HTML <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>legacy</tt></i>:</span></td><td>whether to allow deprecated attributes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>one of HTML_REQUIRED, HTML_VALID, HTML_DEPRECATED, <a href="libxml2-HTMLparser.html#HTML_INVALID">HTML_INVALID</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlAutoCloseTag"/>htmlAutoCloseTag ()</h3><pre class="programlisting">int        htmlAutoCloseTag                (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> elem)<br/>
-</pre><p>The HTML DTD allows a tag to implicitly close other tags. The list is kept in htmlStartClose array. This function checks if the element or one of it's children would autoclose the given tag.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the HTML document</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The tag name</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the HTML element</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if autoclose, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlCreateMemoryParserCtxt"/>htmlCreateMemoryParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>      htmlCreateMemoryParserCtxt      (const char * buffer, <br/>                                                      int size)<br/>
-</pre><p>Create a parser context for an HTML in-memory document.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser context or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlCreatePushParserCtxt"/>htmlCreatePushParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>  htmlCreatePushParserCtxt        (<a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br/>                                                    void * user_data, <br/>                                                         const char * chunk, <br/>                                                       int size, <br/>                                                         const char * filename, <br/>                                                    <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Create a parser context for using the HTML parser in push mode The value of @filename is used for fetching external entities and error/warning reports.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>a SAX handler</td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>The user data returned on SAX callbacks</td></tr><tr><td><span class="term"><i><tt>chunk</tt></i>:</span></td><td>a pointer to an array of chars</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>number of chars in the array</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>an optional file name or URI</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>an optional encoding</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser context or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlCtxtReadDoc"/>htmlCtxtReadDoc ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>  htmlCtxtReadDoc         (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to a zero terminated string</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of htmlParserOption(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlCtxtReadFd"/>htmlCtxtReadFd ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    htmlCtxtReadFd          (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML from a file descriptor and build a tree. This reuses the existing @ctxt parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr><tr><td><span class="term"><i><tt>fd</tt></i>:</span></td><td>an open file descriptor</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of htmlParserOption(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlCtxtReadFile"/>htmlCtxtReadFile ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlCtxtReadFile        (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   const char * filename, <br/>                                    const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML file from the filesystem or the network. This reuses the existing @ctxt parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file or URL</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of htmlParserOption(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlCtxtReadIO"/>htmlCtxtReadIO ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    htmlCtxtReadIO          (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an HTML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr><tr><td><span class="term"><i><tt>ioread</tt></i>:</span></td><td>an I/O read function</td></tr><tr><td><span class="term"><i><tt>ioclose</tt></i>:</span></td><td>an I/O close function</td></tr><tr><td><span class="term"><i><tt>ioctx</tt></i>:</span></td><td>an I/O handler</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of htmlParserOption(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlCtxtReadMemory"/>htmlCtxtReadMemory ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    htmlCtxtReadMemory      (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   const char * buffer, <br/>                                      int size, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of htmlParserOption(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlCtxtReset"/>htmlCtxtReset ()</h3><pre class="programlisting">void     htmlCtxtReset                   (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Reset a parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlCtxtUseOptions"/>htmlCtxtUseOptions ()</h3><pre class="programlisting">int    htmlCtxtUseOptions              (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   int options)<br/>
-</pre><p>Applies the options to the parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of htmlParserOption(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, the set of unknown or unimplemented options in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlElementAllowedHere"/>htmlElementAllowedHere ()</h3><pre class="programlisting">int    htmlElementAllowedHere          (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * parent, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elt)<br/>
-</pre><p>Checks whether an HTML element may be a direct child of a parent element. Note - doesn't check for deprecated elements</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>HTML parent element</td></tr><tr><td><span class="term"><i><tt>elt</tt></i>:</span></td><td>HTML element</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if allowed; 0 otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlElementStatusHere"/>htmlElementStatusHere ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>      htmlElementStatusHere   (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * parent, <br/>                                   const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * elt)<br/>
-</pre><p>Checks whether an HTML element may be a direct child of a parent element. and if so whether it is valid or deprecated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>HTML parent element</td></tr><tr><td><span class="term"><i><tt>elt</tt></i>:</span></td><td>HTML element</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>one of HTML_VALID, HTML_DEPRECATED, <a href="libxml2-HTMLparser.html#HTML_INVALID">HTML_INVALID</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlEncodeEntities"/>htmlEncodeEntities ()</h3><pre class="programlisting">int    htmlEncodeEntities              (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen, <br/>                                      int quoteChar)<br/>
-</pre><p>Take a block of UTF-8 chars in and try to convert it to an ASCII plus HTML entities block of chars out.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>a pointer to an array of bytes to store the result</td></tr><tr><td><span class="term"><i><tt>outlen</tt></i>:</span></td><td>the length of @out</td></tr><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>a pointer to an array of UTF-8 chars</td></tr><tr><td><span class="term"><i><tt>inlen</tt></i>:</span></td><td>the length of @in</td></tr><tr><td><span class="term"><i><tt>quoteChar</tt></i>:</span></td><td>the quote character to escape (' or ") or zero.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if success, -2 if the transcoding fails, or -1 otherwise The value of @inlen after return is the number of octets consumed as the return value is positive, else unpredictable. The value of @outlen after return is the number of octets consumed.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlEntityLookup"/>htmlEntityLookup ()</h3><pre class="programlisting">const <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> *        htmlEntityLookup        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Lookup the given entity in EntitiesTable TODO: the linear scan is really ugly, an hash table is really needed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the associated <a href="libxml2-HTMLparser.html#htmlEntityDescPtr">htmlEntityDescPtr</a> if found, NULL otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlEntityValueLookup"/>htmlEntityValueLookup ()</h3><pre class="programlisting">const <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> *      htmlEntityValueLookup   (unsigned int value)<br/>
-</pre><p>Lookup the given entity in EntitiesTable TODO: the linear scan is really ugly, an hash table is really needed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the entity's unicode value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the associated <a href="libxml2-HTMLparser.html#htmlEntityDescPtr">htmlEntityDescPtr</a> if found, NULL otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlFreeParserCtxt"/>htmlFreeParserCtxt ()</h3><pre class="programlisting">void   htmlFreeParserCtxt              (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Free all the memory used by a parser context. However the parsed document in ctxt-&gt;myDoc is not freed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlHandleOmittedElem"/>htmlHandleOmittedElem ()</h3><pre class="programlisting">int      htmlHandleOmittedElem           (int val)<br/>
-</pre><p>Set and return the previous value for handling HTML omitted tags.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>int 0 or 1</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the last value for 0 for no handling, 1 for auto insertion.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlIsAutoClosed"/>htmlIsAutoClosed ()</h3><pre class="programlisting">int        htmlIsAutoClosed                (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br/>                                  <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> elem)<br/>
-</pre><p>The HTML DTD allows a tag to implicitly close other tags. The list is kept in htmlStartClose array. This function checks if a tag is autoclosed by one of it's child</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the HTML document</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the HTML element</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if autoclosed, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlIsScriptAttribute"/>htmlIsScriptAttribute ()</h3><pre class="programlisting">int      htmlIsScriptAttribute           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Check if an <a href="libxml2-SAX.html#attribute">attribute</a> is of content type Script</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>an <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 is the <a href="libxml2-SAX.html#attribute">attribute</a> is a script 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlNewParserCtxt"/>htmlNewParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>        htmlNewParserCtxt       (void)<br/>
-</pre><p>Allocate and initialize a new parser context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> or NULL in case of allocation error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlNodeStatus"/>htmlNodeStatus ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>    htmlNodeStatus          (const <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> node, <br/>                                         int legacy)<br/>
-</pre><p>Checks whether the tree node is valid. Experimental (the author only uses the HTML enhancements in a SAX parser)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>an <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> in a tree</td></tr><tr><td><span class="term"><i><tt>legacy</tt></i>:</span></td><td>whether to allow deprecated elements (YES is faster here for Element nodes)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>for Element nodes, a return from <a href="libxml2-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a> (if legacy allowed) or <a href="libxml2-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a> (otherwise). for Attribute nodes, a return from <a href="libxml2-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a> for other nodes, <a href="libxml2-HTMLparser.html#HTML_NA">HTML_NA</a> (no checks performed)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParseCharRef"/>htmlParseCharRef ()</h3><pre class="programlisting">int        htmlParseCharRef                (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse Reference declarations [66] CharRef ::= '&amp;#' [0-9]+ ';' | '&amp;#x' [0-9a-fA-F]+ ';'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the value parsed (as an int)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParseChunk"/>htmlParseChunk ()</h3><pre class="programlisting">int    htmlParseChunk                  (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                   const char * chunk, <br/>                                       int size, <br/>                                         int terminate)<br/>
-</pre><p>Parse a Chunk of memory</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr><tr><td><span class="term"><i><tt>chunk</tt></i>:</span></td><td>an char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size in byte of the chunk</td></tr><tr><td><span class="term"><i><tt>terminate</tt></i>:</span></td><td>last chunk indicator</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>zero if no error, the <a href="libxml2-xmlerror.html#xmlParserErrors">xmlParserErrors</a> otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParseDoc"/>htmlParseDoc ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlParseDoc            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * encoding)<br/>
-</pre><p>parse an HTML in-memory document and build a tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>a free form C string describing the HTML document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParseDocument"/>htmlParseDocument ()</h3><pre class="programlisting">int      htmlParseDocument               (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an HTML document (and build a tree if using the standard SAX interface).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0, -1 in case of error. the parser context is augmented as a result of the parsing.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParseElement"/>htmlParseElement ()</h3><pre class="programlisting">void       htmlParseElement                (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an HTML element, this is highly recursive this is kept for compatibility with previous code versions [39] element ::= EmptyElemTag | STag content ETag [41] Attribute ::= Name Eq AttValue</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParseEntityRef"/>htmlParseEntityRef ()</h3><pre class="programlisting">const <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> *    htmlParseEntityRef      (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** str)<br/>
-</pre><p>parse an HTML ENTITY references [68] EntityRef ::= '&amp;' Name ';'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an HTML parser context</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>location to store the entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the associated <a href="libxml2-HTMLparser.html#htmlEntityDescPtr">htmlEntityDescPtr</a> if found, or NULL otherwise, if non-NULL *str will have to be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlParseFile"/>htmlParseFile ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>      htmlParseFile           (const char * filename, <br/>                                    const char * encoding)<br/>
-</pre><p>parse an HTML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>a free form C string describing the HTML document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlReadDoc"/>htmlReadDoc ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>  htmlReadDoc             (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML in-memory document and build a tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to a zero terminated string</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of htmlParserOption(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlReadFd"/>htmlReadFd ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    htmlReadFd              (int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an HTML from a file descriptor and build a tree. NOTE that the file descriptor will not be closed when the reader is closed or reset.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>fd</tt></i>:</span></td><td>an open file descriptor</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of htmlParserOption(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlReadFile"/>htmlReadFile ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlReadFile            (const char * filename, <br/>                                    const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML file from the filesystem or the network.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file or URL</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of htmlParserOption(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlReadIO"/>htmlReadIO ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    htmlReadIO              (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an HTML document from I/O functions and source and build a tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ioread</tt></i>:</span></td><td>an I/O read function</td></tr><tr><td><span class="term"><i><tt>ioclose</tt></i>:</span></td><td>an I/O close function</td></tr><tr><td><span class="term"><i><tt>ioctx</tt></i>:</span></td><td>an I/O handler</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of htmlParserOption(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlReadMemory"/>htmlReadMemory ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    htmlReadMemory          (const char * buffer, <br/>                                      int size, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML in-memory document and build a tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of htmlParserOption(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlSAXParseDoc"/>htmlSAXParseDoc ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>  htmlSAXParseDoc         (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * encoding, <br/>                                    <a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br/>                                    void * userData)<br/>
-</pre><p>Parse an HTML in-memory document. If sax is not NULL, use the SAX callbacks to handle parse events. If sax is NULL, fallback to the default DOM behavior and return a tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>a free form C string describing the HTML document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block</td></tr><tr><td><span class="term"><i><tt>userData</tt></i>:</span></td><td>if using SAX, this pointer will be provided on callbacks.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree unless SAX is NULL or the document is not well formed.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlSAXParseFile"/>htmlSAXParseFile ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlSAXParseFile        (const char * filename, <br/>                                    const char * encoding, <br/>                                    <a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br/>                                    void * userData)<br/>
-</pre><p>parse an HTML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>a free form C string describing the HTML document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block</td></tr><tr><td><span class="term"><i><tt>userData</tt></i>:</span></td><td>if using SAX, this pointer will be provided on callbacks.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree unless SAX is NULL or the document is not well formed.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlTagLookup"/>htmlTagLookup ()</h3><pre class="programlisting">const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> *  htmlTagLookup   (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * tag)<br/>
-</pre><p>Lookup the HTML tag in the ElementTable</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>tag</tt></i>:</span></td><td>The tag name in lowercase</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the related <a href="libxml2-HTMLparser.html#htmlElemDescPtr">htmlElemDescPtr</a> or NULL if not found.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="UTF8ToHtml"></a>UTF8ToHtml ()</h3>
+<pre class="programlisting">int        UTF8ToHtml                      (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen)<br>
+</pre>
+<p>Take a block of UTF-8 chars in and try to convert it to an ASCII plus HTML entities block of chars out.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>a pointer to an array of bytes to store the result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>outlen</tt></i>:</span></td>
+<td>the length of @out</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>a pointer to an array of UTF-8 chars</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inlen</tt></i>:</span></td>
+<td>the length of @in</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if success, -2 if the transcoding fails, or -1 otherwise The value of @inlen after return is the number of octets consumed as the return value is positive, else unpredictable. The value of @outlen after return is the number of octets consumed.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlAttrAllowed"></a>htmlAttrAllowed ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>        htmlAttrAllowed         (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * elt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * attr, <br>                                         int legacy)<br>
+</pre>
+<p>Checks whether an <a href="libxml2-SAX.html#attribute">attribute</a> is valid for an element Has full knowledge of Required and Deprecated attributes</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>elt</tt></i>:</span></td>
+<td>HTML element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>HTML <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>legacy</tt></i>:</span></td>
+<td>whether to allow deprecated attributes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>one of HTML_REQUIRED, HTML_VALID, HTML_DEPRECATED, <a href="libxml2-HTMLparser.html#HTML_INVALID">HTML_INVALID</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlAutoCloseTag"></a>htmlAutoCloseTag ()</h3>
+<pre class="programlisting">int        htmlAutoCloseTag                (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> elem)<br>
+</pre>
+<p>The HTML DTD allows a tag to implicitly close other tags. The list is kept in htmlStartClose array. This function checks if the element or one of it's children would autoclose the given tag.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the HTML document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The tag name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the HTML element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if autoclose, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlCreateMemoryParserCtxt"></a>htmlCreateMemoryParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>  htmlCreateMemoryParserCtxt      (const char * buffer, <br>                                                       int size)<br>
+</pre>
+<p>Create a parser context for an HTML in-memory document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser context or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlCreatePushParserCtxt"></a>htmlCreatePushParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>  htmlCreatePushParserCtxt        (<a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br>                                                     void * user_data, <br>                                                  const char * chunk, <br>                                                        int size, <br>                                                  const char * filename, <br>                                                     <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Create a parser context for using the HTML parser in push mode The value of @filename is used for fetching external entities and error/warning reports.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>a SAX handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>The user data returned on SAX callbacks</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>chunk</tt></i>:</span></td>
+<td>a pointer to an array of chars</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>number of chars in the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>an optional file name or URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>an optional encoding</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser context or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlCtxtReadDoc"></a>htmlCtxtReadDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlCtxtReadDoc         (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to a zero terminated string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of htmlParserOption(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlCtxtReadFd"></a>htmlCtxtReadFd ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlCtxtReadFd          (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML from a file descriptor and build a tree. This reuses the existing @ctxt parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>fd</tt></i>:</span></td>
+<td>an open file descriptor</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of htmlParserOption(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlCtxtReadFile"></a>htmlCtxtReadFile ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlCtxtReadFile        (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    const char * filename, <br>                                     const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML file from the filesystem or the network. This reuses the existing @ctxt parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file or URL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of htmlParserOption(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlCtxtReadIO"></a>htmlCtxtReadIO ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlCtxtReadIO          (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an HTML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioread</tt></i>:</span></td>
+<td>an I/O read function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioclose</tt></i>:</span></td>
+<td>an I/O close function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioctx</tt></i>:</span></td>
+<td>an I/O handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of htmlParserOption(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlCtxtReadMemory"></a>htmlCtxtReadMemory ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlCtxtReadMemory      (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    const char * buffer, <br>                                       int size, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of htmlParserOption(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlCtxtReset"></a>htmlCtxtReset ()</h3>
+<pre class="programlisting">void       htmlCtxtReset                   (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Reset a parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlCtxtUseOptions"></a>htmlCtxtUseOptions ()</h3>
+<pre class="programlisting">int        htmlCtxtUseOptions              (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    int options)<br>
+</pre>
+<p>Applies the options to the parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of htmlParserOption(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, the set of unknown or unimplemented options in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlElementAllowedHere"></a>htmlElementAllowedHere ()</h3>
+<pre class="programlisting">int        htmlElementAllowedHere          (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * parent, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elt)<br>
+</pre>
+<p>Checks whether an HTML element may be a direct child of a parent element. Note - doesn't check for deprecated elements</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>HTML parent element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elt</tt></i>:</span></td>
+<td>HTML element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if allowed; 0 otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlElementStatusHere"></a>htmlElementStatusHere ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>        htmlElementStatusHere   (const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * parent, <br>                                    const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> * elt)<br>
+</pre>
+<p>Checks whether an HTML element may be a direct child of a parent element. and if so whether it is valid or deprecated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>HTML parent element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elt</tt></i>:</span></td>
+<td>HTML element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>one of HTML_VALID, HTML_DEPRECATED, <a href="libxml2-HTMLparser.html#HTML_INVALID">HTML_INVALID</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlEncodeEntities"></a>htmlEncodeEntities ()</h3>
+<pre class="programlisting">int        htmlEncodeEntities              (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen, <br>                                       int quoteChar)<br>
+</pre>
+<p>Take a block of UTF-8 chars in and try to convert it to an ASCII plus HTML entities block of chars out.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>a pointer to an array of bytes to store the result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>outlen</tt></i>:</span></td>
+<td>the length of @out</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>a pointer to an array of UTF-8 chars</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inlen</tt></i>:</span></td>
+<td>the length of @in</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>quoteChar</tt></i>:</span></td>
+<td>the quote character to escape (' or ") or zero.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if success, -2 if the transcoding fails, or -1 otherwise The value of @inlen after return is the number of octets consumed as the return value is positive, else unpredictable. The value of @outlen after return is the number of octets consumed.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlEntityLookup"></a>htmlEntityLookup ()</h3>
+<pre class="programlisting">const <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> *        htmlEntityLookup        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Lookup the given entity in EntitiesTable TODO: the linear scan is really ugly, an hash table is really needed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the associated <a href="libxml2-HTMLparser.html#htmlEntityDescPtr">htmlEntityDescPtr</a> if found, NULL otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlEntityValueLookup"></a>htmlEntityValueLookup ()</h3>
+<pre class="programlisting">const <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> *        htmlEntityValueLookup   (unsigned int value)<br>
+</pre>
+<p>Lookup the given entity in EntitiesTable TODO: the linear scan is really ugly, an hash table is really needed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the entity's unicode value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the associated <a href="libxml2-HTMLparser.html#htmlEntityDescPtr">htmlEntityDescPtr</a> if found, NULL otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlFreeParserCtxt"></a>htmlFreeParserCtxt ()</h3>
+<pre class="programlisting">void       htmlFreeParserCtxt              (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Free all the memory used by a parser context. However the parsed document in ctxt-&gt;myDoc is not freed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlHandleOmittedElem"></a>htmlHandleOmittedElem ()</h3>
+<pre class="programlisting">int        htmlHandleOmittedElem           (int val)<br>
+</pre>
+<p>Set and return the previous value for handling HTML omitted tags.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>int 0 or 1</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the last value for 0 for no handling, 1 for auto insertion.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlIsAutoClosed"></a>htmlIsAutoClosed ()</h3>
+<pre class="programlisting">int        htmlIsAutoClosed                (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br>                                   <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> elem)<br>
+</pre>
+<p>The HTML DTD allows a tag to implicitly close other tags. The list is kept in htmlStartClose array. This function checks if a tag is autoclosed by one of it's child</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the HTML document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the HTML element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if autoclosed, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlIsScriptAttribute"></a>htmlIsScriptAttribute ()</h3>
+<pre class="programlisting">int        htmlIsScriptAttribute           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Check if an <a href="libxml2-SAX.html#attribute">attribute</a> is of content type Script</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>an <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 is the <a href="libxml2-SAX.html#attribute">attribute</a> is a script 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlNewParserCtxt"></a>htmlNewParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>  htmlNewParserCtxt       (void)<br>
+</pre>
+<p>Allocate and initialize a new parser context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> or NULL in case of allocation error</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlNodeStatus"></a>htmlNodeStatus ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlStatus">htmlStatus</a>        htmlNodeStatus          (const <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> node, <br>                                  int legacy)<br>
+</pre>
+<p>Checks whether the tree node is valid. Experimental (the author only uses the HTML enhancements in a SAX parser)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>an <a href="libxml2-HTMLparser.html#htmlNodePtr">htmlNodePtr</a> in a tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>legacy</tt></i>:</span></td>
+<td>whether to allow deprecated elements (YES is faster here for Element nodes)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>for Element nodes, a return from <a href="libxml2-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a> (if legacy allowed) or <a href="libxml2-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a> (otherwise). for Attribute nodes, a return from <a href="libxml2-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a> for other nodes, <a href="libxml2-HTMLparser.html#HTML_NA">HTML_NA</a> (no checks performed)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParseCharRef"></a>htmlParseCharRef ()</h3>
+<pre class="programlisting">int        htmlParseCharRef                (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse Reference declarations [66] CharRef ::= '&amp;#' [0-9]+ ';' | '&amp;#x' [0-9a-fA-F]+ ';'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the value parsed (as an int)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParseChunk"></a>htmlParseChunk ()</h3>
+<pre class="programlisting">int        htmlParseChunk                  (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                    const char * chunk, <br>                                        int size, <br>                                  int terminate)<br>
+</pre>
+<p>Parse a Chunk of memory</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>chunk</tt></i>:</span></td>
+<td>an char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size in byte of the chunk</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>terminate</tt></i>:</span></td>
+<td>last chunk indicator</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>zero if no error, the <a href="libxml2-xmlerror.html#xmlParserErrors">xmlParserErrors</a> otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParseDoc"></a>htmlParseDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlParseDoc            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * encoding)<br>
+</pre>
+<p>parse an HTML in-memory document and build a tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>a free form C string describing the HTML document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParseDocument"></a>htmlParseDocument ()</h3>
+<pre class="programlisting">int        htmlParseDocument               (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an HTML document (and build a tree if using the standard SAX interface).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0, -1 in case of error. the parser context is augmented as a result of the parsing.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParseElement"></a>htmlParseElement ()</h3>
+<pre class="programlisting">void       htmlParseElement                (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an HTML element, this is highly recursive this is kept for compatibility with previous code versions [39] element ::= EmptyElemTag | STag content ETag [41] Attribute ::= Name Eq AttValue</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParseEntityRef"></a>htmlParseEntityRef ()</h3>
+<pre class="programlisting">const <a href="libxml2-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a> *        htmlParseEntityRef      (<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a> ctxt, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** str)<br>
+</pre>
+<p>parse an HTML ENTITY references [68] EntityRef ::= '&amp;' Name ';'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>location to store the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the associated <a href="libxml2-HTMLparser.html#htmlEntityDescPtr">htmlEntityDescPtr</a> if found, or NULL otherwise, if non-NULL *str will have to be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlParseFile"></a>htmlParseFile ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlParseFile           (const char * filename, <br>                                     const char * encoding)<br>
+</pre>
+<p>parse an HTML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>a free form C string describing the HTML document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlReadDoc"></a>htmlReadDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlReadDoc             (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML in-memory document and build a tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to a zero terminated string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of htmlParserOption(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlReadFd"></a>htmlReadFd ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlReadFd              (int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an HTML from a file descriptor and build a tree. NOTE that the file descriptor will not be closed when the reader is closed or reset.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>fd</tt></i>:</span></td>
+<td>an open file descriptor</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of htmlParserOption(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlReadFile"></a>htmlReadFile ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlReadFile            (const char * filename, <br>                                     const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML file from the filesystem or the network.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file or URL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of htmlParserOption(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlReadIO"></a>htmlReadIO ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlReadIO              (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an HTML document from I/O functions and source and build a tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ioread</tt></i>:</span></td>
+<td>an I/O read function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioclose</tt></i>:</span></td>
+<td>an I/O close function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioctx</tt></i>:</span></td>
+<td>an I/O handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of htmlParserOption(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlReadMemory"></a>htmlReadMemory ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlReadMemory          (const char * buffer, <br>                                       int size, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML in-memory document and build a tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of htmlParserOption(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlSAXParseDoc"></a>htmlSAXParseDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlSAXParseDoc         (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * encoding, <br>                                     <a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br>                                     void * userData)<br>
+</pre>
+<p>Parse an HTML in-memory document. If sax is not NULL, use the SAX callbacks to handle parse events. If sax is NULL, fallback to the default DOM behavior and return a tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>a free form C string describing the HTML document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>userData</tt></i>:</span></td>
+<td>if using SAX, this pointer will be provided on callbacks.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree unless SAX is NULL or the document is not well formed.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlSAXParseFile"></a>htmlSAXParseFile ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlSAXParseFile        (const char * filename, <br>                                     const char * encoding, <br>                                     <a href="libxml2-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a> sax, <br>                                     void * userData)<br>
+</pre>
+<p>parse an HTML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>a free form C string describing the HTML document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>userData</tt></i>:</span></td>
+<td>if using SAX, this pointer will be provided on callbacks.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree unless SAX is NULL or the document is not well formed.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlTagLookup"></a>htmlTagLookup ()</h3>
+<pre class="programlisting">const <a href="libxml2-HTMLparser.html#htmlElemDesc">htmlElemDesc</a> *    htmlTagLookup   (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * tag)<br>
+</pre>
+<p>Lookup the HTML tag in the ElementTable</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>tag</tt></i>:</span></td>
+<td>The tag name in lowercase</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the related <a href="libxml2-HTMLparser.html#htmlElemDescPtr">htmlElemDescPtr</a> or NULL if not found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index ec5d113..203cb38 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>HTMLtree: specific APIs to process HTML tree, especially serialization</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-HTMLparser.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-SAX.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">HTMLtree</span>
-    </h2>
-    <p>HTMLtree - specific APIs to process HTML tree, especially serialization</p>
-    <p>this module implements a few function needed to process tree in an HTML specific way. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#HTML_ENTITY_REF_NODE">HTML_ENTITY_REF_NODE</a>;
-#define <a href="#HTML_COMMENT_NODE">HTML_COMMENT_NODE</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>HTMLtree: specific APIs to process HTML tree, especially serialization</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-HTMLparser.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-SAX.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">HTMLtree</span></h2>
+<p>HTMLtree - specific APIs to process HTML tree, especially serialization</p>
+<p>this module implements a few function needed to process tree in an HTML specific way. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#HTML_COMMENT_NODE">HTML_COMMENT_NODE</a>;
+#define <a href="#HTML_ENTITY_REF_NODE">HTML_ENTITY_REF_NODE</a>;
+#define <a href="#HTML_PI_NODE">HTML_PI_NODE</a>;
 #define <a href="#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a>;
 #define <a href="#HTML_TEXT_NODE">HTML_TEXT_NODE</a>;
-#define <a href="#HTML_PI_NODE">HTML_PI_NODE</a>;
-int    <a href="#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a>            (FILE * out, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const char * encoding, <br/>                                    int format);
-void   <a href="#htmlDocDumpMemory">htmlDocDumpMemory</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br/>                                      int * size);
-int    <a href="#htmlSaveFile">htmlSaveFile</a>                        (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur);
-int    <a href="#htmlDocDump">htmlDocDump</a>                  (FILE * f, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur);
-void   <a href="#htmlDocDumpMemoryFormat">htmlDocDumpMemoryFormat</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br/>                                      int * size, <br/>                                       int format);
-int    <a href="#htmlIsBooleanAttr">htmlIsBooleanAttr</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#htmlSaveFileFormat">htmlSaveFileFormat</a>            (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding, <br/>                                    int format);
-void   <a href="#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a>        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const char * encoding, <br/>                                    int format);
-int    <a href="#htmlSetMetaEncoding">htmlSetMetaEncoding</a>          (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * encoding);
-int    <a href="#htmlSaveFileEnc">htmlSaveFileEnc</a>                  (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding);
-void   <a href="#htmlNodeDumpOutput">htmlNodeDumpOutput</a>            (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const char * encoding);
-int    <a href="#htmlNodeDump">htmlNodeDump</a>                        (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlNewDoc">htmlNewDoc</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID);
+void   <a href="#htmlDocContentDumpFormatOutput">htmlDocContentDumpFormatOutput</a>    (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding, <br>                                     int format);
+void   <a href="#htmlDocContentDumpOutput">htmlDocContentDumpOutput</a>        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding);
+int    <a href="#htmlDocDump">htmlDocDump</a>                  (FILE * f, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur);
+void   <a href="#htmlDocDumpMemory">htmlDocDumpMemory</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br>                                       int * size);
+void   <a href="#htmlDocDumpMemoryFormat">htmlDocDumpMemoryFormat</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br>                                       int * size, <br>                                        int format);
 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#htmlGetMetaEncoding">htmlGetMetaEncoding</a>  (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc);
-void   <a href="#htmlNodeDumpFile">htmlNodeDumpFile</a>                (FILE * out, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-void   <a href="#htmlDocContentDumpFormatOutput">htmlDocContentDumpFormatOutput</a>    (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding, <br/>                                    int format);
-<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlNewDocNoDtD">htmlNewDocNoDtD</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID);
-void   <a href="#htmlDocContentDumpOutput">htmlDocContentDumpOutput</a>        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="HTML_COMMENT_NODE">Macro </a>HTML_COMMENT_NODE</h3><pre class="programlisting">#define <a href="#HTML_COMMENT_NODE">HTML_COMMENT_NODE</a>;
-</pre><p>Macro. A <a href="libxml2-SAX.html#comment">comment</a> in a HTML document is really implemented the same way as a <a href="libxml2-SAX.html#comment">comment</a> in an XML document.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="HTML_ENTITY_REF_NODE">Macro </a>HTML_ENTITY_REF_NODE</h3><pre class="programlisting">#define <a href="#HTML_ENTITY_REF_NODE">HTML_ENTITY_REF_NODE</a>;
-</pre><p>Macro. An entity <a href="libxml2-SAX.html#reference">reference</a> in a HTML document is really implemented the same way as an entity <a href="libxml2-SAX.html#reference">reference</a> in an XML document.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="HTML_PI_NODE">Macro </a>HTML_PI_NODE</h3><pre class="programlisting">#define <a href="#HTML_PI_NODE">HTML_PI_NODE</a>;
-</pre><p>Macro. A processing instruction in a HTML document is really implemented the same way as a processing instruction in an XML document.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="HTML_PRESERVE_NODE">Macro </a>HTML_PRESERVE_NODE</h3><pre class="programlisting">#define <a href="#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a>;
-</pre><p>Macro. A preserved node in a HTML document is really implemented the same way as a CDATA section in an XML document.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="HTML_TEXT_NODE">Macro </a>HTML_TEXT_NODE</h3><pre class="programlisting">#define <a href="#HTML_TEXT_NODE">HTML_TEXT_NODE</a>;
-</pre><p>Macro. A text node in a HTML document is really implemented the same way as a text node in an XML document.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlDocContentDumpFormatOutput"/>htmlDocContentDumpFormatOutput ()</h3><pre class="programlisting">void   htmlDocContentDumpFormatOutput  (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding, <br/>                                    int format)<br/>
-</pre><p>Dump an HTML document.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the HTML buffer output</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding string (unused)</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>should formatting spaces been added</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlDocContentDumpOutput"/>htmlDocContentDumpOutput ()</h3><pre class="programlisting">void       htmlDocContentDumpOutput        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding)<br/>
-</pre><p>Dump an HTML document. Formatting return/spaces are added.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the HTML buffer output</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding string (unused)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlDocDump"/>htmlDocDump ()</h3><pre class="programlisting">int  htmlDocDump                     (FILE * f, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur)<br/>
-</pre><p>Dump an HTML document to an open FILE.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the FILE*</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlDocDumpMemory"/>htmlDocDumpMemory ()</h3><pre class="programlisting">void     htmlDocDumpMemory               (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br/>                                      int * size)<br/>
-</pre><p>Dump an HTML document in memory and return the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * and it's size. It's up to the caller to free the memory.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>mem</tt></i>:</span></td><td>OUT: the memory pointer</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>OUT: the memory length</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlDocDumpMemoryFormat"/>htmlDocDumpMemoryFormat ()</h3><pre class="programlisting">void htmlDocDumpMemoryFormat         (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br/>                                      int * size, <br/>                                       int format)<br/>
-</pre><p>Dump an HTML document in memory and return the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * and it's size. It's up to the caller to free the memory.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>mem</tt></i>:</span></td><td>OUT: the memory pointer</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>OUT: the memory length</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>should formatting spaces been added</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlGetMetaEncoding"/>htmlGetMetaEncoding ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * htmlGetMetaEncoding     (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc)<br/>
-</pre><p>Encoding definition lookup in the Meta tags</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the current encoding as flagged in the HTML source</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlIsBooleanAttr"/>htmlIsBooleanAttr ()</h3><pre class="programlisting">int      htmlIsBooleanAttr               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Determine if a given <a href="libxml2-SAX.html#attribute">attribute</a> is a boolean attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the <a href="libxml2-SAX.html#attribute">attribute</a> to check</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>false if the <a href="libxml2-SAX.html#attribute">attribute</a> is not boolean, true otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlNewDoc"/>htmlNewDoc ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    htmlNewDoc              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID)<br/>
-</pre><p>Creates a new HTML document</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>URI for the dtd, or NULL</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the external ID of the DTD, or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new document</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlNewDocNoDtD"/>htmlNewDocNoDtD ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>  htmlNewDocNoDtD         (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID)<br/>
-</pre><p>Creates a new HTML document without a DTD node if @URI and @ExternalID are NULL</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>URI for the dtd, or NULL</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the external ID of the DTD, or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new document, do not initialize the DTD if not provided</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlNodeDump"/>htmlNodeDump ()</h3><pre class="programlisting">int        htmlNodeDump                    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Dump an HTML node, recursive behaviour,children are printed too, and formatting returns are added.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the HTML buffer output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlNodeDumpFile"/>htmlNodeDumpFile ()</h3><pre class="programlisting">void       htmlNodeDumpFile                (FILE * out, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Dump an HTML node, recursive behaviour,children are printed too, and formatting returns are added.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>the FILE pointer</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlNodeDumpFileFormat"/>htmlNodeDumpFileFormat ()</h3><pre class="programlisting">int    htmlNodeDumpFileFormat          (FILE * out, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const char * encoding, <br/>                                    int format)<br/>
-</pre><p>Dump an HTML node, recursive behaviour,children are printed too. TODO: if encoding == NULL try to save in the doc encoding</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>the FILE pointer</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>should formatting spaces been added</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlNodeDumpFormatOutput"/>htmlNodeDumpFormatOutput ()</h3><pre class="programlisting">void       htmlNodeDumpFormatOutput        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const char * encoding, <br/>                                    int format)<br/>
-</pre><p>Dump an HTML node, recursive behaviour,children are printed too.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the HTML buffer output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding string (unused)</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>should formatting spaces been added</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlNodeDumpOutput"/>htmlNodeDumpOutput ()</h3><pre class="programlisting">void   htmlNodeDumpOutput              (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const char * encoding)<br/>
-</pre><p>Dump an HTML node, recursive behaviour,children are printed too, and formatting returns/spaces are added.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the HTML buffer output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding string (unused)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlSaveFile"/>htmlSaveFile ()</h3><pre class="programlisting">int        htmlSaveFile                    (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur)<br/>
-</pre><p>Dump an HTML document to a file. If @filename is "-" the stdout file is used.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename (or URL)</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlSaveFileEnc"/>htmlSaveFileEnc ()</h3><pre class="programlisting">int  htmlSaveFileEnc                 (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding)<br/>
-</pre><p>Dump an HTML document to a file using a given encoding and formatting returns/spaces are added.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlSaveFileFormat"/>htmlSaveFileFormat ()</h3><pre class="programlisting">int    htmlSaveFileFormat              (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding, <br/>                                    int format)<br/>
-</pre><p>Dump an HTML document to a file using a given encoding.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>should formatting spaces been added</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlSetMetaEncoding"/>htmlSetMetaEncoding ()</h3><pre class="programlisting">int  htmlSetMetaEncoding             (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * encoding)<br/>
-</pre><p>Sets the current encoding in the Meta tags NOTE: this will not change the document content encoding, just the META flag associated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+int    <a href="#htmlIsBooleanAttr">htmlIsBooleanAttr</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlNewDoc">htmlNewDoc</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID);
+<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>    <a href="#htmlNewDocNoDtD">htmlNewDocNoDtD</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID);
+int    <a href="#htmlNodeDump">htmlNodeDump</a>                        (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+void   <a href="#htmlNodeDumpFile">htmlNodeDumpFile</a>                (FILE * out, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+int    <a href="#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a>            (FILE * out, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const char * encoding, <br>                                     int format);
+void   <a href="#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a>        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const char * encoding, <br>                                     int format);
+void   <a href="#htmlNodeDumpOutput">htmlNodeDumpOutput</a>            (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const char * encoding);
+int    <a href="#htmlSaveFile">htmlSaveFile</a>                        (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur);
+int    <a href="#htmlSaveFileEnc">htmlSaveFileEnc</a>                  (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding);
+int    <a href="#htmlSaveFileFormat">htmlSaveFileFormat</a>            (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding, <br>                                     int format);
+int    <a href="#htmlSetMetaEncoding">htmlSetMetaEncoding</a>          (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * encoding);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="HTML_COMMENT_NODE">Macro </a>HTML_COMMENT_NODE</h3>
+<pre class="programlisting">#define <a href="#HTML_COMMENT_NODE">HTML_COMMENT_NODE</a>;
+</pre>
+<p>Macro. A <a href="libxml2-SAX.html#comment">comment</a> in a HTML document is really implemented the same way as a <a href="libxml2-SAX.html#comment">comment</a> in an XML document.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="HTML_ENTITY_REF_NODE">Macro </a>HTML_ENTITY_REF_NODE</h3>
+<pre class="programlisting">#define <a href="#HTML_ENTITY_REF_NODE">HTML_ENTITY_REF_NODE</a>;
+</pre>
+<p>Macro. An entity <a href="libxml2-SAX.html#reference">reference</a> in a HTML document is really implemented the same way as an entity <a href="libxml2-SAX.html#reference">reference</a> in an XML document.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="HTML_PI_NODE">Macro </a>HTML_PI_NODE</h3>
+<pre class="programlisting">#define <a href="#HTML_PI_NODE">HTML_PI_NODE</a>;
+</pre>
+<p>Macro. A processing instruction in a HTML document is really implemented the same way as a processing instruction in an XML document.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="HTML_PRESERVE_NODE">Macro </a>HTML_PRESERVE_NODE</h3>
+<pre class="programlisting">#define <a href="#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a>;
+</pre>
+<p>Macro. A preserved node in a HTML document is really implemented the same way as a CDATA section in an XML document.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="HTML_TEXT_NODE">Macro </a>HTML_TEXT_NODE</h3>
+<pre class="programlisting">#define <a href="#HTML_TEXT_NODE">HTML_TEXT_NODE</a>;
+</pre>
+<p>Macro. A text node in a HTML document is really implemented the same way as a text node in an XML document.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlDocContentDumpFormatOutput"></a>htmlDocContentDumpFormatOutput ()</h3>
+<pre class="programlisting">void       htmlDocContentDumpFormatOutput  (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding, <br>                                     int format)<br>
+</pre>
+<p>Dump an HTML document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the HTML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding string (unused)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>should formatting spaces been added</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlDocContentDumpOutput"></a>htmlDocContentDumpOutput ()</h3>
+<pre class="programlisting">void       htmlDocContentDumpOutput        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding)<br>
+</pre>
+<p>Dump an HTML document. Formatting return/spaces are added.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the HTML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding string (unused)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlDocDump"></a>htmlDocDump ()</h3>
+<pre class="programlisting">int        htmlDocDump                     (FILE * f, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur)<br>
+</pre>
+<p>Dump an HTML document to an open FILE.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the FILE*</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlDocDumpMemory"></a>htmlDocDumpMemory ()</h3>
+<pre class="programlisting">void       htmlDocDumpMemory               (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br>                                       int * size)<br>
+</pre>
+<p>Dump an HTML document in memory and return the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * and it's size. It's up to the caller to free the memory.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mem</tt></i>:</span></td>
+<td>OUT: the memory pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>OUT: the memory length</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlDocDumpMemoryFormat"></a>htmlDocDumpMemoryFormat ()</h3>
+<pre class="programlisting">void       htmlDocDumpMemoryFormat         (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br>                                       int * size, <br>                                        int format)<br>
+</pre>
+<p>Dump an HTML document in memory and return the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * and it's size. It's up to the caller to free the memory.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mem</tt></i>:</span></td>
+<td>OUT: the memory pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>OUT: the memory length</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>should formatting spaces been added</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlGetMetaEncoding"></a>htmlGetMetaEncoding ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       htmlGetMetaEncoding     (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc)<br>
+</pre>
+<p>Encoding definition lookup in the Meta tags</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the current encoding as flagged in the HTML source</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlIsBooleanAttr"></a>htmlIsBooleanAttr ()</h3>
+<pre class="programlisting">int        htmlIsBooleanAttr               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Determine if a given <a href="libxml2-SAX.html#attribute">attribute</a> is a boolean attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the <a href="libxml2-SAX.html#attribute">attribute</a> to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>false if the <a href="libxml2-SAX.html#attribute">attribute</a> is not boolean, true otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlNewDoc"></a>htmlNewDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlNewDoc              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID)<br>
+</pre>
+<p>Creates a new HTML document</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>URI for the dtd, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the external ID of the DTD, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new document</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlNewDocNoDtD"></a>htmlNewDocNoDtD ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a>        htmlNewDocNoDtD         (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID)<br>
+</pre>
+<p>Creates a new HTML document without a DTD node if @URI and @ExternalID are NULL</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>URI for the dtd, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the external ID of the DTD, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new document, do not initialize the DTD if not provided</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlNodeDump"></a>htmlNodeDump ()</h3>
+<pre class="programlisting">int        htmlNodeDump                    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Dump an HTML node, recursive behaviour,children are printed too, and formatting returns are added.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the HTML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlNodeDumpFile"></a>htmlNodeDumpFile ()</h3>
+<pre class="programlisting">void       htmlNodeDumpFile                (FILE * out, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Dump an HTML node, recursive behaviour,children are printed too, and formatting returns are added.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>the FILE pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlNodeDumpFileFormat"></a>htmlNodeDumpFileFormat ()</h3>
+<pre class="programlisting">int        htmlNodeDumpFileFormat          (FILE * out, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const char * encoding, <br>                                     int format)<br>
+</pre>
+<p>Dump an HTML node, recursive behaviour,children are printed too. TODO: if encoding == NULL try to save in the doc encoding</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>the FILE pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>should formatting spaces been added</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlNodeDumpFormatOutput"></a>htmlNodeDumpFormatOutput ()</h3>
+<pre class="programlisting">void       htmlNodeDumpFormatOutput        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const char * encoding, <br>                                     int format)<br>
+</pre>
+<p>Dump an HTML node, recursive behaviour,children are printed too.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the HTML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding string (unused)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>should formatting spaces been added</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlNodeDumpOutput"></a>htmlNodeDumpOutput ()</h3>
+<pre class="programlisting">void       htmlNodeDumpOutput              (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const char * encoding)<br>
+</pre>
+<p>Dump an HTML node, recursive behaviour,children are printed too, and formatting returns/spaces are added.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the HTML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding string (unused)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlSaveFile"></a>htmlSaveFile ()</h3>
+<pre class="programlisting">int        htmlSaveFile                    (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur)<br>
+</pre>
+<p>Dump an HTML document to a file. If @filename is "-" the stdout file is used.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename (or URL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlSaveFileEnc"></a>htmlSaveFileEnc ()</h3>
+<pre class="programlisting">int        htmlSaveFileEnc                 (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding)<br>
+</pre>
+<p>Dump an HTML document to a file using a given encoding and formatting returns/spaces are added.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlSaveFileFormat"></a>htmlSaveFileFormat ()</h3>
+<pre class="programlisting">int        htmlSaveFileFormat              (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding, <br>                                     int format)<br>
+</pre>
+<p>Dump an HTML document to a file using a given encoding.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>should formatting spaces been added</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlSetMetaEncoding"></a>htmlSetMetaEncoding ()</h3>
+<pre class="programlisting">int        htmlSetMetaEncoding             (<a href="libxml2-HTMLparser.html#htmlDocPtr">htmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * encoding)<br>
+</pre>
+<p>Sets the current encoding in the Meta tags NOTE: this will not change the document content encoding, just the META flag associated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index aa51f3e..b87a6e6 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>SAX: Old SAX version 1 handler, deprecated</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-HTMLtree.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-SAX2.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">SAX</span>
-    </h2>
-    <p>SAX - Old SAX version 1 handler, deprecated</p>
-    <p>DEPRECATED set of SAX version 1 interfaces used to build the DOM tree. </p>
-    <p> WARNING: this module is deprecated !</p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">void       <a href="#comment">comment</a>                  (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-int    <a href="#checkNamespace">checkNamespace</a>                    (void * ctx, <br/>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespace);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>SAX: Old SAX version 1 handler, deprecated</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-HTMLtree.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-SAX2.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">SAX</span></h2>
+<p>SAX - Old SAX version 1 handler, deprecated</p>
+<p>DEPRECATED set of SAX version 1 interfaces used to build the DOM tree. </p>
+<p> WARNING: this module is deprecated !</p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">void     <a href="#attribute">attribute</a>                      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+void   <a href="#attributeDecl">attributeDecl</a>                      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     int type, <br>                                  int def, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br>                                         <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree);
+void   <a href="#cdataBlock">cdataBlock</a>                    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int len);
+void   <a href="#characters">characters</a>                    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len);
+int    <a href="#checkNamespace">checkNamespace</a>                    (void * ctx, <br>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespace);
+void   <a href="#comment">comment</a>                  (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+void   <a href="#elementDecl">elementDecl</a>                  (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content);
+void   <a href="#endDocument">endDocument</a>                  (void * ctx);
+void   <a href="#endElement">endElement</a>                    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+void   <a href="#entityDecl">entityDecl</a>                    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+void   <a href="#externalSubset">externalSubset</a>                    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
 int    <a href="#getColumnNumber">getColumnNumber</a>                  (void * ctx);
-void   <a href="#entityDecl">entityDecl</a>                    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-void   <a href="#attribute">attribute</a>                      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#getEntity">getEntity</a>              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#getLineNumber">getLineNumber</a>                      (void * ctx);
 <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#getNamespace">getNamespace</a>                (void * ctx);
-void   <a href="#setDocumentLocator">setDocumentLocator</a>            (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc);
-void   <a href="#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a>        (<a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> * hdlr, <br/>                                         int warning);
-void   <a href="#ignorableWhitespace">ignorableWhitespace</a>          (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len);
+<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#getParameterEntity">getParameterEntity</a>    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#getPublicId">getPublicId</a>          (void * ctx);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#getSystemId">getSystemId</a>          (void * ctx);
+void   <a href="#globalNamespace">globalNamespace</a>                  (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
 int    <a href="#hasExternalSubset">hasExternalSubset</a>              (void * ctx);
-void   <a href="#unparsedEntityDecl">unparsedEntityDecl</a>            (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName);
-void   <a href="#globalNamespace">globalNamespace</a>                  (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
 int    <a href="#hasInternalSubset">hasInternalSubset</a>              (void * ctx);
-void   <a href="#reference">reference</a>                      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void   <a href="#notationDecl">notationDecl</a>                        (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#getSystemId">getSystemId</a>          (void * ctx);
-void   <a href="#externalSubset">externalSubset</a>                    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
-<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#resolveEntity">resolveEntity</a>      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
-void   <a href="#startDocument">startDocument</a>                      (void * ctx);
-void   <a href="#setNamespace">setNamespace</a>                        (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void   <a href="#cdataBlock">cdataBlock</a>                    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int len);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#getPublicId">getPublicId</a>          (void * ctx);
+void   <a href="#ignorableWhitespace">ignorableWhitespace</a>          (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len);
 void   <a href="#inithtmlDefaultSAXHandler">inithtmlDefaultSAXHandler</a>      (<a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> * hdlr);
-void   <a href="#processingInstruction">processingInstruction</a>              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data);
-void   <a href="#endElement">endElement</a>                    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void   <a href="#namespaceDecl">namespaceDecl</a>                      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
-void   <a href="#startElement">startElement</a>                        (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts);
-<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#getEntity">getEntity</a>              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void   <a href="#characters">characters</a>                    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len);
-void   <a href="#elementDecl">elementDecl</a>                  (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content);
-<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#getParameterEntity">getParameterEntity</a>    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void   <a href="#attributeDecl">attributeDecl</a>                      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    int type, <br/>                                         int def, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br/>                                        <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree);
+void   <a href="#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a>        (<a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> * hdlr, <br>                                  int warning);
+void   <a href="#internalSubset">internalSubset</a>                    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
 int    <a href="#isStandalone">isStandalone</a>                        (void * ctx);
-void   <a href="#internalSubset">internalSubset</a>                    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
-void   <a href="#endDocument">endDocument</a>                  (void * ctx);
-int    <a href="#getLineNumber">getLineNumber</a>                      (void * ctx);
+void   <a href="#namespaceDecl">namespaceDecl</a>                      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
+void   <a href="#notationDecl">notationDecl</a>                        (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
+void   <a href="#processingInstruction">processingInstruction</a>              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data);
+void   <a href="#reference">reference</a>                      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#resolveEntity">resolveEntity</a>      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
+void   <a href="#setDocumentLocator">setDocumentLocator</a>            (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc);
+void   <a href="#setNamespace">setNamespace</a>                        (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+void   <a href="#startDocument">startDocument</a>                      (void * ctx);
+void   <a href="#startElement">startElement</a>                        (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts);
+void   <a href="#unparsedEntityDecl">unparsedEntityDecl</a>            (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="attribute"></a>attribute ()</h3>
+<pre class="programlisting">void       attribute                       (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Handle an <a href="libxml2-SAX.html#attribute">attribute</a> that has been read by the parser. The default handling is to convert the <a href="libxml2-SAX.html#attribute">attribute</a> into an DOM subtree and past it in a new <a href="libxml2-tree.html#xmlAttr">xmlAttr</a> element added to the element. DEPRECATED: use xmlSAX2Attribute()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>fullname</tt></i>:</span></td>
+<td>The <a href="libxml2-SAX.html#attribute">attribute</a> name, including namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>The <a href="libxml2-SAX.html#attribute">attribute</a> value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="attributeDecl"></a>attributeDecl ()</h3>
+<pre class="programlisting">void       attributeDecl                   (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     int type, <br>                                  int def, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br>                                         <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree)<br>
+</pre>
+<p>An <a href="libxml2-SAX.html#attribute">attribute</a> definition has been parsed DEPRECATED: use xmlSAX2AttributeDecl()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the name of the element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>fullname</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>def</tt></i>:</span></td>
+<td>the type of default value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>defaultValue</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> default value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>the tree of enumerated value set</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="cdataBlock"></a>cdataBlock ()</h3>
+<pre class="programlisting">void       cdataBlock                      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int len)<br>
+</pre>
+<p>called when a pcdata block has been parsed DEPRECATED: use xmlSAX2CDataBlock()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>The pcdata content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the block length</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="characters"></a>characters ()</h3>
+<pre class="programlisting">void       characters                      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len)<br>
+</pre>
+<p>receiving some chars from the parser. DEPRECATED: use xmlSAX2Characters()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="checkNamespace"></a>checkNamespace ()</h3>
+<pre class="programlisting">int        checkNamespace                  (void * ctx, <br>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespace)<br>
+</pre>
+<p>Check that the current element namespace is the same as the one read upon parsing. DEPRECATED</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespace</tt></i>:</span></td>
+<td>the namespace to check against</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="comment"></a>comment ()</h3>
+<pre class="programlisting">void       comment                 (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>A <a href="libxml2-SAX.html#comment">comment</a> has been parsed. DEPRECATED: use xmlSAX2Comment()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#comment">comment</a> content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="elementDecl"></a>elementDecl ()</h3>
+<pre class="programlisting">void       elementDecl                     (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content)<br>
+</pre>
+<p>An element definition has been parsed DEPRECATED: use xmlSAX2ElementDecl()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the element type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the element value tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="endDocument"></a>endDocument ()</h3>
+<pre class="programlisting">void       endDocument                     (void * ctx)<br>
+</pre>
+<p>called when the document end has been detected. DEPRECATED: use xmlSAX2EndDocument()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="endElement"></a>endElement ()</h3>
+<pre class="programlisting">void       endElement                      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>called when the end of an element has been detected. DEPRECATED: use xmlSAX2EndElement()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The element name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="entityDecl"></a>entityDecl ()</h3>
+<pre class="programlisting">void       entityDecl                      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>An entity definition has been parsed DEPRECATED: use xmlSAX2EntityDecl()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the entity type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the entity value (without processing).</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="externalSubset"></a>externalSubset ()</h3>
+<pre class="programlisting">void       externalSubset                  (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>Callback on external subset declaration. DEPRECATED: use xmlSAX2ExternalSubset()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the root element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the external ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the SYSTEM ID (e.g. filename or URL)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="getColumnNumber"></a>getColumnNumber ()</h3>
+<pre class="programlisting">int        getColumnNumber                 (void * ctx)<br>
+</pre>
+<p>Provide the column number of the current parsing point. DEPRECATED: use xmlSAX2GetColumnNumber()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an int</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="getEntity"></a>getEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  getEntity               (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Get an entity by name DEPRECATED: use xmlSAX2GetEntity()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="getLineNumber"></a>getLineNumber ()</h3>
+<pre class="programlisting">int        getLineNumber                   (void * ctx)<br>
+</pre>
+<p>Provide the line number of the current parsing point. DEPRECATED: use xmlSAX2GetLineNumber()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an int</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="getNamespace"></a>getNamespace ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  getNamespace            (void * ctx)<br>
+</pre>
+<p>Get the current element namespace. DEPRECATED</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> or NULL if none</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="getParameterEntity"></a>getParameterEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  getParameterEntity      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Get a parameter entity by name DEPRECATED: use xmlSAX2GetParameterEntity()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="getPublicId"></a>getPublicId ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       getPublicId             (void * ctx)<br>
+</pre>
+<p>Provides the public ID e.g. "-//SGMLSOURCE//DTD DEMO//EN" DEPRECATED: use xmlSAX2GetPublicId()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="getSystemId"></a>getSystemId ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       getSystemId             (void * ctx)<br>
+</pre>
+<p>Provides the system ID, basically URL or filename e.g. http://www.sgmlsource.com/dtds/memo.dtd DEPRECATED: use xmlSAX2GetSystemId()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="globalNamespace"></a>globalNamespace ()</h3>
+<pre class="programlisting">void       globalNamespace                 (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br>
+</pre>
+<p>An old global namespace has been parsed. DEPRECATED</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>href</tt></i>:</span></td>
+<td>the namespace associated URN</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the namespace prefix</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="hasExternalSubset"></a>hasExternalSubset ()</h3>
+<pre class="programlisting">int        hasExternalSubset               (void * ctx)<br>
+</pre>
+<p>Does this document has an external subset DEPRECATED: use xmlSAX2HasExternalSubset()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="hasInternalSubset"></a>hasInternalSubset ()</h3>
+<pre class="programlisting">int        hasInternalSubset               (void * ctx)<br>
+</pre>
+<p>Does this document has an internal subset DEPRECATED: use xmlSAX2HasInternalSubset()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="ignorableWhitespace"></a>ignorableWhitespace ()</h3>
+<pre class="programlisting">void       ignorableWhitespace             (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len)<br>
+</pre>
+<p>receiving some ignorable whitespaces from the parser. UNUSED: by default the DOM building will use <a href="libxml2-SAX.html#characters">characters</a> DEPRECATED: use xmlSAX2IgnorableWhitespace()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="inithtmlDefaultSAXHandler"></a>inithtmlDefaultSAXHandler ()</h3>
+<pre class="programlisting">void       inithtmlDefaultSAXHandler       (<a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> * hdlr)<br>
+</pre>
+<p>Initialize the default HTML SAX version 1 handler DEPRECATED: use xmlSAX2InitHtmlDefaultSAXHandler() for the new SAX2 blocks</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>hdlr</tt></i>:</span></td>
+<td>the SAX handler</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="initxmlDefaultSAXHandler"></a>initxmlDefaultSAXHandler ()</h3>
+<pre class="programlisting">void       initxmlDefaultSAXHandler        (<a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> * hdlr, <br>                                  int warning)<br>
+</pre>
+<p>Initialize the default XML SAX version 1 handler DEPRECATED: use xmlSAX2InitDefaultSAXHandler() for the new SAX2 blocks</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>hdlr</tt></i>:</span></td>
+<td>the SAX handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>warning</tt></i>:</span></td>
+<td>flag if non-zero sets the handler warning procedure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="internalSubset"></a>internalSubset ()</h3>
+<pre class="programlisting">void       internalSubset                  (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>Callback on internal subset declaration. DEPRECATED: use xmlSAX2InternalSubset()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the root element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the external ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the SYSTEM ID (e.g. filename or URL)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="isStandalone"></a>isStandalone ()</h3>
+<pre class="programlisting">int        isStandalone                    (void * ctx)<br>
+</pre>
+<p>Is this document tagged standalone ? DEPRECATED: use xmlSAX2IsStandalone()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="namespaceDecl"></a>namespaceDecl ()</h3>
+<pre class="programlisting">void       namespaceDecl                   (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br>
+</pre>
+<p>A namespace has been parsed. DEPRECATED</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>href</tt></i>:</span></td>
+<td>the namespace associated URN</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the namespace prefix</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="notationDecl"></a>notationDecl ()</h3>
+<pre class="programlisting">void       notationDecl                    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br>
+</pre>
+<p>What to do when a notation declaration has been parsed. DEPRECATED: use xmlSAX2NotationDecl()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The name of the notation</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="processingInstruction"></a>processingInstruction ()</h3>
+<pre class="programlisting">void       processingInstruction           (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data)<br>
+</pre>
+<p>A processing instruction has been parsed. DEPRECATED: use xmlSAX2ProcessingInstruction()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>target</tt></i>:</span></td>
+<td>the target name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the PI data's</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="reference"></a>reference ()</h3>
+<pre class="programlisting">void       reference                       (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>called when an entity <a href="libxml2-SAX.html#reference">reference</a> is detected. DEPRECATED: use xmlSAX2Reference()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The entity name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="resolveEntity"></a>resolveEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        resolveEntity   (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br>
+</pre>
+<p>The entity loader, to control the loading of external entities, the application can either: - override this resolveEntity() callback in the SAX block - or better use the xmlSetExternalEntityLoader() function to set up it's own entity resolution routine DEPRECATED: use xmlSAX2ResolveEntity()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> if inlined or NULL for DOM behaviour.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="setDocumentLocator"></a>setDocumentLocator ()</h3>
+<pre class="programlisting">void       setDocumentLocator              (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc)<br>
+</pre>
+<p>Receive the document locator at startup, actually <a href="libxml2-globals.html#xmlDefaultSAXLocator">xmlDefaultSAXLocator</a> Everything is available on the context, so this is useless in our case. DEPRECATED</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>loc</tt></i>:</span></td>
+<td>A SAX Locator</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="setNamespace"></a>setNamespace ()</h3>
+<pre class="programlisting">void       setNamespace                    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Set the current element namespace. DEPRECATED</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the namespace prefix</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="startDocument"></a>startDocument ()</h3>
+<pre class="programlisting">void       startDocument                   (void * ctx)<br>
+</pre>
+<p>called when the document start being processed. DEPRECATED: use xmlSAX2StartDocument()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="startElement"></a>startElement ()</h3>
+<pre class="programlisting">void       startElement                    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts)<br>
+</pre>
+<p>called when an opening tag has been processed. DEPRECATED: use xmlSAX2StartElement()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>fullname</tt></i>:</span></td>
+<td>The element name, including namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>atts</tt></i>:</span></td>
+<td>An array of name/value attributes pairs, NULL terminated</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="unparsedEntityDecl"></a>unparsedEntityDecl ()</h3>
+<pre class="programlisting">void       unparsedEntityDecl              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName)<br>
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="attribute"/>attribute ()</h3><pre class="programlisting">void     attribute                       (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Handle an <a href="libxml2-SAX.html#attribute">attribute</a> that has been read by the parser. The default handling is to convert the <a href="libxml2-SAX.html#attribute">attribute</a> into an DOM subtree and past it in a new <a href="libxml2-tree.html#xmlAttr">xmlAttr</a> element added to the element. DEPRECATED: use xmlSAX2Attribute()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>fullname</tt></i>:</span></td><td>The <a href="libxml2-SAX.html#attribute">attribute</a> name, including namespace prefix</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>The <a href="libxml2-SAX.html#attribute">attribute</a> value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="attributeDecl"/>attributeDecl ()</h3><pre class="programlisting">void     attributeDecl                   (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    int type, <br/>                                         int def, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br/>                                        <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree)<br/>
-</pre><p>An <a href="libxml2-SAX.html#attribute">attribute</a> definition has been parsed DEPRECATED: use xmlSAX2AttributeDecl()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the name of the element</td></tr><tr><td><span class="term"><i><tt>fullname</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> type</td></tr><tr><td><span class="term"><i><tt>def</tt></i>:</span></td><td>the type of default value</td></tr><tr><td><span class="term"><i><tt>defaultValue</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> default value</td></tr><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>the tree of enumerated value set</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="cdataBlock"/>cdataBlock ()</h3><pre class="programlisting">void   cdataBlock                      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int len)<br/>
-</pre><p>called when a pcdata block has been parsed DEPRECATED: use xmlSAX2CDataBlock()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>The pcdata content</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the block length</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="characters"/>characters ()</h3><pre class="programlisting">void   characters                      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len)<br/>
-</pre><p>receiving some chars from the parser. DEPRECATED: use xmlSAX2Characters()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="checkNamespace"/>checkNamespace ()</h3><pre class="programlisting">int    checkNamespace                  (void * ctx, <br/>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespace)<br/>
-</pre><p>Check that the current element namespace is the same as the one read upon parsing. DEPRECATED</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>namespace</tt></i>:</span></td><td>the namespace to check against</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="comment"/>comment ()</h3><pre class="programlisting">void comment                 (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>A <a href="libxml2-SAX.html#comment">comment</a> has been parsed. DEPRECATED: use xmlSAX2Comment()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#comment">comment</a> content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="elementDecl"/>elementDecl ()</h3><pre class="programlisting">void elementDecl                     (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content)<br/>
-</pre><p>An element definition has been parsed DEPRECATED: use xmlSAX2ElementDecl()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the element name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the element type</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the element value tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="endDocument"/>endDocument ()</h3><pre class="programlisting">void endDocument                     (void * ctx)<br/>
-</pre><p>called when the document end has been detected. DEPRECATED: use xmlSAX2EndDocument()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="endElement"/>endElement ()</h3><pre class="programlisting">void   endElement                      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>called when the end of an element has been detected. DEPRECATED: use xmlSAX2EndElement()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The element name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="entityDecl"/>entityDecl ()</h3><pre class="programlisting">void   entityDecl                      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>An entity definition has been parsed DEPRECATED: use xmlSAX2EntityDecl()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the entity type</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the entity value (without processing).</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="externalSubset"/>externalSubset ()</h3><pre class="programlisting">void   externalSubset                  (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>Callback on external subset declaration. DEPRECATED: use xmlSAX2ExternalSubset()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the root element name</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the external ID</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the SYSTEM ID (e.g. filename or URL)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="getColumnNumber"/>getColumnNumber ()</h3><pre class="programlisting">int  getColumnNumber                 (void * ctx)<br/>
-</pre><p>Provide the column number of the current parsing point. DEPRECATED: use xmlSAX2GetColumnNumber()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an int</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="getEntity"/>getEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>        getEntity               (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Get an entity by name DEPRECATED: use xmlSAX2GetEntity()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="getLineNumber"/>getLineNumber ()</h3><pre class="programlisting">int      getLineNumber                   (void * ctx)<br/>
-</pre><p>Provide the line number of the current parsing point. DEPRECATED: use xmlSAX2GetLineNumber()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an int</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="getNamespace"/>getNamespace ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  getNamespace            (void * ctx)<br/>
-</pre><p>Get the current element namespace. DEPRECATED</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> or NULL if none</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="getParameterEntity"/>getParameterEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      getParameterEntity      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Get a parameter entity by name DEPRECATED: use xmlSAX2GetParameterEntity()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="getPublicId"/>getPublicId ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * getPublicId             (void * ctx)<br/>
-</pre><p>Provides the public ID e.g. "-//SGMLSOURCE//DTD DEMO//EN" DEPRECATED: use xmlSAX2GetPublicId()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="getSystemId"/>getSystemId ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * getSystemId             (void * ctx)<br/>
-</pre><p>Provides the system ID, basically URL or filename e.g. http://www.sgmlsource.com/dtds/memo.dtd DEPRECATED: use xmlSAX2GetSystemId()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="globalNamespace"/>globalNamespace ()</h3><pre class="programlisting">void globalNamespace                 (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br/>
-</pre><p>An old global namespace has been parsed. DEPRECATED</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>href</tt></i>:</span></td><td>the namespace associated URN</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the namespace prefix</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="hasExternalSubset"/>hasExternalSubset ()</h3><pre class="programlisting">int      hasExternalSubset               (void * ctx)<br/>
-</pre><p>Does this document has an external subset DEPRECATED: use xmlSAX2HasExternalSubset()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="hasInternalSubset"/>hasInternalSubset ()</h3><pre class="programlisting">int      hasInternalSubset               (void * ctx)<br/>
-</pre><p>Does this document has an internal subset DEPRECATED: use xmlSAX2HasInternalSubset()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="ignorableWhitespace"/>ignorableWhitespace ()</h3><pre class="programlisting">void ignorableWhitespace             (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len)<br/>
-</pre><p>receiving some ignorable whitespaces from the parser. UNUSED: by default the DOM building will use <a href="libxml2-SAX.html#characters">characters</a> DEPRECATED: use xmlSAX2IgnorableWhitespace()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="inithtmlDefaultSAXHandler"/>inithtmlDefaultSAXHandler ()</h3><pre class="programlisting">void     inithtmlDefaultSAXHandler       (<a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> * hdlr)<br/>
-</pre><p>Initialize the default HTML SAX version 1 handler DEPRECATED: use xmlSAX2InitHtmlDefaultSAXHandler() for the new SAX2 blocks</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>hdlr</tt></i>:</span></td><td>the SAX handler</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="initxmlDefaultSAXHandler"/>initxmlDefaultSAXHandler ()</h3><pre class="programlisting">void       initxmlDefaultSAXHandler        (<a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> * hdlr, <br/>                                         int warning)<br/>
-</pre><p>Initialize the default XML SAX version 1 handler DEPRECATED: use xmlSAX2InitDefaultSAXHandler() for the new SAX2 blocks</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>hdlr</tt></i>:</span></td><td>the SAX handler</td></tr><tr><td><span class="term"><i><tt>warning</tt></i>:</span></td><td>flag if non-zero sets the handler warning procedure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="internalSubset"/>internalSubset ()</h3><pre class="programlisting">void   internalSubset                  (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>Callback on internal subset declaration. DEPRECATED: use xmlSAX2InternalSubset()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the root element name</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the external ID</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the SYSTEM ID (e.g. filename or URL)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="isStandalone"/>isStandalone ()</h3><pre class="programlisting">int        isStandalone                    (void * ctx)<br/>
-</pre><p>Is this document tagged standalone ? DEPRECATED: use xmlSAX2IsStandalone()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="namespaceDecl"/>namespaceDecl ()</h3><pre class="programlisting">void     namespaceDecl                   (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br/>
-</pre><p>A namespace has been parsed. DEPRECATED</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>href</tt></i>:</span></td><td>the namespace associated URN</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the namespace prefix</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="notationDecl"/>notationDecl ()</h3><pre class="programlisting">void       notationDecl                    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br/>
-</pre><p>What to do when a notation declaration has been parsed. DEPRECATED: use xmlSAX2NotationDecl()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The name of the notation</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="processingInstruction"/>processingInstruction ()</h3><pre class="programlisting">void     processingInstruction           (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data)<br/>
-</pre><p>A processing instruction has been parsed. DEPRECATED: use xmlSAX2ProcessingInstruction()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>target</tt></i>:</span></td><td>the target name</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the PI data's</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="reference"/>reference ()</h3><pre class="programlisting">void     reference                       (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>called when an entity <a href="libxml2-SAX.html#reference">reference</a> is detected. DEPRECATED: use xmlSAX2Reference()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The entity name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="resolveEntity"/>resolveEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>      resolveEntity   (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br/>
-</pre><p>The entity loader, to control the loading of external entities, the application can either: - override this resolveEntity() callback in the SAX block - or better use the xmlSetExternalEntityLoader() function to set up it's own entity resolution routine DEPRECATED: use xmlSAX2ResolveEntity()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> if inlined or NULL for DOM behaviour.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="setDocumentLocator"/>setDocumentLocator ()</h3><pre class="programlisting">void   setDocumentLocator              (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc)<br/>
-</pre><p>Receive the document locator at startup, actually <a href="libxml2-globals.html#xmlDefaultSAXLocator">xmlDefaultSAXLocator</a> Everything is available on the context, so this is useless in our case. DEPRECATED</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>loc</tt></i>:</span></td><td>A SAX Locator</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="setNamespace"/>setNamespace ()</h3><pre class="programlisting">void       setNamespace                    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Set the current element namespace. DEPRECATED</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the namespace prefix</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="startDocument"/>startDocument ()</h3><pre class="programlisting">void     startDocument                   (void * ctx)<br/>
-</pre><p>called when the document start being processed. DEPRECATED: use xmlSAX2StartDocument()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="startElement"/>startElement ()</h3><pre class="programlisting">void       startElement                    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts)<br/>
-</pre><p>called when an opening tag has been processed. DEPRECATED: use xmlSAX2StartElement()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>fullname</tt></i>:</span></td><td>The element name, including namespace prefix</td></tr><tr><td><span class="term"><i><tt>atts</tt></i>:</span></td><td>An array of name/value attributes pairs, NULL terminated</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="unparsedEntityDecl"/>unparsedEntityDecl ()</h3><pre class="programlisting">void   unparsedEntityDecl              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName)<br/>
-</pre><p>What to do when an unparsed entity declaration is parsed DEPRECATED: use xmlSAX2UnparsedEntityDecl()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The name of the entity</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr><tr><td><span class="term"><i><tt>notationName</tt></i>:</span></td><td>the name of the notation</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+<p>What to do when an unparsed entity declaration is parsed DEPRECATED: use xmlSAX2UnparsedEntityDecl()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The name of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>notationName</tt></i>:</span></td>
+<td>the name of the notation</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 15c7729..170423c 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>SAX2: SAX2 parser interface used to build the DOM tree</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-SAX.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-c14n.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">SAX2</span>
-    </h2>
-    <p>SAX2 - SAX2 parser interface used to build the DOM tree</p>
-    <p>those are the default SAX2 interfaces used by the library when building DOM tree. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">void       <a href="#xmlSAX2EndElementNs">xmlSAX2EndElementNs</a>          (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI);
-void   <a href="#xmlSAX2Reference">xmlSAX2Reference</a>                (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void   <a href="#xmlSAX2ElementDecl">xmlSAX2ElementDecl</a>            (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content);
-void   <a href="#xmlSAX2AttributeDecl">xmlSAX2AttributeDecl</a>                (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    int type, <br/>                                         int def, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br/>                                        <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree);
-void   <a href="#xmlSAX2Comment">xmlSAX2Comment</a>                    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>SAX2: SAX2 parser interface used to build the DOM tree</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-SAX.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-c14n.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">SAX2</span></h2>
+<p>SAX2 - SAX2 parser interface used to build the DOM tree</p>
+<p>those are the default SAX2 interfaces used by the library when building DOM tree. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">void     <a href="#htmlDefaultSAXHandlerInit">htmlDefaultSAXHandlerInit</a>      (void);
+void   <a href="#xmlDefaultSAXHandlerInit">xmlDefaultSAXHandlerInit</a>        (void);
+void   <a href="#xmlSAX2AttributeDecl">xmlSAX2AttributeDecl</a>                (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     int type, <br>                                  int def, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br>                                         <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree);
+void   <a href="#xmlSAX2CDataBlock">xmlSAX2CDataBlock</a>              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int len);
+void   <a href="#xmlSAX2Characters">xmlSAX2Characters</a>              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len);
+void   <a href="#xmlSAX2Comment">xmlSAX2Comment</a>                    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+void   <a href="#xmlSAX2ElementDecl">xmlSAX2ElementDecl</a>            (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content);
+void   <a href="#xmlSAX2EndDocument">xmlSAX2EndDocument</a>            (void * ctx);
+void   <a href="#xmlSAX2EndElement">xmlSAX2EndElement</a>              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+void   <a href="#xmlSAX2EndElementNs">xmlSAX2EndElementNs</a>          (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI);
+void   <a href="#xmlSAX2EntityDecl">xmlSAX2EntityDecl</a>              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+void   <a href="#xmlSAX2ExternalSubset">xmlSAX2ExternalSubset</a>              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
 int    <a href="#xmlSAX2GetColumnNumber">xmlSAX2GetColumnNumber</a>            (void * ctx);
-<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlSAX2GetEntity">xmlSAX2GetEntity</a>        (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void   <a href="#xmlSAX2UnparsedEntityDecl">xmlSAX2UnparsedEntityDecl</a>      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName);
-int    <a href="#xmlSAXVersion">xmlSAXVersion</a>                      (<a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * hdlr, <br/>                                       int version);
-void   <a href="#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a>    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len);
-void   <a href="#xmlSAX2NotationDecl">xmlSAX2NotationDecl</a>          (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
-void   <a href="#xmlSAX2StartDocument">xmlSAX2StartDocument</a>                (void * ctx);
-void   <a href="#xmlSAX2EndElement">xmlSAX2EndElement</a>              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a>        (void * ctx, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
-void   <a href="#xmlSAX2ExternalSubset">xmlSAX2ExternalSubset</a>              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
+<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlSAX2GetEntity">xmlSAX2GetEntity</a>        (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlSAX2GetLineNumber">xmlSAX2GetLineNumber</a>                (void * ctx);
+<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlSAX2GetParameterEntity">xmlSAX2GetParameterEntity</a>      (void * ctx, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlSAX2GetPublicId">xmlSAX2GetPublicId</a>    (void * ctx);
-int    <a href="#xmlSAX2IsStandalone">xmlSAX2IsStandalone</a>          (void * ctx);
-void   <a href="#xmlSAX2EndDocument">xmlSAX2EndDocument</a>            (void * ctx);
-void   <a href="#xmlSAX2ProcessingInstruction">xmlSAX2ProcessingInstruction</a>        (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data);
-void   <a href="#xmlSAX2InternalSubset">xmlSAX2InternalSubset</a>              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
-void   <a href="#xmlSAX2Characters">xmlSAX2Characters</a>              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len);
-int    <a href="#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a>                (int version);
-void   <a href="#xmlSAX2StartElement">xmlSAX2StartElement</a>          (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts);
-void   <a href="#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a>      (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc);
-void   <a href="#xmlSAX2CDataBlock">xmlSAX2CDataBlock</a>              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int len);
-void   <a href="#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a>              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         int nb_namespaces, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces, <br/>                                         int nb_attributes, <br/>                                        int nb_defaulted, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** attributes);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a>    (void * ctx);
 int    <a href="#xmlSAX2HasExternalSubset">xmlSAX2HasExternalSubset</a>        (void * ctx);
-void   <a href="#htmlDefaultSAXHandlerInit">htmlDefaultSAXHandlerInit</a>      (void);
-int    <a href="#xmlSAX2GetLineNumber">xmlSAX2GetLineNumber</a>                (void * ctx);
 int    <a href="#xmlSAX2HasInternalSubset">xmlSAX2HasInternalSubset</a>        (void * ctx);
+void   <a href="#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a>    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len);
+void   <a href="#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a>        (<a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * hdlr, <br>                                        int warning);
 void   <a href="#xmlSAX2InitHtmlDefaultSAXHandler">xmlSAX2InitHtmlDefaultSAXHandler</a>        (<a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * hdlr);
-void   <a href="#xmlDefaultSAXHandlerInit">xmlDefaultSAXHandlerInit</a>        (void);
-void   <a href="#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a>        (<a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * hdlr, <br/>                                       int warning);
-<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlSAX2GetParameterEntity">xmlSAX2GetParameterEntity</a>      (void * ctx, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a>    (void * ctx);
-void   <a href="#xmlSAX2EntityDecl">xmlSAX2EntityDecl</a>              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="htmlDefaultSAXHandlerInit"/>htmlDefaultSAXHandlerInit ()</h3><pre class="programlisting">void     htmlDefaultSAXHandlerInit       (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Initialize the default SAX handler</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDefaultSAXHandlerInit"/>xmlDefaultSAXHandlerInit ()</h3><pre class="programlisting">void       xmlDefaultSAXHandlerInit        (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Initialize the default SAX2 handler</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2AttributeDecl"/>xmlSAX2AttributeDecl ()</h3><pre class="programlisting">void       xmlSAX2AttributeDecl            (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    int type, <br/>                                         int def, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br/>                                        <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree)<br/>
-</pre><p>An <a href="libxml2-SAX.html#attribute">attribute</a> definition has been parsed</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the name of the element</td></tr><tr><td><span class="term"><i><tt>fullname</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> type</td></tr><tr><td><span class="term"><i><tt>def</tt></i>:</span></td><td>the type of default value</td></tr><tr><td><span class="term"><i><tt>defaultValue</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> default value</td></tr><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>the tree of enumerated value set</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2CDataBlock"/>xmlSAX2CDataBlock ()</h3><pre class="programlisting">void     xmlSAX2CDataBlock               (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int len)<br/>
-</pre><p>called when a pcdata block has been parsed</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>The pcdata content</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the block length</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2Characters"/>xmlSAX2Characters ()</h3><pre class="programlisting">void     xmlSAX2Characters               (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len)<br/>
-</pre><p>receiving some chars from the parser.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2Comment"/>xmlSAX2Comment ()</h3><pre class="programlisting">void   xmlSAX2Comment                  (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>A <a href="libxml2-SAX2.html#xmlSAX2Comment">xmlSAX2Comment</a> has been parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the <a href="libxml2-SAX2.html#xmlSAX2Comment">xmlSAX2Comment</a> content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2ElementDecl"/>xmlSAX2ElementDecl ()</h3><pre class="programlisting">void   xmlSAX2ElementDecl              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content)<br/>
-</pre><p>An element definition has been parsed</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the element name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the element type</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the element value tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2EndDocument"/>xmlSAX2EndDocument ()</h3><pre class="programlisting">void   xmlSAX2EndDocument              (void * ctx)<br/>
-</pre><p>called when the document end has been detected.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2EndElement"/>xmlSAX2EndElement ()</h3><pre class="programlisting">void     xmlSAX2EndElement               (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>called when the end of an element has been detected.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The element name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2EndElementNs"/>xmlSAX2EndElementNs ()</h3><pre class="programlisting">void xmlSAX2EndElementNs             (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI)<br/>
-</pre><p>SAX2 callback when an element end has been detected by the parser. It provides the namespace information for the element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>localname</tt></i>:</span></td><td>the local name of the element</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the element namespace prefix if available</td></tr><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the element namespace name if available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2EntityDecl"/>xmlSAX2EntityDecl ()</h3><pre class="programlisting">void     xmlSAX2EntityDecl               (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>An entity definition has been parsed</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the entity type</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the entity value (without processing).</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2ExternalSubset"/>xmlSAX2ExternalSubset ()</h3><pre class="programlisting">void     xmlSAX2ExternalSubset           (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>Callback on external subset declaration.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the root element name</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the external ID</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the SYSTEM ID (e.g. filename or URL)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2GetColumnNumber"/>xmlSAX2GetColumnNumber ()</h3><pre class="programlisting">int    xmlSAX2GetColumnNumber          (void * ctx)<br/>
-</pre><p>Provide the column number of the current parsing point.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an int</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2GetEntity"/>xmlSAX2GetEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlSAX2GetEntity        (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Get an entity by name</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2GetLineNumber"/>xmlSAX2GetLineNumber ()</h3><pre class="programlisting">int        xmlSAX2GetLineNumber            (void * ctx)<br/>
-</pre><p>Provide the line number of the current parsing point.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an int</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2GetParameterEntity"/>xmlSAX2GetParameterEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>        xmlSAX2GetParameterEntity       (void * ctx, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Get a parameter entity by name</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2GetPublicId"/>xmlSAX2GetPublicId ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlSAX2GetPublicId      (void * ctx)<br/>
-</pre><p>Provides the public ID e.g. "-//SGMLSOURCE//DTD DEMO//EN"</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2GetSystemId"/>xmlSAX2GetSystemId ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlSAX2GetSystemId      (void * ctx)<br/>
-</pre><p>Provides the system ID, basically URL or filename e.g. http://www.sgmlsource.com/dtds/memo.dtd</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2HasExternalSubset"/>xmlSAX2HasExternalSubset ()</h3><pre class="programlisting">int        xmlSAX2HasExternalSubset        (void * ctx)<br/>
-</pre><p>Does this document has an external subset</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2HasInternalSubset"/>xmlSAX2HasInternalSubset ()</h3><pre class="programlisting">int        xmlSAX2HasInternalSubset        (void * ctx)<br/>
-</pre><p>Does this document has an internal subset</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2IgnorableWhitespace"/>xmlSAX2IgnorableWhitespace ()</h3><pre class="programlisting">void   xmlSAX2IgnorableWhitespace      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len)<br/>
-</pre><p>receiving some ignorable whitespaces from the parser. UNUSED: by default the DOM building will use <a href="libxml2-SAX2.html#xmlSAX2Characters">xmlSAX2Characters</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2InitDefaultSAXHandler"/>xmlSAX2InitDefaultSAXHandler ()</h3><pre class="programlisting">void       xmlSAX2InitDefaultSAXHandler    (<a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * hdlr, <br/>                                       int warning)<br/>
-</pre><p>Initialize the default XML SAX2 handler</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>hdlr</tt></i>:</span></td><td>the SAX handler</td></tr><tr><td><span class="term"><i><tt>warning</tt></i>:</span></td><td>flag if non-zero sets the handler warning procedure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2InitHtmlDefaultSAXHandler"/>xmlSAX2InitHtmlDefaultSAXHandler ()</h3><pre class="programlisting">void       xmlSAX2InitHtmlDefaultSAXHandler        (<a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * hdlr)<br/>
-</pre><p>Initialize the default HTML SAX2 handler</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>hdlr</tt></i>:</span></td><td>the SAX handler</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2InternalSubset"/>xmlSAX2InternalSubset ()</h3><pre class="programlisting">void     xmlSAX2InternalSubset           (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>Callback on internal subset declaration.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the root element name</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the external ID</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the SYSTEM ID (e.g. filename or URL)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2IsStandalone"/>xmlSAX2IsStandalone ()</h3><pre class="programlisting">int  xmlSAX2IsStandalone             (void * ctx)<br/>
-</pre><p>Is this document tagged standalone ?</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2NotationDecl"/>xmlSAX2NotationDecl ()</h3><pre class="programlisting">void xmlSAX2NotationDecl             (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br/>
-</pre><p>What to do when a notation declaration has been parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The name of the notation</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2ProcessingInstruction"/>xmlSAX2ProcessingInstruction ()</h3><pre class="programlisting">void       xmlSAX2ProcessingInstruction    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data)<br/>
-</pre><p>A processing instruction has been parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>target</tt></i>:</span></td><td>the target name</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the PI data's</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2Reference"/>xmlSAX2Reference ()</h3><pre class="programlisting">void       xmlSAX2Reference                (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>called when an entity <a href="libxml2-SAX2.html#xmlSAX2Reference">xmlSAX2Reference</a> is detected.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The entity name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2ResolveEntity"/>xmlSAX2ResolveEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlSAX2ResolveEntity    (void * ctx, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br/>
-</pre><p>The entity loader, to control the loading of external entities, the application can either: - override this xmlSAX2ResolveEntity() callback in the SAX block - or better use the xmlSetExternalEntityLoader() function to set up it's own entity resolution routine</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> if inlined or NULL for DOM behaviour.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2SetDocumentLocator"/>xmlSAX2SetDocumentLocator ()</h3><pre class="programlisting">void     xmlSAX2SetDocumentLocator       (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc)<br/>
-</pre><p>Receive the document locator at startup, actually <a href="libxml2-globals.html#xmlDefaultSAXLocator">xmlDefaultSAXLocator</a> Everything is available on the context, so this is useless in our case.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>loc</tt></i>:</span></td><td>A SAX Locator</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2StartDocument"/>xmlSAX2StartDocument ()</h3><pre class="programlisting">void       xmlSAX2StartDocument            (void * ctx)<br/>
-</pre><p>called when the document start being processed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2StartElement"/>xmlSAX2StartElement ()</h3><pre class="programlisting">void xmlSAX2StartElement             (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts)<br/>
-</pre><p>called when an opening tag has been processed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>fullname</tt></i>:</span></td><td>The element name, including namespace prefix</td></tr><tr><td><span class="term"><i><tt>atts</tt></i>:</span></td><td>An array of name/value attributes pairs, NULL terminated</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2StartElementNs"/>xmlSAX2StartElementNs ()</h3><pre class="programlisting">void     xmlSAX2StartElementNs           (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         int nb_namespaces, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces, <br/>                                         int nb_attributes, <br/>                                        int nb_defaulted, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** attributes)<br/>
-</pre><p>SAX2 callback when an element start has been detected by the parser. It provides the namespace information for the element, as well as the new namespace declarations on the element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>localname</tt></i>:</span></td><td>the local name of the element</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the element namespace prefix if available</td></tr><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the element namespace name if available</td></tr><tr><td><span class="term"><i><tt>nb_namespaces</tt></i>:</span></td><td>number of namespace definitions on that node</td></tr><tr><td><span class="term"><i><tt>namespaces</tt></i>:</span></td><td>pointer to the array of prefix/URI pairs namespace definitions</td></tr><tr><td><span class="term"><i><tt>nb_attributes</tt></i>:</span></td><td>the number of attributes on that node</td></tr><tr><td><span class="term"><i><tt>nb_defaulted</tt></i>:</span></td><td>the number of defaulted attributes.</td></tr><tr><td><span class="term"><i><tt>attributes</tt></i>:</span></td><td>pointer to the array of (localname/prefix/URI/value/end) <a href="libxml2-SAX.html#attribute">attribute</a> values.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAX2UnparsedEntityDecl"/>xmlSAX2UnparsedEntityDecl ()</h3><pre class="programlisting">void     xmlSAX2UnparsedEntityDecl       (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName)<br/>
-</pre><p>What to do when an unparsed entity declaration is parsed</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The name of the entity</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr><tr><td><span class="term"><i><tt>notationName</tt></i>:</span></td><td>the name of the notation</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXDefaultVersion"/>xmlSAXDefaultVersion ()</h3><pre class="programlisting">int        xmlSAXDefaultVersion            (int version)<br/>
-</pre><p>Set the default version of SAX used globally by the library. By default, during initialization the default is set to 2. Note that it is generally a better coding style to use xmlSAXVersion() to set up the version explicitly for a given parsing context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>version</tt></i>:</span></td><td>the version, 1 or 2</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the previous value in case of success and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXVersion"/>xmlSAXVersion ()</h3><pre class="programlisting">int      xmlSAXVersion                   (<a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * hdlr, <br/>                                       int version)<br/>
-</pre><p>Initialize the default XML SAX handler according to the version</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>hdlr</tt></i>:</span></td><td>the SAX handler</td></tr><tr><td><span class="term"><i><tt>version</tt></i>:</span></td><td>the version, 1 or 2</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+void   <a href="#xmlSAX2InternalSubset">xmlSAX2InternalSubset</a>              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
+int    <a href="#xmlSAX2IsStandalone">xmlSAX2IsStandalone</a>          (void * ctx);
+void   <a href="#xmlSAX2NotationDecl">xmlSAX2NotationDecl</a>          (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
+void   <a href="#xmlSAX2ProcessingInstruction">xmlSAX2ProcessingInstruction</a>        (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data);
+void   <a href="#xmlSAX2Reference">xmlSAX2Reference</a>                (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a>        (void * ctx, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
+void   <a href="#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a>      (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc);
+void   <a href="#xmlSAX2StartDocument">xmlSAX2StartDocument</a>                (void * ctx);
+void   <a href="#xmlSAX2StartElement">xmlSAX2StartElement</a>          (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts);
+void   <a href="#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a>              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  int nb_namespaces, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces, <br>                                  int nb_attributes, <br>                                         int nb_defaulted, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** attributes);
+void   <a href="#xmlSAX2UnparsedEntityDecl">xmlSAX2UnparsedEntityDecl</a>      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName);
+int    <a href="#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a>                (int version);
+int    <a href="#xmlSAXVersion">xmlSAXVersion</a>                      (<a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * hdlr, <br>                                        int version);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlDefaultSAXHandlerInit"></a>htmlDefaultSAXHandlerInit ()</h3>
+<pre class="programlisting">void       htmlDefaultSAXHandlerInit       (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Initialize the default SAX handler</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDefaultSAXHandlerInit"></a>xmlDefaultSAXHandlerInit ()</h3>
+<pre class="programlisting">void       xmlDefaultSAXHandlerInit        (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Initialize the default SAX2 handler</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2AttributeDecl"></a>xmlSAX2AttributeDecl ()</h3>
+<pre class="programlisting">void       xmlSAX2AttributeDecl            (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     int type, <br>                                  int def, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br>                                         <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree)<br>
+</pre>
+<p>An <a href="libxml2-SAX.html#attribute">attribute</a> definition has been parsed</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the name of the element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>fullname</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>def</tt></i>:</span></td>
+<td>the type of default value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>defaultValue</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> default value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>the tree of enumerated value set</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2CDataBlock"></a>xmlSAX2CDataBlock ()</h3>
+<pre class="programlisting">void       xmlSAX2CDataBlock               (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int len)<br>
+</pre>
+<p>called when a pcdata block has been parsed</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>The pcdata content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the block length</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2Characters"></a>xmlSAX2Characters ()</h3>
+<pre class="programlisting">void       xmlSAX2Characters               (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len)<br>
+</pre>
+<p>receiving some chars from the parser.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2Comment"></a>xmlSAX2Comment ()</h3>
+<pre class="programlisting">void       xmlSAX2Comment                  (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>A <a href="libxml2-SAX2.html#xmlSAX2Comment">xmlSAX2Comment</a> has been parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX2.html#xmlSAX2Comment">xmlSAX2Comment</a> content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2ElementDecl"></a>xmlSAX2ElementDecl ()</h3>
+<pre class="programlisting">void       xmlSAX2ElementDecl              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content)<br>
+</pre>
+<p>An element definition has been parsed</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the element type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the element value tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2EndDocument"></a>xmlSAX2EndDocument ()</h3>
+<pre class="programlisting">void       xmlSAX2EndDocument              (void * ctx)<br>
+</pre>
+<p>called when the document end has been detected.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2EndElement"></a>xmlSAX2EndElement ()</h3>
+<pre class="programlisting">void       xmlSAX2EndElement               (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>called when the end of an element has been detected.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The element name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2EndElementNs"></a>xmlSAX2EndElementNs ()</h3>
+<pre class="programlisting">void       xmlSAX2EndElementNs             (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI)<br>
+</pre>
+<p>SAX2 callback when an element end has been detected by the parser. It provides the namespace information for the element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>localname</tt></i>:</span></td>
+<td>the local name of the element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the element namespace prefix if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the element namespace name if available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2EntityDecl"></a>xmlSAX2EntityDecl ()</h3>
+<pre class="programlisting">void       xmlSAX2EntityDecl               (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>An entity definition has been parsed</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the entity type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the entity value (without processing).</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2ExternalSubset"></a>xmlSAX2ExternalSubset ()</h3>
+<pre class="programlisting">void       xmlSAX2ExternalSubset           (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>Callback on external subset declaration.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the root element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the external ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the SYSTEM ID (e.g. filename or URL)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2GetColumnNumber"></a>xmlSAX2GetColumnNumber ()</h3>
+<pre class="programlisting">int        xmlSAX2GetColumnNumber          (void * ctx)<br>
+</pre>
+<p>Provide the column number of the current parsing point.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an int</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2GetEntity"></a>xmlSAX2GetEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlSAX2GetEntity        (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Get an entity by name</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2GetLineNumber"></a>xmlSAX2GetLineNumber ()</h3>
+<pre class="programlisting">int        xmlSAX2GetLineNumber            (void * ctx)<br>
+</pre>
+<p>Provide the line number of the current parsing point.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an int</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2GetParameterEntity"></a>xmlSAX2GetParameterEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlSAX2GetParameterEntity       (void * ctx, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Get a parameter entity by name</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2GetPublicId"></a>xmlSAX2GetPublicId ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlSAX2GetPublicId      (void * ctx)<br>
+</pre>
+<p>Provides the public ID e.g. "-//SGMLSOURCE//DTD DEMO//EN"</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2GetSystemId"></a>xmlSAX2GetSystemId ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlSAX2GetSystemId      (void * ctx)<br>
+</pre>
+<p>Provides the system ID, basically URL or filename e.g. http://www.sgmlsource.com/dtds/memo.dtd</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2HasExternalSubset"></a>xmlSAX2HasExternalSubset ()</h3>
+<pre class="programlisting">int        xmlSAX2HasExternalSubset        (void * ctx)<br>
+</pre>
+<p>Does this document has an external subset</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2HasInternalSubset"></a>xmlSAX2HasInternalSubset ()</h3>
+<pre class="programlisting">int        xmlSAX2HasInternalSubset        (void * ctx)<br>
+</pre>
+<p>Does this document has an internal subset</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2IgnorableWhitespace"></a>xmlSAX2IgnorableWhitespace ()</h3>
+<pre class="programlisting">void       xmlSAX2IgnorableWhitespace      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len)<br>
+</pre>
+<p>receiving some ignorable whitespaces from the parser. UNUSED: by default the DOM building will use <a href="libxml2-SAX2.html#xmlSAX2Characters">xmlSAX2Characters</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2InitDefaultSAXHandler"></a>xmlSAX2InitDefaultSAXHandler ()</h3>
+<pre class="programlisting">void       xmlSAX2InitDefaultSAXHandler    (<a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * hdlr, <br>                                        int warning)<br>
+</pre>
+<p>Initialize the default XML SAX2 handler</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>hdlr</tt></i>:</span></td>
+<td>the SAX handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>warning</tt></i>:</span></td>
+<td>flag if non-zero sets the handler warning procedure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2InitHtmlDefaultSAXHandler"></a>xmlSAX2InitHtmlDefaultSAXHandler ()</h3>
+<pre class="programlisting">void       xmlSAX2InitHtmlDefaultSAXHandler        (<a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * hdlr)<br>
+</pre>
+<p>Initialize the default HTML SAX2 handler</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>hdlr</tt></i>:</span></td>
+<td>the SAX handler</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2InternalSubset"></a>xmlSAX2InternalSubset ()</h3>
+<pre class="programlisting">void       xmlSAX2InternalSubset           (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>Callback on internal subset declaration.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the root element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the external ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the SYSTEM ID (e.g. filename or URL)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2IsStandalone"></a>xmlSAX2IsStandalone ()</h3>
+<pre class="programlisting">int        xmlSAX2IsStandalone             (void * ctx)<br>
+</pre>
+<p>Is this document tagged standalone ?</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2NotationDecl"></a>xmlSAX2NotationDecl ()</h3>
+<pre class="programlisting">void       xmlSAX2NotationDecl             (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br>
+</pre>
+<p>What to do when a notation declaration has been parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The name of the notation</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2ProcessingInstruction"></a>xmlSAX2ProcessingInstruction ()</h3>
+<pre class="programlisting">void       xmlSAX2ProcessingInstruction    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data)<br>
+</pre>
+<p>A processing instruction has been parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>target</tt></i>:</span></td>
+<td>the target name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the PI data's</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2Reference"></a>xmlSAX2Reference ()</h3>
+<pre class="programlisting">void       xmlSAX2Reference                (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>called when an entity <a href="libxml2-SAX2.html#xmlSAX2Reference">xmlSAX2Reference</a> is detected.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The entity name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2ResolveEntity"></a>xmlSAX2ResolveEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlSAX2ResolveEntity    (void * ctx, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br>
+</pre>
+<p>The entity loader, to control the loading of external entities, the application can either: - override this xmlSAX2ResolveEntity() callback in the SAX block - or better use the xmlSetExternalEntityLoader() function to set up it's own entity resolution routine</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> if inlined or NULL for DOM behaviour.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2SetDocumentLocator"></a>xmlSAX2SetDocumentLocator ()</h3>
+<pre class="programlisting">void       xmlSAX2SetDocumentLocator       (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc)<br>
+</pre>
+<p>Receive the document locator at startup, actually <a href="libxml2-globals.html#xmlDefaultSAXLocator">xmlDefaultSAXLocator</a> Everything is available on the context, so this is useless in our case.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>loc</tt></i>:</span></td>
+<td>A SAX Locator</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2StartDocument"></a>xmlSAX2StartDocument ()</h3>
+<pre class="programlisting">void       xmlSAX2StartDocument            (void * ctx)<br>
+</pre>
+<p>called when the document start being processed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2StartElement"></a>xmlSAX2StartElement ()</h3>
+<pre class="programlisting">void       xmlSAX2StartElement             (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts)<br>
+</pre>
+<p>called when an opening tag has been processed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>fullname</tt></i>:</span></td>
+<td>The element name, including namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>atts</tt></i>:</span></td>
+<td>An array of name/value attributes pairs, NULL terminated</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2StartElementNs"></a>xmlSAX2StartElementNs ()</h3>
+<pre class="programlisting">void       xmlSAX2StartElementNs           (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  int nb_namespaces, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces, <br>                                  int nb_attributes, <br>                                         int nb_defaulted, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** attributes)<br>
+</pre>
+<p>SAX2 callback when an element start has been detected by the parser. It provides the namespace information for the element, as well as the new namespace declarations on the element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>localname</tt></i>:</span></td>
+<td>the local name of the element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the element namespace prefix if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the element namespace name if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nb_namespaces</tt></i>:</span></td>
+<td>number of namespace definitions on that node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaces</tt></i>:</span></td>
+<td>pointer to the array of prefix/URI pairs namespace definitions</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nb_attributes</tt></i>:</span></td>
+<td>the number of attributes on that node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nb_defaulted</tt></i>:</span></td>
+<td>the number of defaulted attributes.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attributes</tt></i>:</span></td>
+<td>pointer to the array of (localname/prefix/URI/value/end) <a href="libxml2-SAX.html#attribute">attribute</a> values.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAX2UnparsedEntityDecl"></a>xmlSAX2UnparsedEntityDecl ()</h3>
+<pre class="programlisting">void       xmlSAX2UnparsedEntityDecl       (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName)<br>
+</pre>
+<p>What to do when an unparsed entity declaration is parsed</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The name of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>notationName</tt></i>:</span></td>
+<td>the name of the notation</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXDefaultVersion"></a>xmlSAXDefaultVersion ()</h3>
+<pre class="programlisting">int        xmlSAXDefaultVersion            (int version)<br>
+</pre>
+<p>Set the default version of SAX used globally by the library. By default, during initialization the default is set to 2. Note that it is generally a better coding style to use xmlSAXVersion() to set up the version explicitly for a given parsing context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>version</tt></i>:</span></td>
+<td>the version, 1 or 2</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the previous value in case of success and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXVersion"></a>xmlSAXVersion ()</h3>
+<pre class="programlisting">int        xmlSAXVersion                   (<a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * hdlr, <br>                                        int version)<br>
+</pre>
+<p>Initialize the default XML SAX handler according to the version</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>hdlr</tt></i>:</span></td>
+<td>the SAX handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>version</tt></i>:</span></td>
+<td>the version, 1 or 2</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 602d932..b2cef08 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>c14n: Provide Canonical XML and Exclusive XML Canonicalization</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-SAX2.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-catalog.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">c14n</span>
-    </h2>
-    <p>c14n - Provide Canonical XML and Exclusive XML Canonicalization</p>
-    <p>the c14n modules provides a  "Canonical XML" implementation</p>
-    <p>Author(s): Aleksey Sanin &lt;aleksey@aleksey.com&gt; </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef enum <a href="#xmlC14NMode">xmlC14NMode</a>;
-int    <a href="#xmlC14NExecute">xmlC14NExecute</a>                    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-c14n.html#xmlC14NIsVisibleCallback">xmlC14NIsVisibleCallback</a> is_visible_callback, <br/>                                    void * user_data, <br/>                                         int mode, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br/>                                    int with_comments, <br/>                                        <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf);
-int    <a href="#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a>                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                       int mode, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br/>                                    int with_comments, <br/>                                        <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf);
-typedef int <a href="#xmlC14NIsVisibleCallback">xmlC14NIsVisibleCallback</a>   (void * user_data, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent);
-int    <a href="#xmlC14NDocSave">xmlC14NDocSave</a>                    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                       int mode, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br/>                                    int with_comments, <br/>                                        const char * filename, <br/>                                    int compression);
-int    <a href="#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a>                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                       int mode, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br/>                                    int with_comments, <br/>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>c14n: Provide Canonical XML and Exclusive XML Canonicalization</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-SAX2.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-catalog.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">c14n</span></h2>
+<p>c14n - Provide Canonical XML and Exclusive XML Canonicalization</p>
+<p>the c14n modules provides a  "Canonical XML" implementation</p>
+<p>Author(s): Aleksey Sanin &lt;aleksey@aleksey.com&gt; </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef enum <a href="#xmlC14NMode">xmlC14NMode</a>;
+int    <a href="#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a>                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                        int mode, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br>                                     int with_comments, <br>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr);
+int    <a href="#xmlC14NDocSave">xmlC14NDocSave</a>                    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                        int mode, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br>                                     int with_comments, <br>                                         const char * filename, <br>                                     int compression);
+int    <a href="#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a>                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                        int mode, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br>                                     int with_comments, <br>                                         <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf);
+int    <a href="#xmlC14NExecute">xmlC14NExecute</a>                    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-c14n.html#xmlC14NIsVisibleCallback">xmlC14NIsVisibleCallback</a> is_visible_callback, <br>                                     void * user_data, <br>                                  int mode, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br>                                     int with_comments, <br>                                         <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf);
+typedef int <a href="#xmlC14NIsVisibleCallback">xmlC14NIsVisibleCallback</a>   (void * user_data, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlC14NMode">Enum </a>xmlC14NMode</h3><pre class="programlisting">enum <a href="#xmlC14NMode">xmlC14NMode</a> {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlC14NMode">Enum </a>xmlC14NMode</h3>
+<pre class="programlisting">enum <a href="#xmlC14NMode">xmlC14NMode</a> {
     <a name="XML_C14N_1_0">XML_C14N_1_0</a> = 0 /* Original C14N 1.0 spec */
     <a name="XML_C14N_EXCLUSIVE_1_0">XML_C14N_EXCLUSIVE_1_0</a> = 1 /* Exclusive C14N 1.0 spec */
     <a name="XML_C14N_1_1">XML_C14N_1_1</a> = 2 /*  C14N 1.1 spec */
 };
-</pre><p/>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlC14NIsVisibleCallback"></a>Function type xmlC14NIsVisibleCallback</h3>
+<pre class="programlisting">int        xmlC14NIsVisibleCallback        (void * user_data, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent)<br>
+</pre>
+<p>Signature for a C14N callback on visible nodes</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>user data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>the parent node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the node should be included</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlC14NDocDumpMemory"></a>xmlC14NDocDumpMemory ()</h3>
+<pre class="programlisting">int        xmlC14NDocDumpMemory            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                        int mode, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br>                                     int with_comments, <br>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr)<br>
+</pre>
+<p>Dumps the canonized image of given XML document into memory. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the XML document for canonization</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nodes</tt></i>:</span></td>
+<td>the nodes set to be included in the canonized image or NULL if all document nodes should be included</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mode</tt></i>:</span></td>
+<td>the c14n mode (see @xmlC14NMode)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inclusive_ns_prefixes</tt></i>:</span></td>
+<td>the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>with_comments</tt></i>:</span></td>
+<td>include comments in the result (!=0) or not (==0)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc_txt_ptr</tt></i>:</span></td>
+<td>the memory pointer for allocated canonical XML text; the caller of this functions is responsible for calling xmlFree() to free allocated memory</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written on success or a negative value on fail</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlC14NDocSave"></a>xmlC14NDocSave ()</h3>
+<pre class="programlisting">int        xmlC14NDocSave                  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                        int mode, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br>                                     int with_comments, <br>                                         const char * filename, <br>                                     int compression)<br>
+</pre>
+<p>Dumps the canonized image of given XML document into the file. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the XML document for canonization</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nodes</tt></i>:</span></td>
+<td>the nodes set to be included in the canonized image or NULL if all document nodes should be included</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mode</tt></i>:</span></td>
+<td>the c14n mode (see @xmlC14NMode)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inclusive_ns_prefixes</tt></i>:</span></td>
+<td>the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>with_comments</tt></i>:</span></td>
+<td>include comments in the result (!=0) or not (==0)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename to store canonical XML image</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>compression</tt></i>:</span></td>
+<td>the compression level (zlib required): -1 - libxml default, 0 - uncompressed, &gt;0 - compression level</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written success or a negative value on fail</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlC14NDocSaveTo"></a>xmlC14NDocSaveTo ()</h3>
+<pre class="programlisting">int        xmlC14NDocSaveTo                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                        int mode, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br>                                     int with_comments, <br>                                         <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf)<br>
+</pre>
+<p>Dumps the canonized image of given XML document into the provided buffer. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the XML document for canonization</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nodes</tt></i>:</span></td>
+<td>the nodes set to be included in the canonized image or NULL if all document nodes should be included</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mode</tt></i>:</span></td>
+<td>the c14n mode (see @xmlC14NMode)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inclusive_ns_prefixes</tt></i>:</span></td>
+<td>the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>with_comments</tt></i>:</span></td>
+<td>include comments in the result (!=0) or not (==0)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the output buffer to store canonical XML; this buffer MUST have encoder==NULL because C14N requires UTF-8 output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>non-negative value on success or a negative value on fail</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlC14NExecute"></a>xmlC14NExecute ()</h3>
+<pre class="programlisting">int        xmlC14NExecute                  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-c14n.html#xmlC14NIsVisibleCallback">xmlC14NIsVisibleCallback</a> is_visible_callback, <br>                                     void * user_data, <br>                                  int mode, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br>                                     int with_comments, <br>                                         <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf)<br>
+</pre>
+<p>Dumps the canonized image of given XML document into the provided buffer. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the XML document for canonization</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>is_visible_callback</tt></i>:</span></td>
+<td>the function to use to determine is node visible or not</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>the first parameter for @is_visible_callback function (in most cases, it is nodes set)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mode</tt></i>:</span></td>
+<td>the c14n mode (see @xmlC14NMode)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inclusive_ns_prefixes</tt></i>:</span></td>
+<td>the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>with_comments</tt></i>:</span></td>
+<td>include comments in the result (!=0) or not (==0)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the output buffer to store canonical XML; this buffer MUST have encoder==NULL because C14N requires UTF-8 output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>non-negative value on success or a negative value on fail</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlC14NIsVisibleCallback"/>Function type xmlC14NIsVisibleCallback</h3><pre class="programlisting">int     xmlC14NIsVisibleCallback        (void * user_data, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent)<br/>
-</pre><p>Signature for a C14N callback on visible nodes</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>user data</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>the parent node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the node should be included</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlC14NDocDumpMemory"/>xmlC14NDocDumpMemory ()</h3><pre class="programlisting">int        xmlC14NDocDumpMemory            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                       int mode, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br/>                                    int with_comments, <br/>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr)<br/>
-</pre><p>Dumps the canonized image of given XML document into memory. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the XML document for canonization</td></tr><tr><td><span class="term"><i><tt>nodes</tt></i>:</span></td><td>the nodes set to be included in the canonized image or NULL if all document nodes should be included</td></tr><tr><td><span class="term"><i><tt>mode</tt></i>:</span></td><td>the c14n mode (see @xmlC14NMode)</td></tr><tr><td><span class="term"><i><tt>inclusive_ns_prefixes</tt></i>:</span></td><td>the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)</td></tr><tr><td><span class="term"><i><tt>with_comments</tt></i>:</span></td><td>include comments in the result (!=0) or not (==0)</td></tr><tr><td><span class="term"><i><tt>doc_txt_ptr</tt></i>:</span></td><td>the memory pointer for allocated canonical XML text; the caller of this functions is responsible for calling xmlFree() to free allocated memory</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written on success or a negative value on fail</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlC14NDocSave"/>xmlC14NDocSave ()</h3><pre class="programlisting">int    xmlC14NDocSave                  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                       int mode, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br/>                                    int with_comments, <br/>                                        const char * filename, <br/>                                    int compression)<br/>
-</pre><p>Dumps the canonized image of given XML document into the file. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the XML document for canonization</td></tr><tr><td><span class="term"><i><tt>nodes</tt></i>:</span></td><td>the nodes set to be included in the canonized image or NULL if all document nodes should be included</td></tr><tr><td><span class="term"><i><tt>mode</tt></i>:</span></td><td>the c14n mode (see @xmlC14NMode)</td></tr><tr><td><span class="term"><i><tt>inclusive_ns_prefixes</tt></i>:</span></td><td>the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)</td></tr><tr><td><span class="term"><i><tt>with_comments</tt></i>:</span></td><td>include comments in the result (!=0) or not (==0)</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename to store canonical XML image</td></tr><tr><td><span class="term"><i><tt>compression</tt></i>:</span></td><td>the compression level (zlib required): -1 - libxml default, 0 - uncompressed, &gt;0 - compression level</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written success or a negative value on fail</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlC14NDocSaveTo"/>xmlC14NDocSaveTo ()</h3><pre class="programlisting">int        xmlC14NDocSaveTo                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                       int mode, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br/>                                    int with_comments, <br/>                                        <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf)<br/>
-</pre><p>Dumps the canonized image of given XML document into the provided buffer. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the XML document for canonization</td></tr><tr><td><span class="term"><i><tt>nodes</tt></i>:</span></td><td>the nodes set to be included in the canonized image or NULL if all document nodes should be included</td></tr><tr><td><span class="term"><i><tt>mode</tt></i>:</span></td><td>the c14n mode (see @xmlC14NMode)</td></tr><tr><td><span class="term"><i><tt>inclusive_ns_prefixes</tt></i>:</span></td><td>the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)</td></tr><tr><td><span class="term"><i><tt>with_comments</tt></i>:</span></td><td>include comments in the result (!=0) or not (==0)</td></tr><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the output buffer to store canonical XML; this buffer MUST have encoder==NULL because C14N requires UTF-8 output</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>non-negative value on success or a negative value on fail</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlC14NExecute"/>xmlC14NExecute ()</h3><pre class="programlisting">int    xmlC14NExecute                  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-c14n.html#xmlC14NIsVisibleCallback">xmlC14NIsVisibleCallback</a> is_visible_callback, <br/>                                    void * user_data, <br/>                                         int mode, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** inclusive_ns_prefixes, <br/>                                    int with_comments, <br/>                                        <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf)<br/>
-</pre><p>Dumps the canonized image of given XML document into the provided buffer. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the XML document for canonization</td></tr><tr><td><span class="term"><i><tt>is_visible_callback</tt></i>:</span></td><td>the function to use to determine is node visible or not</td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>the first parameter for @is_visible_callback function (in most cases, it is nodes set)</td></tr><tr><td><span class="term"><i><tt>mode</tt></i>:</span></td><td>the c14n mode (see @xmlC14NMode)</td></tr><tr><td><span class="term"><i><tt>inclusive_ns_prefixes</tt></i>:</span></td><td>the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)</td></tr><tr><td><span class="term"><i><tt>with_comments</tt></i>:</span></td><td>include comments in the result (!=0) or not (==0)</td></tr><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the output buffer to store canonical XML; this buffer MUST have encoder==NULL because C14N requires UTF-8 output</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>non-negative value on success or a negative value on fail</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</body>
 </html>
index 04dedd8..39d65dc 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>catalog: interfaces to the Catalog handling system</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-c14n.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-chvalid.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">catalog</span>
-    </h2>
-    <p>catalog - interfaces to the Catalog handling system</p>
-    <p>the catalog module implements the support for XML Catalogs and SGML catalogs </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#XML_CATALOG_PI">XML_CATALOG_PI</a>;
-#define <a href="#XML_CATALOGS_NAMESPACE">XML_CATALOGS_NAMESPACE</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>catalog: interfaces to the Catalog handling system</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-c14n.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-chvalid.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">catalog</span></h2>
+<p>catalog - interfaces to the Catalog handling system</p>
+<p>the catalog module implements the support for XML Catalogs and SGML catalogs </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#XML_CATALOGS_NAMESPACE">XML_CATALOGS_NAMESPACE</a>;
+#define <a href="#XML_CATALOG_PI">XML_CATALOG_PI</a>;
+typedef struct _xmlCatalog <a href="#xmlCatalog">xmlCatalog</a>;
 typedef enum <a href="#xmlCatalogAllow">xmlCatalogAllow</a>;
 typedef enum <a href="#xmlCatalogPrefer">xmlCatalogPrefer</a>;
-typedef struct _xmlCatalog <a href="#xmlCatalog">xmlCatalog</a>;
 typedef <a href="libxml2-catalog.html#xmlCatalog">xmlCatalog</a> * <a href="#xmlCatalogPtr">xmlCatalogPtr</a>;
-void   <a href="#xmlFreeCatalog">xmlFreeCatalog</a>                    (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal);
-void   <a href="#xmlLoadCatalogs">xmlLoadCatalogs</a>                  (const char * pathss);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a>    (void * catalogs, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID);
-int    <a href="#xmlACatalogAdd">xmlACatalogAdd</a>                    (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * type, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * orig, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * replace);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlACatalogResolvePublic">xmlACatalogResolvePublic</a>        (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID);
+int    <a href="#xmlACatalogAdd">xmlACatalogAdd</a>                    (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * type, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * orig, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * replace);
+void   <a href="#xmlACatalogDump">xmlACatalogDump</a>                  (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                      FILE * out);
+int    <a href="#xmlACatalogRemove">xmlACatalogRemove</a>              (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlACatalogResolve">xmlACatalogResolve</a>    (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlACatalogResolvePublic">xmlACatalogResolvePublic</a>        (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlACatalogResolveSystem">xmlACatalogResolveSystem</a>        (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlACatalogResolveURI">xmlACatalogResolveURI</a>      (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI);
+int    <a href="#xmlCatalogAdd">xmlCatalogAdd</a>                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * type, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * orig, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * replace);
+void * <a href="#xmlCatalogAddLocal">xmlCatalogAddLocal</a>            (void * catalogs, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL);
+void   <a href="#xmlCatalogCleanup">xmlCatalogCleanup</a>              (void);
+int    <a href="#xmlCatalogConvert">xmlCatalogConvert</a>              (void);
+void   <a href="#xmlCatalogDump">xmlCatalogDump</a>                    (FILE * out);
+void   <a href="#xmlCatalogFreeLocal">xmlCatalogFreeLocal</a>          (void * catalogs);
 <a href="libxml2-catalog.html#xmlCatalogAllow">xmlCatalogAllow</a>     <a href="#xmlCatalogGetDefaults">xmlCatalogGetDefaults</a>      (void);
-int    <a href="#xmlACatalogRemove">xmlACatalogRemove</a>              (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-<a href="libxml2-catalog.html#xmlCatalogPrefer">xmlCatalogPrefer</a>   <a href="#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a>    (<a href="libxml2-catalog.html#xmlCatalogPrefer">xmlCatalogPrefer</a> prefer);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlACatalogResolveURI">xmlACatalogResolveURI</a>      (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI);
-int    <a href="#xmlCatalogAdd">xmlCatalogAdd</a>                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * type, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * orig, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * replace);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCatalogResolvePublic">xmlCatalogResolvePublic</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlCatalogGetPublic">xmlCatalogGetPublic</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID);
 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlCatalogGetSystem">xmlCatalogGetSystem</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID);
-void   <a href="#xmlInitializeCatalog">xmlInitializeCatalog</a>                (void);
-int    <a href="#xmlLoadCatalog">xmlLoadCatalog</a>                    (const char * filename);
-int    <a href="#xmlCatalogRemove">xmlCatalogRemove</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
 int    <a href="#xmlCatalogIsEmpty">xmlCatalogIsEmpty</a>              (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal);
-void   <a href="#xmlACatalogDump">xmlACatalogDump</a>                  (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                     FILE * out);
-void   <a href="#xmlCatalogFreeLocal">xmlCatalogFreeLocal</a>          (void * catalogs);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlACatalogResolve">xmlACatalogResolve</a>    (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a>    (void * catalogs, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCatalogLocalResolveURI">xmlCatalogLocalResolveURI</a>      (void * catalogs, <br>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI);
+int    <a href="#xmlCatalogRemove">xmlCatalogRemove</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCatalogResolve">xmlCatalogResolve</a>      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCatalogResolvePublic">xmlCatalogResolvePublic</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCatalogResolveSystem">xmlCatalogResolveSystem</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID);
-<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> <a href="#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a>  (const char * filename);
-int    <a href="#xmlCatalogConvert">xmlCatalogConvert</a>              (void);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlCatalogGetPublic">xmlCatalogGetPublic</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID);
-<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> <a href="#xmlLoadACatalog">xmlLoadACatalog</a>          (const char * filename);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlACatalogResolveSystem">xmlACatalogResolveSystem</a>        (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCatalogLocalResolveURI">xmlCatalogLocalResolveURI</a>      (void * catalogs, <br/>                                          const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCatalogResolveURI">xmlCatalogResolveURI</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI);
+int    <a href="#xmlCatalogSetDebug">xmlCatalogSetDebug</a>            (int level);
+<a href="libxml2-catalog.html#xmlCatalogPrefer">xmlCatalogPrefer</a>   <a href="#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a>    (<a href="libxml2-catalog.html#xmlCatalogPrefer">xmlCatalogPrefer</a> prefer);
+void   <a href="#xmlCatalogSetDefaults">xmlCatalogSetDefaults</a>              (<a href="libxml2-catalog.html#xmlCatalogAllow">xmlCatalogAllow</a> allow);
 int    <a href="#xmlConvertSGMLCatalog">xmlConvertSGMLCatalog</a>              (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal);
-void * <a href="#xmlCatalogAddLocal">xmlCatalogAddLocal</a>            (void * catalogs, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL);
+void   <a href="#xmlFreeCatalog">xmlFreeCatalog</a>                    (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal);
+void   <a href="#xmlInitializeCatalog">xmlInitializeCatalog</a>                (void);
+<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> <a href="#xmlLoadACatalog">xmlLoadACatalog</a>          (const char * filename);
+int    <a href="#xmlLoadCatalog">xmlLoadCatalog</a>                    (const char * filename);
+void   <a href="#xmlLoadCatalogs">xmlLoadCatalogs</a>                  (const char * pathss);
+<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> <a href="#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a>  (const char * filename);
 <a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> <a href="#xmlNewCatalog">xmlNewCatalog</a>              (int sgml);
 <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlParseCatalogFile">xmlParseCatalogFile</a>  (const char * filename);
-int    <a href="#xmlCatalogSetDebug">xmlCatalogSetDebug</a>            (int level);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCatalogResolve">xmlCatalogResolve</a>      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID);
-void   <a href="#xmlCatalogSetDefaults">xmlCatalogSetDefaults</a>              (<a href="libxml2-catalog.html#xmlCatalogAllow">xmlCatalogAllow</a> allow);
-void   <a href="#xmlCatalogDump">xmlCatalogDump</a>                    (FILE * out);
-void   <a href="#xmlCatalogCleanup">xmlCatalogCleanup</a>              (void);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCatalogResolveURI">xmlCatalogResolveURI</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="XML_CATALOGS_NAMESPACE">Macro </a>XML_CATALOGS_NAMESPACE</h3><pre class="programlisting">#define <a href="#XML_CATALOGS_NAMESPACE">XML_CATALOGS_NAMESPACE</a>;
-</pre><p>The namespace for the XML Catalogs elements.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_CATALOG_PI">Macro </a>XML_CATALOG_PI</h3><pre class="programlisting">#define <a href="#XML_CATALOG_PI">XML_CATALOG_PI</a>;
-</pre><p>The specific XML Catalog Processing Instruction name.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalog">Structure </a>xmlCatalog</h3><pre class="programlisting">struct _xmlCatalog {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_CATALOGS_NAMESPACE">Macro </a>XML_CATALOGS_NAMESPACE</h3>
+<pre class="programlisting">#define <a href="#XML_CATALOGS_NAMESPACE">XML_CATALOGS_NAMESPACE</a>;
+</pre>
+<p>The namespace for the XML Catalogs elements.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_CATALOG_PI">Macro </a>XML_CATALOG_PI</h3>
+<pre class="programlisting">#define <a href="#XML_CATALOG_PI">XML_CATALOG_PI</a>;
+</pre>
+<p>The specific XML Catalog Processing Instruction name.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalog">Structure </a>xmlCatalog</h3>
+<pre class="programlisting">struct _xmlCatalog {
 The content of this structure is not made public by the API.
 } xmlCatalog;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogAllow">Enum </a>xmlCatalogAllow</h3><pre class="programlisting">enum <a href="#xmlCatalogAllow">xmlCatalogAllow</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogAllow">Enum </a>xmlCatalogAllow</h3>
+<pre class="programlisting">enum <a href="#xmlCatalogAllow">xmlCatalogAllow</a> {
     <a name="XML_CATA_ALLOW_NONE">XML_CATA_ALLOW_NONE</a> = 0
     <a name="XML_CATA_ALLOW_GLOBAL">XML_CATA_ALLOW_GLOBAL</a> = 1
     <a name="XML_CATA_ALLOW_DOCUMENT">XML_CATA_ALLOW_DOCUMENT</a> = 2
     <a name="XML_CATA_ALLOW_ALL">XML_CATA_ALLOW_ALL</a> = 3
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogPrefer">Enum </a>xmlCatalogPrefer</h3><pre class="programlisting">enum <a href="#xmlCatalogPrefer">xmlCatalogPrefer</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogPrefer">Enum </a>xmlCatalogPrefer</h3>
+<pre class="programlisting">enum <a href="#xmlCatalogPrefer">xmlCatalogPrefer</a> {
     <a name="XML_CATA_PREFER_NONE">XML_CATA_PREFER_NONE</a> = 0
     <a name="XML_CATA_PREFER_PUBLIC">XML_CATA_PREFER_PUBLIC</a> = 1
     <a name="XML_CATA_PREFER_SYSTEM">XML_CATA_PREFER_SYSTEM</a> = 2
 };
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogPtr">Typedef </a>xmlCatalogPtr</h3><pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalog">xmlCatalog</a> * xmlCatalogPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlACatalogAdd"/>xmlACatalogAdd ()</h3><pre class="programlisting">int    xmlACatalogAdd                  (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * type, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * orig, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * replace)<br/>
-</pre><p>Add an entry in the catalog, it may overwrite existing but different entries.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catal</tt></i>:</span></td><td>a Catalog</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the type of record to add to the catalog</td></tr><tr><td><span class="term"><i><tt>orig</tt></i>:</span></td><td>the system, public or prefix to match</td></tr><tr><td><span class="term"><i><tt>replace</tt></i>:</span></td><td>the replacement value for the match</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if successful, -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlACatalogDump"/>xmlACatalogDump ()</h3><pre class="programlisting">void xmlACatalogDump                 (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                     FILE * out)<br/>
-</pre><p>Dump the given catalog to the given file.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catal</tt></i>:</span></td><td>a Catalog</td></tr><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>the file.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlACatalogRemove"/>xmlACatalogRemove ()</h3><pre class="programlisting">int      xmlACatalogRemove               (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Remove an entry from the catalog</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catal</tt></i>:</span></td><td>a Catalog</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value to remove</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of entries removed if successful, -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlACatalogResolve"/>xmlACatalogResolve ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlACatalogResolve      (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br/>
-</pre><p>Do a complete resolution lookup of an External Identifier</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catal</tt></i>:</span></td><td>a Catalog</td></tr><tr><td><span class="term"><i><tt>pubID</tt></i>:</span></td><td>the public ID string</td></tr><tr><td><span class="term"><i><tt>sysID</tt></i>:</span></td><td>the system ID string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the URI of the resource or NULL if not found, it must be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlACatalogResolvePublic"/>xmlACatalogResolvePublic ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlACatalogResolvePublic        (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID)<br/>
-</pre><p>Try to lookup the catalog local <a href="libxml2-SAX.html#reference">reference</a> associated to a public ID in that catalog</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catal</tt></i>:</span></td><td>a Catalog</td></tr><tr><td><span class="term"><i><tt>pubID</tt></i>:</span></td><td>the public ID string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the local resource if found or NULL otherwise, the value returned must be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlACatalogResolveSystem"/>xmlACatalogResolveSystem ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlACatalogResolveSystem        (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br/>
-</pre><p>Try to lookup the catalog resource for a system ID</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catal</tt></i>:</span></td><td>a Catalog</td></tr><tr><td><span class="term"><i><tt>sysID</tt></i>:</span></td><td>the system ID string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resource if found or NULL otherwise, the value returned must be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlACatalogResolveURI"/>xmlACatalogResolveURI ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlACatalogResolveURI   (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI)<br/>
-</pre><p>Do a complete resolution lookup of an URI</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catal</tt></i>:</span></td><td>a Catalog</td></tr><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the URI</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the URI of the resource or NULL if not found, it must be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogAdd"/>xmlCatalogAdd ()</h3><pre class="programlisting">int      xmlCatalogAdd                   (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * type, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * orig, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * replace)<br/>
-</pre><p>Add an entry in the catalog, it may overwrite existing but different entries. If called before any other catalog routine, allows to override the default shared catalog put in place by xmlInitializeCatalog();</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the type of record to add to the catalog</td></tr><tr><td><span class="term"><i><tt>orig</tt></i>:</span></td><td>the system, public or prefix to match</td></tr><tr><td><span class="term"><i><tt>replace</tt></i>:</span></td><td>the replacement value for the match</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if successful, -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogAddLocal"/>xmlCatalogAddLocal ()</h3><pre class="programlisting">void * xmlCatalogAddLocal              (void * catalogs, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL)<br/>
-</pre><p>Add the new entry to the catalog list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catalogs</tt></i>:</span></td><td>a document's list of catalogs</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the URL to a new local catalog</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the updated list</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogCleanup"/>xmlCatalogCleanup ()</h3><pre class="programlisting">void     xmlCatalogCleanup               (void)<br/>
-</pre><p>Free up all the memory associated with catalogs</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogConvert"/>xmlCatalogConvert ()</h3><pre class="programlisting">int      xmlCatalogConvert               (void)<br/>
-</pre><p>Convert all the SGML catalog entries as XML ones</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of entries converted if successful, -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogDump"/>xmlCatalogDump ()</h3><pre class="programlisting">void   xmlCatalogDump                  (FILE * out)<br/>
-</pre><p>Dump all the global catalog content to the given file.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>the file.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogFreeLocal"/>xmlCatalogFreeLocal ()</h3><pre class="programlisting">void xmlCatalogFreeLocal             (void * catalogs)<br/>
-</pre><p>Free up the memory associated to the catalog list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catalogs</tt></i>:</span></td><td>a document's list of catalogs</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogGetDefaults"/>xmlCatalogGetDefaults ()</h3><pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalogAllow">xmlCatalogAllow</a>       xmlCatalogGetDefaults   (void)<br/>
-</pre><p>Used to get the user preference w.r.t. to what catalogs should be accepted</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the current <a href="libxml2-catalog.html#xmlCatalogAllow">xmlCatalogAllow</a> value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogGetPublic"/>xmlCatalogGetPublic ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlCatalogGetPublic     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID)<br/>
-</pre><p>Try to lookup the catalog <a href="libxml2-SAX.html#reference">reference</a> associated to a public ID DEPRECATED, use xmlCatalogResolvePublic()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>pubID</tt></i>:</span></td><td>the public ID string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resource if found or NULL otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogGetSystem"/>xmlCatalogGetSystem ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlCatalogGetSystem     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br/>
-</pre><p>Try to lookup the catalog <a href="libxml2-SAX.html#reference">reference</a> associated to a system ID DEPRECATED, use xmlCatalogResolveSystem()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sysID</tt></i>:</span></td><td>the system ID string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resource if found or NULL otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogIsEmpty"/>xmlCatalogIsEmpty ()</h3><pre class="programlisting">int      xmlCatalogIsEmpty               (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal)<br/>
-</pre><p>Check is a catalog is empty</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catal</tt></i>:</span></td><td>should this create an SGML catalog</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the catalog is empty, 0 if not, amd -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogLocalResolve"/>xmlCatalogLocalResolve ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlCatalogLocalResolve  (void * catalogs, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br/>
-</pre><p>Do a complete resolution lookup of an External Identifier using a document's private catalog list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catalogs</tt></i>:</span></td><td>a document's list of catalogs</td></tr><tr><td><span class="term"><i><tt>pubID</tt></i>:</span></td><td>the public ID string</td></tr><tr><td><span class="term"><i><tt>sysID</tt></i>:</span></td><td>the system ID string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the URI of the resource or NULL if not found, it must be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogLocalResolveURI"/>xmlCatalogLocalResolveURI ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlCatalogLocalResolveURI       (void * catalogs, <br/>                                          const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI)<br/>
-</pre><p>Do a complete resolution lookup of an URI using a document's private catalog list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catalogs</tt></i>:</span></td><td>a document's list of catalogs</td></tr><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the URI</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the URI of the resource or NULL if not found, it must be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogRemove"/>xmlCatalogRemove ()</h3><pre class="programlisting">int        xmlCatalogRemove                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Remove an entry from the catalog</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value to remove</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of entries removed if successful, -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogResolve"/>xmlCatalogResolve ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlCatalogResolve       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br/>
-</pre><p>Do a complete resolution lookup of an External Identifier</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>pubID</tt></i>:</span></td><td>the public ID string</td></tr><tr><td><span class="term"><i><tt>sysID</tt></i>:</span></td><td>the system ID string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the URI of the resource or NULL if not found, it must be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogResolvePublic"/>xmlCatalogResolvePublic ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlCatalogResolvePublic (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID)<br/>
-</pre><p>Try to lookup the catalog <a href="libxml2-SAX.html#reference">reference</a> associated to a public ID</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>pubID</tt></i>:</span></td><td>the public ID string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resource if found or NULL otherwise, the value returned must be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogResolveSystem"/>xmlCatalogResolveSystem ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlCatalogResolveSystem (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br/>
-</pre><p>Try to lookup the catalog resource for a system ID</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sysID</tt></i>:</span></td><td>the system ID string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resource if found or NULL otherwise, the value returned must be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogResolveURI"/>xmlCatalogResolveURI ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlCatalogResolveURI    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI)<br/>
-</pre><p>Do a complete resolution lookup of an URI</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the URI</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the URI of the resource or NULL if not found, it must be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogSetDebug"/>xmlCatalogSetDebug ()</h3><pre class="programlisting">int    xmlCatalogSetDebug              (int level)<br/>
-</pre><p>Used to set the debug level for catalog operation, 0 disable debugging, 1 enable it</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>level</tt></i>:</span></td><td>the debug level of catalogs required</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the previous value of the catalog debugging level</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogSetDefaultPrefer"/>xmlCatalogSetDefaultPrefer ()</h3><pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalogPrefer">xmlCatalogPrefer</a>   xmlCatalogSetDefaultPrefer      (<a href="libxml2-catalog.html#xmlCatalogPrefer">xmlCatalogPrefer</a> prefer)<br/>
-</pre><p>Allows to set the preference between public and system for deletion in XML Catalog resolution. C.f. section 4.1.1 of the spec Values accepted are <a href="libxml2-catalog.html#XML_CATA_PREFER_PUBLIC">XML_CATA_PREFER_PUBLIC</a> or <a href="libxml2-catalog.html#XML_CATA_PREFER_SYSTEM">XML_CATA_PREFER_SYSTEM</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>prefer</tt></i>:</span></td><td>the default preference for delegation</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the previous value of the default preference for delegation</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCatalogSetDefaults"/>xmlCatalogSetDefaults ()</h3><pre class="programlisting">void     xmlCatalogSetDefaults           (<a href="libxml2-catalog.html#xmlCatalogAllow">xmlCatalogAllow</a> allow)<br/>
-</pre><p>Used to set the user preference w.r.t. to what catalogs should be accepted</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>allow</tt></i>:</span></td><td>what catalogs should be accepted</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlConvertSGMLCatalog"/>xmlConvertSGMLCatalog ()</h3><pre class="programlisting">int      xmlConvertSGMLCatalog           (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal)<br/>
-</pre><p>Convert all the SGML catalog entries as XML ones</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catal</tt></i>:</span></td><td>the catalog</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of entries converted if successful, -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeCatalog"/>xmlFreeCatalog ()</h3><pre class="programlisting">void   xmlFreeCatalog                  (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal)<br/>
-</pre><p>Free the memory allocated to a Catalog</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>catal</tt></i>:</span></td><td>a Catalog</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInitializeCatalog"/>xmlInitializeCatalog ()</h3><pre class="programlisting">void       xmlInitializeCatalog            (void)<br/>
-</pre><p>Do the catalog initialization. this function is not thread safe, catalog initialization should preferably be done once at startup</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLoadACatalog"/>xmlLoadACatalog ()</h3><pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a>       xmlLoadACatalog         (const char * filename)<br/>
-</pre><p>Load the catalog and build the associated data structures. This can be either an XML Catalog or an SGML Catalog It will recurse in SGML CATALOG entries. On the other hand XML Catalogs are not handled recursively.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file path</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the catalog parsed or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLoadCatalog"/>xmlLoadCatalog ()</h3><pre class="programlisting">int    xmlLoadCatalog                  (const char * filename)<br/>
-</pre><p>Load the catalog and makes its definitions effective for the default external entity loader. It will recurse in SGML CATALOG entries. this function is not thread safe, catalog initialization should preferably be done once at startup</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file path</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLoadCatalogs"/>xmlLoadCatalogs ()</h3><pre class="programlisting">void xmlLoadCatalogs                 (const char * pathss)<br/>
-</pre><p>Load the catalogs and makes their definitions effective for the default external entity loader. this function is not thread safe, catalog initialization should preferably be done once at startup</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>pathss</tt></i>:</span></td><td>a list of directories separated by a colon or a space.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLoadSGMLSuperCatalog"/>xmlLoadSGMLSuperCatalog ()</h3><pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a>       xmlLoadSGMLSuperCatalog (const char * filename)<br/>
-</pre><p>Load an SGML super catalog. It won't expand CATALOG or DELEGATE references. This is only needed for manipulating SGML Super Catalogs like adding and removing CATALOG or DELEGATE entries.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file path</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the catalog parsed or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewCatalog"/>xmlNewCatalog ()</h3><pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a>   xmlNewCatalog           (int sgml)<br/>
-</pre><p>create a new Catalog.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sgml</tt></i>:</span></td><td>should this create an SGML catalog</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseCatalogFile"/>xmlParseCatalogFile ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>  xmlParseCatalogFile     (const char * filename)<br/>
-</pre><p>parse an XML file and build a tree. It's like xmlParseFile() except it bypass all catalog lookups.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogPtr">Typedef </a>xmlCatalogPtr</h3>
+<pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalog">xmlCatalog</a> * xmlCatalogPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlACatalogAdd"></a>xmlACatalogAdd ()</h3>
+<pre class="programlisting">int        xmlACatalogAdd                  (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * type, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * orig, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * replace)<br>
+</pre>
+<p>Add an entry in the catalog, it may overwrite existing but different entries.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catal</tt></i>:</span></td>
+<td>a Catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the type of record to add to the catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>orig</tt></i>:</span></td>
+<td>the system, public or prefix to match</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>replace</tt></i>:</span></td>
+<td>the replacement value for the match</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if successful, -1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlACatalogDump"></a>xmlACatalogDump ()</h3>
+<pre class="programlisting">void       xmlACatalogDump                 (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                      FILE * out)<br>
+</pre>
+<p>Dump the given catalog to the given file.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catal</tt></i>:</span></td>
+<td>a Catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>the file.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlACatalogRemove"></a>xmlACatalogRemove ()</h3>
+<pre class="programlisting">int        xmlACatalogRemove               (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Remove an entry from the catalog</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catal</tt></i>:</span></td>
+<td>a Catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value to remove</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of entries removed if successful, -1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlACatalogResolve"></a>xmlACatalogResolve ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlACatalogResolve      (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br>
+</pre>
+<p>Do a complete resolution lookup of an External Identifier</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catal</tt></i>:</span></td>
+<td>a Catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pubID</tt></i>:</span></td>
+<td>the public ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysID</tt></i>:</span></td>
+<td>the system ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the URI of the resource or NULL if not found, it must be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlACatalogResolvePublic"></a>xmlACatalogResolvePublic ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlACatalogResolvePublic        (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID)<br>
+</pre>
+<p>Try to lookup the catalog local <a href="libxml2-SAX.html#reference">reference</a> associated to a public ID in that catalog</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catal</tt></i>:</span></td>
+<td>a Catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pubID</tt></i>:</span></td>
+<td>the public ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the local resource if found or NULL otherwise, the value returned must be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlACatalogResolveSystem"></a>xmlACatalogResolveSystem ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlACatalogResolveSystem        (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br>
+</pre>
+<p>Try to lookup the catalog resource for a system ID</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catal</tt></i>:</span></td>
+<td>a Catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysID</tt></i>:</span></td>
+<td>the system ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resource if found or NULL otherwise, the value returned must be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlACatalogResolveURI"></a>xmlACatalogResolveURI ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlACatalogResolveURI   (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI)<br>
+</pre>
+<p>Do a complete resolution lookup of an URI</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catal</tt></i>:</span></td>
+<td>a Catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the URI of the resource or NULL if not found, it must be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogAdd"></a>xmlCatalogAdd ()</h3>
+<pre class="programlisting">int        xmlCatalogAdd                   (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * type, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * orig, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * replace)<br>
+</pre>
+<p>Add an entry in the catalog, it may overwrite existing but different entries. If called before any other catalog routine, allows to override the default shared catalog put in place by xmlInitializeCatalog();</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the type of record to add to the catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>orig</tt></i>:</span></td>
+<td>the system, public or prefix to match</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>replace</tt></i>:</span></td>
+<td>the replacement value for the match</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if successful, -1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogAddLocal"></a>xmlCatalogAddLocal ()</h3>
+<pre class="programlisting">void *     xmlCatalogAddLocal              (void * catalogs, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL)<br>
+</pre>
+<p>Add the new entry to the catalog list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catalogs</tt></i>:</span></td>
+<td>a document's list of catalogs</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the URL to a new local catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the updated list</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogCleanup"></a>xmlCatalogCleanup ()</h3>
+<pre class="programlisting">void       xmlCatalogCleanup               (void)<br>
+</pre>
+<p>Free up all the memory associated with catalogs</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogConvert"></a>xmlCatalogConvert ()</h3>
+<pre class="programlisting">int        xmlCatalogConvert               (void)<br>
+</pre>
+<p>Convert all the SGML catalog entries as XML ones</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of entries converted if successful, -1 otherwise</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogDump"></a>xmlCatalogDump ()</h3>
+<pre class="programlisting">void       xmlCatalogDump                  (FILE * out)<br>
+</pre>
+<p>Dump all the global catalog content to the given file.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>the file.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogFreeLocal"></a>xmlCatalogFreeLocal ()</h3>
+<pre class="programlisting">void       xmlCatalogFreeLocal             (void * catalogs)<br>
+</pre>
+<p>Free up the memory associated to the catalog list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>catalogs</tt></i>:</span></td>
+<td>a document's list of catalogs</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogGetDefaults"></a>xmlCatalogGetDefaults ()</h3>
+<pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalogAllow">xmlCatalogAllow</a> xmlCatalogGetDefaults   (void)<br>
+</pre>
+<p>Used to get the user preference w.r.t. to what catalogs should be accepted</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the current <a href="libxml2-catalog.html#xmlCatalogAllow">xmlCatalogAllow</a> value</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogGetPublic"></a>xmlCatalogGetPublic ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlCatalogGetPublic     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID)<br>
+</pre>
+<p>Try to lookup the catalog <a href="libxml2-SAX.html#reference">reference</a> associated to a public ID DEPRECATED, use xmlCatalogResolvePublic()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>pubID</tt></i>:</span></td>
+<td>the public ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resource if found or NULL otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogGetSystem"></a>xmlCatalogGetSystem ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlCatalogGetSystem     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br>
+</pre>
+<p>Try to lookup the catalog <a href="libxml2-SAX.html#reference">reference</a> associated to a system ID DEPRECATED, use xmlCatalogResolveSystem()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sysID</tt></i>:</span></td>
+<td>the system ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resource if found or NULL otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogIsEmpty"></a>xmlCatalogIsEmpty ()</h3>
+<pre class="programlisting">int        xmlCatalogIsEmpty               (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal)<br>
+</pre>
+<p>Check is a catalog is empty</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catal</tt></i>:</span></td>
+<td>should this create an SGML catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the catalog is empty, 0 if not, amd -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogLocalResolve"></a>xmlCatalogLocalResolve ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlCatalogLocalResolve  (void * catalogs, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br>
+</pre>
+<p>Do a complete resolution lookup of an External Identifier using a document's private catalog list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catalogs</tt></i>:</span></td>
+<td>a document's list of catalogs</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pubID</tt></i>:</span></td>
+<td>the public ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysID</tt></i>:</span></td>
+<td>the system ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the URI of the resource or NULL if not found, it must be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogLocalResolveURI"></a>xmlCatalogLocalResolveURI ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlCatalogLocalResolveURI       (void * catalogs, <br>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI)<br>
+</pre>
+<p>Do a complete resolution lookup of an URI using a document's private catalog list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catalogs</tt></i>:</span></td>
+<td>a document's list of catalogs</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the URI of the resource or NULL if not found, it must be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogRemove"></a>xmlCatalogRemove ()</h3>
+<pre class="programlisting">int        xmlCatalogRemove                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Remove an entry from the catalog</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value to remove</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of entries removed if successful, -1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogResolve"></a>xmlCatalogResolve ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlCatalogResolve       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br>
+</pre>
+<p>Do a complete resolution lookup of an External Identifier</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>pubID</tt></i>:</span></td>
+<td>the public ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysID</tt></i>:</span></td>
+<td>the system ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the URI of the resource or NULL if not found, it must be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogResolvePublic"></a>xmlCatalogResolvePublic ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlCatalogResolvePublic (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubID)<br>
+</pre>
+<p>Try to lookup the catalog <a href="libxml2-SAX.html#reference">reference</a> associated to a public ID</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>pubID</tt></i>:</span></td>
+<td>the public ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resource if found or NULL otherwise, the value returned must be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogResolveSystem"></a>xmlCatalogResolveSystem ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlCatalogResolveSystem (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysID)<br>
+</pre>
+<p>Try to lookup the catalog resource for a system ID</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sysID</tt></i>:</span></td>
+<td>the system ID string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resource if found or NULL otherwise, the value returned must be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogResolveURI"></a>xmlCatalogResolveURI ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlCatalogResolveURI    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI)<br>
+</pre>
+<p>Do a complete resolution lookup of an URI</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the URI of the resource or NULL if not found, it must be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogSetDebug"></a>xmlCatalogSetDebug ()</h3>
+<pre class="programlisting">int        xmlCatalogSetDebug              (int level)<br>
+</pre>
+<p>Used to set the debug level for catalog operation, 0 disable debugging, 1 enable it</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>level</tt></i>:</span></td>
+<td>the debug level of catalogs required</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the previous value of the catalog debugging level</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogSetDefaultPrefer"></a>xmlCatalogSetDefaultPrefer ()</h3>
+<pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalogPrefer">xmlCatalogPrefer</a>       xmlCatalogSetDefaultPrefer      (<a href="libxml2-catalog.html#xmlCatalogPrefer">xmlCatalogPrefer</a> prefer)<br>
+</pre>
+<p>Allows to set the preference between public and system for deletion in XML Catalog resolution. C.f. section 4.1.1 of the spec Values accepted are <a href="libxml2-catalog.html#XML_CATA_PREFER_PUBLIC">XML_CATA_PREFER_PUBLIC</a> or <a href="libxml2-catalog.html#XML_CATA_PREFER_SYSTEM">XML_CATA_PREFER_SYSTEM</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>prefer</tt></i>:</span></td>
+<td>the default preference for delegation</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the previous value of the default preference for delegation</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCatalogSetDefaults"></a>xmlCatalogSetDefaults ()</h3>
+<pre class="programlisting">void       xmlCatalogSetDefaults           (<a href="libxml2-catalog.html#xmlCatalogAllow">xmlCatalogAllow</a> allow)<br>
+</pre>
+<p>Used to set the user preference w.r.t. to what catalogs should be accepted</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>allow</tt></i>:</span></td>
+<td>what catalogs should be accepted</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlConvertSGMLCatalog"></a>xmlConvertSGMLCatalog ()</h3>
+<pre class="programlisting">int        xmlConvertSGMLCatalog           (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal)<br>
+</pre>
+<p>Convert all the SGML catalog entries as XML ones</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>catal</tt></i>:</span></td>
+<td>the catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of entries converted if successful, -1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeCatalog"></a>xmlFreeCatalog ()</h3>
+<pre class="programlisting">void       xmlFreeCatalog                  (<a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> catal)<br>
+</pre>
+<p>Free the memory allocated to a Catalog</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>catal</tt></i>:</span></td>
+<td>a Catalog</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInitializeCatalog"></a>xmlInitializeCatalog ()</h3>
+<pre class="programlisting">void       xmlInitializeCatalog            (void)<br>
+</pre>
+<p>Do the catalog initialization. this function is not thread safe, catalog initialization should preferably be done once at startup</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLoadACatalog"></a>xmlLoadACatalog ()</h3>
+<pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a>     xmlLoadACatalog         (const char * filename)<br>
+</pre>
+<p>Load the catalog and build the associated data structures. This can be either an XML Catalog or an SGML Catalog It will recurse in SGML CATALOG entries. On the other hand XML Catalogs are not handled recursively.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file path</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the catalog parsed or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLoadCatalog"></a>xmlLoadCatalog ()</h3>
+<pre class="programlisting">int        xmlLoadCatalog                  (const char * filename)<br>
+</pre>
+<p>Load the catalog and makes its definitions effective for the default external entity loader. It will recurse in SGML CATALOG entries. this function is not thread safe, catalog initialization should preferably be done once at startup</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file path</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLoadCatalogs"></a>xmlLoadCatalogs ()</h3>
+<pre class="programlisting">void       xmlLoadCatalogs                 (const char * pathss)<br>
+</pre>
+<p>Load the catalogs and makes their definitions effective for the default external entity loader. this function is not thread safe, catalog initialization should preferably be done once at startup</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>pathss</tt></i>:</span></td>
+<td>a list of directories separated by a colon or a space.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLoadSGMLSuperCatalog"></a>xmlLoadSGMLSuperCatalog ()</h3>
+<pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a>     xmlLoadSGMLSuperCatalog (const char * filename)<br>
+</pre>
+<p>Load an SGML super catalog. It won't expand CATALOG or DELEGATE references. This is only needed for manipulating SGML Super Catalogs like adding and removing CATALOG or DELEGATE entries.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file path</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the catalog parsed or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewCatalog"></a>xmlNewCatalog ()</h3>
+<pre class="programlisting"><a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a>     xmlNewCatalog           (int sgml)<br>
+</pre>
+<p>create a new Catalog.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sgml</tt></i>:</span></td>
+<td>should this create an SGML catalog</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a> or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseCatalogFile"></a>xmlParseCatalogFile ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlParseCatalogFile     (const char * filename)<br>
+</pre>
+<p>parse an XML file and build a tree. It's like xmlParseFile() except it bypass all catalog lookups.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 9c77158..121c9ff 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>chvalid: Unicode character range checking</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-catalog.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-debugXML.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">chvalid</span>
-    </h2>
-    <p>chvalid - Unicode character range checking</p>
-    <p>this module exports interfaces for the character range validation APIs  This file is automatically generated from the cvs source definition files using the genChRanges.py Python script </p>
-    <p>Author(s): William Brack &lt;wbrack@mmm.com.hk&gt; </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#xmlIsExtender_ch">xmlIsExtender_ch</a>(c);
-#define <a href="#xmlIsPubidCharQ">xmlIsPubidCharQ</a>(c);
-#define <a href="#xmlIsPubidChar_ch">xmlIsPubidChar_ch</a>(c);
-#define <a href="#xmlIsIdeographicQ">xmlIsIdeographicQ</a>(c);
-#define <a href="#xmlIsExtenderQ">xmlIsExtenderQ</a>(c);
-#define <a href="#xmlIsChar_ch">xmlIsChar_ch</a>(c);
-#define <a href="#xmlIsDigitQ">xmlIsDigitQ</a>(c);
-#define <a href="#xmlIsDigit_ch">xmlIsDigit_ch</a>(c);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>chvalid: Unicode character range checking</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-catalog.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-debugXML.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">chvalid</span></h2>
+<p>chvalid - Unicode character range checking</p>
+<p>this module exports interfaces for the character range validation APIs  This file is automatically generated from the cvs source definition files using the genChRanges.py Python script </p>
+<p>Author(s): William Brack &lt;wbrack@mmm.com.hk&gt; </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#xmlIsBaseCharQ">xmlIsBaseCharQ</a>(c);
 #define <a href="#xmlIsBaseChar_ch">xmlIsBaseChar_ch</a>(c);
-#define <a href="#xmlIsCombiningQ">xmlIsCombiningQ</a>(c);
 #define <a href="#xmlIsBlankQ">xmlIsBlankQ</a>(c);
-#define <a href="#xmlIsCharQ">xmlIsCharQ</a>(c);
-#define <a href="#xmlIsBaseCharQ">xmlIsBaseCharQ</a>(c);
 #define <a href="#xmlIsBlank_ch">xmlIsBlank_ch</a>(c);
+#define <a href="#xmlIsCharQ">xmlIsCharQ</a>(c);
+#define <a href="#xmlIsChar_ch">xmlIsChar_ch</a>(c);
+#define <a href="#xmlIsCombiningQ">xmlIsCombiningQ</a>(c);
+#define <a href="#xmlIsDigitQ">xmlIsDigitQ</a>(c);
+#define <a href="#xmlIsDigit_ch">xmlIsDigit_ch</a>(c);
+#define <a href="#xmlIsExtenderQ">xmlIsExtenderQ</a>(c);
+#define <a href="#xmlIsExtender_ch">xmlIsExtender_ch</a>(c);
+#define <a href="#xmlIsIdeographicQ">xmlIsIdeographicQ</a>(c);
+#define <a href="#xmlIsPubidCharQ">xmlIsPubidCharQ</a>(c);
+#define <a href="#xmlIsPubidChar_ch">xmlIsPubidChar_ch</a>(c);
 typedef struct _xmlChLRange <a href="#xmlChLRange">xmlChLRange</a>;
-typedef <a href="libxml2-chvalid.html#xmlChSRange">xmlChSRange</a> * <a href="#xmlChSRangePtr">xmlChSRangePtr</a>;
 typedef <a href="libxml2-chvalid.html#xmlChLRange">xmlChLRange</a> * <a href="#xmlChLRangePtr">xmlChLRangePtr</a>;
+typedef struct _xmlChRangeGroup <a href="#xmlChRangeGroup">xmlChRangeGroup</a>;
 typedef <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> * <a href="#xmlChRangeGroupPtr">xmlChRangeGroupPtr</a>;
 typedef struct _xmlChSRange <a href="#xmlChSRange">xmlChSRange</a>;
-typedef struct _xmlChRangeGroup <a href="#xmlChRangeGroup">xmlChRangeGroup</a>;
+typedef <a href="libxml2-chvalid.html#xmlChSRange">xmlChSRange</a> * <a href="#xmlChSRangePtr">xmlChSRangePtr</a>;
+int    <a href="#xmlCharInRange">xmlCharInRange</a>                    (unsigned int val, <br>                                  const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> * rptr);
+int    <a href="#xmlIsBaseChar">xmlIsBaseChar</a>                      (unsigned int ch);
+int    <a href="#xmlIsBlank">xmlIsBlank</a>                    (unsigned int ch);
 int    <a href="#xmlIsChar">xmlIsChar</a>                      (unsigned int ch);
+int    <a href="#xmlIsCombining">xmlIsCombining</a>                    (unsigned int ch);
 int    <a href="#xmlIsDigit">xmlIsDigit</a>                    (unsigned int ch);
-int    <a href="#xmlIsBlank">xmlIsBlank</a>                    (unsigned int ch);
+int    <a href="#xmlIsExtender">xmlIsExtender</a>                      (unsigned int ch);
 int    <a href="#xmlIsIdeographic">xmlIsIdeographic</a>                (unsigned int ch);
-int    <a href="#xmlCharInRange">xmlCharInRange</a>                    (unsigned int val, <br/>                                         const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> * rptr);
 int    <a href="#xmlIsPubidChar">xmlIsPubidChar</a>                    (unsigned int ch);
-int    <a href="#xmlIsCombining">xmlIsCombining</a>                    (unsigned int ch);
-int    <a href="#xmlIsBaseChar">xmlIsBaseChar</a>                      (unsigned int ch);
-int    <a href="#xmlIsExtender">xmlIsExtender</a>                      (unsigned int ch);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlIsBaseCharQ">Macro </a>xmlIsBaseCharQ</h3><pre class="programlisting">#define <a href="#xmlIsBaseCharQ">xmlIsBaseCharQ</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsBaseChar_ch">Macro </a>xmlIsBaseChar_ch</h3><pre class="programlisting">#define <a href="#xmlIsBaseChar_ch">xmlIsBaseChar_ch</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsBlankQ">Macro </a>xmlIsBlankQ</h3><pre class="programlisting">#define <a href="#xmlIsBlankQ">xmlIsBlankQ</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsBlank_ch">Macro </a>xmlIsBlank_ch</h3><pre class="programlisting">#define <a href="#xmlIsBlank_ch">xmlIsBlank_ch</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsCharQ">Macro </a>xmlIsCharQ</h3><pre class="programlisting">#define <a href="#xmlIsCharQ">xmlIsCharQ</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsChar_ch">Macro </a>xmlIsChar_ch</h3><pre class="programlisting">#define <a href="#xmlIsChar_ch">xmlIsChar_ch</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsCombiningQ">Macro </a>xmlIsCombiningQ</h3><pre class="programlisting">#define <a href="#xmlIsCombiningQ">xmlIsCombiningQ</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsDigitQ">Macro </a>xmlIsDigitQ</h3><pre class="programlisting">#define <a href="#xmlIsDigitQ">xmlIsDigitQ</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsDigit_ch">Macro </a>xmlIsDigit_ch</h3><pre class="programlisting">#define <a href="#xmlIsDigit_ch">xmlIsDigit_ch</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsExtenderQ">Macro </a>xmlIsExtenderQ</h3><pre class="programlisting">#define <a href="#xmlIsExtenderQ">xmlIsExtenderQ</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsExtender_ch">Macro </a>xmlIsExtender_ch</h3><pre class="programlisting">#define <a href="#xmlIsExtender_ch">xmlIsExtender_ch</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsIdeographicQ">Macro </a>xmlIsIdeographicQ</h3><pre class="programlisting">#define <a href="#xmlIsIdeographicQ">xmlIsIdeographicQ</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsPubidCharQ">Macro </a>xmlIsPubidCharQ</h3><pre class="programlisting">#define <a href="#xmlIsPubidCharQ">xmlIsPubidCharQ</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsPubidChar_ch">Macro </a>xmlIsPubidChar_ch</h3><pre class="programlisting">#define <a href="#xmlIsPubidChar_ch">xmlIsPubidChar_ch</a>(c);
-</pre><p>Automatically generated by genChRanges.py</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>char to validate</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlChLRange">Structure </a>xmlChLRange</h3><pre class="programlisting">struct _xmlChLRange {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsBaseCharQ">Macro </a>xmlIsBaseCharQ</h3>
+<pre class="programlisting">#define <a href="#xmlIsBaseCharQ">xmlIsBaseCharQ</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsBaseChar_ch">Macro </a>xmlIsBaseChar_ch</h3>
+<pre class="programlisting">#define <a href="#xmlIsBaseChar_ch">xmlIsBaseChar_ch</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsBlankQ">Macro </a>xmlIsBlankQ</h3>
+<pre class="programlisting">#define <a href="#xmlIsBlankQ">xmlIsBlankQ</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsBlank_ch">Macro </a>xmlIsBlank_ch</h3>
+<pre class="programlisting">#define <a href="#xmlIsBlank_ch">xmlIsBlank_ch</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsCharQ">Macro </a>xmlIsCharQ</h3>
+<pre class="programlisting">#define <a href="#xmlIsCharQ">xmlIsCharQ</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsChar_ch">Macro </a>xmlIsChar_ch</h3>
+<pre class="programlisting">#define <a href="#xmlIsChar_ch">xmlIsChar_ch</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsCombiningQ">Macro </a>xmlIsCombiningQ</h3>
+<pre class="programlisting">#define <a href="#xmlIsCombiningQ">xmlIsCombiningQ</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsDigitQ">Macro </a>xmlIsDigitQ</h3>
+<pre class="programlisting">#define <a href="#xmlIsDigitQ">xmlIsDigitQ</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsDigit_ch">Macro </a>xmlIsDigit_ch</h3>
+<pre class="programlisting">#define <a href="#xmlIsDigit_ch">xmlIsDigit_ch</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsExtenderQ">Macro </a>xmlIsExtenderQ</h3>
+<pre class="programlisting">#define <a href="#xmlIsExtenderQ">xmlIsExtenderQ</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsExtender_ch">Macro </a>xmlIsExtender_ch</h3>
+<pre class="programlisting">#define <a href="#xmlIsExtender_ch">xmlIsExtender_ch</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsIdeographicQ">Macro </a>xmlIsIdeographicQ</h3>
+<pre class="programlisting">#define <a href="#xmlIsIdeographicQ">xmlIsIdeographicQ</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsPubidCharQ">Macro </a>xmlIsPubidCharQ</h3>
+<pre class="programlisting">#define <a href="#xmlIsPubidCharQ">xmlIsPubidCharQ</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsPubidChar_ch">Macro </a>xmlIsPubidChar_ch</h3>
+<pre class="programlisting">#define <a href="#xmlIsPubidChar_ch">xmlIsPubidChar_ch</a>(c);
+</pre>
+<p>Automatically generated by genChRanges.py</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>char to validate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlChLRange">Structure </a>xmlChLRange</h3>
+<pre class="programlisting">struct _xmlChLRange {
     unsigned int       low
     unsigned int       high
 } xmlChLRange;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlChLRangePtr">Typedef </a>xmlChLRangePtr</h3><pre class="programlisting"><a href="libxml2-chvalid.html#xmlChLRange">xmlChLRange</a> * xmlChLRangePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlChLRangePtr">Typedef </a>xmlChLRangePtr</h3>
+<pre class="programlisting"><a href="libxml2-chvalid.html#xmlChLRange">xmlChLRange</a> * xmlChLRangePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlChRangeGroup">Structure </a>xmlChRangeGroup</h3><pre class="programlisting">struct _xmlChRangeGroup {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlChRangeGroup">Structure </a>xmlChRangeGroup</h3>
+<pre class="programlisting">struct _xmlChRangeGroup {
     int        nbShortRange
     int        nbLongRange
     const <a href="libxml2-chvalid.html#xmlChSRange">xmlChSRange</a> * shortRange      : points to an array of ranges
     const <a href="libxml2-chvalid.html#xmlChLRange">xmlChLRange</a> * longRange
 } xmlChRangeGroup;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlChRangeGroupPtr">Typedef </a>xmlChRangeGroupPtr</h3><pre class="programlisting"><a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> * xmlChRangeGroupPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlChRangeGroupPtr">Typedef </a>xmlChRangeGroupPtr</h3>
+<pre class="programlisting"><a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> * xmlChRangeGroupPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlChSRange">Structure </a>xmlChSRange</h3><pre class="programlisting">struct _xmlChSRange {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlChSRange">Structure </a>xmlChSRange</h3>
+<pre class="programlisting">struct _xmlChSRange {
     unsigned short     low
     unsigned short     high
 } xmlChSRange;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlChSRangePtr">Typedef </a>xmlChSRangePtr</h3><pre class="programlisting"><a href="libxml2-chvalid.html#xmlChSRange">xmlChSRange</a> * xmlChSRangePtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsBaseCharGroup">Variable </a>xmlIsBaseCharGroup</h3><pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsBaseCharGroup;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsCharGroup">Variable </a>xmlIsCharGroup</h3><pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsCharGroup;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsCombiningGroup">Variable </a>xmlIsCombiningGroup</h3><pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsCombiningGroup;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsDigitGroup">Variable </a>xmlIsDigitGroup</h3><pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsDigitGroup;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsExtenderGroup">Variable </a>xmlIsExtenderGroup</h3><pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsExtenderGroup;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsIdeographicGroup">Variable </a>xmlIsIdeographicGroup</h3><pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsIdeographicGroup;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsPubidChar_tab">Variable </a>xmlIsPubidChar_tab</h3><pre class="programlisting">const unsigned charxmlIsPubidChar_tab[256] xmlIsPubidChar_tab;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCharInRange"/>xmlCharInRange ()</h3><pre class="programlisting">int    xmlCharInRange                  (unsigned int val, <br/>                                         const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> * rptr)<br/>
-</pre><p>Does a binary search of the range table to determine if char is valid</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>character to be validated</td></tr><tr><td><span class="term"><i><tt>rptr</tt></i>:</span></td><td>pointer to range to be used to validate</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>true if character valid, false otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsBaseChar"/>xmlIsBaseChar ()</h3><pre class="programlisting">int      xmlIsBaseChar                   (unsigned int ch)<br/>
-</pre><p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsBaseChar_ch">xmlIsBaseChar_ch</a> or <a href="libxml2-chvalid.html#xmlIsBaseCharQ">xmlIsBaseCharQ</a> instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>character to validate</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>true if argument valid, false otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsBlank"/>xmlIsBlank ()</h3><pre class="programlisting">int    xmlIsBlank                      (unsigned int ch)<br/>
-</pre><p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsBlank_ch">xmlIsBlank_ch</a> or <a href="libxml2-chvalid.html#xmlIsBlankQ">xmlIsBlankQ</a> instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>character to validate</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>true if argument valid, false otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsChar"/>xmlIsChar ()</h3><pre class="programlisting">int      xmlIsChar                       (unsigned int ch)<br/>
-</pre><p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsChar_ch">xmlIsChar_ch</a> or <a href="libxml2-chvalid.html#xmlIsCharQ">xmlIsCharQ</a> instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>character to validate</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>true if argument valid, false otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsCombining"/>xmlIsCombining ()</h3><pre class="programlisting">int    xmlIsCombining                  (unsigned int ch)<br/>
-</pre><p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsCombiningQ">xmlIsCombiningQ</a> instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>character to validate</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>true if argument valid, false otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsDigit"/>xmlIsDigit ()</h3><pre class="programlisting">int    xmlIsDigit                      (unsigned int ch)<br/>
-</pre><p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsDigit_ch">xmlIsDigit_ch</a> or <a href="libxml2-chvalid.html#xmlIsDigitQ">xmlIsDigitQ</a> instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>character to validate</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>true if argument valid, false otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsExtender"/>xmlIsExtender ()</h3><pre class="programlisting">int      xmlIsExtender                   (unsigned int ch)<br/>
-</pre><p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsExtender_ch">xmlIsExtender_ch</a> or <a href="libxml2-chvalid.html#xmlIsExtenderQ">xmlIsExtenderQ</a> instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>character to validate</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>true if argument valid, false otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsIdeographic"/>xmlIsIdeographic ()</h3><pre class="programlisting">int        xmlIsIdeographic                (unsigned int ch)<br/>
-</pre><p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsIdeographicQ">xmlIsIdeographicQ</a> instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>character to validate</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>true if argument valid, false otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsPubidChar"/>xmlIsPubidChar ()</h3><pre class="programlisting">int    xmlIsPubidChar                  (unsigned int ch)<br/>
-</pre><p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsPubidChar_ch">xmlIsPubidChar_ch</a> or <a href="libxml2-chvalid.html#xmlIsPubidCharQ">xmlIsPubidCharQ</a> instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>character to validate</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>true if argument valid, false otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlChSRangePtr">Typedef </a>xmlChSRangePtr</h3>
+<pre class="programlisting"><a href="libxml2-chvalid.html#xmlChSRange">xmlChSRange</a> * xmlChSRangePtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsBaseCharGroup">Variable </a>xmlIsBaseCharGroup</h3>
+<pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsBaseCharGroup;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsCharGroup">Variable </a>xmlIsCharGroup</h3>
+<pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsCharGroup;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsCombiningGroup">Variable </a>xmlIsCombiningGroup</h3>
+<pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsCombiningGroup;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsDigitGroup">Variable </a>xmlIsDigitGroup</h3>
+<pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsDigitGroup;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsExtenderGroup">Variable </a>xmlIsExtenderGroup</h3>
+<pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsExtenderGroup;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsIdeographicGroup">Variable </a>xmlIsIdeographicGroup</h3>
+<pre class="programlisting">const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> xmlIsIdeographicGroup;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsPubidChar_tab">Variable </a>xmlIsPubidChar_tab</h3>
+<pre class="programlisting">const unsigned charxmlIsPubidChar_tab[256] xmlIsPubidChar_tab;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharInRange"></a>xmlCharInRange ()</h3>
+<pre class="programlisting">int        xmlCharInRange                  (unsigned int val, <br>                                  const <a href="libxml2-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a> * rptr)<br>
+</pre>
+<p>Does a binary search of the range table to determine if char is valid</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>character to be validated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>rptr</tt></i>:</span></td>
+<td>pointer to range to be used to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>true if character valid, false otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsBaseChar"></a>xmlIsBaseChar ()</h3>
+<pre class="programlisting">int        xmlIsBaseChar                   (unsigned int ch)<br>
+</pre>
+<p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsBaseChar_ch">xmlIsBaseChar_ch</a> or <a href="libxml2-chvalid.html#xmlIsBaseCharQ">xmlIsBaseCharQ</a> instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>character to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>true if argument valid, false otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsBlank"></a>xmlIsBlank ()</h3>
+<pre class="programlisting">int        xmlIsBlank                      (unsigned int ch)<br>
+</pre>
+<p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsBlank_ch">xmlIsBlank_ch</a> or <a href="libxml2-chvalid.html#xmlIsBlankQ">xmlIsBlankQ</a> instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>character to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>true if argument valid, false otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsChar"></a>xmlIsChar ()</h3>
+<pre class="programlisting">int        xmlIsChar                       (unsigned int ch)<br>
+</pre>
+<p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsChar_ch">xmlIsChar_ch</a> or <a href="libxml2-chvalid.html#xmlIsCharQ">xmlIsCharQ</a> instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>character to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>true if argument valid, false otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsCombining"></a>xmlIsCombining ()</h3>
+<pre class="programlisting">int        xmlIsCombining                  (unsigned int ch)<br>
+</pre>
+<p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsCombiningQ">xmlIsCombiningQ</a> instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>character to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>true if argument valid, false otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsDigit"></a>xmlIsDigit ()</h3>
+<pre class="programlisting">int        xmlIsDigit                      (unsigned int ch)<br>
+</pre>
+<p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsDigit_ch">xmlIsDigit_ch</a> or <a href="libxml2-chvalid.html#xmlIsDigitQ">xmlIsDigitQ</a> instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>character to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>true if argument valid, false otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsExtender"></a>xmlIsExtender ()</h3>
+<pre class="programlisting">int        xmlIsExtender                   (unsigned int ch)<br>
+</pre>
+<p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsExtender_ch">xmlIsExtender_ch</a> or <a href="libxml2-chvalid.html#xmlIsExtenderQ">xmlIsExtenderQ</a> instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>character to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>true if argument valid, false otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsIdeographic"></a>xmlIsIdeographic ()</h3>
+<pre class="programlisting">int        xmlIsIdeographic                (unsigned int ch)<br>
+</pre>
+<p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsIdeographicQ">xmlIsIdeographicQ</a> instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>character to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>true if argument valid, false otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsPubidChar"></a>xmlIsPubidChar ()</h3>
+<pre class="programlisting">int        xmlIsPubidChar                  (unsigned int ch)<br>
+</pre>
+<p>This function is DEPRECATED. Use <a href="libxml2-chvalid.html#xmlIsPubidChar_ch">xmlIsPubidChar_ch</a> or <a href="libxml2-chvalid.html#xmlIsPubidCharQ">xmlIsPubidCharQ</a> instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>character to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>true if argument valid, false otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 8eb2e48..e5939a6 100644 (file)
@@ -1,89 +1,69 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>debugXML: Tree debugging APIs</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-chvalid.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-dict.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">debugXML</span>
-    </h2>
-    <p>debugXML - Tree debugging APIs</p>
-    <p>Interfaces to a set of routines used for debugging the tree produced by the XML parser. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef struct _xmlShellCtxt <a href="#xmlShellCtxt">xmlShellCtxt</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>debugXML: Tree debugging APIs</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-chvalid.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-dict.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">debugXML</span></h2>
+<p>debugXML - Tree debugging APIs</p>
+<p>Interfaces to a set of routines used for debugging the tree produced by the XML parser. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlShellCtxt <a href="#xmlShellCtxt">xmlShellCtxt</a>;
 typedef <a href="libxml2-debugXML.html#xmlShellCtxt">xmlShellCtxt</a> * <a href="#xmlShellCtxtPtr">xmlShellCtxtPtr</a>;
-void   <a href="#xmlDebugDumpAttrList">xmlDebugDumpAttrList</a>                (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br/>                                       int depth);
-void   <a href="#xmlLsOneNode">xmlLsOneNode</a>                        (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-typedef char * <a href="#xmlShellReadlineFunc">xmlShellReadlineFunc</a>                (char * prompt);
-int    <a href="#xmlShellSave">xmlShellSave</a>                        (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * filename, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
 const char *   <a href="#xmlBoolToText">xmlBoolToText</a>              (int boolval);
-int    <a href="#xmlShellWrite">xmlShellWrite</a>                      (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * filename, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
-int    <a href="#xmlShellDu">xmlShellDu</a>                    (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
-int    <a href="#xmlShellValidate">xmlShellValidate</a>                (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * dtd, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
-int    <a href="#xmlDebugCheckDocument">xmlDebugCheckDocument</a>              (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-void   <a href="#xmlShellPrintXPathResult">xmlShellPrintXPathResult</a>        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> list);
-typedef int <a href="#xmlShellCmd">xmlShellCmd</a>                     (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
-int    <a href="#xmlShellLoad">xmlShellLoad</a>                        (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * filename, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
-void   <a href="#xmlDebugDumpString">xmlDebugDumpString</a>            (FILE * output, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
-int    <a href="#xmlShellBase">xmlShellBase</a>                        (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
-int    <a href="#xmlShellCat">xmlShellCat</a>                  (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
-void   <a href="#xmlDebugDumpDTD">xmlDebugDumpDTD</a>                  (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd);
-void   <a href="#xmlDebugDumpNode">xmlDebugDumpNode</a>                (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int depth);
-void   <a href="#xmlDebugDumpEntities">xmlDebugDumpEntities</a>                (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-void   <a href="#xmlShellPrintNode">xmlShellPrintNode</a>              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-int    <a href="#xmlShellPwd">xmlShellPwd</a>                  (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * buffer, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
-void   <a href="#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a>                (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int depth);
-void   <a href="#xmlDebugDumpAttr">xmlDebugDumpAttr</a>                (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br/>                                       int depth);
-void   <a href="#xmlDebugDumpDocument">xmlDebugDumpDocument</a>                (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+int    <a href="#xmlDebugCheckDocument">xmlDebugCheckDocument</a>              (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+void   <a href="#xmlDebugDumpAttr">xmlDebugDumpAttr</a>                (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br>                                        int depth);
+void   <a href="#xmlDebugDumpAttrList">xmlDebugDumpAttrList</a>                (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br>                                        int depth);
+void   <a href="#xmlDebugDumpDTD">xmlDebugDumpDTD</a>                  (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd);
+void   <a href="#xmlDebugDumpDocument">xmlDebugDumpDocument</a>                (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+void   <a href="#xmlDebugDumpDocumentHead">xmlDebugDumpDocumentHead</a>        (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+void   <a href="#xmlDebugDumpEntities">xmlDebugDumpEntities</a>                (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+void   <a href="#xmlDebugDumpNode">xmlDebugDumpNode</a>                (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int depth);
+void   <a href="#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a>                (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int depth);
+void   <a href="#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a>          (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int depth);
+void   <a href="#xmlDebugDumpString">xmlDebugDumpString</a>            (FILE * output, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
 int    <a href="#xmlLsCountNode">xmlLsCountNode</a>                    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-void   <a href="#xmlShellPrintXPathError">xmlShellPrintXPathError</a>          (int errorType, <br/>                                    const char * arg);
-int    <a href="#xmlShellDir">xmlShellDir</a>                  (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
-void   <a href="#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a>          (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int depth);
-int    <a href="#xmlShellList">xmlShellList</a>                        (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
-void   <a href="#xmlDebugDumpDocumentHead">xmlDebugDumpDocumentHead</a>        (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-void   <a href="#xmlShell">xmlShell</a>                        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  char * filename, <br/>                                  <a href="libxml2-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a> input, <br/>                                      FILE * output);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlShellCtxt">Structure </a>xmlShellCtxt</h3><pre class="programlisting">struct _xmlShellCtxt {
+void   <a href="#xmlLsOneNode">xmlLsOneNode</a>                        (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+void   <a href="#xmlShell">xmlShell</a>                        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   char * filename, <br>                                   <a href="libxml2-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a> input, <br>                                       FILE * output);
+int    <a href="#xmlShellBase">xmlShellBase</a>                        (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+int    <a href="#xmlShellCat">xmlShellCat</a>                  (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+typedef int <a href="#xmlShellCmd">xmlShellCmd</a>                     (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+int    <a href="#xmlShellDir">xmlShellDir</a>                  (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+int    <a href="#xmlShellDu">xmlShellDu</a>                    (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+int    <a href="#xmlShellList">xmlShellList</a>                        (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+int    <a href="#xmlShellLoad">xmlShellLoad</a>                        (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * filename, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+void   <a href="#xmlShellPrintNode">xmlShellPrintNode</a>              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+void   <a href="#xmlShellPrintXPathError">xmlShellPrintXPathError</a>          (int errorType, <br>                                     const char * arg);
+void   <a href="#xmlShellPrintXPathResult">xmlShellPrintXPathResult</a>        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> list);
+int    <a href="#xmlShellPwd">xmlShellPwd</a>                  (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * buffer, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+typedef char * <a href="#xmlShellReadlineFunc">xmlShellReadlineFunc</a>                (char * prompt);
+int    <a href="#xmlShellSave">xmlShellSave</a>                        (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * filename, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+int    <a href="#xmlShellValidate">xmlShellValidate</a>                (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * dtd, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+int    <a href="#xmlShellWrite">xmlShellWrite</a>                      (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * filename, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellCtxt">Structure </a>xmlShellCtxt</h3>
+<pre class="programlisting">struct _xmlShellCtxt {
     char *     filename
     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        doc
     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      node
@@ -92,134 +72,802 @@ void      <a href="#xmlShell">xmlShell</a>                        (<a href="libxml2-tree.html#xmlDocPtr">x
     FILE *     output
     <a href="libxml2-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a>      input
 } xmlShellCtxt;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellCtxtPtr">Typedef </a>xmlShellCtxtPtr</h3><pre class="programlisting"><a href="libxml2-debugXML.html#xmlShellCtxt">xmlShellCtxt</a> * xmlShellCtxtPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellCmd"/>Function type xmlShellCmd</h3><pre class="programlisting">int       xmlShellCmd                     (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>This is a generic signature for the XML shell functions.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a shell context</td></tr><tr><td><span class="term"><i><tt>arg</tt></i>:</span></td><td>a string argument</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a first node</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>a second node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an int, negative returns indicating errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellReadlineFunc"/>Function type xmlShellReadlineFunc</h3><pre class="programlisting">char *  xmlShellReadlineFunc            (char * prompt)<br/>
-</pre><p>This is a generic signature for the XML shell input function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>prompt</tt></i>:</span></td><td>a string prompt</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a string which will be freed by the Shell.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBoolToText"/>xmlBoolToText ()</h3><pre class="programlisting">const char *     xmlBoolToText           (int boolval)<br/>
-</pre><p>Convenient way to turn bool into text</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>boolval</tt></i>:</span></td><td>a bool to turn into text</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to either "True" or "False"</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDebugCheckDocument"/>xmlDebugCheckDocument ()</h3><pre class="programlisting">int      xmlDebugCheckDocument           (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Check the document for potential content problems, and output the errors to @output</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of errors found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDebugDumpAttr"/>xmlDebugDumpAttr ()</h3><pre class="programlisting">void       xmlDebugDumpAttr                (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br/>                                       int depth)<br/>
-</pre><p>Dumps debug information for the <a href="libxml2-SAX.html#attribute">attribute</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>depth</tt></i>:</span></td><td>the indentation level.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDebugDumpAttrList"/>xmlDebugDumpAttrList ()</h3><pre class="programlisting">void       xmlDebugDumpAttrList            (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br/>                                       int depth)<br/>
-</pre><p>Dumps debug information for the <a href="libxml2-SAX.html#attribute">attribute</a> list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> list</td></tr><tr><td><span class="term"><i><tt>depth</tt></i>:</span></td><td>the indentation level.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDebugDumpDTD"/>xmlDebugDumpDTD ()</h3><pre class="programlisting">void xmlDebugDumpDTD                 (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd)<br/>
-</pre><p>Dumps debug information for the DTD</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>the DTD</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDebugDumpDocument"/>xmlDebugDumpDocument ()</h3><pre class="programlisting">void       xmlDebugDumpDocument            (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Dumps debug information for the document, it's recursive</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDebugDumpDocumentHead"/>xmlDebugDumpDocumentHead ()</h3><pre class="programlisting">void       xmlDebugDumpDocumentHead        (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Dumps debug information concerning the document, not recursive</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDebugDumpEntities"/>xmlDebugDumpEntities ()</h3><pre class="programlisting">void       xmlDebugDumpEntities            (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Dumps debug information for all the entities in use by the document</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDebugDumpNode"/>xmlDebugDumpNode ()</h3><pre class="programlisting">void       xmlDebugDumpNode                (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int depth)<br/>
-</pre><p>Dumps debug information for the element node, it is recursive</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>depth</tt></i>:</span></td><td>the indentation level.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDebugDumpNodeList"/>xmlDebugDumpNodeList ()</h3><pre class="programlisting">void       xmlDebugDumpNodeList            (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int depth)<br/>
-</pre><p>Dumps debug information for the list of element node, it is recursive</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node list</td></tr><tr><td><span class="term"><i><tt>depth</tt></i>:</span></td><td>the indentation level.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDebugDumpOneNode"/>xmlDebugDumpOneNode ()</h3><pre class="programlisting">void xmlDebugDumpOneNode             (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int depth)<br/>
-</pre><p>Dumps debug information for the element node, it is not recursive</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>depth</tt></i>:</span></td><td>the indentation level.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDebugDumpString"/>xmlDebugDumpString ()</h3><pre class="programlisting">void   xmlDebugDumpString              (FILE * output, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>Dumps information about the string, shorten it if necessary</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the string</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLsCountNode"/>xmlLsCountNode ()</h3><pre class="programlisting">int    xmlLsCountNode                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Count the children of @node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node to count</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of children of @node.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLsOneNode"/>xmlLsOneNode ()</h3><pre class="programlisting">void       xmlLsOneNode                    (FILE * output, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Dump to @output the type and name of @node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node to dump</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShell"/>xmlShell ()</h3><pre class="programlisting">void       xmlShell                        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  char * filename, <br/>                                  <a href="libxml2-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a> input, <br/>                                      FILE * output)<br/>
-</pre><p>Implements the XML shell This allow to load, validate, view, modify and save a document using a environment similar to a UNIX commandline.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the initial document</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the output buffer</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>the line reading function</td></tr><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the output FILE*, defaults to stdout if NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellBase"/>xmlShellBase ()</h3><pre class="programlisting">int        xmlShellBase                    (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>Implements the XML shell function "base" dumps the current XML base of the node</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the shell context</td></tr><tr><td><span class="term"><i><tt>arg</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellCat"/>xmlShellCat ()</h3><pre class="programlisting">int  xmlShellCat                     (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>Implements the XML shell function "cat" dumps the serialization node content (XML or HTML).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the shell context</td></tr><tr><td><span class="term"><i><tt>arg</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellDir"/>xmlShellDir ()</h3><pre class="programlisting">int  xmlShellDir                     (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>Implements the XML shell function "dir" dumps information about the node (namespace, attributes, content).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the shell context</td></tr><tr><td><span class="term"><i><tt>arg</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellDu"/>xmlShellDu ()</h3><pre class="programlisting">int    xmlShellDu                      (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>Implements the XML shell function "du" show the structure of the subtree under node @tree If @tree is null, the command works on the current node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the shell context</td></tr><tr><td><span class="term"><i><tt>arg</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>a node defining a subtree</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellList"/>xmlShellList ()</h3><pre class="programlisting">int        xmlShellList                    (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * arg, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>Implements the XML shell function "ls" Does an Unix like listing of the given node (like a directory)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the shell context</td></tr><tr><td><span class="term"><i><tt>arg</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellLoad"/>xmlShellLoad ()</h3><pre class="programlisting">int        xmlShellLoad                    (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * filename, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>Implements the XML shell function "load" loads a new document specified by the filename</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the shell context</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the file name</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or -1 if loading failed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellPrintNode"/>xmlShellPrintNode ()</h3><pre class="programlisting">void     xmlShellPrintNode               (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Print node to the output FILE</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a non-null node to print to the output FILE</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellPrintXPathError"/>xmlShellPrintXPathError ()</h3><pre class="programlisting">void xmlShellPrintXPathError         (int errorType, <br/>                                    const char * arg)<br/>
-</pre><p>Print the xpath error to libxml default error channel</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>errorType</tt></i>:</span></td><td>valid xpath error id</td></tr><tr><td><span class="term"><i><tt>arg</tt></i>:</span></td><td>the argument that cause xpath to fail</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellPrintXPathResult"/>xmlShellPrintXPathResult ()</h3><pre class="programlisting">void       xmlShellPrintXPathResult        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> list)<br/>
-</pre><p>Prints result to the output FILE</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>list</tt></i>:</span></td><td>a valid result generated by an xpath evaluation</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellPwd"/>xmlShellPwd ()</h3><pre class="programlisting">int  xmlShellPwd                     (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * buffer, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>Implements the XML shell function "pwd" Show the full path from the root to the node, if needed building thumblers when similar elements exists at a given ancestor level. The output is compatible with XPath commands.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the shell context</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>the output buffer</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellSave"/>xmlShellSave ()</h3><pre class="programlisting">int        xmlShellSave                    (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * filename, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>Implements the XML shell function "save" Write the current document to the filename, or it's original name</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the shell context</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the file name (optional)</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellValidate"/>xmlShellValidate ()</h3><pre class="programlisting">int        xmlShellValidate                (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * dtd, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>Implements the XML shell function "validate" Validate the document, if a DTD path is provided, then the validation is done against the given DTD.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the shell context</td></tr><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>the DTD URI (optional)</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlShellWrite"/>xmlShellWrite ()</h3><pre class="programlisting">int      xmlShellWrite                   (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br/>                                         char * filename, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>Implements the XML shell function "write" Write the current node to the filename, it saves the serialization of the subtree under the @node specified</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the shell context</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the file name</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node in the tree</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>unused</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellCtxtPtr">Typedef </a>xmlShellCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-debugXML.html#xmlShellCtxt">xmlShellCtxt</a> * xmlShellCtxtPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellCmd"></a>Function type xmlShellCmd</h3>
+<pre class="programlisting">int        xmlShellCmd                     (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>This is a generic signature for the XML shell functions.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a shell context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>arg</tt></i>:</span></td>
+<td>a string argument</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a first node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>a second node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an int, negative returns indicating errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellReadlineFunc"></a>Function type xmlShellReadlineFunc</h3>
+<pre class="programlisting">char *     xmlShellReadlineFunc            (char * prompt)<br>
+</pre>
+<p>This is a generic signature for the XML shell input function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>prompt</tt></i>:</span></td>
+<td>a string prompt</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a string which will be freed by the Shell.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBoolToText"></a>xmlBoolToText ()</h3>
+<pre class="programlisting">const char *       xmlBoolToText           (int boolval)<br>
+</pre>
+<p>Convenient way to turn bool into text</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>boolval</tt></i>:</span></td>
+<td>a bool to turn into text</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to either "True" or "False"</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDebugCheckDocument"></a>xmlDebugCheckDocument ()</h3>
+<pre class="programlisting">int        xmlDebugCheckDocument           (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Check the document for potential content problems, and output the errors to @output</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of errors found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDebugDumpAttr"></a>xmlDebugDumpAttr ()</h3>
+<pre class="programlisting">void       xmlDebugDumpAttr                (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br>                                        int depth)<br>
+</pre>
+<p>Dumps debug information for the <a href="libxml2-SAX.html#attribute">attribute</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>depth</tt></i>:</span></td>
+<td>the indentation level.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDebugDumpAttrList"></a>xmlDebugDumpAttrList ()</h3>
+<pre class="programlisting">void       xmlDebugDumpAttrList            (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br>                                        int depth)<br>
+</pre>
+<p>Dumps debug information for the <a href="libxml2-SAX.html#attribute">attribute</a> list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>depth</tt></i>:</span></td>
+<td>the indentation level.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDebugDumpDTD"></a>xmlDebugDumpDTD ()</h3>
+<pre class="programlisting">void       xmlDebugDumpDTD                 (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd)<br>
+</pre>
+<p>Dumps debug information for the DTD</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>the DTD</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDebugDumpDocument"></a>xmlDebugDumpDocument ()</h3>
+<pre class="programlisting">void       xmlDebugDumpDocument            (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Dumps debug information for the document, it's recursive</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDebugDumpDocumentHead"></a>xmlDebugDumpDocumentHead ()</h3>
+<pre class="programlisting">void       xmlDebugDumpDocumentHead        (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Dumps debug information concerning the document, not recursive</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDebugDumpEntities"></a>xmlDebugDumpEntities ()</h3>
+<pre class="programlisting">void       xmlDebugDumpEntities            (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Dumps debug information for all the entities in use by the document</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDebugDumpNode"></a>xmlDebugDumpNode ()</h3>
+<pre class="programlisting">void       xmlDebugDumpNode                (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int depth)<br>
+</pre>
+<p>Dumps debug information for the element node, it is recursive</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>depth</tt></i>:</span></td>
+<td>the indentation level.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDebugDumpNodeList"></a>xmlDebugDumpNodeList ()</h3>
+<pre class="programlisting">void       xmlDebugDumpNodeList            (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int depth)<br>
+</pre>
+<p>Dumps debug information for the list of element node, it is recursive</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>depth</tt></i>:</span></td>
+<td>the indentation level.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDebugDumpOneNode"></a>xmlDebugDumpOneNode ()</h3>
+<pre class="programlisting">void       xmlDebugDumpOneNode             (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int depth)<br>
+</pre>
+<p>Dumps debug information for the element node, it is not recursive</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>depth</tt></i>:</span></td>
+<td>the indentation level.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDebugDumpString"></a>xmlDebugDumpString ()</h3>
+<pre class="programlisting">void       xmlDebugDumpString              (FILE * output, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>Dumps information about the string, shorten it if necessary</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the string</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLsCountNode"></a>xmlLsCountNode ()</h3>
+<pre class="programlisting">int        xmlLsCountNode                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Count the children of @node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node to count</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of children of @node.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLsOneNode"></a>xmlLsOneNode ()</h3>
+<pre class="programlisting">void       xmlLsOneNode                    (FILE * output, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Dump to @output the type and name of @node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node to dump</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShell"></a>xmlShell ()</h3>
+<pre class="programlisting">void       xmlShell                        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   char * filename, <br>                                   <a href="libxml2-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a> input, <br>                                       FILE * output)<br>
+</pre>
+<p>Implements the XML shell This allow to load, validate, view, modify and save a document using a environment similar to a UNIX commandline.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the initial document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the output buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>the line reading function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the output FILE*, defaults to stdout if NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellBase"></a>xmlShellBase ()</h3>
+<pre class="programlisting">int        xmlShellBase                    (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>Implements the XML shell function "base" dumps the current XML base of the node</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the shell context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>arg</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellCat"></a>xmlShellCat ()</h3>
+<pre class="programlisting">int        xmlShellCat                     (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>Implements the XML shell function "cat" dumps the serialization node content (XML or HTML).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the shell context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>arg</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellDir"></a>xmlShellDir ()</h3>
+<pre class="programlisting">int        xmlShellDir                     (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>Implements the XML shell function "dir" dumps information about the node (namespace, attributes, content).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the shell context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>arg</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellDu"></a>xmlShellDu ()</h3>
+<pre class="programlisting">int        xmlShellDu                      (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>Implements the XML shell function "du" show the structure of the subtree under node @tree If @tree is null, the command works on the current node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the shell context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>arg</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>a node defining a subtree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellList"></a>xmlShellList ()</h3>
+<pre class="programlisting">int        xmlShellList                    (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * arg, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>Implements the XML shell function "ls" Does an Unix like listing of the given node (like a directory)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the shell context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>arg</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellLoad"></a>xmlShellLoad ()</h3>
+<pre class="programlisting">int        xmlShellLoad                    (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * filename, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>Implements the XML shell function "load" loads a new document specified by the filename</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the shell context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the file name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or -1 if loading failed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellPrintNode"></a>xmlShellPrintNode ()</h3>
+<pre class="programlisting">void       xmlShellPrintNode               (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Print node to the output FILE</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a non-null node to print to the output FILE</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellPrintXPathError"></a>xmlShellPrintXPathError ()</h3>
+<pre class="programlisting">void       xmlShellPrintXPathError         (int errorType, <br>                                     const char * arg)<br>
+</pre>
+<p>Print the xpath error to libxml default error channel</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>errorType</tt></i>:</span></td>
+<td>valid xpath error id</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>arg</tt></i>:</span></td>
+<td>the argument that cause xpath to fail</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellPrintXPathResult"></a>xmlShellPrintXPathResult ()</h3>
+<pre class="programlisting">void       xmlShellPrintXPathResult        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> list)<br>
+</pre>
+<p>Prints result to the output FILE</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>list</tt></i>:</span></td>
+<td>a valid result generated by an xpath evaluation</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellPwd"></a>xmlShellPwd ()</h3>
+<pre class="programlisting">int        xmlShellPwd                     (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * buffer, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>Implements the XML shell function "pwd" Show the full path from the root to the node, if needed building thumblers when similar elements exists at a given ancestor level. The output is compatible with XPath commands.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the shell context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>the output buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellSave"></a>xmlShellSave ()</h3>
+<pre class="programlisting">int        xmlShellSave                    (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * filename, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>Implements the XML shell function "save" Write the current document to the filename, or it's original name</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the shell context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the file name (optional)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellValidate"></a>xmlShellValidate ()</h3>
+<pre class="programlisting">int        xmlShellValidate                (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * dtd, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>Implements the XML shell function "validate" Validate the document, if a DTD path is provided, then the validation is done against the given DTD.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the shell context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>the DTD URI (optional)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlShellWrite"></a>xmlShellWrite ()</h3>
+<pre class="programlisting">int        xmlShellWrite                   (<a href="libxml2-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a> ctxt, <br>                                  char * filename, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>Implements the XML shell function "write" Write the current node to the filename, it saves the serialization of the subtree under the @node specified</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the shell context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the file name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node in the tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index db4a3ed..5a2c883 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>dict: string dictionary</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-debugXML.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-encoding.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">dict</span>
-    </h2>
-    <p>dict - string dictionary</p>
-    <p>dictionary of reusable strings, just used to avoid allocation and freeing operations. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef struct _xmlDict <a href="#xmlDict">xmlDict</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>dict: string dictionary</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-debugXML.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-encoding.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">dict</span></h2>
+<p>dict - string dictionary</p>
+<p>dictionary of reusable strings, just used to avoid allocation and freeing operations. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlDict <a href="#xmlDict">xmlDict</a>;
 typedef <a href="libxml2-dict.html#xmlDict">xmlDict</a> * <a href="#xmlDictPtr">xmlDictPtr</a>;
+void   <a href="#xmlDictCleanup">xmlDictCleanup</a>                    (void);
+<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a>  <a href="#xmlDictCreate">xmlDictCreate</a>              (void);
+<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a>  <a href="#xmlDictCreateSub">xmlDictCreateSub</a>        (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> sub);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlDictExists">xmlDictExists</a>              (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int len);
+void   <a href="#xmlDictFree">xmlDictFree</a>                  (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict);
 size_t <a href="#xmlDictGetUsage">xmlDictGetUsage</a>                  (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlDictLookup">xmlDictLookup</a>              (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int len);
+int    <a href="#xmlDictOwns">xmlDictOwns</a>                  (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlDictQLookup">xmlDictQLookup</a>            (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
 int    <a href="#xmlDictReference">xmlDictReference</a>                (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict);
-void   <a href="#xmlDictCleanup">xmlDictCleanup</a>                    (void);
+size_t <a href="#xmlDictSetLimit">xmlDictSetLimit</a>                  (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br>                                        size_t limit);
 int    <a href="#xmlDictSize">xmlDictSize</a>                  (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlDictExists">xmlDictExists</a>              (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int len);
-size_t <a href="#xmlDictSetLimit">xmlDictSetLimit</a>                  (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br/>                                       size_t limit);
-int    <a href="#xmlDictOwns">xmlDictOwns</a>                  (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlDictQLookup">xmlDictQLookup</a>            (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
 int    <a href="#xmlInitializeDict">xmlInitializeDict</a>              (void);
-<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a>  <a href="#xmlDictCreateSub">xmlDictCreateSub</a>        (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> sub);
-void   <a href="#xmlDictFree">xmlDictFree</a>                  (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlDictLookup">xmlDictLookup</a>              (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int len);
-<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a>  <a href="#xmlDictCreate">xmlDictCreate</a>              (void);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlDict">Structure </a>xmlDict</h3><pre class="programlisting">struct _xmlDict {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDict">Structure </a>xmlDict</h3>
+<pre class="programlisting">struct _xmlDict {
 The content of this structure is not made public by the API.
 } xmlDict;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictPtr">Typedef </a>xmlDictPtr</h3><pre class="programlisting"><a href="libxml2-dict.html#xmlDict">xmlDict</a> * xmlDictPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictCleanup"/>xmlDictCleanup ()</h3><pre class="programlisting">void   xmlDictCleanup                  (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Free the dictionary mutex. Do not call unless sure the library is not in use anymore !</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictCreate"/>xmlDictCreate ()</h3><pre class="programlisting"><a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a>    xmlDictCreate           (void)<br/>
-</pre><p>Create a new dictionary</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created dictionary, or NULL if an error occurred.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictCreateSub"/>xmlDictCreateSub ()</h3><pre class="programlisting"><a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a>      xmlDictCreateSub        (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> sub)<br/>
-</pre><p>Create a new dictionary, inheriting strings from the read-only dictionary @sub. On lookup, strings are first searched in the new dictionary, then in @sub, and if not found are created in the new dictionary.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sub</tt></i>:</span></td><td>an existing dictionary</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created dictionary, or NULL if an error occurred.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictExists"/>xmlDictExists ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlDictExists           (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int len)<br/>
-</pre><p>Check if the @name exists in the dictionary @dict.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>the dictionary</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length of the name, if -1 it is recomputed</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the internal copy of the name or NULL if not found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictFree"/>xmlDictFree ()</h3><pre class="programlisting">void xmlDictFree                     (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br/>
-</pre><p>Free the hash @dict and its contents. The userdata is deallocated with @f if provided.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>the dictionary</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictGetUsage"/>xmlDictGetUsage ()</h3><pre class="programlisting">size_t       xmlDictGetUsage                 (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br/>
-</pre><p>Get how much memory is used by a dictionary for strings Added in 2.9.0</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>the dictionary</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the amount of strings allocated</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictLookup"/>xmlDictLookup ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlDictLookup           (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int len)<br/>
-</pre><p>Add the @name to the dictionary @dict if not present.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>the dictionary</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length of the name, if -1 it is recomputed</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the internal copy of the name or NULL in case of internal error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictOwns"/>xmlDictOwns ()</h3><pre class="programlisting">int  xmlDictOwns                     (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>check if a string is owned by the dictionary</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>the dictionary</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true, 0 if false and -1 in case of error -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictQLookup"/>xmlDictQLookup ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlDictQLookup          (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Add the QName @prefix:@name to the hash @dict if not present.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>the dictionary</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the prefix</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the internal copy of the QName or NULL in case of internal error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictReference"/>xmlDictReference ()</h3><pre class="programlisting">int        xmlDictReference                (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br/>
-</pre><p>Increment the <a href="libxml2-SAX.html#reference">reference</a> counter of a dictionary</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>the dictionary</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictSetLimit"/>xmlDictSetLimit ()</h3><pre class="programlisting">size_t       xmlDictSetLimit                 (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br/>                                       size_t limit)<br/>
-</pre><p>Set a size limit for the dictionary Added in 2.9.0</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>the dictionary</td></tr><tr><td><span class="term"><i><tt>limit</tt></i>:</span></td><td>the limit in bytes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the previous limit of the dictionary or 0</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDictSize"/>xmlDictSize ()</h3><pre class="programlisting">int  xmlDictSize                     (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br/>
-</pre><p>Query the number of elements installed in the hash @dict.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>the dictionary</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of elements in the dictionary or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInitializeDict"/>xmlInitializeDict ()</h3><pre class="programlisting">int      xmlInitializeDict               (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Do the dictionary mutex initialization.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if initialization was already done, and 1 if that call led to the initialization</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictPtr">Typedef </a>xmlDictPtr</h3>
+<pre class="programlisting"><a href="libxml2-dict.html#xmlDict">xmlDict</a> * xmlDictPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictCleanup"></a>xmlDictCleanup ()</h3>
+<pre class="programlisting">void       xmlDictCleanup                  (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Free the dictionary mutex. Do not call unless sure the library is not in use anymore !</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictCreate"></a>xmlDictCreate ()</h3>
+<pre class="programlisting"><a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a>      xmlDictCreate           (void)<br>
+</pre>
+<p>Create a new dictionary</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created dictionary, or NULL if an error occurred.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictCreateSub"></a>xmlDictCreateSub ()</h3>
+<pre class="programlisting"><a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a>      xmlDictCreateSub        (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> sub)<br>
+</pre>
+<p>Create a new dictionary, inheriting strings from the read-only dictionary @sub. On lookup, strings are first searched in the new dictionary, then in @sub, and if not found are created in the new dictionary.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sub</tt></i>:</span></td>
+<td>an existing dictionary</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created dictionary, or NULL if an error occurred.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictExists"></a>xmlDictExists ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlDictExists           (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int len)<br>
+</pre>
+<p>Check if the @name exists in the dictionary @dict.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>the dictionary</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length of the name, if -1 it is recomputed</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the internal copy of the name or NULL if not found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictFree"></a>xmlDictFree ()</h3>
+<pre class="programlisting">void       xmlDictFree                     (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br>
+</pre>
+<p>Free the hash @dict and its contents. The userdata is deallocated with @f if provided.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>the dictionary</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictGetUsage"></a>xmlDictGetUsage ()</h3>
+<pre class="programlisting">size_t     xmlDictGetUsage                 (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br>
+</pre>
+<p>Get how much memory is used by a dictionary for strings Added in 2.9.0</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>the dictionary</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the amount of strings allocated</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictLookup"></a>xmlDictLookup ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlDictLookup           (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int len)<br>
+</pre>
+<p>Add the @name to the dictionary @dict if not present.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>the dictionary</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length of the name, if -1 it is recomputed</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the internal copy of the name or NULL in case of internal error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictOwns"></a>xmlDictOwns ()</h3>
+<pre class="programlisting">int        xmlDictOwns                     (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>check if a string is owned by the dictionary</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>the dictionary</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true, 0 if false and -1 in case of error -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictQLookup"></a>xmlDictQLookup ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlDictQLookup          (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Add the QName @prefix:@name to the hash @dict if not present.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>the dictionary</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the internal copy of the QName or NULL in case of internal error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictReference"></a>xmlDictReference ()</h3>
+<pre class="programlisting">int        xmlDictReference                (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br>
+</pre>
+<p>Increment the <a href="libxml2-SAX.html#reference">reference</a> counter of a dictionary</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>the dictionary</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictSetLimit"></a>xmlDictSetLimit ()</h3>
+<pre class="programlisting">size_t     xmlDictSetLimit                 (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict, <br>                                        size_t limit)<br>
+</pre>
+<p>Set a size limit for the dictionary Added in 2.9.0</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>the dictionary</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>limit</tt></i>:</span></td>
+<td>the limit in bytes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the previous limit of the dictionary or 0</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDictSize"></a>xmlDictSize ()</h3>
+<pre class="programlisting">int        xmlDictSize                     (<a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br>
+</pre>
+<p>Query the number of elements installed in the hash @dict.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>the dictionary</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of elements in the dictionary or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInitializeDict"></a>xmlInitializeDict ()</h3>
+<pre class="programlisting">int        xmlInitializeDict               (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Do the dictionary mutex initialization.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if initialization was already done, and 1 if that call led to the initialization</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 2000e10..94d7057 100644 (file)
@@ -1,81 +1,61 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>encoding: interface for the encoding conversion functions</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-dict.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-entities.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">encoding</span>
-    </h2>
-    <p>encoding - interface for the encoding conversion functions</p>
-    <p>interface for the encoding conversion functions needed for XML basic encoding and iconv() support.  Related specs are rfc2044        (UTF-8 and UTF-16) F. Yergeau Alis Technologies [ISO-10646]    UTF-8 and UTF-16 in Annexes [ISO-8859-1]   ISO Latin-1 characters codes. [UNICODE]      The Unicode Consortium, "The Unicode Standard -- Worldwide Character Encoding -- Version 1.0", Addison- Wesley, Volume 1, 1991, Volume 2, 1992.  UTF-8 is described in Unicode Technical Report #4. [US-ASCII]     Coded Character Set--7-bit American Standard Code for Information Interchange, ANSI X3.4-1986. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef enum <a href="#xmlCharEncoding">xmlCharEncoding</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>encoding: interface for the encoding conversion functions</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-dict.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-entities.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">encoding</span></h2>
+<p>encoding - interface for the encoding conversion functions</p>
+<p>interface for the encoding conversion functions needed for XML basic encoding and iconv() support.  Related specs are rfc2044        (UTF-8 and UTF-16) F. Yergeau Alis Technologies [ISO-10646]    UTF-8 and UTF-16 in Annexes [ISO-8859-1]   ISO Latin-1 characters codes. [UNICODE]      The Unicode Consortium, "The Unicode Standard -- Worldwide Character Encoding -- Version 1.0", Addison- Wesley, Volume 1, 1991, Volume 2, 1992.  UTF-8 is described in Unicode Technical Report #4. [US-ASCII]     Coded Character Set--7-bit American Standard Code for Information Interchange, ANSI X3.4-1986. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef enum <a href="#xmlCharEncoding">xmlCharEncoding</a>;
 typedef struct _xmlCharEncodingHandler <a href="#xmlCharEncodingHandler">xmlCharEncodingHandler</a>;
 typedef <a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * <a href="#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a>;
-int    <a href="#xmlDelEncodingAlias">xmlDelEncodingAlias</a>          (const char * alias);
-const char *   <a href="#xmlGetEncodingAlias">xmlGetEncodingAlias</a>  (const char * alias);
-void   <a href="#xmlRegisterCharEncodingHandler">xmlRegisterCharEncodingHandler</a>    (<a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler);
-int    <a href="#UTF8Toisolat1">UTF8Toisolat1</a>                      (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen);
-void   <a href="#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a>  (void);
-int    <a href="#xmlAddEncodingAlias">xmlAddEncodingAlias</a>          (const char * name, <br/>                                        const char * alias);
-void   <a href="#xmlCleanupEncodingAliases">xmlCleanupEncodingAliases</a>      (void);
-int    <a href="#xmlCharEncOutFunc">xmlCharEncOutFunc</a>              (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br/>                                      <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br/>                                    <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in);
-<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a>    <a href="#xmlParseCharEncoding">xmlParseCharEncoding</a>        (const char * name);
-typedef int <a href="#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a>   (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen);
+int    <a href="#UTF8Toisolat1">UTF8Toisolat1</a>                      (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen);
+int    <a href="#isolat1ToUTF8">isolat1ToUTF8</a>                      (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen);
+int    <a href="#xmlAddEncodingAlias">xmlAddEncodingAlias</a>          (const char * name, <br>                                         const char * alias);
+int    <a href="#xmlCharEncCloseFunc">xmlCharEncCloseFunc</a>          (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler);
+int    <a href="#xmlCharEncFirstLine">xmlCharEncFirstLine</a>          (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br>                                       <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br>                                     <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in);
+int    <a href="#xmlCharEncInFunc">xmlCharEncInFunc</a>                (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br>                                       <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br>                                     <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in);
+int    <a href="#xmlCharEncOutFunc">xmlCharEncOutFunc</a>              (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br>                                       <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br>                                     <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in);
+typedef int <a href="#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a>   (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen);
+typedef int <a href="#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen);
 void   <a href="#xmlCleanupCharEncodingHandlers">xmlCleanupCharEncodingHandlers</a>    (void);
-<a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a>        <a href="#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a>      (const char * name, <br/>                                                        <a href="libxml2-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a> input, <br/>                                                      <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> output);
-typedef int <a href="#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen);
-int    <a href="#isolat1ToUTF8">isolat1ToUTF8</a>                      (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen);
+void   <a href="#xmlCleanupEncodingAliases">xmlCleanupEncodingAliases</a>      (void);
+int    <a href="#xmlDelEncodingAlias">xmlDelEncodingAlias</a>          (const char * alias);
+<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a>    <a href="#xmlDetectCharEncoding">xmlDetectCharEncoding</a>      (const unsigned char * in, <br>                                  int len);
 <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a>        <a href="#xmlFindCharEncodingHandler">xmlFindCharEncodingHandler</a>    (const char * name);
-int    <a href="#xmlCharEncInFunc">xmlCharEncInFunc</a>                (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br/>                                      <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br/>                                    <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in);
 <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a>        <a href="#xmlGetCharEncodingHandler">xmlGetCharEncodingHandler</a>      (<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
-int    <a href="#xmlCharEncFirstLine">xmlCharEncFirstLine</a>          (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br/>                                      <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br/>                                    <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in);
-<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a>    <a href="#xmlDetectCharEncoding">xmlDetectCharEncoding</a>      (const unsigned char * in, <br/>                                         int len);
-int    <a href="#xmlCharEncCloseFunc">xmlCharEncCloseFunc</a>          (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler);
 const char *   <a href="#xmlGetCharEncodingName">xmlGetCharEncodingName</a>    (<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+const char *   <a href="#xmlGetEncodingAlias">xmlGetEncodingAlias</a>  (const char * alias);
+void   <a href="#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a>  (void);
+<a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a>        <a href="#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a>      (const char * name, <br>                                                         <a href="libxml2-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a> input, <br>                                                       <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> output);
+<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a>    <a href="#xmlParseCharEncoding">xmlParseCharEncoding</a>        (const char * name);
+void   <a href="#xmlRegisterCharEncodingHandler">xmlRegisterCharEncodingHandler</a>    (<a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlCharEncoding">Enum </a>xmlCharEncoding</h3><pre class="programlisting">enum <a href="#xmlCharEncoding">xmlCharEncoding</a> {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharEncoding">Enum </a>xmlCharEncoding</h3>
+<pre class="programlisting">enum <a href="#xmlCharEncoding">xmlCharEncoding</a> {
     <a name="XML_CHAR_ENCODING_ERROR">XML_CHAR_ENCODING_ERROR</a> = -1 /* No char encoding detected */
     <a name="XML_CHAR_ENCODING_NONE">XML_CHAR_ENCODING_NONE</a> = 0 /* No char encoding detected */
     <a name="XML_CHAR_ENCODING_UTF8">XML_CHAR_ENCODING_UTF8</a> = 1 /* UTF-8 */
@@ -101,10 +81,14 @@ const char *       <a href="#xmlGetCharEncodingName">xmlGetCharEncodingName</a>    (<a hr
     <a name="XML_CHAR_ENCODING_EUC_JP">XML_CHAR_ENCODING_EUC_JP</a> = 21 /* EUC-JP */
     <a name="XML_CHAR_ENCODING_ASCII">XML_CHAR_ENCODING_ASCII</a> = 22 /*  pure ASCII */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCharEncodingHandler">Structure </a>xmlCharEncodingHandler</h3><pre class="programlisting">struct _xmlCharEncodingHandler {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharEncodingHandler">Structure </a>xmlCharEncodingHandler</h3>
+<pre class="programlisting">struct _xmlCharEncodingHandler {
     char *     name
     <a href="libxml2-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a>      input
     <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a>    output
@@ -113,98 +97,503 @@ const char *      <a href="#xmlGetCharEncodingName">xmlGetCharEncodingName</a>    (<a hr
     struct _uconv_t *  uconv_in
     struct _uconv_t *  uconv_out
 } xmlCharEncodingHandler;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCharEncodingHandlerPtr">Typedef </a>xmlCharEncodingHandlerPtr</h3><pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * xmlCharEncodingHandlerPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCharEncodingInputFunc"/>Function type xmlCharEncodingInputFunc</h3><pre class="programlisting">int     xmlCharEncodingInputFunc        (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen)<br/>
-</pre><p>Take a block of chars in the original encoding and try to convert it to an UTF-8 block of chars out.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>a pointer to an array of bytes to store the UTF-8 result</td></tr><tr><td><span class="term"><i><tt>outlen</tt></i>:</span></td><td>the length of @out</td></tr><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>a pointer to an array of chars in the original encoding</td></tr><tr><td><span class="term"><i><tt>inlen</tt></i>:</span></td><td>the length of @in</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written, -1 if lack of space, or -2 if the transcoding failed. The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictiable. The value of @outlen after return is the number of octets consumed.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCharEncodingOutputFunc"/>Function type xmlCharEncodingOutputFunc</h3><pre class="programlisting">int   xmlCharEncodingOutputFunc       (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen)<br/>
-</pre><p>Take a block of UTF-8 chars in and try to convert it to another encoding. Note: a first call designed to produce heading info is called with in = NULL. If stateful this should also initialize the encoder state.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>a pointer to an array of bytes to store the result</td></tr><tr><td><span class="term"><i><tt>outlen</tt></i>:</span></td><td>the length of @out</td></tr><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>a pointer to an array of UTF-8 chars</td></tr><tr><td><span class="term"><i><tt>inlen</tt></i>:</span></td><td>the length of @in</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written, -1 if lack of space, or -2 if the transcoding failed. The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictiable. The value of @outlen after return is the number of octets produced.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="UTF8Toisolat1"/>UTF8Toisolat1 ()</h3><pre class="programlisting">int      UTF8Toisolat1                   (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen)<br/>
-</pre><p>Take a block of UTF-8 chars in and try to convert it to an ISO Latin 1 block of chars out.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>a pointer to an array of bytes to store the result</td></tr><tr><td><span class="term"><i><tt>outlen</tt></i>:</span></td><td>the length of @out</td></tr><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>a pointer to an array of UTF-8 chars</td></tr><tr><td><span class="term"><i><tt>inlen</tt></i>:</span></td><td>the length of @in</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written if success, -2 if the transcoding fails, or -1 otherwise The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictable. The value of @outlen after return is the number of octets produced.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="isolat1ToUTF8"/>isolat1ToUTF8 ()</h3><pre class="programlisting">int      isolat1ToUTF8                   (unsigned char * out, <br/>                                      int * outlen, <br/>                                     const unsigned char * in, <br/>                                         int * inlen)<br/>
-</pre><p>Take a block of ISO Latin 1 chars in and try to convert it to an UTF-8 block of chars out.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>a pointer to an array of bytes to store the result</td></tr><tr><td><span class="term"><i><tt>outlen</tt></i>:</span></td><td>the length of @out</td></tr><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>a pointer to an array of ISO Latin 1 chars</td></tr><tr><td><span class="term"><i><tt>inlen</tt></i>:</span></td><td>the length of @in</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written if success, or -1 otherwise The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictable. The value of @outlen after return is the number of octets produced.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddEncodingAlias"/>xmlAddEncodingAlias ()</h3><pre class="programlisting">int  xmlAddEncodingAlias             (const char * name, <br/>                                        const char * alias)<br/>
-</pre><p>Registers an alias @alias for an encoding named @name. Existing alias will be overwritten.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the encoding name as parsed, in UTF-8 format (ASCII actually)</td></tr><tr><td><span class="term"><i><tt>alias</tt></i>:</span></td><td>the alias name as parsed, in UTF-8 format (ASCII actually)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCharEncCloseFunc"/>xmlCharEncCloseFunc ()</h3><pre class="programlisting">int  xmlCharEncCloseFunc             (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler)<br/>
-</pre><p>Generic front-end for encoding handler close function</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>char encoding transformation data structure</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if success, or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCharEncFirstLine"/>xmlCharEncFirstLine ()</h3><pre class="programlisting">int  xmlCharEncFirstLine             (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br/>                                      <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br/>                                    <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in)<br/>
-</pre><p>Front-end for the encoding handler input function, but handle only the very first line, i.e. limit itself to 45 chars.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>char encoding transformation data structure</td></tr><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the output.</td></tr><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the input</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written if success, or -1 general error -2 if the transcoding fails (for *in is not valid utf8 string or the result of transformation can't fit into the encoding we want), or</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCharEncInFunc"/>xmlCharEncInFunc ()</h3><pre class="programlisting">int        xmlCharEncInFunc                (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br/>                                      <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br/>                                    <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in)<br/>
-</pre><p>Generic front-end for the encoding handler input function</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>char encoding transformation data structure</td></tr><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the output.</td></tr><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the input</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written if success, or -1 general error -2 if the transcoding fails (for *in is not valid utf8 string or the result of transformation can't fit into the encoding we want), or</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCharEncOutFunc"/>xmlCharEncOutFunc ()</h3><pre class="programlisting">int      xmlCharEncOutFunc               (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br/>                                      <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br/>                                    <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in)<br/>
-</pre><p>Generic front-end for the encoding handler output function a first call with @in == NULL has to be made firs to initiate the output in case of non-stateless encoding needing to initiate their state or the output (like the BOM in UTF16). In case of UTF8 sequence conversion errors for the given encoder, the content will be automatically remapped to a CharRef sequence.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>char encoding transformation data structure</td></tr><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the output.</td></tr><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the input</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written if success, or -1 general error -2 if the transcoding fails (for *in is not valid utf8 string or the result of transformation can't fit into the encoding we want), or</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCleanupCharEncodingHandlers"/>xmlCleanupCharEncodingHandlers ()</h3><pre class="programlisting">void   xmlCleanupCharEncodingHandlers  (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Cleanup the memory allocated for the char encoding support, it unregisters all the encoding handlers and the aliases.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCleanupEncodingAliases"/>xmlCleanupEncodingAliases ()</h3><pre class="programlisting">void     xmlCleanupEncodingAliases       (void)<br/>
-</pre><p>Unregisters all aliases</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDelEncodingAlias"/>xmlDelEncodingAlias ()</h3><pre class="programlisting">int  xmlDelEncodingAlias             (const char * alias)<br/>
-</pre><p>Unregisters an encoding alias @alias</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>alias</tt></i>:</span></td><td>the alias name as parsed, in UTF-8 format (ASCII actually)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDetectCharEncoding"/>xmlDetectCharEncoding ()</h3><pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a>      xmlDetectCharEncoding   (const unsigned char * in, <br/>                                         int len)<br/>
-</pre><p>Guess the encoding of the entity using the first bytes of the entity content according to the non-normative appendix F of the XML-1.0 recommendation.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>a pointer to the first bytes of the XML entity, must be at least 2 bytes long (at least 4 if encoding is UTF4 variant).</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>pointer to the length of the buffer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>one of the XML_CHAR_ENCODING_... values.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFindCharEncodingHandler"/>xmlFindCharEncodingHandler ()</h3><pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a>        xmlFindCharEncodingHandler      (const char * name)<br/>
-</pre><p>Search in the registered set the handler able to read/write that encoding.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>a string describing the char encoding.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the handler or NULL if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetCharEncodingHandler"/>xmlGetCharEncodingHandler ()</h3><pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a>  xmlGetCharEncodingHandler       (<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Search in the registered set the handler able to read/write that encoding.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>an <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> value.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the handler or NULL if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetCharEncodingName"/>xmlGetCharEncodingName ()</h3><pre class="programlisting">const char *   xmlGetCharEncodingName  (<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>The "canonical" name for XML encoding. C.f. http://www.w3.org/TR/REC-xml#charencoding Section 4.3.3 Character Encoding in Entities</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the encoding</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the canonical name for the given encoding</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetEncodingAlias"/>xmlGetEncodingAlias ()</h3><pre class="programlisting">const char * xmlGetEncodingAlias     (const char * alias)<br/>
-</pre><p>Lookup an encoding name for the given alias.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>alias</tt></i>:</span></td><td>the alias name as parsed, in UTF-8 format (ASCII actually)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not found, otherwise the original name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInitCharEncodingHandlers"/>xmlInitCharEncodingHandlers ()</h3><pre class="programlisting">void xmlInitCharEncodingHandlers     (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Initialize the char encoding support, it registers the default encoding supported. NOTE: while public, this function usually doesn't need to be called in normal processing.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewCharEncodingHandler"/>xmlNewCharEncodingHandler ()</h3><pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a>  xmlNewCharEncodingHandler       (const char * name, <br/>                                                        <a href="libxml2-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a> input, <br/>                                                      <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> output)<br/>
-</pre><p>Create and registers an xmlCharEncodingHandler.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the encoding name, in UTF-8 format (ASCII actually)</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>the <a href="libxml2-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a> to read that encoding</td></tr><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> to write that encoding</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> created (or NULL in case of error).</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseCharEncoding"/>xmlParseCharEncoding ()</h3><pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a>        xmlParseCharEncoding    (const char * name)<br/>
-</pre><p>Compare the string to the encoding schemes already known. Note that the comparison is case insensitive accordingly to the section [XML] 4.3.3 Character Encoding in Entities.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the encoding name as parsed, in UTF-8 format (ASCII actually)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>one of the XML_CHAR_ENCODING_... values or <a href="libxml2-encoding.html#XML_CHAR_ENCODING_NONE">XML_CHAR_ENCODING_NONE</a> if not recognized.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegisterCharEncodingHandler"/>xmlRegisterCharEncodingHandler ()</h3><pre class="programlisting">void   xmlRegisterCharEncodingHandler  (<a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler)<br/>
-</pre><p>Register the char encoding handler, surprising, isn't it ?</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>the <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler block</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharEncodingHandlerPtr">Typedef </a>xmlCharEncodingHandlerPtr</h3>
+<pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * xmlCharEncodingHandlerPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharEncodingInputFunc"></a>Function type xmlCharEncodingInputFunc</h3>
+<pre class="programlisting">int        xmlCharEncodingInputFunc        (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen)<br>
+</pre>
+<p>Take a block of chars in the original encoding and try to convert it to an UTF-8 block of chars out.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>a pointer to an array of bytes to store the UTF-8 result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>outlen</tt></i>:</span></td>
+<td>the length of @out</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>a pointer to an array of chars in the original encoding</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inlen</tt></i>:</span></td>
+<td>the length of @in</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written, -1 if lack of space, or -2 if the transcoding failed. The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictiable. The value of @outlen after return is the number of octets consumed.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharEncodingOutputFunc"></a>Function type xmlCharEncodingOutputFunc</h3>
+<pre class="programlisting">int        xmlCharEncodingOutputFunc       (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen)<br>
+</pre>
+<p>Take a block of UTF-8 chars in and try to convert it to another encoding. Note: a first call designed to produce heading info is called with in = NULL. If stateful this should also initialize the encoder state.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>a pointer to an array of bytes to store the result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>outlen</tt></i>:</span></td>
+<td>the length of @out</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>a pointer to an array of UTF-8 chars</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inlen</tt></i>:</span></td>
+<td>the length of @in</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written, -1 if lack of space, or -2 if the transcoding failed. The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictiable. The value of @outlen after return is the number of octets produced.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="UTF8Toisolat1"></a>UTF8Toisolat1 ()</h3>
+<pre class="programlisting">int        UTF8Toisolat1                   (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen)<br>
+</pre>
+<p>Take a block of UTF-8 chars in and try to convert it to an ISO Latin 1 block of chars out.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>a pointer to an array of bytes to store the result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>outlen</tt></i>:</span></td>
+<td>the length of @out</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>a pointer to an array of UTF-8 chars</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inlen</tt></i>:</span></td>
+<td>the length of @in</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written if success, -2 if the transcoding fails, or -1 otherwise The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictable. The value of @outlen after return is the number of octets produced.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="isolat1ToUTF8"></a>isolat1ToUTF8 ()</h3>
+<pre class="programlisting">int        isolat1ToUTF8                   (unsigned char * out, <br>                                       int * outlen, <br>                                      const unsigned char * in, <br>                                  int * inlen)<br>
+</pre>
+<p>Take a block of ISO Latin 1 chars in and try to convert it to an UTF-8 block of chars out.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>a pointer to an array of bytes to store the result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>outlen</tt></i>:</span></td>
+<td>the length of @out</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>a pointer to an array of ISO Latin 1 chars</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inlen</tt></i>:</span></td>
+<td>the length of @in</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written if success, or -1 otherwise The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictable. The value of @outlen after return is the number of octets produced.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddEncodingAlias"></a>xmlAddEncodingAlias ()</h3>
+<pre class="programlisting">int        xmlAddEncodingAlias             (const char * name, <br>                                         const char * alias)<br>
+</pre>
+<p>Registers an alias @alias for an encoding named @name. Existing alias will be overwritten.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the encoding name as parsed, in UTF-8 format (ASCII actually)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>alias</tt></i>:</span></td>
+<td>the alias name as parsed, in UTF-8 format (ASCII actually)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharEncCloseFunc"></a>xmlCharEncCloseFunc ()</h3>
+<pre class="programlisting">int        xmlCharEncCloseFunc             (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler)<br>
+</pre>
+<p>Generic front-end for encoding handler close function</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td>char encoding transformation data structure</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if success, or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharEncFirstLine"></a>xmlCharEncFirstLine ()</h3>
+<pre class="programlisting">int        xmlCharEncFirstLine             (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br>                                       <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br>                                     <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in)<br>
+</pre>
+<p>Front-end for the encoding handler input function, but handle only the very first line, i.e. limit itself to 45 chars.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td>char encoding transformation data structure</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the output.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written if success, or -1 general error -2 if the transcoding fails (for *in is not valid utf8 string or the result of transformation can't fit into the encoding we want), or</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharEncInFunc"></a>xmlCharEncInFunc ()</h3>
+<pre class="programlisting">int        xmlCharEncInFunc                (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br>                                       <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br>                                     <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in)<br>
+</pre>
+<p>Generic front-end for the encoding handler input function</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td>char encoding transformation data structure</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the output.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written if success, or -1 general error -2 if the transcoding fails (for *in is not valid utf8 string or the result of transformation can't fit into the encoding we want), or</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharEncOutFunc"></a>xmlCharEncOutFunc ()</h3>
+<pre class="programlisting">int        xmlCharEncOutFunc               (<a href="libxml2-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a> * handler, <br>                                       <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> out, <br>                                     <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> in)<br>
+</pre>
+<p>Generic front-end for the encoding handler output function a first call with @in == NULL has to be made firs to initiate the output in case of non-stateless encoding needing to initiate their state or the output (like the BOM in UTF16). In case of UTF8 sequence conversion errors for the given encoder, the content will be automatically remapped to a CharRef sequence.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td>char encoding transformation data structure</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the output.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> for the input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written if success, or -1 general error -2 if the transcoding fails (for *in is not valid utf8 string or the result of transformation can't fit into the encoding we want), or</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCleanupCharEncodingHandlers"></a>xmlCleanupCharEncodingHandlers ()</h3>
+<pre class="programlisting">void       xmlCleanupCharEncodingHandlers  (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Cleanup the memory allocated for the char encoding support, it unregisters all the encoding handlers and the aliases.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCleanupEncodingAliases"></a>xmlCleanupEncodingAliases ()</h3>
+<pre class="programlisting">void       xmlCleanupEncodingAliases       (void)<br>
+</pre>
+<p>Unregisters all aliases</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDelEncodingAlias"></a>xmlDelEncodingAlias ()</h3>
+<pre class="programlisting">int        xmlDelEncodingAlias             (const char * alias)<br>
+</pre>
+<p>Unregisters an encoding alias @alias</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>alias</tt></i>:</span></td>
+<td>the alias name as parsed, in UTF-8 format (ASCII actually)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDetectCharEncoding"></a>xmlDetectCharEncoding ()</h3>
+<pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a>        xmlDetectCharEncoding   (const unsigned char * in, <br>                                  int len)<br>
+</pre>
+<p>Guess the encoding of the entity using the first bytes of the entity content according to the non-normative appendix F of the XML-1.0 recommendation.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>a pointer to the first bytes of the XML entity, must be at least 2 bytes long (at least 4 if encoding is UTF4 variant).</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>pointer to the length of the buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>one of the XML_CHAR_ENCODING_... values.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFindCharEncodingHandler"></a>xmlFindCharEncodingHandler ()</h3>
+<pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a>    xmlFindCharEncodingHandler      (const char * name)<br>
+</pre>
+<p>Search in the registered set the handler able to read/write that encoding.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>a string describing the char encoding.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the handler or NULL if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetCharEncodingHandler"></a>xmlGetCharEncodingHandler ()</h3>
+<pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a>    xmlGetCharEncodingHandler       (<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Search in the registered set the handler able to read/write that encoding.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>an <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> value.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the handler or NULL if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetCharEncodingName"></a>xmlGetCharEncodingName ()</h3>
+<pre class="programlisting">const char *       xmlGetCharEncodingName  (<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>The "canonical" name for XML encoding. C.f. http://www.w3.org/TR/REC-xml#charencoding Section 4.3.3 Character Encoding in Entities</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the encoding</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the canonical name for the given encoding</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetEncodingAlias"></a>xmlGetEncodingAlias ()</h3>
+<pre class="programlisting">const char *       xmlGetEncodingAlias     (const char * alias)<br>
+</pre>
+<p>Lookup an encoding name for the given alias.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>alias</tt></i>:</span></td>
+<td>the alias name as parsed, in UTF-8 format (ASCII actually)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not found, otherwise the original name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInitCharEncodingHandlers"></a>xmlInitCharEncodingHandlers ()</h3>
+<pre class="programlisting">void       xmlInitCharEncodingHandlers     (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Initialize the char encoding support, it registers the default encoding supported. NOTE: while public, this function usually doesn't need to be called in normal processing.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewCharEncodingHandler"></a>xmlNewCharEncodingHandler ()</h3>
+<pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a>    xmlNewCharEncodingHandler       (const char * name, <br>                                                         <a href="libxml2-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a> input, <br>                                                       <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> output)<br>
+</pre>
+<p>Create and registers an xmlCharEncodingHandler.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the encoding name, in UTF-8 format (ASCII actually)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>the <a href="libxml2-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a> to read that encoding</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> to write that encoding</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> created (or NULL in case of error).</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseCharEncoding"></a>xmlParseCharEncoding ()</h3>
+<pre class="programlisting"><a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a>        xmlParseCharEncoding    (const char * name)<br>
+</pre>
+<p>Compare the string to the encoding schemes already known. Note that the comparison is case insensitive accordingly to the section [XML] 4.3.3 Character Encoding in Entities.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the encoding name as parsed, in UTF-8 format (ASCII actually)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>one of the XML_CHAR_ENCODING_... values or <a href="libxml2-encoding.html#XML_CHAR_ENCODING_NONE">XML_CHAR_ENCODING_NONE</a> if not recognized.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegisterCharEncodingHandler"></a>xmlRegisterCharEncodingHandler ()</h3>
+<pre class="programlisting">void       xmlRegisterCharEncodingHandler  (<a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler)<br>
+</pre>
+<p>Register the char encoding handler, surprising, isn't it ?</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td>the <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler block</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index a40104c..2b0ea58 100644 (file)
@@ -1,87 +1,75 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>entities: interface for the XML entities handling</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-encoding.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-globals.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">entities</span>
-    </h2>
-    <p>entities - interface for the XML entities handling</p>
-    <p>this module provides some of the entity API needed for the parser and applications. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef enum <a href="#xmlEntityType">xmlEntityType</a>;
-typedef struct _xmlHashTable <a href="#xmlEntitiesTable">xmlEntitiesTable</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>entities: interface for the XML entities handling</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-encoding.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-globals.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">entities</span></h2>
+<p>entities - interface for the XML entities handling</p>
+<p>this module provides some of the entity API needed for the parser and applications. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlHashTable <a href="#xmlEntitiesTable">xmlEntitiesTable</a>;
 typedef <a href="libxml2-entities.html#xmlEntitiesTable">xmlEntitiesTable</a> * <a href="#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a>;
-<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlAddDocEntity">xmlAddDocEntity</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlNewEntity">xmlNewEntity</a>                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a>    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input);
-<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlGetDocEntity">xmlGetDocEntity</a>          (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlGetDtdEntity">xmlGetDtdEntity</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlAddDtdEntity">xmlAddDtdEntity</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-<a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a>    <a href="#xmlCopyEntitiesTable">xmlCopyEntitiesTable</a>        (<a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table);
-void   <a href="#xmlFreeEntitiesTable">xmlFreeEntitiesTable</a>                (<a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table);
-<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlGetParameterEntity">xmlGetParameterEntity</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void   <a href="#xmlDumpEntitiesTable">xmlDumpEntitiesTable</a>                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table);
-void   <a href="#xmlDumpEntityDecl">xmlDumpEntityDecl</a>              (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> ent);
+typedef enum <a href="#xmlEntityType">xmlEntityType</a>;
+<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlAddDocEntity">xmlAddDocEntity</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlAddDtdEntity">xmlAddDtdEntity</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
 void   <a href="#xmlCleanupPredefinedEntities">xmlCleanupPredefinedEntities</a>        (void);
+<a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a>    <a href="#xmlCopyEntitiesTable">xmlCopyEntitiesTable</a>        (<a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table);
 <a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a>    <a href="#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a>    (void);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlEncodeEntities">xmlEncodeEntities</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a>      (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input);
+void   <a href="#xmlDumpEntitiesTable">xmlDumpEntitiesTable</a>                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table);
+void   <a href="#xmlDumpEntityDecl">xmlDumpEntityDecl</a>              (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> ent);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlEncodeEntities">xmlEncodeEntities</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a>    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a>      (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input);
+void   <a href="#xmlFreeEntitiesTable">xmlFreeEntitiesTable</a>                (<a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table);
+<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlGetDocEntity">xmlGetDocEntity</a>          (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlGetDtdEntity">xmlGetDtdEntity</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlGetParameterEntity">xmlGetParameterEntity</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
 <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlGetPredefinedEntity">xmlGetPredefinedEntity</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
 void   <a href="#xmlInitializePredefinedEntities">xmlInitializePredefinedEntities</a>  (void);
+<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlNewEntity">xmlNewEntity</a>                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlEntitiesTable">Structure </a>xmlEntitiesTable</h3><pre class="programlisting">struct _xmlHashTable {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlEntitiesTable">Structure </a>xmlEntitiesTable</h3>
+<pre class="programlisting">struct _xmlHashTable {
 The content of this structure is not made public by the API.
 } xmlEntitiesTable;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlEntitiesTablePtr">Typedef </a>xmlEntitiesTablePtr</h3><pre class="programlisting"><a href="libxml2-entities.html#xmlEntitiesTable">xmlEntitiesTable</a> * xmlEntitiesTablePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlEntitiesTablePtr">Typedef </a>xmlEntitiesTablePtr</h3>
+<pre class="programlisting"><a href="libxml2-entities.html#xmlEntitiesTable">xmlEntitiesTable</a> * xmlEntitiesTablePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlEntityType">Enum </a>xmlEntityType</h3><pre class="programlisting">enum <a href="#xmlEntityType">xmlEntityType</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlEntityType">Enum </a>xmlEntityType</h3>
+<pre class="programlisting">enum <a href="#xmlEntityType">xmlEntityType</a> {
     <a name="XML_INTERNAL_GENERAL_ENTITY">XML_INTERNAL_GENERAL_ENTITY</a> = 1
     <a name="XML_EXTERNAL_GENERAL_PARSED_ENTITY">XML_EXTERNAL_GENERAL_PARSED_ENTITY</a> = 2
     <a name="XML_EXTERNAL_GENERAL_UNPARSED_ENTITY">XML_EXTERNAL_GENERAL_UNPARSED_ENTITY</a> = 3
@@ -89,78 +77,414 @@ The content of this structure is not made public by the API.
     <a name="XML_EXTERNAL_PARAMETER_ENTITY">XML_EXTERNAL_PARAMETER_ENTITY</a> = 5
     <a name="XML_INTERNAL_PREDEFINED_ENTITY">XML_INTERNAL_PREDEFINED_ENTITY</a> = 6
 };
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddDocEntity"/>xmlAddDocEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>    xmlAddDocEntity         (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Register a new entity for this document.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the entity type XML_xxx_yyy_ENTITY</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the entity external ID if available</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the entity system ID if available</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the entity content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the entity or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddDtdEntity"/>xmlAddDtdEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>    xmlAddDtdEntity         (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Register a new entity for this document DTD external subset.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the entity type XML_xxx_yyy_ENTITY</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the entity external ID if available</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the entity system ID if available</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the entity content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the entity or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCleanupPredefinedEntities"/>xmlCleanupPredefinedEntities ()</h3><pre class="programlisting">void       xmlCleanupPredefinedEntities    (void)<br/>
-</pre><p>Cleanup up the predefined entities table. Deprecated call</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyEntitiesTable"/>xmlCopyEntitiesTable ()</h3><pre class="programlisting"><a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a>        xmlCopyEntitiesTable    (<a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table)<br/>
-</pre><p>Build a copy of an entity table.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An entity table</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCreateEntitiesTable"/>xmlCreateEntitiesTable ()</h3><pre class="programlisting"><a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a>    xmlCreateEntitiesTable  (void)<br/>
-</pre><p>create and initialize an empty entities hash table. This really doesn't make sense and should be deprecated</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> just created or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDumpEntitiesTable"/>xmlDumpEntitiesTable ()</h3><pre class="programlisting">void       xmlDumpEntitiesTable            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table)<br/>
-</pre><p>This will dump the content of the entity table as an XML DTD definition</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>An XML buffer.</td></tr><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An entity table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDumpEntityDecl"/>xmlDumpEntityDecl ()</h3><pre class="programlisting">void     xmlDumpEntityDecl               (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> ent)<br/>
-</pre><p>This will dump the content of the entity table as an XML DTD definition</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>An XML buffer.</td></tr><tr><td><span class="term"><i><tt>ent</tt></i>:</span></td><td>An entity table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlEncodeEntities"/>xmlEncodeEntities ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlEncodeEntities       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input)<br/>
-</pre><p>TODO: remove xmlEncodeEntities, once we are not afraid of breaking binary compatibility People must migrate their code to <a href="libxml2-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a> ! This routine will issue a warning when encountered.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document containing the string</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>A string to convert to XML.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlEncodeEntitiesReentrant"/>xmlEncodeEntitiesReentrant ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlEncodeEntitiesReentrant      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input)<br/>
-</pre><p>Do a global encoding of a string, replacing the predefined entities and non ASCII values with their entities and CharRef counterparts. Contrary to xmlEncodeEntities, this routine is reentrant, and result must be deallocated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document containing the string</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>A string to convert to XML.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>A newly allocated string with the substitution done.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlEncodeSpecialChars"/>xmlEncodeSpecialChars ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlEncodeSpecialChars   (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input)<br/>
-</pre><p>Do a global encoding of a string, replacing the predefined entities this routine is reentrant, and result must be deallocated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document containing the string</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>A string to convert to XML.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>A newly allocated string with the substitution done.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeEntitiesTable"/>xmlFreeEntitiesTable ()</h3><pre class="programlisting">void       xmlFreeEntitiesTable            (<a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table)<br/>
-</pre><p>Deallocate the memory used by an entities hash table.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An entity table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetDocEntity"/>xmlGetDocEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>    xmlGetDocEntity         (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Do an entity lookup in the document entity hash table and</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document referencing the entity</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the corresponding entity, otherwise a lookup is done in the predefined entities too. Returns A pointer to the entity structure or NULL if not found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetDtdEntity"/>xmlGetDtdEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>    xmlGetDtdEntity         (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Do an entity lookup in the DTD entity hash table and</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document referencing the entity</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the corresponding entity, if found. Note: the first argument is the document node, not the DTD node. Returns A pointer to the entity structure or NULL if not found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetParameterEntity"/>xmlGetParameterEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>        xmlGetParameterEntity   (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Do an entity lookup in the internal and external subsets and</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document referencing the entity</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the corresponding parameter entity, if found. Returns A pointer to the entity structure or NULL if not found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetPredefinedEntity"/>xmlGetPredefinedEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      xmlGetPredefinedEntity  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Check whether this name is an predefined entity.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not, otherwise the entity</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInitializePredefinedEntities"/>xmlInitializePredefinedEntities ()</h3><pre class="programlisting">void xmlInitializePredefinedEntities (void)<br/>
-</pre><p>Set up the predefined entities. Deprecated call</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewEntity"/>xmlNewEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlNewEntity            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Create a new entity, this differs from xmlAddDocEntity() that if the document is NULL or has no internal subset defined, then an unlinked entity structure will be returned, it is then the responsibility of the caller to link it to the document later or free it when not needed anymore.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the entity type XML_xxx_yyy_ENTITY</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the entity external ID if available</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the entity system ID if available</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the entity content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the entity or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddDocEntity"></a>xmlAddDocEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlAddDocEntity         (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Register a new entity for this document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the entity type XML_xxx_yyy_ENTITY</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the entity external ID if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the entity system ID if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the entity content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the entity or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddDtdEntity"></a>xmlAddDtdEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlAddDtdEntity         (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Register a new entity for this document DTD external subset.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the entity type XML_xxx_yyy_ENTITY</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the entity external ID if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the entity system ID if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the entity content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the entity or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCleanupPredefinedEntities"></a>xmlCleanupPredefinedEntities ()</h3>
+<pre class="programlisting">void       xmlCleanupPredefinedEntities    (void)<br>
+</pre>
+<p>Cleanup up the predefined entities table. Deprecated call</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyEntitiesTable"></a>xmlCopyEntitiesTable ()</h3>
+<pre class="programlisting"><a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a>        xmlCopyEntitiesTable    (<a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table)<br>
+</pre>
+<p>Build a copy of an entity table.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An entity table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCreateEntitiesTable"></a>xmlCreateEntitiesTable ()</h3>
+<pre class="programlisting"><a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a>        xmlCreateEntitiesTable  (void)<br>
+</pre>
+<p>create and initialize an empty entities hash table. This really doesn't make sense and should be deprecated</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> just created or NULL in case of error.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDumpEntitiesTable"></a>xmlDumpEntitiesTable ()</h3>
+<pre class="programlisting">void       xmlDumpEntitiesTable            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table)<br>
+</pre>
+<p>This will dump the content of the entity table as an XML DTD definition</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>An XML buffer.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An entity table</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDumpEntityDecl"></a>xmlDumpEntityDecl ()</h3>
+<pre class="programlisting">void       xmlDumpEntityDecl               (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> ent)<br>
+</pre>
+<p>This will dump the content of the entity table as an XML DTD definition</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>An XML buffer.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ent</tt></i>:</span></td>
+<td>An entity table</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlEncodeEntities"></a>xmlEncodeEntities ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlEncodeEntities       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input)<br>
+</pre>
+<p>TODO: remove xmlEncodeEntities, once we are not afraid of breaking binary compatibility People must migrate their code to <a href="libxml2-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a> ! This routine will issue a warning when encountered.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document containing the string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>A string to convert to XML.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlEncodeEntitiesReentrant"></a>xmlEncodeEntitiesReentrant ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlEncodeEntitiesReentrant      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input)<br>
+</pre>
+<p>Do a global encoding of a string, replacing the predefined entities and non ASCII values with their entities and CharRef counterparts. Contrary to xmlEncodeEntities, this routine is reentrant, and result must be deallocated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document containing the string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>A string to convert to XML.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>A newly allocated string with the substitution done.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlEncodeSpecialChars"></a>xmlEncodeSpecialChars ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlEncodeSpecialChars   (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * input)<br>
+</pre>
+<p>Do a global encoding of a string, replacing the predefined entities this routine is reentrant, and result must be deallocated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document containing the string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>A string to convert to XML.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>A newly allocated string with the substitution done.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeEntitiesTable"></a>xmlFreeEntitiesTable ()</h3>
+<pre class="programlisting">void       xmlFreeEntitiesTable            (<a href="libxml2-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a> table)<br>
+</pre>
+<p>Deallocate the memory used by an entities hash table.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An entity table</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetDocEntity"></a>xmlGetDocEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlGetDocEntity         (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Do an entity lookup in the document entity hash table and</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document referencing the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the corresponding entity, otherwise a lookup is done in the predefined entities too. Returns A pointer to the entity structure or NULL if not found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetDtdEntity"></a>xmlGetDtdEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlGetDtdEntity         (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Do an entity lookup in the DTD entity hash table and</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document referencing the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the corresponding entity, if found. Note: the first argument is the document node, not the DTD node. Returns A pointer to the entity structure or NULL if not found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetParameterEntity"></a>xmlGetParameterEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlGetParameterEntity   (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Do an entity lookup in the internal and external subsets and</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document referencing the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the corresponding parameter entity, if found. Returns A pointer to the entity structure or NULL if not found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetPredefinedEntity"></a>xmlGetPredefinedEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlGetPredefinedEntity  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Check whether this name is an predefined entity.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not, otherwise the entity</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInitializePredefinedEntities"></a>xmlInitializePredefinedEntities ()</h3>
+<pre class="programlisting">void       xmlInitializePredefinedEntities (void)<br>
+</pre>
+<p>Set up the predefined entities. Deprecated call</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewEntity"></a>xmlNewEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlNewEntity            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Create a new entity, this differs from xmlAddDocEntity() that if the document is NULL or has no internal subset defined, then an unlinked entity structure will be returned, it is then the responsibility of the caller to link it to the document later or free it when not needed anymore.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the entity type XML_xxx_yyy_ENTITY</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the entity external ID if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the entity system ID if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the entity content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the entity or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 75ae9af..d3b24a6 100644 (file)
@@ -1,89 +1,69 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>globals: interface for all global variables of the library</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-entities.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-hash.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">globals</span>
-    </h2>
-    <p>globals - interface for all global variables of the library</p>
-    <p>all the global variables and thread handling for those variables is handled by this module.  The bottom of this file is automatically generated by build_glob.py based on the description file global.data </p>
-    <p>Author(s): Gary Pennington &lt;Gary.Pennington@uk.sun.com&gt;, Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef <a href="libxml2-globals.html#xmlGlobalState">xmlGlobalState</a> * <a href="#xmlGlobalStatePtr">xmlGlobalStatePtr</a>;
-typedef struct _xmlGlobalState <a href="#xmlGlobalState">xmlGlobalState</a>;
-void   <a href="#xmlThrDefSetStructuredErrorFunc">xmlThrDefSetStructuredErrorFunc</a>  (void * ctx, <br/>                                       <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> handler);
-void   <a href="#xmlInitializeGlobalState">xmlInitializeGlobalState</a>        (<a href="libxml2-globals.html#xmlGlobalStatePtr">xmlGlobalStatePtr</a> gs);
-<a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a>    <a href="#xmlThrDefBufferAllocScheme">xmlThrDefBufferAllocScheme</a>    (<a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> v);
-int    <a href="#xmlThrDefPedanticParserDefaultValue">xmlThrDefPedanticParserDefaultValue</a>  (int v);
-<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a>     <a href="#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a>    (<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> func);
-typedef <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> <a href="#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a>   (const char * URI, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
-<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> <a href="#xmlThrDefOutputBufferCreateFilenameDefault">xmlThrDefOutputBufferCreateFilenameDefault</a>    (<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> func);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>globals: interface for all global variables of the library</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-entities.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-hash.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">globals</span></h2>
+<p>globals - interface for all global variables of the library</p>
+<p>all the global variables and thread handling for those variables is handled by this module.  The bottom of this file is automatically generated by build_glob.py based on the description file global.data </p>
+<p>Author(s): Gary Pennington &lt;Gary.Pennington@uk.sun.com&gt;, Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlGlobalState <a href="#xmlGlobalState">xmlGlobalState</a>;
+typedef <a href="libxml2-globals.html#xmlGlobalState">xmlGlobalState</a> * <a href="#xmlGlobalStatePtr">xmlGlobalStatePtr</a>;
+void   <a href="#xmlCleanupGlobals">xmlCleanupGlobals</a>              (void);
 <a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> <a href="#xmlDeregisterNodeDefault">xmlDeregisterNodeDefault</a>        (<a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> func);
-int    <a href="#xmlThrDefDefaultBufferSize">xmlThrDefDefaultBufferSize</a>    (int v);
-<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> <a href="#xmlOutputBufferCreateFilenameDefault">xmlOutputBufferCreateFilenameDefault</a>        (<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> func);
-int    <a href="#xmlThrDefLoadExtDtdDefaultValue">xmlThrDefLoadExtDtdDefaultValue</a>  (int v);
-<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a>     <a href="#xmlThrDefRegisterNodeDefault">xmlThrDefRegisterNodeDefault</a>        (<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> func);
-int    <a href="#xmlThrDefKeepBlanksDefaultValue">xmlThrDefKeepBlanksDefaultValue</a>  (int v);
 typedef void <a href="#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-int    <a href="#xmlThrDefParserDebugEntities">xmlThrDefParserDebugEntities</a>        (int v);
-<a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a>       <a href="#xmlThrDefParserInputBufferCreateFilenameDefault">xmlThrDefParserInputBufferCreateFilenameDefault</a>  (<a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a> func);
-void   <a href="#xmlThrDefSetGenericErrorFunc">xmlThrDefSetGenericErrorFunc</a>        (void * ctx, <br/>                                       <a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> handler);
+void   <a href="#xmlInitGlobals">xmlInitGlobals</a>                    (void);
+void   <a href="#xmlInitializeGlobalState">xmlInitializeGlobalState</a>        (<a href="libxml2-globals.html#xmlGlobalStatePtr">xmlGlobalStatePtr</a> gs);
+<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> <a href="#xmlOutputBufferCreateFilenameDefault">xmlOutputBufferCreateFilenameDefault</a>        (<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> func);
+typedef <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> <a href="#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a>       (const char * URI, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder, <br>                                                   int compression);
 <a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a>       <a href="#xmlParserInputBufferCreateFilenameDefault">xmlParserInputBufferCreateFilenameDefault</a>      (<a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a> func);
+typedef <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> <a href="#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a>   (const char * URI, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a>     <a href="#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a>    (<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> func);
+typedef void <a href="#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+<a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a>    <a href="#xmlThrDefBufferAllocScheme">xmlThrDefBufferAllocScheme</a>    (<a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> v);
+int    <a href="#xmlThrDefDefaultBufferSize">xmlThrDefDefaultBufferSize</a>    (int v);
+<a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> <a href="#xmlThrDefDeregisterNodeDefault">xmlThrDefDeregisterNodeDefault</a>    (<a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> func);
 int    <a href="#xmlThrDefDoValidityCheckingDefaultValue">xmlThrDefDoValidityCheckingDefaultValue</a>  (int v);
-void   <a href="#xmlCleanupGlobals">xmlCleanupGlobals</a>              (void);
 int    <a href="#xmlThrDefGetWarningsDefaultValue">xmlThrDefGetWarningsDefaultValue</a>        (int v);
-<a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> <a href="#xmlThrDefDeregisterNodeDefault">xmlThrDefDeregisterNodeDefault</a>    (<a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> func);
-int    <a href="#xmlThrDefSubstituteEntitiesDefaultValue">xmlThrDefSubstituteEntitiesDefaultValue</a>  (int v);
-typedef void <a href="#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-int    <a href="#xmlThrDefSaveNoEmptyTags">xmlThrDefSaveNoEmptyTags</a>        (int v);
 int    <a href="#xmlThrDefIndentTreeOutput">xmlThrDefIndentTreeOutput</a>      (int v);
-typedef <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> <a href="#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a>       (const char * URI, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder, <br/>                                                  int compression);
-void   <a href="#xmlInitGlobals">xmlInitGlobals</a>                    (void);
+int    <a href="#xmlThrDefKeepBlanksDefaultValue">xmlThrDefKeepBlanksDefaultValue</a>  (int v);
 int    <a href="#xmlThrDefLineNumbersDefaultValue">xmlThrDefLineNumbersDefaultValue</a>        (int v);
+int    <a href="#xmlThrDefLoadExtDtdDefaultValue">xmlThrDefLoadExtDtdDefaultValue</a>  (int v);
+<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> <a href="#xmlThrDefOutputBufferCreateFilenameDefault">xmlThrDefOutputBufferCreateFilenameDefault</a>    (<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> func);
+int    <a href="#xmlThrDefParserDebugEntities">xmlThrDefParserDebugEntities</a>        (int v);
+<a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a>       <a href="#xmlThrDefParserInputBufferCreateFilenameDefault">xmlThrDefParserInputBufferCreateFilenameDefault</a>  (<a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a> func);
+int    <a href="#xmlThrDefPedanticParserDefaultValue">xmlThrDefPedanticParserDefaultValue</a>  (int v);
+<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a>     <a href="#xmlThrDefRegisterNodeDefault">xmlThrDefRegisterNodeDefault</a>        (<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> func);
+int    <a href="#xmlThrDefSaveNoEmptyTags">xmlThrDefSaveNoEmptyTags</a>        (int v);
+void   <a href="#xmlThrDefSetGenericErrorFunc">xmlThrDefSetGenericErrorFunc</a>        (void * ctx, <br>                                        <a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> handler);
+void   <a href="#xmlThrDefSetStructuredErrorFunc">xmlThrDefSetStructuredErrorFunc</a>  (void * ctx, <br>                                        <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> handler);
+int    <a href="#xmlThrDefSubstituteEntitiesDefaultValue">xmlThrDefSubstituteEntitiesDefaultValue</a>  (int v);
 const char *   <a href="#xmlThrDefTreeIndentString">xmlThrDefTreeIndentString</a>      (const char * v);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlGlobalState">Structure </a>xmlGlobalState</h3><pre class="programlisting">struct _xmlGlobalState {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGlobalState">Structure </a>xmlGlobalState</h3>
+<pre class="programlisting">struct _xmlGlobalState {
     const char *       xmlParserVersion
     <a href="libxml2-tree.html#xmlSAXLocator">xmlSAXLocator</a>        xmlDefaultSAXLocator
     <a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a>  xmlDefaultSAXHandler
@@ -118,262 +98,873 @@ const char *     <a href="#xmlThrDefTreeIndentString">xmlThrDefTreeIndentString</a>
     <a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a>     xmlOutputBufferCreateFilenameValue
     void *     xmlStructuredErrorContext
 } xmlGlobalState;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGlobalStatePtr">Typedef </a>xmlGlobalStatePtr</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlGlobalState">xmlGlobalState</a> * xmlGlobalStatePtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDeregisterNodeFunc"/>Function type xmlDeregisterNodeFunc</h3><pre class="programlisting">void  xmlDeregisterNodeFunc           (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Signature for the deregistration callback of a discarded node</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the current node</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferCreateFilenameFunc"/>Function type xmlOutputBufferCreateFilenameFunc</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> xmlOutputBufferCreateFilenameFunc       (const char * URI, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder, <br/>                                                  int compression)<br/>
-</pre><p>Signature for the function doing the lookup for a suitable output method corresponding to an URI.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the URI to write to</td></tr><tr><td><span class="term"><i><tt>encoder</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>compression</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> in case of success or NULL if no method was found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferCreateFilenameFunc"/>Function type xmlParserInputBufferCreateFilenameFunc</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>     xmlParserInputBufferCreateFilenameFunc  (const char * URI, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Signature for the function doing the lookup for a suitable input method corresponding to an URI.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the URI to read from</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the requested source encoding</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in case of success or NULL if no method was found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegisterNodeFunc"/>Function type xmlRegisterNodeFunc</h3><pre class="programlisting">void      xmlRegisterNodeFunc             (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Signature for the registration callback of a created node</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the current node</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlDefaultSAXHandler">Variable </a>htmlDefaultSAXHandler</h3><pre class="programlisting"><a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> htmlDefaultSAXHandler;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="oldXMLWDcompatibility">Variable </a>oldXMLWDcompatibility</h3><pre class="programlisting">int oldXMLWDcompatibility;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferAllocScheme">Variable </a>xmlBufferAllocScheme</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> xmlBufferAllocScheme;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDefaultBufferSize">Variable </a>xmlDefaultBufferSize</h3><pre class="programlisting">int xmlDefaultBufferSize;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDefaultSAXHandler">Variable </a>xmlDefaultSAXHandler</h3><pre class="programlisting"><a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> xmlDefaultSAXHandler;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDefaultSAXLocator">Variable </a>xmlDefaultSAXLocator</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlSAXLocator">xmlSAXLocator</a> xmlDefaultSAXLocator;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDeregisterNodeDefaultValue">Variable </a>xmlDeregisterNodeDefaultValue</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> xmlDeregisterNodeDefaultValue;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDoValidityCheckingDefaultValue">Variable </a>xmlDoValidityCheckingDefaultValue</h3><pre class="programlisting">int xmlDoValidityCheckingDefaultValue;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFree">Variable </a>xmlFree</h3><pre class="programlisting"><a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> xmlFree;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGenericError">Variable </a>xmlGenericError</h3><pre class="programlisting"><a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> xmlGenericError;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGenericErrorContext">Variable </a>xmlGenericErrorContext</h3><pre class="programlisting">void * xmlGenericErrorContext;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetWarningsDefaultValue">Variable </a>xmlGetWarningsDefaultValue</h3><pre class="programlisting">int xmlGetWarningsDefaultValue;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIndentTreeOutput">Variable </a>xmlIndentTreeOutput</h3><pre class="programlisting">int xmlIndentTreeOutput;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlKeepBlanksDefaultValue">Variable </a>xmlKeepBlanksDefaultValue</h3><pre class="programlisting">int xmlKeepBlanksDefaultValue;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLastError">Variable </a>xmlLastError</h3><pre class="programlisting"><a href="libxml2-xmlerror.html#xmlError">xmlError</a> xmlLastError;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLineNumbersDefaultValue">Variable </a>xmlLineNumbersDefaultValue</h3><pre class="programlisting">int xmlLineNumbersDefaultValue;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLoadExtDtdDefaultValue">Variable </a>xmlLoadExtDtdDefaultValue</h3><pre class="programlisting">int xmlLoadExtDtdDefaultValue;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMalloc">Variable </a>xmlMalloc</h3><pre class="programlisting"><a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> xmlMalloc;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMallocAtomic">Variable </a>xmlMallocAtomic</h3><pre class="programlisting"><a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> xmlMallocAtomic;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemStrdup">Variable </a>xmlMemStrdup</h3><pre class="programlisting"><a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> xmlMemStrdup;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferCreateFilenameValue">Variable </a>xmlOutputBufferCreateFilenameValue</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> xmlOutputBufferCreateFilenameValue;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserDebugEntities">Variable </a>xmlParserDebugEntities</h3><pre class="programlisting">int xmlParserDebugEntities;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferCreateFilenameValue">Variable </a>xmlParserInputBufferCreateFilenameValue</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a> xmlParserInputBufferCreateFilenameValue;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserVersion">Variable </a>xmlParserVersion</h3><pre class="programlisting">const char * xmlParserVersion;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPedanticParserDefaultValue">Variable </a>xmlPedanticParserDefaultValue</h3><pre class="programlisting">int xmlPedanticParserDefaultValue;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRealloc">Variable </a>xmlRealloc</h3><pre class="programlisting"><a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> xmlRealloc;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegisterNodeDefaultValue">Variable </a>xmlRegisterNodeDefaultValue</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> xmlRegisterNodeDefaultValue;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveNoEmptyTags">Variable </a>xmlSaveNoEmptyTags</h3><pre class="programlisting">int xmlSaveNoEmptyTags;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStructuredError">Variable </a>xmlStructuredError</h3><pre class="programlisting"><a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> xmlStructuredError;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStructuredErrorContext">Variable </a>xmlStructuredErrorContext</h3><pre class="programlisting">void * xmlStructuredErrorContext;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSubstituteEntitiesDefaultValue">Variable </a>xmlSubstituteEntitiesDefaultValue</h3><pre class="programlisting">int xmlSubstituteEntitiesDefaultValue;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTreeIndentString">Variable </a>xmlTreeIndentString</h3><pre class="programlisting">const char * xmlTreeIndentString;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCleanupGlobals"/>xmlCleanupGlobals ()</h3><pre class="programlisting">void     xmlCleanupGlobals               (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Additional cleanup for multi-threading</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDeregisterNodeDefault"/>xmlDeregisterNodeDefault ()</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a>     xmlDeregisterNodeDefault        (<a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> func)<br/>
-</pre><p>Registers a callback for node destruction</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>func</tt></i>:</span></td><td>function pointer to the new DeregisterNodeFunc</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the previous value of the deregistration function</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInitGlobals"/>xmlInitGlobals ()</h3><pre class="programlisting">void   xmlInitGlobals                  (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Additional initialisation for multi-threading</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInitializeGlobalState"/>xmlInitializeGlobalState ()</h3><pre class="programlisting">void       xmlInitializeGlobalState        (<a href="libxml2-globals.html#xmlGlobalStatePtr">xmlGlobalStatePtr</a> gs)<br/>
-</pre><p>xmlInitializeGlobalState() initialize a global state with all the default values of the library.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>gs</tt></i>:</span></td><td>a pointer to a newly allocated global state</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferCreateFilenameDefault"/>xmlOutputBufferCreateFilenameDefault ()</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a>     xmlOutputBufferCreateFilenameDefault    (<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> func)<br/>
-</pre><p>Registers a callback for URI output file handling</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>func</tt></i>:</span></td><td>function pointer to the new OutputBufferCreateFilenameFunc</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the old value of the registration function</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferCreateFilenameDefault"/>xmlParserInputBufferCreateFilenameDefault ()</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a> xmlParserInputBufferCreateFilenameDefault       (<a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a> func)<br/>
-</pre><p>Registers a callback for URI input file handling</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>func</tt></i>:</span></td><td>function pointer to the new ParserInputBufferCreateFilenameFunc</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the old value of the registration function</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegisterNodeDefault"/>xmlRegisterNodeDefault ()</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a>     xmlRegisterNodeDefault  (<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> func)<br/>
-</pre><p>Registers a callback for node creation</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>func</tt></i>:</span></td><td>function pointer to the new RegisterNodeFunc</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the old value of the registration function</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefBufferAllocScheme"/>xmlThrDefBufferAllocScheme ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a>    xmlThrDefBufferAllocScheme      (<a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefDefaultBufferSize"/>xmlThrDefDefaultBufferSize ()</h3><pre class="programlisting">int    xmlThrDefDefaultBufferSize      (int v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefDeregisterNodeDefault"/>xmlThrDefDeregisterNodeDefault ()</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> xmlThrDefDeregisterNodeDefault  (<a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> func)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>func</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefDoValidityCheckingDefaultValue"/>xmlThrDefDoValidityCheckingDefaultValue ()</h3><pre class="programlisting">int  xmlThrDefDoValidityCheckingDefaultValue (int v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefGetWarningsDefaultValue"/>xmlThrDefGetWarningsDefaultValue ()</h3><pre class="programlisting">int        xmlThrDefGetWarningsDefaultValue        (int v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefIndentTreeOutput"/>xmlThrDefIndentTreeOutput ()</h3><pre class="programlisting">int      xmlThrDefIndentTreeOutput       (int v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefKeepBlanksDefaultValue"/>xmlThrDefKeepBlanksDefaultValue ()</h3><pre class="programlisting">int  xmlThrDefKeepBlanksDefaultValue (int v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefLineNumbersDefaultValue"/>xmlThrDefLineNumbersDefaultValue ()</h3><pre class="programlisting">int        xmlThrDefLineNumbersDefaultValue        (int v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefLoadExtDtdDefaultValue"/>xmlThrDefLoadExtDtdDefaultValue ()</h3><pre class="programlisting">int  xmlThrDefLoadExtDtdDefaultValue (int v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefOutputBufferCreateFilenameDefault"/>xmlThrDefOutputBufferCreateFilenameDefault ()</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> xmlThrDefOutputBufferCreateFilenameDefault      (<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> func)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>func</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefParserDebugEntities"/>xmlThrDefParserDebugEntities ()</h3><pre class="programlisting">int        xmlThrDefParserDebugEntities    (int v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefParserInputBufferCreateFilenameDefault"/>xmlThrDefParserInputBufferCreateFilenameDefault ()</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a>     xmlThrDefParserInputBufferCreateFilenameDefault (<a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a> func)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>func</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefPedanticParserDefaultValue"/>xmlThrDefPedanticParserDefaultValue ()</h3><pre class="programlisting">int  xmlThrDefPedanticParserDefaultValue     (int v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefRegisterNodeDefault"/>xmlThrDefRegisterNodeDefault ()</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> xmlThrDefRegisterNodeDefault    (<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> func)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>func</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefSaveNoEmptyTags"/>xmlThrDefSaveNoEmptyTags ()</h3><pre class="programlisting">int        xmlThrDefSaveNoEmptyTags        (int v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefSetGenericErrorFunc"/>xmlThrDefSetGenericErrorFunc ()</h3><pre class="programlisting">void       xmlThrDefSetGenericErrorFunc    (void * ctx, <br/>                                       <a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> handler)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefSetStructuredErrorFunc"/>xmlThrDefSetStructuredErrorFunc ()</h3><pre class="programlisting">void xmlThrDefSetStructuredErrorFunc (void * ctx, <br/>                                       <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> handler)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefSubstituteEntitiesDefaultValue"/>xmlThrDefSubstituteEntitiesDefaultValue ()</h3><pre class="programlisting">int  xmlThrDefSubstituteEntitiesDefaultValue (int v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlThrDefTreeIndentString"/>xmlThrDefTreeIndentString ()</h3><pre class="programlisting">const char *     xmlThrDefTreeIndentString       (const char * v)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>v</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGlobalStatePtr">Typedef </a>xmlGlobalStatePtr</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlGlobalState">xmlGlobalState</a> * xmlGlobalStatePtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDeregisterNodeFunc"></a>Function type xmlDeregisterNodeFunc</h3>
+<pre class="programlisting">void       xmlDeregisterNodeFunc           (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Signature for the deregistration callback of a discarded node</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the current node</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferCreateFilenameFunc"></a>Function type xmlOutputBufferCreateFilenameFunc</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>      xmlOutputBufferCreateFilenameFunc       (const char * URI, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder, <br>                                                   int compression)<br>
+</pre>
+<p>Signature for the function doing the lookup for a suitable output method corresponding to an URI.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the URI to write to</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoder</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>compression</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> in case of success or NULL if no method was found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferCreateFilenameFunc"></a>Function type xmlParserInputBufferCreateFilenameFunc</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlParserInputBufferCreateFilenameFunc  (const char * URI, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Signature for the function doing the lookup for a suitable input method corresponding to an URI.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the URI to read from</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the requested source encoding</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in case of success or NULL if no method was found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegisterNodeFunc"></a>Function type xmlRegisterNodeFunc</h3>
+<pre class="programlisting">void       xmlRegisterNodeFunc             (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Signature for the registration callback of a created node</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the current node</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlDefaultSAXHandler">Variable </a>htmlDefaultSAXHandler</h3>
+<pre class="programlisting"><a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> htmlDefaultSAXHandler;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="oldXMLWDcompatibility">Variable </a>oldXMLWDcompatibility</h3>
+<pre class="programlisting">int oldXMLWDcompatibility;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferAllocScheme">Variable </a>xmlBufferAllocScheme</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> xmlBufferAllocScheme;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDefaultBufferSize">Variable </a>xmlDefaultBufferSize</h3>
+<pre class="programlisting">int xmlDefaultBufferSize;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDefaultSAXHandler">Variable </a>xmlDefaultSAXHandler</h3>
+<pre class="programlisting"><a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> xmlDefaultSAXHandler;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDefaultSAXLocator">Variable </a>xmlDefaultSAXLocator</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlSAXLocator">xmlSAXLocator</a> xmlDefaultSAXLocator;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDeregisterNodeDefaultValue">Variable </a>xmlDeregisterNodeDefaultValue</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> xmlDeregisterNodeDefaultValue;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDoValidityCheckingDefaultValue">Variable </a>xmlDoValidityCheckingDefaultValue</h3>
+<pre class="programlisting">int xmlDoValidityCheckingDefaultValue;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFree">Variable </a>xmlFree</h3>
+<pre class="programlisting"><a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> xmlFree;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGenericError">Variable </a>xmlGenericError</h3>
+<pre class="programlisting"><a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> xmlGenericError;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGenericErrorContext">Variable </a>xmlGenericErrorContext</h3>
+<pre class="programlisting">void * xmlGenericErrorContext;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetWarningsDefaultValue">Variable </a>xmlGetWarningsDefaultValue</h3>
+<pre class="programlisting">int xmlGetWarningsDefaultValue;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIndentTreeOutput">Variable </a>xmlIndentTreeOutput</h3>
+<pre class="programlisting">int xmlIndentTreeOutput;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlKeepBlanksDefaultValue">Variable </a>xmlKeepBlanksDefaultValue</h3>
+<pre class="programlisting">int xmlKeepBlanksDefaultValue;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLastError">Variable </a>xmlLastError</h3>
+<pre class="programlisting"><a href="libxml2-xmlerror.html#xmlError">xmlError</a> xmlLastError;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLineNumbersDefaultValue">Variable </a>xmlLineNumbersDefaultValue</h3>
+<pre class="programlisting">int xmlLineNumbersDefaultValue;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLoadExtDtdDefaultValue">Variable </a>xmlLoadExtDtdDefaultValue</h3>
+<pre class="programlisting">int xmlLoadExtDtdDefaultValue;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMalloc">Variable </a>xmlMalloc</h3>
+<pre class="programlisting"><a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> xmlMalloc;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMallocAtomic">Variable </a>xmlMallocAtomic</h3>
+<pre class="programlisting"><a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> xmlMallocAtomic;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemStrdup">Variable </a>xmlMemStrdup</h3>
+<pre class="programlisting"><a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> xmlMemStrdup;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferCreateFilenameValue">Variable </a>xmlOutputBufferCreateFilenameValue</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> xmlOutputBufferCreateFilenameValue;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserDebugEntities">Variable </a>xmlParserDebugEntities</h3>
+<pre class="programlisting">int xmlParserDebugEntities;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferCreateFilenameValue">Variable </a>xmlParserInputBufferCreateFilenameValue</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a> xmlParserInputBufferCreateFilenameValue;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserVersion">Variable </a>xmlParserVersion</h3>
+<pre class="programlisting">const char * xmlParserVersion;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPedanticParserDefaultValue">Variable </a>xmlPedanticParserDefaultValue</h3>
+<pre class="programlisting">int xmlPedanticParserDefaultValue;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRealloc">Variable </a>xmlRealloc</h3>
+<pre class="programlisting"><a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> xmlRealloc;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegisterNodeDefaultValue">Variable </a>xmlRegisterNodeDefaultValue</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> xmlRegisterNodeDefaultValue;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveNoEmptyTags">Variable </a>xmlSaveNoEmptyTags</h3>
+<pre class="programlisting">int xmlSaveNoEmptyTags;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStructuredError">Variable </a>xmlStructuredError</h3>
+<pre class="programlisting"><a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> xmlStructuredError;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStructuredErrorContext">Variable </a>xmlStructuredErrorContext</h3>
+<pre class="programlisting">void * xmlStructuredErrorContext;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSubstituteEntitiesDefaultValue">Variable </a>xmlSubstituteEntitiesDefaultValue</h3>
+<pre class="programlisting">int xmlSubstituteEntitiesDefaultValue;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTreeIndentString">Variable </a>xmlTreeIndentString</h3>
+<pre class="programlisting">const char * xmlTreeIndentString;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCleanupGlobals"></a>xmlCleanupGlobals ()</h3>
+<pre class="programlisting">void       xmlCleanupGlobals               (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Additional cleanup for multi-threading</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDeregisterNodeDefault"></a>xmlDeregisterNodeDefault ()</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a>     xmlDeregisterNodeDefault        (<a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> func)<br>
+</pre>
+<p>Registers a callback for node destruction</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>func</tt></i>:</span></td>
+<td>function pointer to the new DeregisterNodeFunc</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the previous value of the deregistration function</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInitGlobals"></a>xmlInitGlobals ()</h3>
+<pre class="programlisting">void       xmlInitGlobals                  (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Additional initialisation for multi-threading</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInitializeGlobalState"></a>xmlInitializeGlobalState ()</h3>
+<pre class="programlisting">void       xmlInitializeGlobalState        (<a href="libxml2-globals.html#xmlGlobalStatePtr">xmlGlobalStatePtr</a> gs)<br>
+</pre>
+<p>xmlInitializeGlobalState() initialize a global state with all the default values of the library.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>gs</tt></i>:</span></td>
+<td>a pointer to a newly allocated global state</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferCreateFilenameDefault"></a>xmlOutputBufferCreateFilenameDefault ()</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a>     xmlOutputBufferCreateFilenameDefault    (<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> func)<br>
+</pre>
+<p>Registers a callback for URI output file handling</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>func</tt></i>:</span></td>
+<td>function pointer to the new OutputBufferCreateFilenameFunc</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the old value of the registration function</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferCreateFilenameDefault"></a>xmlParserInputBufferCreateFilenameDefault ()</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a>   xmlParserInputBufferCreateFilenameDefault       (<a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a> func)<br>
+</pre>
+<p>Registers a callback for URI input file handling</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>func</tt></i>:</span></td>
+<td>function pointer to the new ParserInputBufferCreateFilenameFunc</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the old value of the registration function</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegisterNodeDefault"></a>xmlRegisterNodeDefault ()</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> xmlRegisterNodeDefault  (<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> func)<br>
+</pre>
+<p>Registers a callback for node creation</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>func</tt></i>:</span></td>
+<td>function pointer to the new RegisterNodeFunc</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the old value of the registration function</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefBufferAllocScheme"></a>xmlThrDefBufferAllocScheme ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a>        xmlThrDefBufferAllocScheme      (<a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefDefaultBufferSize"></a>xmlThrDefDefaultBufferSize ()</h3>
+<pre class="programlisting">int        xmlThrDefDefaultBufferSize      (int v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefDeregisterNodeDefault"></a>xmlThrDefDeregisterNodeDefault ()</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a>     xmlThrDefDeregisterNodeDefault  (<a href="libxml2-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a> func)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>func</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefDoValidityCheckingDefaultValue"></a>xmlThrDefDoValidityCheckingDefaultValue ()</h3>
+<pre class="programlisting">int        xmlThrDefDoValidityCheckingDefaultValue (int v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefGetWarningsDefaultValue"></a>xmlThrDefGetWarningsDefaultValue ()</h3>
+<pre class="programlisting">int        xmlThrDefGetWarningsDefaultValue        (int v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefIndentTreeOutput"></a>xmlThrDefIndentTreeOutput ()</h3>
+<pre class="programlisting">int        xmlThrDefIndentTreeOutput       (int v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefKeepBlanksDefaultValue"></a>xmlThrDefKeepBlanksDefaultValue ()</h3>
+<pre class="programlisting">int        xmlThrDefKeepBlanksDefaultValue (int v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefLineNumbersDefaultValue"></a>xmlThrDefLineNumbersDefaultValue ()</h3>
+<pre class="programlisting">int        xmlThrDefLineNumbersDefaultValue        (int v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefLoadExtDtdDefaultValue"></a>xmlThrDefLoadExtDtdDefaultValue ()</h3>
+<pre class="programlisting">int        xmlThrDefLoadExtDtdDefaultValue (int v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefOutputBufferCreateFilenameDefault"></a>xmlThrDefOutputBufferCreateFilenameDefault ()</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a>     xmlThrDefOutputBufferCreateFilenameDefault      (<a href="libxml2-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a> func)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>func</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefParserDebugEntities"></a>xmlThrDefParserDebugEntities ()</h3>
+<pre class="programlisting">int        xmlThrDefParserDebugEntities    (int v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefParserInputBufferCreateFilenameDefault"></a>xmlThrDefParserInputBufferCreateFilenameDefault ()</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a>   xmlThrDefParserInputBufferCreateFilenameDefault (<a href="libxml2-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a> func)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>func</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefPedanticParserDefaultValue"></a>xmlThrDefPedanticParserDefaultValue ()</h3>
+<pre class="programlisting">int        xmlThrDefPedanticParserDefaultValue     (int v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefRegisterNodeDefault"></a>xmlThrDefRegisterNodeDefault ()</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> xmlThrDefRegisterNodeDefault    (<a href="libxml2-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a> func)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>func</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefSaveNoEmptyTags"></a>xmlThrDefSaveNoEmptyTags ()</h3>
+<pre class="programlisting">int        xmlThrDefSaveNoEmptyTags        (int v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefSetGenericErrorFunc"></a>xmlThrDefSetGenericErrorFunc ()</h3>
+<pre class="programlisting">void       xmlThrDefSetGenericErrorFunc    (void * ctx, <br>                                        <a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> handler)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefSetStructuredErrorFunc"></a>xmlThrDefSetStructuredErrorFunc ()</h3>
+<pre class="programlisting">void       xmlThrDefSetStructuredErrorFunc (void * ctx, <br>                                        <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> handler)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefSubstituteEntitiesDefaultValue"></a>xmlThrDefSubstituteEntitiesDefaultValue ()</h3>
+<pre class="programlisting">int        xmlThrDefSubstituteEntitiesDefaultValue (int v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlThrDefTreeIndentString"></a>xmlThrDefTreeIndentString ()</h3>
+<pre class="programlisting">const char *       xmlThrDefTreeIndentString       (const char * v)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>v</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 9f997fb..894c3f8 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>hash: Chained hash tables</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-globals.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-list.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">hash</span>
-    </h2>
-    <p>hash - Chained hash tables</p>
-    <p>This module implements the hash table support used in various places in the library. </p>
-    <p>Author(s): Bjorn Reese &lt;bjorn.reese@systematic.dk&gt; </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#XML_CAST_FPTR">XML_CAST_FPTR</a>(fptr);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>hash: Chained hash tables</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-globals.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-list.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">hash</span></h2>
+<p>hash - Chained hash tables</p>
+<p>This module implements the hash table support used in various places in the library. </p>
+<p>Author(s): Bjorn Reese &lt;bjorn.reese@systematic.dk&gt; </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#XML_CAST_FPTR">XML_CAST_FPTR</a>(fptr);
 typedef struct _xmlHashTable <a href="#xmlHashTable">xmlHashTable</a>;
 typedef <a href="libxml2-hash.html#xmlHashTable">xmlHashTable</a> * <a href="#xmlHashTablePtr">xmlHashTablePtr</a>;
-void   <a href="#xmlHashScanFull">xmlHashScanFull</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    <a href="libxml2-hash.html#xmlHashScannerFull">xmlHashScannerFull</a> f, <br/>                                  void * data);
-void   <a href="#xmlHashScan">xmlHashScan</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    <a href="libxml2-hash.html#xmlHashScanner">xmlHashScanner</a> f, <br/>                                  void * data);
-typedef void <a href="#xmlHashScannerFull">xmlHashScannerFull</a>              (void * payload, <br/>                                   void * data, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3);
-<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>        <a href="#xmlHashCreateDict">xmlHashCreateDict</a>      (int size, <br/>                                         <a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict);
-int    <a href="#xmlHashAddEntry">xmlHashAddEntry</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        void * userdata);
-int    <a href="#xmlHashUpdateEntry">xmlHashUpdateEntry</a>            (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        void * userdata, <br/>                                  <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
-void * <a href="#xmlHashQLookup3">xmlHashQLookup3</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix2, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix3, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3);
-void * <a href="#xmlHashQLookup2">xmlHashQLookup2</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix2, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2);
-void   <a href="#xmlHashScan3">xmlHashScan3</a>                        (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br/>                                       <a href="libxml2-hash.html#xmlHashScanner">xmlHashScanner</a> f, <br/>                                  void * data);
-typedef void <a href="#xmlHashScanner">xmlHashScanner</a>                      (void * payload, <br/>                                   void * data, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-typedef void <a href="#xmlHashDeallocator">xmlHashDeallocator</a>              (void * payload, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlHashAddEntry">xmlHashAddEntry</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         void * userdata);
+int    <a href="#xmlHashAddEntry2">xmlHashAddEntry2</a>                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        void * userdata);
+int    <a href="#xmlHashAddEntry3">xmlHashAddEntry3</a>                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br>                                        void * userdata);
+typedef void * <a href="#xmlHashCopier">xmlHashCopier</a>                      (void * payload, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>        <a href="#xmlHashCopy">xmlHashCopy</a>          (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     <a href="libxml2-hash.html#xmlHashCopier">xmlHashCopier</a> f);
 <a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>        <a href="#xmlHashCreate">xmlHashCreate</a>              (int size);
-void   <a href="#xmlHashFree">xmlHashFree</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
-void * <a href="#xmlHashLookup">xmlHashLookup</a>                      (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void * <a href="#xmlHashQLookup">xmlHashQLookup</a>                    (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a>          (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       void * userdata, <br/>                                  <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
-int    <a href="#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a>          (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
-int    <a href="#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a>          (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br/>                                       <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
-<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>        <a href="#xmlHashCopy">xmlHashCopy</a>          (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    <a href="libxml2-hash.html#xmlHashCopier">xmlHashCopier</a> f);
-void   <a href="#xmlHashScanFull3">xmlHashScanFull3</a>                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br/>                                       <a href="libxml2-hash.html#xmlHashScannerFull">xmlHashScannerFull</a> f, <br/>                                  void * data);
-int    <a href="#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a>          (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br/>                                       void * userdata, <br/>                                  <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
-void   <a href="#xmlHashDefaultDeallocator">xmlHashDefaultDeallocator</a>      (void * entry, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void * <a href="#xmlHashLookup3">xmlHashLookup3</a>                    (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3);
-void * <a href="#xmlHashLookup2">xmlHashLookup2</a>                    (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2);
-int    <a href="#xmlHashRemoveEntry">xmlHashRemoveEntry</a>            (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
-typedef void * <a href="#xmlHashCopier">xmlHashCopier</a>                      (void * payload, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlHashAddEntry2">xmlHashAddEntry2</a>                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       void * userdata);
-int    <a href="#xmlHashAddEntry3">xmlHashAddEntry3</a>                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br/>                                       void * userdata);
+<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>        <a href="#xmlHashCreateDict">xmlHashCreateDict</a>      (int size, <br>                                  <a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict);
+typedef void <a href="#xmlHashDeallocator">xmlHashDeallocator</a>              (void * payload, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+void   <a href="#xmlHashDefaultDeallocator">xmlHashDefaultDeallocator</a>      (void * entry, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+void   <a href="#xmlHashFree">xmlHashFree</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
+void * <a href="#xmlHashLookup">xmlHashLookup</a>                      (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+void * <a href="#xmlHashLookup2">xmlHashLookup2</a>                    (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2);
+void * <a href="#xmlHashLookup3">xmlHashLookup3</a>                    (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3);
+void * <a href="#xmlHashQLookup">xmlHashQLookup</a>                    (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+void * <a href="#xmlHashQLookup2">xmlHashQLookup2</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix2, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2);
+void * <a href="#xmlHashQLookup3">xmlHashQLookup3</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix2, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix3, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3);
+int    <a href="#xmlHashRemoveEntry">xmlHashRemoveEntry</a>            (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
+int    <a href="#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a>          (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
+int    <a href="#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a>          (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br>                                        <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
+void   <a href="#xmlHashScan">xmlHashScan</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     <a href="libxml2-hash.html#xmlHashScanner">xmlHashScanner</a> f, <br>                                   void * data);
+void   <a href="#xmlHashScan3">xmlHashScan3</a>                        (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br>                                        <a href="libxml2-hash.html#xmlHashScanner">xmlHashScanner</a> f, <br>                                   void * data);
+void   <a href="#xmlHashScanFull">xmlHashScanFull</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     <a href="libxml2-hash.html#xmlHashScannerFull">xmlHashScannerFull</a> f, <br>                                   void * data);
+void   <a href="#xmlHashScanFull3">xmlHashScanFull3</a>                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br>                                        <a href="libxml2-hash.html#xmlHashScannerFull">xmlHashScannerFull</a> f, <br>                                   void * data);
+typedef void <a href="#xmlHashScanner">xmlHashScanner</a>                      (void * payload, <br>                                    void * data, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+typedef void <a href="#xmlHashScannerFull">xmlHashScannerFull</a>              (void * payload, <br>                                    void * data, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3);
 int    <a href="#xmlHashSize">xmlHashSize</a>                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table);
+int    <a href="#xmlHashUpdateEntry">xmlHashUpdateEntry</a>            (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         void * userdata, <br>                                   <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
+int    <a href="#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a>          (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        void * userdata, <br>                                   <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
+int    <a href="#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a>          (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br>                                        void * userdata, <br>                                   <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="XML_CAST_FPTR">Macro </a>XML_CAST_FPTR</h3><pre class="programlisting">#define <a href="#XML_CAST_FPTR">XML_CAST_FPTR</a>(fptr);
-</pre><p>Macro to do a casting from an object pointer to a function pointer without encountering a warning from gcc #define XML_CAST_FPTR(fptr) (*(void **)(&amp;fptr)) This macro violated ISO C aliasing rules (gcc4 on s390 broke) so it is disabled now</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>fptr</tt></i>:</span></td><td>pointer to a function</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashTable">Structure </a>xmlHashTable</h3><pre class="programlisting">struct _xmlHashTable {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_CAST_FPTR">Macro </a>XML_CAST_FPTR</h3>
+<pre class="programlisting">#define <a href="#XML_CAST_FPTR">XML_CAST_FPTR</a>(fptr);
+</pre>
+<p>Macro to do a casting from an object pointer to a function pointer without encountering a warning from gcc #define XML_CAST_FPTR(fptr) (*(void **)(&amp;fptr)) This macro violated ISO C aliasing rules (gcc4 on s390 broke) so it is disabled now</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>fptr</tt></i>:</span></td>
+<td>pointer to a function</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashTable">Structure </a>xmlHashTable</h3>
+<pre class="programlisting">struct _xmlHashTable {
 The content of this structure is not made public by the API.
 } xmlHashTable;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashTablePtr">Typedef </a>xmlHashTablePtr</h3><pre class="programlisting"><a href="libxml2-hash.html#xmlHashTable">xmlHashTable</a> * xmlHashTablePtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashCopier"/>Function type xmlHashCopier</h3><pre class="programlisting">void *        xmlHashCopier                   (void * payload, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Callback to copy data from a hash.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>payload</tt></i>:</span></td><td>the data in the hash</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name associated</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a copy of the data or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashDeallocator"/>Function type xmlHashDeallocator</h3><pre class="programlisting">void        xmlHashDeallocator              (void * payload, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Callback to free data from a hash.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>payload</tt></i>:</span></td><td>the data in the hash</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name associated</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashScanner"/>Function type xmlHashScanner</h3><pre class="programlisting">void        xmlHashScanner                  (void * payload, <br/>                                   void * data, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Callback when scanning data in a hash with the simple scanner.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>payload</tt></i>:</span></td><td>the data in the hash</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>extra scanner data</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name associated</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashScannerFull"/>Function type xmlHashScannerFull</h3><pre class="programlisting">void        xmlHashScannerFull              (void * payload, <br/>                                   void * data, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3)<br/>
-</pre><p>Callback when scanning data in a hash with the full scanner.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>payload</tt></i>:</span></td><td>the data in the hash</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>extra scanner data</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name associated</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>the second name associated</td></tr><tr><td><span class="term"><i><tt>name3</tt></i>:</span></td><td>the third name associated</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashAddEntry"/>xmlHashAddEntry ()</h3><pre class="programlisting">int  xmlHashAddEntry                 (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        void * userdata)<br/>
-</pre><p>Add the @userdata to the hash @table. This can later be retrieved by using the @name. Duplicate names generate errors.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>userdata</tt></i>:</span></td><td>a pointer to the userdata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 the addition succeeded and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashAddEntry2"/>xmlHashAddEntry2 ()</h3><pre class="programlisting">int        xmlHashAddEntry2                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       void * userdata)<br/>
-</pre><p>Add the @userdata to the hash @table. This can later be retrieved by using the (@name, @name2) tuple. Duplicate tuples generate errors.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata</td></tr><tr><td><span class="term"><i><tt>userdata</tt></i>:</span></td><td>a pointer to the userdata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 the addition succeeded and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashAddEntry3"/>xmlHashAddEntry3 ()</h3><pre class="programlisting">int        xmlHashAddEntry3                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br/>                                       void * userdata)<br/>
-</pre><p>Add the @userdata to the hash @table. This can later be retrieved by using the tuple (@name, @name2, @name3). Duplicate entries generate errors.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata</td></tr><tr><td><span class="term"><i><tt>name3</tt></i>:</span></td><td>a third name of the userdata</td></tr><tr><td><span class="term"><i><tt>userdata</tt></i>:</span></td><td>a pointer to the userdata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 the addition succeeded and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashCopy"/>xmlHashCopy ()</h3><pre class="programlisting"><a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>      xmlHashCopy             (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    <a href="libxml2-hash.html#xmlHashCopier">xmlHashCopier</a> f)<br/>
-</pre><p>Scan the hash @table and applied @f to each value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the copier function for items in the hash</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new table or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashCreate"/>xmlHashCreate ()</h3><pre class="programlisting"><a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>  xmlHashCreate           (int size)<br/>
-</pre><p>Create a new xmlHashTablePtr.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the hash table</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object, or NULL if an error occurred.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashCreateDict"/>xmlHashCreateDict ()</h3><pre class="programlisting"><a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>  xmlHashCreateDict       (int size, <br/>                                         <a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br/>
-</pre><p>Create a new <a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> which will use @dict as the internal dictionary</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the hash table</td></tr><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>a dictionary to use for the hash</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object, or NULL if an error occurred.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashDefaultDeallocator"/>xmlHashDefaultDeallocator ()</h3><pre class="programlisting">void     xmlHashDefaultDeallocator       (void * entry, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Free a hash table entry with xmlFree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>entry</tt></i>:</span></td><td>the hash table entry</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entry's name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashFree"/>xmlHashFree ()</h3><pre class="programlisting">void xmlHashFree                     (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br/>
-</pre><p>Free the hash @table and its contents. The userdata is deallocated with @f if provided.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the deallocator function for items in the hash</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashLookup"/>xmlHashLookup ()</h3><pre class="programlisting">void *   xmlHashLookup                   (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Find the userdata specified by the @name.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the pointer to the userdata</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashLookup2"/>xmlHashLookup2 ()</h3><pre class="programlisting">void * xmlHashLookup2                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2)<br/>
-</pre><p>Find the userdata specified by the (@name, @name2) tuple.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the pointer to the userdata</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashLookup3"/>xmlHashLookup3 ()</h3><pre class="programlisting">void * xmlHashLookup3                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3)<br/>
-</pre><p>Find the userdata specified by the (@name, @name2, @name3) tuple.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata</td></tr><tr><td><span class="term"><i><tt>name3</tt></i>:</span></td><td>a third name of the userdata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the a pointer to the userdata</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashQLookup"/>xmlHashQLookup ()</h3><pre class="programlisting">void * xmlHashQLookup                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Find the userdata specified by the QName @prefix:@name/@name.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the prefix of the userdata</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the pointer to the userdata</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashQLookup2"/>xmlHashQLookup2 ()</h3><pre class="programlisting">void *       xmlHashQLookup2                 (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix2, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2)<br/>
-</pre><p>Find the userdata specified by the QNames tuple</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the prefix of the userdata</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>prefix2</tt></i>:</span></td><td>the second prefix of the userdata</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the pointer to the userdata</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashQLookup3"/>xmlHashQLookup3 ()</h3><pre class="programlisting">void *       xmlHashQLookup3                 (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix2, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix3, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3)<br/>
-</pre><p>Find the userdata specified by the (@name, @name2, @name3) tuple.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the prefix of the userdata</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>prefix2</tt></i>:</span></td><td>the second prefix of the userdata</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata</td></tr><tr><td><span class="term"><i><tt>prefix3</tt></i>:</span></td><td>the third prefix of the userdata</td></tr><tr><td><span class="term"><i><tt>name3</tt></i>:</span></td><td>a third name of the userdata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the a pointer to the userdata</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashRemoveEntry"/>xmlHashRemoveEntry ()</h3><pre class="programlisting">int    xmlHashRemoveEntry              (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br/>
-</pre><p>Find the userdata specified by the @name and remove it from the hash @table. Existing userdata for this tuple will be removed and freed with @f.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the deallocator function for removed item (if any)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the removal succeeded and -1 in case of error or not found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashRemoveEntry2"/>xmlHashRemoveEntry2 ()</h3><pre class="programlisting">int  xmlHashRemoveEntry2             (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br/>
-</pre><p>Find the userdata specified by the (@name, @name2) tuple and remove it from the hash @table. Existing userdata for this tuple will be removed and freed with @f.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the deallocator function for removed item (if any)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the removal succeeded and -1 in case of error or not found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashRemoveEntry3"/>xmlHashRemoveEntry3 ()</h3><pre class="programlisting">int  xmlHashRemoveEntry3             (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br/>                                       <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br/>
-</pre><p>Find the userdata specified by the (@name, @name2, @name3) tuple and remove it from the hash @table. Existing userdata for this tuple will be removed and freed with @f.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata</td></tr><tr><td><span class="term"><i><tt>name3</tt></i>:</span></td><td>a third name of the userdata</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the deallocator function for removed item (if any)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the removal succeeded and -1 in case of error or not found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashScan"/>xmlHashScan ()</h3><pre class="programlisting">void xmlHashScan                     (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    <a href="libxml2-hash.html#xmlHashScanner">xmlHashScanner</a> f, <br/>                                  void * data)<br/>
-</pre><p>Scan the hash @table and applied @f to each value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the scanner function for items in the hash</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>extra data passed to f</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashScan3"/>xmlHashScan3 ()</h3><pre class="programlisting">void       xmlHashScan3                    (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br/>                                       <a href="libxml2-hash.html#xmlHashScanner">xmlHashScanner</a> f, <br/>                                  void * data)<br/>
-</pre><p>Scan the hash @table and applied @f to each value matching (@name, @name2, @name3) tuple. If one of the names is null, the comparison is considered to match.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata or NULL</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata or NULL</td></tr><tr><td><span class="term"><i><tt>name3</tt></i>:</span></td><td>a third name of the userdata or NULL</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the scanner function for items in the hash</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>extra data passed to f</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashScanFull"/>xmlHashScanFull ()</h3><pre class="programlisting">void xmlHashScanFull                 (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    <a href="libxml2-hash.html#xmlHashScannerFull">xmlHashScannerFull</a> f, <br/>                                  void * data)<br/>
-</pre><p>Scan the hash @table and applied @f to each value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the scanner function for items in the hash</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>extra data passed to f</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashScanFull3"/>xmlHashScanFull3 ()</h3><pre class="programlisting">void       xmlHashScanFull3                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br/>                                       <a href="libxml2-hash.html#xmlHashScannerFull">xmlHashScannerFull</a> f, <br/>                                  void * data)<br/>
-</pre><p>Scan the hash @table and applied @f to each value matching (@name, @name2, @name3) tuple. If one of the names is null, the comparison is considered to match.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata or NULL</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata or NULL</td></tr><tr><td><span class="term"><i><tt>name3</tt></i>:</span></td><td>a third name of the userdata or NULL</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the scanner function for items in the hash</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>extra data passed to f</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashSize"/>xmlHashSize ()</h3><pre class="programlisting">int  xmlHashSize                     (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table)<br/>
-</pre><p>Query the number of elements installed in the hash @table.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of elements in the hash table or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashUpdateEntry"/>xmlHashUpdateEntry ()</h3><pre class="programlisting">int    xmlHashUpdateEntry              (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        void * userdata, <br/>                                  <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br/>
-</pre><p>Add the @userdata to the hash @table. This can later be retrieved by using the @name. Existing entry for this @name will be removed and freed with @f if found.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>userdata</tt></i>:</span></td><td>a pointer to the userdata</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the deallocator function for replaced item (if any)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 the addition succeeded and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashUpdateEntry2"/>xmlHashUpdateEntry2 ()</h3><pre class="programlisting">int  xmlHashUpdateEntry2             (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       void * userdata, <br/>                                  <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br/>
-</pre><p>Add the @userdata to the hash @table. This can later be retrieved by using the (@name, @name2) tuple. Existing entry for this tuple will be removed and freed with @f if found.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata</td></tr><tr><td><span class="term"><i><tt>userdata</tt></i>:</span></td><td>a pointer to the userdata</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the deallocator function for replaced item (if any)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 the addition succeeded and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHashUpdateEntry3"/>xmlHashUpdateEntry3 ()</h3><pre class="programlisting">int  xmlHashUpdateEntry3             (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br/>                                       void * userdata, <br/>                                  <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br/>
-</pre><p>Add the @userdata to the hash @table. This can later be retrieved by using the tuple (@name, @name2, @name3). Existing entry for this tuple will be removed and freed with @f if found.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>the hash table</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the userdata</td></tr><tr><td><span class="term"><i><tt>name2</tt></i>:</span></td><td>a second name of the userdata</td></tr><tr><td><span class="term"><i><tt>name3</tt></i>:</span></td><td>a third name of the userdata</td></tr><tr><td><span class="term"><i><tt>userdata</tt></i>:</span></td><td>a pointer to the userdata</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the deallocator function for replaced item (if any)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 the addition succeeded and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashTablePtr">Typedef </a>xmlHashTablePtr</h3>
+<pre class="programlisting"><a href="libxml2-hash.html#xmlHashTable">xmlHashTable</a> * xmlHashTablePtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashCopier"></a>Function type xmlHashCopier</h3>
+<pre class="programlisting">void *     xmlHashCopier                   (void * payload, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Callback to copy data from a hash.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>payload</tt></i>:</span></td>
+<td>the data in the hash</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name associated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a copy of the data or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashDeallocator"></a>Function type xmlHashDeallocator</h3>
+<pre class="programlisting">void       xmlHashDeallocator              (void * payload, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Callback to free data from a hash.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>payload</tt></i>:</span></td>
+<td>the data in the hash</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name associated</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashScanner"></a>Function type xmlHashScanner</h3>
+<pre class="programlisting">void       xmlHashScanner                  (void * payload, <br>                                    void * data, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Callback when scanning data in a hash with the simple scanner.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>payload</tt></i>:</span></td>
+<td>the data in the hash</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>extra scanner data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name associated</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashScannerFull"></a>Function type xmlHashScannerFull</h3>
+<pre class="programlisting">void       xmlHashScannerFull              (void * payload, <br>                                    void * data, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3)<br>
+</pre>
+<p>Callback when scanning data in a hash with the full scanner.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>payload</tt></i>:</span></td>
+<td>the data in the hash</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>extra scanner data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name associated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>the second name associated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name3</tt></i>:</span></td>
+<td>the third name associated</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashAddEntry"></a>xmlHashAddEntry ()</h3>
+<pre class="programlisting">int        xmlHashAddEntry                 (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         void * userdata)<br>
+</pre>
+<p>Add the @userdata to the hash @table. This can later be retrieved by using the @name. Duplicate names generate errors.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>userdata</tt></i>:</span></td>
+<td>a pointer to the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 the addition succeeded and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashAddEntry2"></a>xmlHashAddEntry2 ()</h3>
+<pre class="programlisting">int        xmlHashAddEntry2                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        void * userdata)<br>
+</pre>
+<p>Add the @userdata to the hash @table. This can later be retrieved by using the (@name, @name2) tuple. Duplicate tuples generate errors.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>userdata</tt></i>:</span></td>
+<td>a pointer to the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 the addition succeeded and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashAddEntry3"></a>xmlHashAddEntry3 ()</h3>
+<pre class="programlisting">int        xmlHashAddEntry3                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br>                                        void * userdata)<br>
+</pre>
+<p>Add the @userdata to the hash @table. This can later be retrieved by using the tuple (@name, @name2, @name3). Duplicate entries generate errors.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name3</tt></i>:</span></td>
+<td>a third name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>userdata</tt></i>:</span></td>
+<td>a pointer to the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 the addition succeeded and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashCopy"></a>xmlHashCopy ()</h3>
+<pre class="programlisting"><a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>    xmlHashCopy             (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     <a href="libxml2-hash.html#xmlHashCopier">xmlHashCopier</a> f)<br>
+</pre>
+<p>Scan the hash @table and applied @f to each value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the copier function for items in the hash</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new table or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashCreate"></a>xmlHashCreate ()</h3>
+<pre class="programlisting"><a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>    xmlHashCreate           (int size)<br>
+</pre>
+<p>Create a new xmlHashTablePtr.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object, or NULL if an error occurred.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashCreateDict"></a>xmlHashCreateDict ()</h3>
+<pre class="programlisting"><a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>    xmlHashCreateDict       (int size, <br>                                  <a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br>
+</pre>
+<p>Create a new <a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> which will use @dict as the internal dictionary</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>a dictionary to use for the hash</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object, or NULL if an error occurred.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashDefaultDeallocator"></a>xmlHashDefaultDeallocator ()</h3>
+<pre class="programlisting">void       xmlHashDefaultDeallocator       (void * entry, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Free a hash table entry with xmlFree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>entry</tt></i>:</span></td>
+<td>the hash table entry</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entry's name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashFree"></a>xmlHashFree ()</h3>
+<pre class="programlisting">void       xmlHashFree                     (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br>
+</pre>
+<p>Free the hash @table and its contents. The userdata is deallocated with @f if provided.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the deallocator function for items in the hash</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashLookup"></a>xmlHashLookup ()</h3>
+<pre class="programlisting">void *     xmlHashLookup                   (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Find the userdata specified by the @name.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the pointer to the userdata</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashLookup2"></a>xmlHashLookup2 ()</h3>
+<pre class="programlisting">void *     xmlHashLookup2                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2)<br>
+</pre>
+<p>Find the userdata specified by the (@name, @name2) tuple.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the pointer to the userdata</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashLookup3"></a>xmlHashLookup3 ()</h3>
+<pre class="programlisting">void *     xmlHashLookup3                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3)<br>
+</pre>
+<p>Find the userdata specified by the (@name, @name2, @name3) tuple.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name3</tt></i>:</span></td>
+<td>a third name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the a pointer to the userdata</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashQLookup"></a>xmlHashQLookup ()</h3>
+<pre class="programlisting">void *     xmlHashQLookup                  (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Find the userdata specified by the QName @prefix:@name/@name.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the prefix of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the pointer to the userdata</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashQLookup2"></a>xmlHashQLookup2 ()</h3>
+<pre class="programlisting">void *     xmlHashQLookup2                 (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix2, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2)<br>
+</pre>
+<p>Find the userdata specified by the QNames tuple</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the prefix of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix2</tt></i>:</span></td>
+<td>the second prefix of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the pointer to the userdata</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashQLookup3"></a>xmlHashQLookup3 ()</h3>
+<pre class="programlisting">void *     xmlHashQLookup3                 (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix2, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix3, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3)<br>
+</pre>
+<p>Find the userdata specified by the (@name, @name2, @name3) tuple.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the prefix of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix2</tt></i>:</span></td>
+<td>the second prefix of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix3</tt></i>:</span></td>
+<td>the third prefix of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name3</tt></i>:</span></td>
+<td>a third name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the a pointer to the userdata</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashRemoveEntry"></a>xmlHashRemoveEntry ()</h3>
+<pre class="programlisting">int        xmlHashRemoveEntry              (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br>
+</pre>
+<p>Find the userdata specified by the @name and remove it from the hash @table. Existing userdata for this tuple will be removed and freed with @f.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the deallocator function for removed item (if any)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the removal succeeded and -1 in case of error or not found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashRemoveEntry2"></a>xmlHashRemoveEntry2 ()</h3>
+<pre class="programlisting">int        xmlHashRemoveEntry2             (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br>
+</pre>
+<p>Find the userdata specified by the (@name, @name2) tuple and remove it from the hash @table. Existing userdata for this tuple will be removed and freed with @f.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the deallocator function for removed item (if any)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the removal succeeded and -1 in case of error or not found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashRemoveEntry3"></a>xmlHashRemoveEntry3 ()</h3>
+<pre class="programlisting">int        xmlHashRemoveEntry3             (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br>                                        <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br>
+</pre>
+<p>Find the userdata specified by the (@name, @name2, @name3) tuple and remove it from the hash @table. Existing userdata for this tuple will be removed and freed with @f.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name3</tt></i>:</span></td>
+<td>a third name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the deallocator function for removed item (if any)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the removal succeeded and -1 in case of error or not found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashScan"></a>xmlHashScan ()</h3>
+<pre class="programlisting">void       xmlHashScan                     (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     <a href="libxml2-hash.html#xmlHashScanner">xmlHashScanner</a> f, <br>                                   void * data)<br>
+</pre>
+<p>Scan the hash @table and applied @f to each value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the scanner function for items in the hash</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>extra data passed to f</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashScan3"></a>xmlHashScan3 ()</h3>
+<pre class="programlisting">void       xmlHashScan3                    (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br>                                        <a href="libxml2-hash.html#xmlHashScanner">xmlHashScanner</a> f, <br>                                   void * data)<br>
+</pre>
+<p>Scan the hash @table and applied @f to each value matching (@name, @name2, @name3) tuple. If one of the names is null, the comparison is considered to match.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name3</tt></i>:</span></td>
+<td>a third name of the userdata or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the scanner function for items in the hash</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>extra data passed to f</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashScanFull"></a>xmlHashScanFull ()</h3>
+<pre class="programlisting">void       xmlHashScanFull                 (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     <a href="libxml2-hash.html#xmlHashScannerFull">xmlHashScannerFull</a> f, <br>                                   void * data)<br>
+</pre>
+<p>Scan the hash @table and applied @f to each value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the scanner function for items in the hash</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>extra data passed to f</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashScanFull3"></a>xmlHashScanFull3 ()</h3>
+<pre class="programlisting">void       xmlHashScanFull3                (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br>                                        <a href="libxml2-hash.html#xmlHashScannerFull">xmlHashScannerFull</a> f, <br>                                   void * data)<br>
+</pre>
+<p>Scan the hash @table and applied @f to each value matching (@name, @name2, @name3) tuple. If one of the names is null, the comparison is considered to match.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name3</tt></i>:</span></td>
+<td>a third name of the userdata or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the scanner function for items in the hash</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>extra data passed to f</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashSize"></a>xmlHashSize ()</h3>
+<pre class="programlisting">int        xmlHashSize                     (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table)<br>
+</pre>
+<p>Query the number of elements installed in the hash @table.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of elements in the hash table or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashUpdateEntry"></a>xmlHashUpdateEntry ()</h3>
+<pre class="programlisting">int        xmlHashUpdateEntry              (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         void * userdata, <br>                                   <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br>
+</pre>
+<p>Add the @userdata to the hash @table. This can later be retrieved by using the @name. Existing entry for this @name will be removed and freed with @f if found.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>userdata</tt></i>:</span></td>
+<td>a pointer to the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the deallocator function for replaced item (if any)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 the addition succeeded and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashUpdateEntry2"></a>xmlHashUpdateEntry2 ()</h3>
+<pre class="programlisting">int        xmlHashUpdateEntry2             (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        void * userdata, <br>                                   <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br>
+</pre>
+<p>Add the @userdata to the hash @table. This can later be retrieved by using the (@name, @name2) tuple. Existing entry for this tuple will be removed and freed with @f if found.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>userdata</tt></i>:</span></td>
+<td>a pointer to the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the deallocator function for replaced item (if any)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 the addition succeeded and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHashUpdateEntry3"></a>xmlHashUpdateEntry3 ()</h3>
+<pre class="programlisting">int        xmlHashUpdateEntry3             (<a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a> table, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name2, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name3, <br>                                        void * userdata, <br>                                   <a href="libxml2-hash.html#xmlHashDeallocator">xmlHashDeallocator</a> f)<br>
+</pre>
+<p>Add the @userdata to the hash @table. This can later be retrieved by using the tuple (@name, @name2, @name3). Existing entry for this tuple will be removed and freed with @f if found.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>the hash table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name2</tt></i>:</span></td>
+<td>a second name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name3</tt></i>:</span></td>
+<td>a third name of the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>userdata</tt></i>:</span></td>
+<td>a pointer to the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the deallocator function for replaced item (if any)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 the addition succeeded and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 0ae2f11..649f97a 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>list: lists interfaces</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-hash.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-nanoftp.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">list</span>
-    </h2>
-    <p>list - lists interfaces</p>
-    <p>this module implement the list support used in various place in the library. </p>
-    <p>Author(s): Gary Pennington &lt;Gary.Pennington@uk.sun.com&gt; </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef struct _xmlLink <a href="#xmlLink">xmlLink</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>list: lists interfaces</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-hash.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-nanoftp.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">list</span></h2>
+<p>list - lists interfaces</p>
+<p>this module implement the list support used in various place in the library. </p>
+<p>Author(s): Gary Pennington &lt;Gary.Pennington@uk.sun.com&gt; </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlLink <a href="#xmlLink">xmlLink</a>;
 typedef <a href="libxml2-list.html#xmlLink">xmlLink</a> * <a href="#xmlLinkPtr">xmlLinkPtr</a>;
 typedef struct _xmlList <a href="#xmlList">xmlList</a>;
 typedef <a href="libxml2-list.html#xmlList">xmlList</a> * <a href="#xmlListPtr">xmlListPtr</a>;
-int    <a href="#xmlListInsert">xmlListInsert</a>                      (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data);
-int    <a href="#xmlListEmpty">xmlListEmpty</a>                        (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
-void   <a href="#xmlListSort">xmlListSort</a>                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
+void * <a href="#xmlLinkGetData">xmlLinkGetData</a>                    (<a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a> lk);
+int    <a href="#xmlListAppend">xmlListAppend</a>                      (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data);
+void   <a href="#xmlListClear">xmlListClear</a>                        (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
+int    <a href="#xmlListCopy">xmlListCopy</a>                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> cur, <br>                                         const <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> old);
+<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a>  <a href="#xmlListCreate">xmlListCreate</a>              (<a href="libxml2-list.html#xmlListDeallocator">xmlListDeallocator</a> deallocator, <br>                                         <a href="libxml2-list.html#xmlListDataCompare">xmlListDataCompare</a> compare);
+typedef int <a href="#xmlListDataCompare">xmlListDataCompare</a>               (const void * data0, <br>                                        const void * data1);
 typedef void <a href="#xmlListDeallocator">xmlListDeallocator</a>              (<a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a> lk);
-void   <a href="#xmlListMerge">xmlListMerge</a>                        (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l1, <br/>                                         <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l2);
-<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a>  <a href="#xmlListCreate">xmlListCreate</a>              (<a href="libxml2-list.html#xmlListDeallocator">xmlListDeallocator</a> deallocator, <br/>                                        <a href="libxml2-list.html#xmlListDataCompare">xmlListDataCompare</a> compare);
+void   <a href="#xmlListDelete">xmlListDelete</a>                      (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
 <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a>  <a href="#xmlListDup">xmlListDup</a>            (const <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> old);
-int    <a href="#xmlListRemoveLast">xmlListRemoveLast</a>              (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data);
-void   <a href="#xmlListWalk">xmlListWalk</a>                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  <a href="libxml2-list.html#xmlListWalker">xmlListWalker</a> walker, <br/>                                       void * user);
-int    <a href="#xmlListRemoveAll">xmlListRemoveAll</a>                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data);
-int    <a href="#xmlListCopy">xmlListCopy</a>                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> cur, <br/>                                        const <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> old);
+int    <a href="#xmlListEmpty">xmlListEmpty</a>                        (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
+<a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a>  <a href="#xmlListEnd">xmlListEnd</a>            (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
+<a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a>  <a href="#xmlListFront">xmlListFront</a>                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
+int    <a href="#xmlListInsert">xmlListInsert</a>                      (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data);
+void   <a href="#xmlListMerge">xmlListMerge</a>                        (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l1, <br>                                  <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l2);
+void   <a href="#xmlListPopBack">xmlListPopBack</a>                    (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
 void   <a href="#xmlListPopFront">xmlListPopFront</a>                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
-void * <a href="#xmlListSearch">xmlListSearch</a>                      (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data);
-typedef int <a href="#xmlListWalker">xmlListWalker</a>                 (const void * data, <br/>                                        void * user);
-int    <a href="#xmlListRemoveFirst">xmlListRemoveFirst</a>            (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data);
-void   <a href="#xmlListReverseWalk">xmlListReverseWalk</a>            (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  <a href="libxml2-list.html#xmlListWalker">xmlListWalker</a> walker, <br/>                                       void * user);
-void * <a href="#xmlLinkGetData">xmlLinkGetData</a>                    (<a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a> lk);
-void   <a href="#xmlListClear">xmlListClear</a>                        (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
-int    <a href="#xmlListAppend">xmlListAppend</a>                      (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data);
+int    <a href="#xmlListPushBack">xmlListPushBack</a>                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data);
+int    <a href="#xmlListPushFront">xmlListPushFront</a>                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data);
+int    <a href="#xmlListRemoveAll">xmlListRemoveAll</a>                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data);
+int    <a href="#xmlListRemoveFirst">xmlListRemoveFirst</a>            (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data);
+int    <a href="#xmlListRemoveLast">xmlListRemoveLast</a>              (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data);
 void   <a href="#xmlListReverse">xmlListReverse</a>                    (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
-typedef int <a href="#xmlListDataCompare">xmlListDataCompare</a>               (const void * data0, <br/>                                       const void * data1);
+void * <a href="#xmlListReverseSearch">xmlListReverseSearch</a>                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data);
+void   <a href="#xmlListReverseWalk">xmlListReverseWalk</a>            (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   <a href="libxml2-list.html#xmlListWalker">xmlListWalker</a> walker, <br>                                        void * user);
+void * <a href="#xmlListSearch">xmlListSearch</a>                      (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data);
 int    <a href="#xmlListSize">xmlListSize</a>                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
-int    <a href="#xmlListPushFront">xmlListPushFront</a>                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data);
-<a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a>  <a href="#xmlListEnd">xmlListEnd</a>            (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
-void   <a href="#xmlListPopBack">xmlListPopBack</a>                    (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
-void * <a href="#xmlListReverseSearch">xmlListReverseSearch</a>                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data);
-int    <a href="#xmlListPushBack">xmlListPushBack</a>                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data);
-<a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a>  <a href="#xmlListFront">xmlListFront</a>                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
-void   <a href="#xmlListDelete">xmlListDelete</a>                      (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
+void   <a href="#xmlListSort">xmlListSort</a>                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l);
+void   <a href="#xmlListWalk">xmlListWalk</a>                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   <a href="libxml2-list.html#xmlListWalker">xmlListWalker</a> walker, <br>                                        void * user);
+typedef int <a href="#xmlListWalker">xmlListWalker</a>                 (const void * data, <br>                                         void * user);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlLink">Structure </a>xmlLink</h3><pre class="programlisting">struct _xmlLink {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLink">Structure </a>xmlLink</h3>
+<pre class="programlisting">struct _xmlLink {
 The content of this structure is not made public by the API.
 } xmlLink;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLinkPtr">Typedef </a>xmlLinkPtr</h3><pre class="programlisting"><a href="libxml2-list.html#xmlLink">xmlLink</a> * xmlLinkPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLinkPtr">Typedef </a>xmlLinkPtr</h3>
+<pre class="programlisting"><a href="libxml2-list.html#xmlLink">xmlLink</a> * xmlLinkPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlList">Structure </a>xmlList</h3><pre class="programlisting">struct _xmlList {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlList">Structure </a>xmlList</h3>
+<pre class="programlisting">struct _xmlList {
 The content of this structure is not made public by the API.
 } xmlList;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListPtr">Typedef </a>xmlListPtr</h3><pre class="programlisting"><a href="libxml2-list.html#xmlList">xmlList</a> * xmlListPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListDataCompare"/>Function type xmlListDataCompare</h3><pre class="programlisting">int xmlListDataCompare              (const void * data0, <br/>                                       const void * data1)<br/>
-</pre><p>Callback function used to compare 2 data.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>data0</tt></i>:</span></td><td>the first data</td></tr><tr><td><span class="term"><i><tt>data1</tt></i>:</span></td><td>the second data</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 is equality, -1 or 1 otherwise depending on the ordering.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListDeallocator"/>Function type xmlListDeallocator</h3><pre class="programlisting">void        xmlListDeallocator              (<a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a> lk)<br/>
-</pre><p>Callback function used to free data from a list.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>lk</tt></i>:</span></td><td>the data to deallocate</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListWalker"/>Function type xmlListWalker</h3><pre class="programlisting">int   xmlListWalker                   (const void * data, <br/>                                        void * user)<br/>
-</pre><p>Callback function used when walking a list with xmlListWalk().</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the data found in the list</td></tr><tr><td><span class="term"><i><tt>user</tt></i>:</span></td><td>extra user provided data to the walker</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 to stop walking the list, 1 otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLinkGetData"/>xmlLinkGetData ()</h3><pre class="programlisting">void * xmlLinkGetData                  (<a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a> lk)<br/>
-</pre><p>See Returns.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>lk</tt></i>:</span></td><td>a link</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the data referenced from this link</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListAppend"/>xmlListAppend ()</h3><pre class="programlisting">int      xmlListAppend                   (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data)<br/>
-</pre><p>Insert data in the ordered list at the end for this value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the data</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, 1 in case of failure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListClear"/>xmlListClear ()</h3><pre class="programlisting">void       xmlListClear                    (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br/>
-</pre><p>Remove the all data in the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListCopy"/>xmlListCopy ()</h3><pre class="programlisting">int  xmlListCopy                     (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> cur, <br/>                                        const <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> old)<br/>
-</pre><p>Move all the element from the old list in the new list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the new list</td></tr><tr><td><span class="term"><i><tt>old</tt></i>:</span></td><td>the old list</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success 1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListCreate"/>xmlListCreate ()</h3><pre class="programlisting"><a href="libxml2-list.html#xmlListPtr">xmlListPtr</a>    xmlListCreate           (<a href="libxml2-list.html#xmlListDeallocator">xmlListDeallocator</a> deallocator, <br/>                                        <a href="libxml2-list.html#xmlListDataCompare">xmlListDataCompare</a> compare)<br/>
-</pre><p>Create a new list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>deallocator</tt></i>:</span></td><td>an optional deallocator function</td></tr><tr><td><span class="term"><i><tt>compare</tt></i>:</span></td><td>an optional comparison function</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new list or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListDelete"/>xmlListDelete ()</h3><pre class="programlisting">void     xmlListDelete                   (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br/>
-</pre><p>Deletes the list and its associated data</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListDup"/>xmlListDup ()</h3><pre class="programlisting"><a href="libxml2-list.html#xmlListPtr">xmlListPtr</a>  xmlListDup              (const <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> old)<br/>
-</pre><p>Duplicate the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>old</tt></i>:</span></td><td>the list</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new copy of the list or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListEmpty"/>xmlListEmpty ()</h3><pre class="programlisting">int        xmlListEmpty                    (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br/>
-</pre><p>Is the list empty ?</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the list is empty, 0 if not empty and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListEnd"/>xmlListEnd ()</h3><pre class="programlisting"><a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a>  xmlListEnd              (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br/>
-</pre><p>Get the last element in the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the last element in the list, or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListFront"/>xmlListFront ()</h3><pre class="programlisting"><a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a>      xmlListFront            (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br/>
-</pre><p>Get the first element in the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the first element in the list, or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListInsert"/>xmlListInsert ()</h3><pre class="programlisting">int      xmlListInsert                   (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data)<br/>
-</pre><p>Insert data in the ordered list at the beginning for this value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the data</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, 1 in case of failure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListMerge"/>xmlListMerge ()</h3><pre class="programlisting">void       xmlListMerge                    (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l1, <br/>                                         <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l2)<br/>
-</pre><p>include all the elements of the second list in the first one and clear the second list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l1</tt></i>:</span></td><td>the original list</td></tr><tr><td><span class="term"><i><tt>l2</tt></i>:</span></td><td>the new list</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListPopBack"/>xmlListPopBack ()</h3><pre class="programlisting">void   xmlListPopBack                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br/>
-</pre><p>Removes the last element in the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListPopFront"/>xmlListPopFront ()</h3><pre class="programlisting">void xmlListPopFront                 (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br/>
-</pre><p>Removes the first element in the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListPushBack"/>xmlListPushBack ()</h3><pre class="programlisting">int  xmlListPushBack                 (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data)<br/>
-</pre><p>add the new data at the end of the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>new data</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if successful, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListPushFront"/>xmlListPushFront ()</h3><pre class="programlisting">int        xmlListPushFront                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data)<br/>
-</pre><p>add the new data at the beginning of the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>new data</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if successful, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListRemoveAll"/>xmlListRemoveAll ()</h3><pre class="programlisting">int        xmlListRemoveAll                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data)<br/>
-</pre><p>Remove the all instance associated to data in the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>list data</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of deallocation, or 0 if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListRemoveFirst"/>xmlListRemoveFirst ()</h3><pre class="programlisting">int    xmlListRemoveFirst              (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data)<br/>
-</pre><p>Remove the first instance associated to data in the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>list data</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if a deallocation occurred, or 0 if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListRemoveLast"/>xmlListRemoveLast ()</h3><pre class="programlisting">int      xmlListRemoveLast               (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data)<br/>
-</pre><p>Remove the last instance associated to data in the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>list data</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if a deallocation occurred, or 0 if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListReverse"/>xmlListReverse ()</h3><pre class="programlisting">void   xmlListReverse                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br/>
-</pre><p>Reverse the order of the elements in the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListReverseSearch"/>xmlListReverseSearch ()</h3><pre class="programlisting">void *     xmlListReverseSearch            (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data)<br/>
-</pre><p>Search the list in reverse order for an existing value of @data</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>a search value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the value associated to @data or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListReverseWalk"/>xmlListReverseWalk ()</h3><pre class="programlisting">void   xmlListReverseWalk              (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  <a href="libxml2-list.html#xmlListWalker">xmlListWalker</a> walker, <br/>                                       void * user)<br/>
-</pre><p>Walk all the element of the list in reverse order and apply the walker function to it</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>walker</tt></i>:</span></td><td>a processing function</td></tr><tr><td><span class="term"><i><tt>user</tt></i>:</span></td><td>a user parameter passed to the walker function</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListSearch"/>xmlListSearch ()</h3><pre class="programlisting">void *   xmlListSearch                   (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  void * data)<br/>
-</pre><p>Search the list for an existing value of @data</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>a search value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the value associated to @data or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListSize"/>xmlListSize ()</h3><pre class="programlisting">int  xmlListSize                     (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br/>
-</pre><p>Get the number of elements in the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of elements in the list or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListSort"/>xmlListSort ()</h3><pre class="programlisting">void xmlListSort                     (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br/>
-</pre><p>Sort all the elements in the list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlListWalk"/>xmlListWalk ()</h3><pre class="programlisting">void xmlListWalk                     (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br/>                                  <a href="libxml2-list.html#xmlListWalker">xmlListWalker</a> walker, <br/>                                       void * user)<br/>
-</pre><p>Walk all the element of the first from first to last and apply the walker function to it</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>l</tt></i>:</span></td><td>a list</td></tr><tr><td><span class="term"><i><tt>walker</tt></i>:</span></td><td>a processing function</td></tr><tr><td><span class="term"><i><tt>user</tt></i>:</span></td><td>a user parameter passed to the walker function</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListPtr">Typedef </a>xmlListPtr</h3>
+<pre class="programlisting"><a href="libxml2-list.html#xmlList">xmlList</a> * xmlListPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListDataCompare"></a>Function type xmlListDataCompare</h3>
+<pre class="programlisting">int        xmlListDataCompare              (const void * data0, <br>                                        const void * data1)<br>
+</pre>
+<p>Callback function used to compare 2 data.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>data0</tt></i>:</span></td>
+<td>the first data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data1</tt></i>:</span></td>
+<td>the second data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 is equality, -1 or 1 otherwise depending on the ordering.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListDeallocator"></a>Function type xmlListDeallocator</h3>
+<pre class="programlisting">void       xmlListDeallocator              (<a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a> lk)<br>
+</pre>
+<p>Callback function used to free data from a list.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>lk</tt></i>:</span></td>
+<td>the data to deallocate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListWalker"></a>Function type xmlListWalker</h3>
+<pre class="programlisting">int        xmlListWalker                   (const void * data, <br>                                         void * user)<br>
+</pre>
+<p>Callback function used when walking a list with xmlListWalk().</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the data found in the list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user</tt></i>:</span></td>
+<td>extra user provided data to the walker</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 to stop walking the list, 1 otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLinkGetData"></a>xmlLinkGetData ()</h3>
+<pre class="programlisting">void *     xmlLinkGetData                  (<a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a> lk)<br>
+</pre>
+<p>See Returns.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>lk</tt></i>:</span></td>
+<td>a link</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the data referenced from this link</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListAppend"></a>xmlListAppend ()</h3>
+<pre class="programlisting">int        xmlListAppend                   (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data)<br>
+</pre>
+<p>Insert data in the ordered list at the end for this value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, 1 in case of failure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListClear"></a>xmlListClear ()</h3>
+<pre class="programlisting">void       xmlListClear                    (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br>
+</pre>
+<p>Remove the all data in the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListCopy"></a>xmlListCopy ()</h3>
+<pre class="programlisting">int        xmlListCopy                     (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> cur, <br>                                         const <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> old)<br>
+</pre>
+<p>Move all the element from the old list in the new list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the new list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>old</tt></i>:</span></td>
+<td>the old list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success 1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListCreate"></a>xmlListCreate ()</h3>
+<pre class="programlisting"><a href="libxml2-list.html#xmlListPtr">xmlListPtr</a>      xmlListCreate           (<a href="libxml2-list.html#xmlListDeallocator">xmlListDeallocator</a> deallocator, <br>                                         <a href="libxml2-list.html#xmlListDataCompare">xmlListDataCompare</a> compare)<br>
+</pre>
+<p>Create a new list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>deallocator</tt></i>:</span></td>
+<td>an optional deallocator function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>compare</tt></i>:</span></td>
+<td>an optional comparison function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new list or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListDelete"></a>xmlListDelete ()</h3>
+<pre class="programlisting">void       xmlListDelete                   (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br>
+</pre>
+<p>Deletes the list and its associated data</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListDup"></a>xmlListDup ()</h3>
+<pre class="programlisting"><a href="libxml2-list.html#xmlListPtr">xmlListPtr</a>      xmlListDup              (const <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> old)<br>
+</pre>
+<p>Duplicate the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>old</tt></i>:</span></td>
+<td>the list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new copy of the list or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListEmpty"></a>xmlListEmpty ()</h3>
+<pre class="programlisting">int        xmlListEmpty                    (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br>
+</pre>
+<p>Is the list empty ?</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the list is empty, 0 if not empty and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListEnd"></a>xmlListEnd ()</h3>
+<pre class="programlisting"><a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a>      xmlListEnd              (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br>
+</pre>
+<p>Get the last element in the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the last element in the list, or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListFront"></a>xmlListFront ()</h3>
+<pre class="programlisting"><a href="libxml2-list.html#xmlLinkPtr">xmlLinkPtr</a>      xmlListFront            (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br>
+</pre>
+<p>Get the first element in the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the first element in the list, or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListInsert"></a>xmlListInsert ()</h3>
+<pre class="programlisting">int        xmlListInsert                   (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data)<br>
+</pre>
+<p>Insert data in the ordered list at the beginning for this value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, 1 in case of failure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListMerge"></a>xmlListMerge ()</h3>
+<pre class="programlisting">void       xmlListMerge                    (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l1, <br>                                  <a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l2)<br>
+</pre>
+<p>include all the elements of the second list in the first one and clear the second list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l1</tt></i>:</span></td>
+<td>the original list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>l2</tt></i>:</span></td>
+<td>the new list</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListPopBack"></a>xmlListPopBack ()</h3>
+<pre class="programlisting">void       xmlListPopBack                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br>
+</pre>
+<p>Removes the last element in the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListPopFront"></a>xmlListPopFront ()</h3>
+<pre class="programlisting">void       xmlListPopFront                 (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br>
+</pre>
+<p>Removes the first element in the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListPushBack"></a>xmlListPushBack ()</h3>
+<pre class="programlisting">int        xmlListPushBack                 (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data)<br>
+</pre>
+<p>add the new data at the end of the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>new data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if successful, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListPushFront"></a>xmlListPushFront ()</h3>
+<pre class="programlisting">int        xmlListPushFront                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data)<br>
+</pre>
+<p>add the new data at the beginning of the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>new data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if successful, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListRemoveAll"></a>xmlListRemoveAll ()</h3>
+<pre class="programlisting">int        xmlListRemoveAll                (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data)<br>
+</pre>
+<p>Remove the all instance associated to data in the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>list data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of deallocation, or 0 if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListRemoveFirst"></a>xmlListRemoveFirst ()</h3>
+<pre class="programlisting">int        xmlListRemoveFirst              (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data)<br>
+</pre>
+<p>Remove the first instance associated to data in the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>list data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if a deallocation occurred, or 0 if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListRemoveLast"></a>xmlListRemoveLast ()</h3>
+<pre class="programlisting">int        xmlListRemoveLast               (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data)<br>
+</pre>
+<p>Remove the last instance associated to data in the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>list data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if a deallocation occurred, or 0 if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListReverse"></a>xmlListReverse ()</h3>
+<pre class="programlisting">void       xmlListReverse                  (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br>
+</pre>
+<p>Reverse the order of the elements in the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListReverseSearch"></a>xmlListReverseSearch ()</h3>
+<pre class="programlisting">void *     xmlListReverseSearch            (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data)<br>
+</pre>
+<p>Search the list in reverse order for an existing value of @data</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>a search value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the value associated to @data or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListReverseWalk"></a>xmlListReverseWalk ()</h3>
+<pre class="programlisting">void       xmlListReverseWalk              (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   <a href="libxml2-list.html#xmlListWalker">xmlListWalker</a> walker, <br>                                        void * user)<br>
+</pre>
+<p>Walk all the element of the list in reverse order and apply the walker function to it</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>walker</tt></i>:</span></td>
+<td>a processing function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user</tt></i>:</span></td>
+<td>a user parameter passed to the walker function</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListSearch"></a>xmlListSearch ()</h3>
+<pre class="programlisting">void *     xmlListSearch                   (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   void * data)<br>
+</pre>
+<p>Search the list for an existing value of @data</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>a search value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the value associated to @data or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListSize"></a>xmlListSize ()</h3>
+<pre class="programlisting">int        xmlListSize                     (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br>
+</pre>
+<p>Get the number of elements in the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of elements in the list or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListSort"></a>xmlListSort ()</h3>
+<pre class="programlisting">void       xmlListSort                     (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l)<br>
+</pre>
+<p>Sort all the elements in the list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlListWalk"></a>xmlListWalk ()</h3>
+<pre class="programlisting">void       xmlListWalk                     (<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a> l, <br>                                   <a href="libxml2-list.html#xmlListWalker">xmlListWalker</a> walker, <br>                                        void * user)<br>
+</pre>
+<p>Walk all the element of the first from first to last and apply the walker function to it</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>l</tt></i>:</span></td>
+<td>a list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>walker</tt></i>:</span></td>
+<td>a processing function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user</tt></i>:</span></td>
+<td>a user parameter passed to the walker function</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 9699d6b..8b62576 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>nanoftp: minimal FTP implementation</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-list.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-nanohttp.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">nanoftp</span>
-    </h2>
-    <p>nanoftp - minimal FTP implementation</p>
-    <p>minimal FTP implementation allowing to fetch resources like external subset. This module is DEPRECATED, do not use any of its functions. </p>
-    <p> WARNING: this module is deprecated !</p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#INVALID_SOCKET">INVALID_SOCKET</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>nanoftp: minimal FTP implementation</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-list.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-nanohttp.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">nanoftp</span></h2>
+<p>nanoftp - minimal FTP implementation</p>
+<p>minimal FTP implementation allowing to fetch resources like external subset. This module is DEPRECATED, do not use any of its functions. </p>
+<p> WARNING: this module is deprecated !</p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#INVALID_SOCKET">INVALID_SOCKET</a>;
 #define <a href="#SOCKET">SOCKET</a>;
-int    <a href="#xmlNanoFTPQuit">xmlNanoFTPQuit</a>                    (void * ctx);
+typedef void <a href="#ftpDataCallback">ftpDataCallback</a>                    (void * userData, <br>                                   const char * data, <br>                                         int len);
+typedef void <a href="#ftpListCallback">ftpListCallback</a>                    (void * userData, <br>                                   const char * filename, <br>                                     const char * attrib, <br>                                       const char * owner, <br>                                        const char * group, <br>                                        unsigned long size, <br>                                        int links, <br>                                         int year, <br>                                  const char * month, <br>                                        int day, <br>                                   int hour, <br>                                  int minute);
+int    <a href="#xmlNanoFTPCheckResponse">xmlNanoFTPCheckResponse</a>          (void * ctx);
+void   <a href="#xmlNanoFTPCleanup">xmlNanoFTPCleanup</a>              (void);
 int    <a href="#xmlNanoFTPClose">xmlNanoFTPClose</a>                  (void * ctx);
-typedef void <a href="#ftpListCallback">ftpListCallback</a>                    (void * userData, <br/>                                  const char * filename, <br/>                                    const char * attrib, <br/>                                      const char * owner, <br/>                                       const char * group, <br/>                                       unsigned long size, <br/>                                       int links, <br/>                                        int year, <br/>                                         const char * month, <br/>                                       int day, <br/>                                  int hour, <br/>                                         int minute);
 int    <a href="#xmlNanoFTPCloseConnection">xmlNanoFTPCloseConnection</a>      (void * ctx);
-void   <a href="#xmlNanoFTPProxy">xmlNanoFTPProxy</a>                  (const char * host, <br/>                                        int port, <br/>                                         const char * user, <br/>                                        const char * passwd, <br/>                                      int type);
-int    <a href="#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a>          (void * ctx, <br/>                                       const char * URL);
+int    <a href="#xmlNanoFTPConnect">xmlNanoFTPConnect</a>              (void * ctx);
+void * <a href="#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a>          (const char * server, <br>                                       int port);
+int    <a href="#xmlNanoFTPCwd">xmlNanoFTPCwd</a>                      (void * ctx, <br>                                        const char * directory);
+int    <a href="#xmlNanoFTPDele">xmlNanoFTPDele</a>                    (void * ctx, <br>                                        const char * file);
+void   <a href="#xmlNanoFTPFreeCtxt">xmlNanoFTPFreeCtxt</a>            (void * ctx);
+int    <a href="#xmlNanoFTPGet">xmlNanoFTPGet</a>                      (void * ctx, <br>                                        <a href="libxml2-nanoftp.html#ftpDataCallback">ftpDataCallback</a> callback, <br>                                       void * userData, <br>                                   const char * filename);
 <a href="libxml2-nanoftp.html#SOCKET">SOCKET</a>       <a href="#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a>          (void * ctx);
-int    <a href="#xmlNanoFTPDele">xmlNanoFTPDele</a>                    (void * ctx, <br/>                                       const char * file);
-void * <a href="#xmlNanoFTPNewCtxt">xmlNanoFTPNewCtxt</a>              (const char * URL);
-int    <a href="#xmlNanoFTPCheckResponse">xmlNanoFTPCheckResponse</a>          (void * ctx);
-void   <a href="#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a>          (const char * URL);
-typedef void <a href="#ftpDataCallback">ftpDataCallback</a>                    (void * userData, <br/>                                  const char * data, <br/>                                        int len);
 int    <a href="#xmlNanoFTPGetResponse">xmlNanoFTPGetResponse</a>              (void * ctx);
-int    <a href="#xmlNanoFTPCwd">xmlNanoFTPCwd</a>                      (void * ctx, <br/>                                       const char * directory);
+<a href="libxml2-nanoftp.html#SOCKET">SOCKET</a>       <a href="#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a>          (void * ctx, <br>                                        const char * filename);
 void   <a href="#xmlNanoFTPInit">xmlNanoFTPInit</a>                    (void);
-void * <a href="#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a>          (const char * server, <br/>                                      int port);
-int    <a href="#xmlNanoFTPList">xmlNanoFTPList</a>                    (void * ctx, <br/>                                       <a href="libxml2-nanoftp.html#ftpListCallback">ftpListCallback</a> callback, <br/>                                      void * userData, <br/>                                  const char * filename);
+int    <a href="#xmlNanoFTPList">xmlNanoFTPList</a>                    (void * ctx, <br>                                        <a href="libxml2-nanoftp.html#ftpListCallback">ftpListCallback</a> callback, <br>                                       void * userData, <br>                                   const char * filename);
+void * <a href="#xmlNanoFTPNewCtxt">xmlNanoFTPNewCtxt</a>              (const char * URL);
 void * <a href="#xmlNanoFTPOpen">xmlNanoFTPOpen</a>                    (const char * URL);
-int    <a href="#xmlNanoFTPConnect">xmlNanoFTPConnect</a>              (void * ctx);
-<a href="libxml2-nanoftp.html#SOCKET">SOCKET</a>       <a href="#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a>          (void * ctx, <br/>                                       const char * filename);
-int    <a href="#xmlNanoFTPGet">xmlNanoFTPGet</a>                      (void * ctx, <br/>                                       <a href="libxml2-nanoftp.html#ftpDataCallback">ftpDataCallback</a> callback, <br/>                                      void * userData, <br/>                                  const char * filename);
-int    <a href="#xmlNanoFTPRead">xmlNanoFTPRead</a>                    (void * ctx, <br/>                                       void * dest, <br/>                                      int len);
-void   <a href="#xmlNanoFTPFreeCtxt">xmlNanoFTPFreeCtxt</a>            (void * ctx);
-void   <a href="#xmlNanoFTPCleanup">xmlNanoFTPCleanup</a>              (void);
+void   <a href="#xmlNanoFTPProxy">xmlNanoFTPProxy</a>                  (const char * host, <br>                                         int port, <br>                                  const char * user, <br>                                         const char * passwd, <br>                                       int type);
+int    <a href="#xmlNanoFTPQuit">xmlNanoFTPQuit</a>                    (void * ctx);
+int    <a href="#xmlNanoFTPRead">xmlNanoFTPRead</a>                    (void * ctx, <br>                                        void * dest, <br>                                       int len);
+void   <a href="#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a>          (const char * URL);
+int    <a href="#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a>          (void * ctx, <br>                                        const char * URL);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="INVALID_SOCKET">Macro </a>INVALID_SOCKET</h3>
+<pre class="programlisting">#define <a href="#INVALID_SOCKET">INVALID_SOCKET</a>;
+</pre>
+<p>macro used to provide portability of code to windows sockets the value to be used when the socket is not valid</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="SOCKET">Macro </a>SOCKET</h3>
+<pre class="programlisting">#define <a href="#SOCKET">SOCKET</a>;
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="INVALID_SOCKET">Macro </a>INVALID_SOCKET</h3><pre class="programlisting">#define <a href="#INVALID_SOCKET">INVALID_SOCKET</a>;
-</pre><p>macro used to provide portability of code to windows sockets the value to be used when the socket is not valid</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="SOCKET">Macro </a>SOCKET</h3><pre class="programlisting">#define <a href="#SOCKET">SOCKET</a>;
-</pre><p>macro used to provide portability of code to windows sockets</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="ftpDataCallback"/>Function type ftpDataCallback</h3><pre class="programlisting">void      ftpDataCallback                 (void * userData, <br/>                                  const char * data, <br/>                                        int len)<br/>
-</pre><p>A callback for the <a href="libxml2-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a> command.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>userData</tt></i>:</span></td><td>the user provided context</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the data received</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>its size in bytes</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="ftpListCallback"/>Function type ftpListCallback</h3><pre class="programlisting">void      ftpListCallback                 (void * userData, <br/>                                  const char * filename, <br/>                                    const char * attrib, <br/>                                      const char * owner, <br/>                                       const char * group, <br/>                                       unsigned long size, <br/>                                       int links, <br/>                                        int year, <br/>                                         const char * month, <br/>                                       int day, <br/>                                  int hour, <br/>                                         int minute)<br/>
-</pre><p>A callback for the <a href="libxml2-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a> command. Note that only one of year and day:minute are specified.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>userData</tt></i>:</span></td><td>user provided data for the callback</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the file name (including "-&gt;" when links are shown)</td></tr><tr><td><span class="term"><i><tt>attrib</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> string</td></tr><tr><td><span class="term"><i><tt>owner</tt></i>:</span></td><td>the owner string</td></tr><tr><td><span class="term"><i><tt>group</tt></i>:</span></td><td>the group string</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the file size</td></tr><tr><td><span class="term"><i><tt>links</tt></i>:</span></td><td>the link count</td></tr><tr><td><span class="term"><i><tt>year</tt></i>:</span></td><td>the year</td></tr><tr><td><span class="term"><i><tt>month</tt></i>:</span></td><td>the month</td></tr><tr><td><span class="term"><i><tt>day</tt></i>:</span></td><td>the day</td></tr><tr><td><span class="term"><i><tt>hour</tt></i>:</span></td><td>the hour</td></tr><tr><td><span class="term"><i><tt>minute</tt></i>:</span></td><td>the minute</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPCheckResponse"/>xmlNanoFTPCheckResponse ()</h3><pre class="programlisting">int  xmlNanoFTPCheckResponse         (void * ctx)<br/>
-</pre><p>Check if there is a response from the FTP server after a command.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the code number, or 0</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPCleanup"/>xmlNanoFTPCleanup ()</h3><pre class="programlisting">void     xmlNanoFTPCleanup               (void)<br/>
-</pre><p>Cleanup the FTP protocol layer. This cleanup proxy information.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPClose"/>xmlNanoFTPClose ()</h3><pre class="programlisting">int  xmlNanoFTPClose                 (void * ctx)<br/>
-</pre><p>Close the connection and both control and transport</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPCloseConnection"/>xmlNanoFTPCloseConnection ()</h3><pre class="programlisting">int      xmlNanoFTPCloseConnection       (void * ctx)<br/>
-</pre><p>Close the data connection from the server</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPConnect"/>xmlNanoFTPConnect ()</h3><pre class="programlisting">int      xmlNanoFTPConnect               (void * ctx)<br/>
-</pre><p>Tries to open a control connection</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPConnectTo"/>xmlNanoFTPConnectTo ()</h3><pre class="programlisting">void *       xmlNanoFTPConnectTo             (const char * server, <br/>                                      int port)<br/>
-</pre><p>Tries to open a control connection to the given server/port</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>server</tt></i>:</span></td><td>an FTP server name</td></tr><tr><td><span class="term"><i><tt>port</tt></i>:</span></td><td>the port (use 21 if 0)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an fTP context or NULL if it failed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPCwd"/>xmlNanoFTPCwd ()</h3><pre class="programlisting">int      xmlNanoFTPCwd                   (void * ctx, <br/>                                       const char * directory)<br/>
-</pre><p>Tries to change the remote directory</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>directory</tt></i>:</span></td><td>a directory on the server</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 1 if CWD worked, 0 if it failed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPDele"/>xmlNanoFTPDele ()</h3><pre class="programlisting">int    xmlNanoFTPDele                  (void * ctx, <br/>                                       const char * file)<br/>
-</pre><p>Tries to delete an item (file or directory) from server</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>file</tt></i>:</span></td><td>a file or directory on the server</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 1 if DELE worked, 0 if it failed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPFreeCtxt"/>xmlNanoFTPFreeCtxt ()</h3><pre class="programlisting">void   xmlNanoFTPFreeCtxt              (void * ctx)<br/>
-</pre><p>Frees the context after closing the connection.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPGet"/>xmlNanoFTPGet ()</h3><pre class="programlisting">int      xmlNanoFTPGet                   (void * ctx, <br/>                                       <a href="libxml2-nanoftp.html#ftpDataCallback">ftpDataCallback</a> callback, <br/>                                      void * userData, <br/>                                  const char * filename)<br/>
-</pre><p>Fetch the given file from the server. All data are passed back in the callbacks. The last callback has a size of 0 block.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>callback</tt></i>:</span></td><td>the user callback</td></tr><tr><td><span class="term"><i><tt>userData</tt></i>:</span></td><td>the user callback data</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the file to retrieve</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPGetConnection"/>xmlNanoFTPGetConnection ()</h3><pre class="programlisting"><a href="libxml2-nanoftp.html#SOCKET">SOCKET</a>     xmlNanoFTPGetConnection         (void * ctx)<br/>
-</pre><p>Try to open a data connection to the server. Currently only passive mode is supported.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPGetResponse"/>xmlNanoFTPGetResponse ()</h3><pre class="programlisting">int      xmlNanoFTPGetResponse           (void * ctx)<br/>
-</pre><p>Get the response from the FTP server after a command.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the code number</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPGetSocket"/>xmlNanoFTPGetSocket ()</h3><pre class="programlisting"><a href="libxml2-nanoftp.html#SOCKET">SOCKET</a>     xmlNanoFTPGetSocket             (void * ctx, <br/>                                       const char * filename)<br/>
-</pre><p>Initiate fetch of the given file from the server.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the file to retrieve (or NULL if path is in context).</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the socket for the data connection, or &lt;0 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPInit"/>xmlNanoFTPInit ()</h3><pre class="programlisting">void   xmlNanoFTPInit                  (void)<br/>
-</pre><p>Initialize the FTP protocol layer. Currently it just checks for proxy information, and get the hostname</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPList"/>xmlNanoFTPList ()</h3><pre class="programlisting">int    xmlNanoFTPList                  (void * ctx, <br/>                                       <a href="libxml2-nanoftp.html#ftpListCallback">ftpListCallback</a> callback, <br/>                                      void * userData, <br/>                                  const char * filename)<br/>
-</pre><p>Do a listing on the server. All files info are passed back in the callbacks.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>callback</tt></i>:</span></td><td>the user callback</td></tr><tr><td><span class="term"><i><tt>userData</tt></i>:</span></td><td>the user callback data</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>optional files to list</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPNewCtxt"/>xmlNanoFTPNewCtxt ()</h3><pre class="programlisting">void *   xmlNanoFTPNewCtxt               (const char * URL)<br/>
-</pre><p>Allocate and initialize a new FTP context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>The URL used to initialize the context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an FTP context or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPOpen"/>xmlNanoFTPOpen ()</h3><pre class="programlisting">void * xmlNanoFTPOpen                  (const char * URL)<br/>
-</pre><p>Start to fetch the given ftp:// resource</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the URL to the resource</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an FTP context, or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPProxy"/>xmlNanoFTPProxy ()</h3><pre class="programlisting">void xmlNanoFTPProxy                 (const char * host, <br/>                                        int port, <br/>                                         const char * user, <br/>                                        const char * passwd, <br/>                                      int type)<br/>
-</pre><p>Setup the FTP proxy information. This can also be done by using ftp_proxy ftp_proxy_user and ftp_proxy_password environment variables.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>host</tt></i>:</span></td><td>the proxy host name</td></tr><tr><td><span class="term"><i><tt>port</tt></i>:</span></td><td>the proxy port</td></tr><tr><td><span class="term"><i><tt>user</tt></i>:</span></td><td>the proxy user name</td></tr><tr><td><span class="term"><i><tt>passwd</tt></i>:</span></td><td>the proxy password</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the type of proxy 1 for using SITE, 2 for USER a@b</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPQuit"/>xmlNanoFTPQuit ()</h3><pre class="programlisting">int    xmlNanoFTPQuit                  (void * ctx)<br/>
-</pre><p>Send a QUIT command to the server</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPRead"/>xmlNanoFTPRead ()</h3><pre class="programlisting">int    xmlNanoFTPRead                  (void * ctx, <br/>                                       void * dest, <br/>                                      int len)<br/>
-</pre><p>This function tries to read @len bytes from the existing FTP connection and saves them in @dest. This is a blocking call.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the FTP context</td></tr><tr><td><span class="term"><i><tt>dest</tt></i>:</span></td><td>a buffer</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the buffer length</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte read. 0 is an indication of an end of connection. -1 indicates a parameter error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPScanProxy"/>xmlNanoFTPScanProxy ()</h3><pre class="programlisting">void xmlNanoFTPScanProxy             (const char * URL)<br/>
-</pre><p>(Re)Initialize the FTP Proxy context by parsing the URL and finding the protocol host port it indicates. Should be like ftp://myproxy/ or ftp://myproxy:3128/ A NULL URL cleans up proxy information.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>The proxy URL used to initialize the proxy context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoFTPUpdateURL"/>xmlNanoFTPUpdateURL ()</h3><pre class="programlisting">int  xmlNanoFTPUpdateURL             (void * ctx, <br/>                                       const char * URL)<br/>
-</pre><p>Update an FTP context by parsing the URL and finding new path it indicates. If there is an error in the protocol, hostname, port or other information, the error is raised. It indicates a new connection has to be established.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an FTP context</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>The URL used to update the context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if Ok, -1 in case of error (other host).</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+<p>macro used to provide portability of code to windows sockets</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="ftpDataCallback"></a>Function type ftpDataCallback</h3>
+<pre class="programlisting">void       ftpDataCallback                 (void * userData, <br>                                   const char * data, <br>                                         int len)<br>
+</pre>
+<p>A callback for the <a href="libxml2-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a> command.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>userData</tt></i>:</span></td>
+<td>the user provided context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the data received</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>its size in bytes</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="ftpListCallback"></a>Function type ftpListCallback</h3>
+<pre class="programlisting">void       ftpListCallback                 (void * userData, <br>                                   const char * filename, <br>                                     const char * attrib, <br>                                       const char * owner, <br>                                        const char * group, <br>                                        unsigned long size, <br>                                        int links, <br>                                         int year, <br>                                  const char * month, <br>                                        int day, <br>                                   int hour, <br>                                  int minute)<br>
+</pre>
+<p>A callback for the <a href="libxml2-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a> command. Note that only one of year and day:minute are specified.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>userData</tt></i>:</span></td>
+<td>user provided data for the callback</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the file name (including "-&gt;" when links are shown)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attrib</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>owner</tt></i>:</span></td>
+<td>the owner string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>group</tt></i>:</span></td>
+<td>the group string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the file size</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>links</tt></i>:</span></td>
+<td>the link count</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>year</tt></i>:</span></td>
+<td>the year</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>month</tt></i>:</span></td>
+<td>the month</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>day</tt></i>:</span></td>
+<td>the day</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>hour</tt></i>:</span></td>
+<td>the hour</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>minute</tt></i>:</span></td>
+<td>the minute</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPCheckResponse"></a>xmlNanoFTPCheckResponse ()</h3>
+<pre class="programlisting">int        xmlNanoFTPCheckResponse         (void * ctx)<br>
+</pre>
+<p>Check if there is a response from the FTP server after a command.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the code number, or 0</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPCleanup"></a>xmlNanoFTPCleanup ()</h3>
+<pre class="programlisting">void       xmlNanoFTPCleanup               (void)<br>
+</pre>
+<p>Cleanup the FTP protocol layer. This cleanup proxy information.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPClose"></a>xmlNanoFTPClose ()</h3>
+<pre class="programlisting">int        xmlNanoFTPClose                 (void * ctx)<br>
+</pre>
+<p>Close the connection and both control and transport</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPCloseConnection"></a>xmlNanoFTPCloseConnection ()</h3>
+<pre class="programlisting">int        xmlNanoFTPCloseConnection       (void * ctx)<br>
+</pre>
+<p>Close the data connection from the server</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPConnect"></a>xmlNanoFTPConnect ()</h3>
+<pre class="programlisting">int        xmlNanoFTPConnect               (void * ctx)<br>
+</pre>
+<p>Tries to open a control connection</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPConnectTo"></a>xmlNanoFTPConnectTo ()</h3>
+<pre class="programlisting">void *     xmlNanoFTPConnectTo             (const char * server, <br>                                       int port)<br>
+</pre>
+<p>Tries to open a control connection to the given server/port</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>server</tt></i>:</span></td>
+<td>an FTP server name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>port</tt></i>:</span></td>
+<td>the port (use 21 if 0)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an fTP context or NULL if it failed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPCwd"></a>xmlNanoFTPCwd ()</h3>
+<pre class="programlisting">int        xmlNanoFTPCwd                   (void * ctx, <br>                                        const char * directory)<br>
+</pre>
+<p>Tries to change the remote directory</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>directory</tt></i>:</span></td>
+<td>a directory on the server</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 1 if CWD worked, 0 if it failed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPDele"></a>xmlNanoFTPDele ()</h3>
+<pre class="programlisting">int        xmlNanoFTPDele                  (void * ctx, <br>                                        const char * file)<br>
+</pre>
+<p>Tries to delete an item (file or directory) from server</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>file</tt></i>:</span></td>
+<td>a file or directory on the server</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 1 if DELE worked, 0 if it failed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPFreeCtxt"></a>xmlNanoFTPFreeCtxt ()</h3>
+<pre class="programlisting">void       xmlNanoFTPFreeCtxt              (void * ctx)<br>
+</pre>
+<p>Frees the context after closing the connection.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPGet"></a>xmlNanoFTPGet ()</h3>
+<pre class="programlisting">int        xmlNanoFTPGet                   (void * ctx, <br>                                        <a href="libxml2-nanoftp.html#ftpDataCallback">ftpDataCallback</a> callback, <br>                                       void * userData, <br>                                   const char * filename)<br>
+</pre>
+<p>Fetch the given file from the server. All data are passed back in the callbacks. The last callback has a size of 0 block.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>callback</tt></i>:</span></td>
+<td>the user callback</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>userData</tt></i>:</span></td>
+<td>the user callback data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the file to retrieve</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPGetConnection"></a>xmlNanoFTPGetConnection ()</h3>
+<pre class="programlisting"><a href="libxml2-nanoftp.html#SOCKET">SOCKET</a>   xmlNanoFTPGetConnection         (void * ctx)<br>
+</pre>
+<p>Try to open a data connection to the server. Currently only passive mode is supported.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPGetResponse"></a>xmlNanoFTPGetResponse ()</h3>
+<pre class="programlisting">int        xmlNanoFTPGetResponse           (void * ctx)<br>
+</pre>
+<p>Get the response from the FTP server after a command.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the code number</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPGetSocket"></a>xmlNanoFTPGetSocket ()</h3>
+<pre class="programlisting"><a href="libxml2-nanoftp.html#SOCKET">SOCKET</a>   xmlNanoFTPGetSocket             (void * ctx, <br>                                        const char * filename)<br>
+</pre>
+<p>Initiate fetch of the given file from the server.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the file to retrieve (or NULL if path is in context).</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the socket for the data connection, or &lt;0 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPInit"></a>xmlNanoFTPInit ()</h3>
+<pre class="programlisting">void       xmlNanoFTPInit                  (void)<br>
+</pre>
+<p>Initialize the FTP protocol layer. Currently it just checks for proxy information, and get the hostname</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPList"></a>xmlNanoFTPList ()</h3>
+<pre class="programlisting">int        xmlNanoFTPList                  (void * ctx, <br>                                        <a href="libxml2-nanoftp.html#ftpListCallback">ftpListCallback</a> callback, <br>                                       void * userData, <br>                                   const char * filename)<br>
+</pre>
+<p>Do a listing on the server. All files info are passed back in the callbacks.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>callback</tt></i>:</span></td>
+<td>the user callback</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>userData</tt></i>:</span></td>
+<td>the user callback data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>optional files to list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPNewCtxt"></a>xmlNanoFTPNewCtxt ()</h3>
+<pre class="programlisting">void *     xmlNanoFTPNewCtxt               (const char * URL)<br>
+</pre>
+<p>Allocate and initialize a new FTP context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>The URL used to initialize the context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an FTP context or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPOpen"></a>xmlNanoFTPOpen ()</h3>
+<pre class="programlisting">void *     xmlNanoFTPOpen                  (const char * URL)<br>
+</pre>
+<p>Start to fetch the given ftp:// resource</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the URL to the resource</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an FTP context, or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPProxy"></a>xmlNanoFTPProxy ()</h3>
+<pre class="programlisting">void       xmlNanoFTPProxy                 (const char * host, <br>                                         int port, <br>                                  const char * user, <br>                                         const char * passwd, <br>                                       int type)<br>
+</pre>
+<p>Setup the FTP proxy information. This can also be done by using ftp_proxy ftp_proxy_user and ftp_proxy_password environment variables.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>host</tt></i>:</span></td>
+<td>the proxy host name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>port</tt></i>:</span></td>
+<td>the proxy port</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user</tt></i>:</span></td>
+<td>the proxy user name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>passwd</tt></i>:</span></td>
+<td>the proxy password</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the type of proxy 1 for using SITE, 2 for USER a@b</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPQuit"></a>xmlNanoFTPQuit ()</h3>
+<pre class="programlisting">int        xmlNanoFTPQuit                  (void * ctx)<br>
+</pre>
+<p>Send a QUIT command to the server</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPRead"></a>xmlNanoFTPRead ()</h3>
+<pre class="programlisting">int        xmlNanoFTPRead                  (void * ctx, <br>                                        void * dest, <br>                                       int len)<br>
+</pre>
+<p>This function tries to read @len bytes from the existing FTP connection and saves them in @dest. This is a blocking call.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>dest</tt></i>:</span></td>
+<td>a buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the buffer length</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte read. 0 is an indication of an end of connection. -1 indicates a parameter error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPScanProxy"></a>xmlNanoFTPScanProxy ()</h3>
+<pre class="programlisting">void       xmlNanoFTPScanProxy             (const char * URL)<br>
+</pre>
+<p>(Re)Initialize the FTP Proxy context by parsing the URL and finding the protocol host port it indicates. Should be like ftp://myproxy/ or ftp://myproxy:3128/ A NULL URL cleans up proxy information.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>The proxy URL used to initialize the proxy context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoFTPUpdateURL"></a>xmlNanoFTPUpdateURL ()</h3>
+<pre class="programlisting">int        xmlNanoFTPUpdateURL             (void * ctx, <br>                                        const char * URL)<br>
+</pre>
+<p>Update an FTP context by parsing the URL and finding new path it indicates. If there is an error in the protocol, hostname, port or other information, the error is raised. It indicates a new connection has to be established.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an FTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>The URL used to update the context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if Ok, -1 in case of error (other host).</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index c771e09..aa382ea 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>nanohttp: minimal HTTP implementation</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-nanoftp.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-parser.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">nanohttp</span>
-    </h2>
-    <p>nanohttp - minimal HTTP implementation</p>
-    <p>minimal HTTP implementation allowing to fetch resources like external subset. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">int        <a href="#xmlNanoHTTPRead">xmlNanoHTTPRead</a>                  (void * ctx, <br/>                                       void * dest, <br/>                                      int len);
-int    <a href="#xmlNanoHTTPSave">xmlNanoHTTPSave</a>                  (void * ctxt, <br/>                                      const char * filename);
-const char *   <a href="#xmlNanoHTTPRedir">xmlNanoHTTPRedir</a>        (void * ctx);
-const char *   <a href="#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a>      (void * ctx);
-int    <a href="#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a>                (const char * URL, <br/>                                         const char * filename, <br/>                                    char ** contentType);
-int    <a href="#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a>        (void * ctx);
-const char *   <a href="#xmlNanoHTTPMimeType">xmlNanoHTTPMimeType</a>  (void * ctx);
-void   <a href="#xmlNanoHTTPClose">xmlNanoHTTPClose</a>                (void * ctx);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>nanohttp: minimal HTTP implementation</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-nanoftp.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-parser.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">nanohttp</span></h2>
+<p>nanohttp - minimal HTTP implementation</p>
+<p>minimal HTTP implementation allowing to fetch resources like external subset. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">const char *     <a href="#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a>      (void * ctx);
 void   <a href="#xmlNanoHTTPCleanup">xmlNanoHTTPCleanup</a>            (void);
-void * <a href="#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a>              (const char * URL, <br/>                                         const char * method, <br/>                                      const char * input, <br/>                                       char ** contentType, <br/>                                      const char * headers, <br/>                                     int ilen);
-void   <a href="#xmlNanoHTTPInit">xmlNanoHTTPInit</a>                  (void);
-void * <a href="#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a>                  (const char * URL, <br/>                                         char ** contentType);
-void * <a href="#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a>                (const char * URL, <br/>                                         char ** contentType, <br/>                                      char ** redir);
-void * <a href="#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a>            (const char * URL, <br/>                                         const char * method, <br/>                                      const char * input, <br/>                                       char ** contentType, <br/>                                      char ** redir, <br/>                                    const char * headers, <br/>                                     int ilen);
-void   <a href="#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a>                (const char * URL);
+void   <a href="#xmlNanoHTTPClose">xmlNanoHTTPClose</a>                (void * ctx);
+int    <a href="#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a>        (void * ctx);
 const char *   <a href="#xmlNanoHTTPEncoding">xmlNanoHTTPEncoding</a>  (void * ctx);
+int    <a href="#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a>                (const char * URL, <br>                                  const char * filename, <br>                                     char ** contentType);
+void   <a href="#xmlNanoHTTPInit">xmlNanoHTTPInit</a>                  (void);
+void * <a href="#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a>              (const char * URL, <br>                                  const char * method, <br>                                       const char * input, <br>                                        char ** contentType, <br>                                       const char * headers, <br>                                      int ilen);
+void * <a href="#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a>            (const char * URL, <br>                                  const char * method, <br>                                       const char * input, <br>                                        char ** contentType, <br>                                       char ** redir, <br>                                     const char * headers, <br>                                      int ilen);
+const char *   <a href="#xmlNanoHTTPMimeType">xmlNanoHTTPMimeType</a>  (void * ctx);
+void * <a href="#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a>                  (const char * URL, <br>                                  char ** contentType);
+void * <a href="#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a>                (const char * URL, <br>                                  char ** contentType, <br>                                       char ** redir);
+int    <a href="#xmlNanoHTTPRead">xmlNanoHTTPRead</a>                  (void * ctx, <br>                                        void * dest, <br>                                       int len);
+const char *   <a href="#xmlNanoHTTPRedir">xmlNanoHTTPRedir</a>        (void * ctx);
 int    <a href="#xmlNanoHTTPReturnCode">xmlNanoHTTPReturnCode</a>              (void * ctx);
+int    <a href="#xmlNanoHTTPSave">xmlNanoHTTPSave</a>                  (void * ctxt, <br>                                       const char * filename);
+void   <a href="#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a>                (const char * URL);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPAuthHeader"/>xmlNanoHTTPAuthHeader ()</h3><pre class="programlisting">const char *     xmlNanoHTTPAuthHeader   (void * ctx)<br/>
-</pre><p>Get the authentication header of an HTTP context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the stashed value of the WWW-Authenticate or Proxy-Authenticate header.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPCleanup"/>xmlNanoHTTPCleanup ()</h3><pre class="programlisting">void   xmlNanoHTTPCleanup              (void)<br/>
-</pre><p>Cleanup the HTTP protocol layer.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPClose"/>xmlNanoHTTPClose ()</h3><pre class="programlisting">void       xmlNanoHTTPClose                (void * ctx)<br/>
-</pre><p>This function closes an HTTP context, it ends up the connection and free all data related to it.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPContentLength"/>xmlNanoHTTPContentLength ()</h3><pre class="programlisting">int        xmlNanoHTTPContentLength        (void * ctx)<br/>
-</pre><p>Provides the specified content length from the HTTP header.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the specified content length from the HTTP header. Note that a value of -1 indicates that the content length element was not included in the response header.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPEncoding"/>xmlNanoHTTPEncoding ()</h3><pre class="programlisting">const char * xmlNanoHTTPEncoding     (void * ctx)<br/>
-</pre><p>Provides the specified encoding if specified in the HTTP headers.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the specified encoding or NULL if not available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPFetch"/>xmlNanoHTTPFetch ()</h3><pre class="programlisting">int        xmlNanoHTTPFetch                (const char * URL, <br/>                                         const char * filename, <br/>                                    char ** contentType)<br/>
-</pre><p>This function try to fetch the indicated resource via HTTP GET and save it's content in the file.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>The URL to load</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename where the content should be saved</td></tr><tr><td><span class="term"><i><tt>contentType</tt></i>:</span></td><td>if available the Content-Type information will be returned at that location</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of failure, 0 in case of success. The contentType, if provided must be freed by the caller</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPInit"/>xmlNanoHTTPInit ()</h3><pre class="programlisting">void xmlNanoHTTPInit                 (void)<br/>
-</pre><p>Initialize the HTTP protocol layer. Currently it just checks for proxy information</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPMethod"/>xmlNanoHTTPMethod ()</h3><pre class="programlisting">void *   xmlNanoHTTPMethod               (const char * URL, <br/>                                         const char * method, <br/>                                      const char * input, <br/>                                       char ** contentType, <br/>                                      const char * headers, <br/>                                     int ilen)<br/>
-</pre><p>This function try to open a connection to the indicated resource via HTTP using the given @method, adding the given extra headers and the input buffer for the request content.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>The URL to load</td></tr><tr><td><span class="term"><i><tt>method</tt></i>:</span></td><td>the HTTP method to use</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>the input string if any</td></tr><tr><td><span class="term"><i><tt>contentType</tt></i>:</span></td><td>the Content-Type information IN and OUT</td></tr><tr><td><span class="term"><i><tt>headers</tt></i>:</span></td><td>the extra headers</td></tr><tr><td><span class="term"><i><tt>ilen</tt></i>:</span></td><td>input length</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL in case of failure, otherwise a request handler. The contentType, if provided must be freed by the caller</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPMethodRedir"/>xmlNanoHTTPMethodRedir ()</h3><pre class="programlisting">void * xmlNanoHTTPMethodRedir          (const char * URL, <br/>                                         const char * method, <br/>                                      const char * input, <br/>                                       char ** contentType, <br/>                                      char ** redir, <br/>                                    const char * headers, <br/>                                     int ilen)<br/>
-</pre><p>This function try to open a connection to the indicated resource via HTTP using the given @method, adding the given extra headers and the input buffer for the request content.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>The URL to load</td></tr><tr><td><span class="term"><i><tt>method</tt></i>:</span></td><td>the HTTP method to use</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>the input string if any</td></tr><tr><td><span class="term"><i><tt>contentType</tt></i>:</span></td><td>the Content-Type information IN and OUT</td></tr><tr><td><span class="term"><i><tt>redir</tt></i>:</span></td><td>the redirected URL OUT</td></tr><tr><td><span class="term"><i><tt>headers</tt></i>:</span></td><td>the extra headers</td></tr><tr><td><span class="term"><i><tt>ilen</tt></i>:</span></td><td>input length</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL in case of failure, otherwise a request handler. The contentType, or redir, if provided must be freed by the caller</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPMimeType"/>xmlNanoHTTPMimeType ()</h3><pre class="programlisting">const char * xmlNanoHTTPMimeType     (void * ctx)<br/>
-</pre><p>Provides the specified Mime-Type if specified in the HTTP headers.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the specified Mime-Type or NULL if not available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPOpen"/>xmlNanoHTTPOpen ()</h3><pre class="programlisting">void *       xmlNanoHTTPOpen                 (const char * URL, <br/>                                         char ** contentType)<br/>
-</pre><p>This function try to open a connection to the indicated resource via HTTP GET.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>The URL to load</td></tr><tr><td><span class="term"><i><tt>contentType</tt></i>:</span></td><td>if available the Content-Type information will be returned at that location</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL in case of failure, otherwise a request handler. The contentType, if provided must be freed by the caller</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPOpenRedir"/>xmlNanoHTTPOpenRedir ()</h3><pre class="programlisting">void *     xmlNanoHTTPOpenRedir            (const char * URL, <br/>                                         char ** contentType, <br/>                                      char ** redir)<br/>
-</pre><p>This function try to open a connection to the indicated resource via HTTP GET.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>The URL to load</td></tr><tr><td><span class="term"><i><tt>contentType</tt></i>:</span></td><td>if available the Content-Type information will be returned at that location</td></tr><tr><td><span class="term"><i><tt>redir</tt></i>:</span></td><td>if available the redirected URL will be returned</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL in case of failure, otherwise a request handler. The contentType, if provided must be freed by the caller</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPRead"/>xmlNanoHTTPRead ()</h3><pre class="programlisting">int  xmlNanoHTTPRead                 (void * ctx, <br/>                                       void * dest, <br/>                                      int len)<br/>
-</pre><p>This function tries to read @len bytes from the existing HTTP connection and saves them in @dest. This is a blocking call.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr><tr><td><span class="term"><i><tt>dest</tt></i>:</span></td><td>a buffer</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the buffer length</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte read. 0 is an indication of an end of connection. -1 indicates a parameter error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPRedir"/>xmlNanoHTTPRedir ()</h3><pre class="programlisting">const char *       xmlNanoHTTPRedir        (void * ctx)<br/>
-</pre><p>Provides the specified redirection URL if available from the HTTP header.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the specified redirection URL or NULL if not redirected.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPReturnCode"/>xmlNanoHTTPReturnCode ()</h3><pre class="programlisting">int      xmlNanoHTTPReturnCode           (void * ctx)<br/>
-</pre><p>Get the latest HTTP return code received</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the HTTP return code for the request.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPSave"/>xmlNanoHTTPSave ()</h3><pre class="programlisting">int  xmlNanoHTTPSave                 (void * ctxt, <br/>                                      const char * filename)<br/>
-</pre><p>This function saves the output of the HTTP transaction to a file It closes and free the context at the end</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the HTTP context</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename where the content should be saved</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of failure, 0 in case of success.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNanoHTTPScanProxy"/>xmlNanoHTTPScanProxy ()</h3><pre class="programlisting">void       xmlNanoHTTPScanProxy            (const char * URL)<br/>
-</pre><p>(Re)Initialize the HTTP Proxy context by parsing the URL and finding the protocol host port it indicates. Should be like http://myproxy/ or http://myproxy:3128/ A NULL URL cleans up proxy information.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>The proxy URL used to initialize the proxy context</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPAuthHeader"></a>xmlNanoHTTPAuthHeader ()</h3>
+<pre class="programlisting">const char *       xmlNanoHTTPAuthHeader   (void * ctx)<br>
+</pre>
+<p>Get the authentication header of an HTTP context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the HTTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the stashed value of the WWW-Authenticate or Proxy-Authenticate header.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPCleanup"></a>xmlNanoHTTPCleanup ()</h3>
+<pre class="programlisting">void       xmlNanoHTTPCleanup              (void)<br>
+</pre>
+<p>Cleanup the HTTP protocol layer.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPClose"></a>xmlNanoHTTPClose ()</h3>
+<pre class="programlisting">void       xmlNanoHTTPClose                (void * ctx)<br>
+</pre>
+<p>This function closes an HTTP context, it ends up the connection and free all data related to it.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the HTTP context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPContentLength"></a>xmlNanoHTTPContentLength ()</h3>
+<pre class="programlisting">int        xmlNanoHTTPContentLength        (void * ctx)<br>
+</pre>
+<p>Provides the specified content length from the HTTP header.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the HTTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the specified content length from the HTTP header. Note that a value of -1 indicates that the content length element was not included in the response header.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPEncoding"></a>xmlNanoHTTPEncoding ()</h3>
+<pre class="programlisting">const char *       xmlNanoHTTPEncoding     (void * ctx)<br>
+</pre>
+<p>Provides the specified encoding if specified in the HTTP headers.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the HTTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the specified encoding or NULL if not available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPFetch"></a>xmlNanoHTTPFetch ()</h3>
+<pre class="programlisting">int        xmlNanoHTTPFetch                (const char * URL, <br>                                  const char * filename, <br>                                     char ** contentType)<br>
+</pre>
+<p>This function try to fetch the indicated resource via HTTP GET and save it's content in the file.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>The URL to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename where the content should be saved</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>contentType</tt></i>:</span></td>
+<td>if available the Content-Type information will be returned at that location</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of failure, 0 in case of success. The contentType, if provided must be freed by the caller</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPInit"></a>xmlNanoHTTPInit ()</h3>
+<pre class="programlisting">void       xmlNanoHTTPInit                 (void)<br>
+</pre>
+<p>Initialize the HTTP protocol layer. Currently it just checks for proxy information</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPMethod"></a>xmlNanoHTTPMethod ()</h3>
+<pre class="programlisting">void *     xmlNanoHTTPMethod               (const char * URL, <br>                                  const char * method, <br>                                       const char * input, <br>                                        char ** contentType, <br>                                       const char * headers, <br>                                      int ilen)<br>
+</pre>
+<p>This function try to open a connection to the indicated resource via HTTP using the given @method, adding the given extra headers and the input buffer for the request content.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>The URL to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>method</tt></i>:</span></td>
+<td>the HTTP method to use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>the input string if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>contentType</tt></i>:</span></td>
+<td>the Content-Type information IN and OUT</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>headers</tt></i>:</span></td>
+<td>the extra headers</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ilen</tt></i>:</span></td>
+<td>input length</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL in case of failure, otherwise a request handler. The contentType, if provided must be freed by the caller</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPMethodRedir"></a>xmlNanoHTTPMethodRedir ()</h3>
+<pre class="programlisting">void *     xmlNanoHTTPMethodRedir          (const char * URL, <br>                                  const char * method, <br>                                       const char * input, <br>                                        char ** contentType, <br>                                       char ** redir, <br>                                     const char * headers, <br>                                      int ilen)<br>
+</pre>
+<p>This function try to open a connection to the indicated resource via HTTP using the given @method, adding the given extra headers and the input buffer for the request content.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>The URL to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>method</tt></i>:</span></td>
+<td>the HTTP method to use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>the input string if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>contentType</tt></i>:</span></td>
+<td>the Content-Type information IN and OUT</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>redir</tt></i>:</span></td>
+<td>the redirected URL OUT</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>headers</tt></i>:</span></td>
+<td>the extra headers</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ilen</tt></i>:</span></td>
+<td>input length</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL in case of failure, otherwise a request handler. The contentType, or redir, if provided must be freed by the caller</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPMimeType"></a>xmlNanoHTTPMimeType ()</h3>
+<pre class="programlisting">const char *       xmlNanoHTTPMimeType     (void * ctx)<br>
+</pre>
+<p>Provides the specified Mime-Type if specified in the HTTP headers.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the HTTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the specified Mime-Type or NULL if not available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPOpen"></a>xmlNanoHTTPOpen ()</h3>
+<pre class="programlisting">void *     xmlNanoHTTPOpen                 (const char * URL, <br>                                  char ** contentType)<br>
+</pre>
+<p>This function try to open a connection to the indicated resource via HTTP GET.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>The URL to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>contentType</tt></i>:</span></td>
+<td>if available the Content-Type information will be returned at that location</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL in case of failure, otherwise a request handler. The contentType, if provided must be freed by the caller</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPOpenRedir"></a>xmlNanoHTTPOpenRedir ()</h3>
+<pre class="programlisting">void *     xmlNanoHTTPOpenRedir            (const char * URL, <br>                                  char ** contentType, <br>                                       char ** redir)<br>
+</pre>
+<p>This function try to open a connection to the indicated resource via HTTP GET.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>The URL to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>contentType</tt></i>:</span></td>
+<td>if available the Content-Type information will be returned at that location</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>redir</tt></i>:</span></td>
+<td>if available the redirected URL will be returned</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL in case of failure, otherwise a request handler. The contentType, if provided must be freed by the caller</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPRead"></a>xmlNanoHTTPRead ()</h3>
+<pre class="programlisting">int        xmlNanoHTTPRead                 (void * ctx, <br>                                        void * dest, <br>                                       int len)<br>
+</pre>
+<p>This function tries to read @len bytes from the existing HTTP connection and saves them in @dest. This is a blocking call.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the HTTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>dest</tt></i>:</span></td>
+<td>a buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the buffer length</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte read. 0 is an indication of an end of connection. -1 indicates a parameter error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPRedir"></a>xmlNanoHTTPRedir ()</h3>
+<pre class="programlisting">const char *       xmlNanoHTTPRedir        (void * ctx)<br>
+</pre>
+<p>Provides the specified redirection URL if available from the HTTP header.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the HTTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the specified redirection URL or NULL if not redirected.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPReturnCode"></a>xmlNanoHTTPReturnCode ()</h3>
+<pre class="programlisting">int        xmlNanoHTTPReturnCode           (void * ctx)<br>
+</pre>
+<p>Get the latest HTTP return code received</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the HTTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the HTTP return code for the request.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPSave"></a>xmlNanoHTTPSave ()</h3>
+<pre class="programlisting">int        xmlNanoHTTPSave                 (void * ctxt, <br>                                       const char * filename)<br>
+</pre>
+<p>This function saves the output of the HTTP transaction to a file It closes and free the context at the end</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the HTTP context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename where the content should be saved</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of failure, 0 in case of success.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNanoHTTPScanProxy"></a>xmlNanoHTTPScanProxy ()</h3>
+<pre class="programlisting">void       xmlNanoHTTPScanProxy            (const char * URL)<br>
+</pre>
+<p>(Re)Initialize the HTTP Proxy context by parsing the URL and finding the protocol host port it indicates. Should be like http://myproxy/ or http://myproxy:3128/ A NULL URL cleans up proxy information.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>The proxy URL used to initialize the proxy context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 8cd6a70..fbddf5a 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>parser: the core parser module</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-nanohttp.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-parserInternals.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">parser</span>
-    </h2>
-    <p>parser - the core parser module</p>
-    <p>Interfaces, constants and types related to the XML parser </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a>;
-#define <a href="#XML_SKIP_IDS">XML_SKIP_IDS</a>;
-#define <a href="#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a>;
-#define <a href="#XML_DETECT_IDS">XML_DETECT_IDS</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>parser: the core parser module</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-nanohttp.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-parserInternals.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">parser</span></h2>
+<p>parser - the core parser module</p>
+<p>Interfaces, constants and types related to the XML parser </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a>;
 #define <a href="#XML_DEFAULT_VERSION">XML_DEFAULT_VERSION</a>;
-typedef <a href="libxml2-parser.html#xmlParserNodeInfoSeq">xmlParserNodeInfoSeq</a> * <a href="#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a>;
-typedef struct _xmlSAXHandlerV1 <a href="#xmlSAXHandlerV1">xmlSAXHandlerV1</a>;
+#define <a href="#XML_DETECT_IDS">XML_DETECT_IDS</a>;
+#define <a href="#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a>;
+#define <a href="#XML_SKIP_IDS">XML_SKIP_IDS</a>;
+typedef enum <a href="#xmlFeature">xmlFeature</a>;
 typedef enum <a href="#xmlParserInputState">xmlParserInputState</a>;
+typedef enum <a href="#xmlParserMode">xmlParserMode</a>;
+typedef struct _xmlParserNodeInfo <a href="#xmlParserNodeInfo">xmlParserNodeInfo</a>;
 typedef <a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> * <a href="#xmlParserNodeInfoPtr">xmlParserNodeInfoPtr</a>;
 typedef struct _xmlParserNodeInfoSeq <a href="#xmlParserNodeInfoSeq">xmlParserNodeInfoSeq</a>;
-typedef enum <a href="#xmlFeature">xmlFeature</a>;
-typedef enum <a href="#xmlParserMode">xmlParserMode</a>;
-typedef struct _xmlStartTag <a href="#xmlStartTag">xmlStartTag</a>;
+typedef <a href="libxml2-parser.html#xmlParserNodeInfoSeq">xmlParserNodeInfoSeq</a> * <a href="#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a>;
 typedef enum <a href="#xmlParserOption">xmlParserOption</a>;
+typedef struct _xmlSAXHandlerV1 <a href="#xmlSAXHandlerV1">xmlSAXHandlerV1</a>;
 typedef <a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> * <a href="#xmlSAXHandlerV1Ptr">xmlSAXHandlerV1Ptr</a>;
-typedef struct _xmlParserNodeInfo <a href="#xmlParserNodeInfo">xmlParserNodeInfo</a>;
-void   <a href="#xmlSetupParserForBuffer">xmlSetupParserForBuffer</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buffer, <br/>                                      const char * filename);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCtxtReadFile">xmlCtxtReadFile</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * filename, <br/>                                    const char * encoding, <br/>                                    int options);
-int    <a href="#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctx, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst);
-typedef void <a href="#attributeDeclSAXFunc">attributeDeclSAXFunc</a>          (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    int type, <br/>                                         int def, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br/>                                        <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree);
-typedef <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> <a href="#getEntitySAXFunc">getEntitySAXFunc</a>     (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-typedef void <a href="#startElementSAXFunc">startElementSAXFunc</a>            (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts);
-typedef void <a href="#charactersSAXFunc">charactersSAXFunc</a>                (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len);
-void   <a href="#xmlClearNodeInfoSeq">xmlClearNodeInfoSeq</a>          (<a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq);
-int    <a href="#xmlParseChunk">xmlParseChunk</a>                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * chunk, <br/>                                       int size, <br/>                                         int terminate);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlParseEntity">xmlParseEntity</a>            (const char * filename);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlRecoverFile">xmlRecoverFile</a>            (const char * filename);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCtxtReadDoc">xmlCtxtReadDoc</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-typedef void <a href="#startElementNsSAX2Func">startElementNsSAX2Func</a>              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         int nb_namespaces, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces, <br/>                                         int nb_attributes, <br/>                                        int nb_defaulted, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** attributes);
-<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a>      (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                            void * user_data, <br/>                                                 <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                                <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                             void * ioctx, <br/>                                             <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
-<a href="libxml2-xmlerror.html#xmlParserErrors">xmlParserErrors</a>    <a href="#xmlParseInNodeContext">xmlParseInNodeContext</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const char * data, <br/>                                        int datalen, <br/>                                      int options, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst);
-typedef void <a href="#referenceSAXFunc">referenceSAXFunc</a>          (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+typedef struct _xmlStartTag <a href="#xmlStartTag">xmlStartTag</a>;
+typedef void <a href="#attributeDeclSAXFunc">attributeDeclSAXFunc</a>          (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     int type, <br>                                  int def, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br>                                         <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree);
+typedef void <a href="#attributeSAXFunc">attributeSAXFunc</a>          (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+typedef void <a href="#cdataBlockSAXFunc">cdataBlockSAXFunc</a>                (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int len);
+typedef void <a href="#charactersSAXFunc">charactersSAXFunc</a>                (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len);
+typedef void <a href="#commentSAXFunc">commentSAXFunc</a>                      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+typedef void <a href="#elementDeclSAXFunc">elementDeclSAXFunc</a>              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content);
+typedef void <a href="#endDocumentSAXFunc">endDocumentSAXFunc</a>              (void * ctx);
+typedef void <a href="#endElementNsSAX2Func">endElementNsSAX2Func</a>          (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI);
+typedef void <a href="#endElementSAXFunc">endElementSAXFunc</a>                (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+typedef void <a href="#entityDeclSAXFunc">entityDeclSAXFunc</a>                (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+typedef void <a href="#errorSAXFunc">errorSAXFunc</a>                  (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+typedef void <a href="#externalSubsetSAXFunc">externalSubsetSAXFunc</a>                (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
+typedef void <a href="#fatalErrorSAXFunc">fatalErrorSAXFunc</a>                (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+typedef <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> <a href="#getEntitySAXFunc">getEntitySAXFunc</a>     (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+typedef <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> <a href="#getParameterEntitySAXFunc">getParameterEntitySAXFunc</a>   (void * ctx, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
 typedef int <a href="#hasExternalSubsetSAXFunc">hasExternalSubsetSAXFunc</a>   (void * ctx);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseDoc">xmlSAXParseDoc</a>            (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         int recovery);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlReadMemory">xmlReadMemory</a>              (const char * buffer, <br/>                                      int size, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlParseMemory">xmlParseMemory</a>            (const char * buffer, <br/>                                      int size);
-<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNewIOInputStream">xmlNewIOInputStream</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br/>                                            <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
-typedef void <a href="#processingInstructionSAXFunc">processingInstructionSAXFunc</a>  (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data);
-int    <a href="#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a>    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                            void * user_data, <br/>                                                 int depth, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string, <br/>                                              <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst, <br/>                                              int recover);
-void   <a href="#xmlInitParser">xmlInitParser</a>                      (void);
-<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreateDocParserCtxt">xmlCreateDocParserCtxt</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur);
-typedef void <a href="#errorSAXFunc">errorSAXFunc</a>                  (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseMemory">xmlSAXParseMemory</a>      (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const char * buffer, <br/>                                      int size, <br/>                                         int recovery);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlRecoverMemory">xmlRecoverMemory</a>        (const char * buffer, <br/>                                      int size);
-typedef <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> <a href="#xmlExternalEntityLoader">xmlExternalEntityLoader</a>     (const char * URL, <br/>                                                 const char * ID, <br/>                                          <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> context);
 typedef int <a href="#hasInternalSubsetSAXFunc">hasInternalSubsetSAXFunc</a>   (void * ctx);
-typedef void <a href="#cdataBlockSAXFunc">cdataBlockSAXFunc</a>                (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int len);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseFile">xmlSAXParseFile</a>          (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const char * filename, <br/>                                    int recovery);
-typedef void <a href="#xmlParserInputDeallocate">xmlParserInputDeallocate</a>  (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCtxtReadIO">xmlCtxtReadIO</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a>      (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                            const char * buffer, <br/>                                              int size, <br/>                                                 int recovery, <br/>                                             void * data);
-int    <a href="#xmlGetFeature">xmlGetFeature</a>                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * name, <br/>                                        void * result);
-<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlIOParseDTD">xmlIOParseDTD</a>              (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br/>                                    <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+typedef void <a href="#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a>      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len);
+typedef void <a href="#internalSubsetSAXFunc">internalSubsetSAXFunc</a>                (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
+typedef int <a href="#isStandaloneSAXFunc">isStandaloneSAXFunc</a>             (void * ctx);
+typedef void <a href="#notationDeclSAXFunc">notationDeclSAXFunc</a>            (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
+typedef void <a href="#processingInstructionSAXFunc">processingInstructionSAXFunc</a>  (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data);
+typedef void <a href="#referenceSAXFunc">referenceSAXFunc</a>          (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+typedef <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> <a href="#resolveEntitySAXFunc">resolveEntitySAXFunc</a>   (void * ctx, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
+typedef void <a href="#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a>        (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc);
+typedef void <a href="#startDocumentSAXFunc">startDocumentSAXFunc</a>          (void * ctx);
+typedef void <a href="#startElementNsSAX2Func">startElementNsSAX2Func</a>              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  int nb_namespaces, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces, <br>                                  int nb_attributes, <br>                                         int nb_defaulted, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** attributes);
+typedef void <a href="#startElementSAXFunc">startElementSAXFunc</a>            (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts);
+typedef void <a href="#unparsedEntityDeclSAXFunc">unparsedEntityDeclSAXFunc</a>        (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName);
+typedef void <a href="#warningSAXFunc">warningSAXFunc</a>                      (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+long   <a href="#xmlByteConsumed">xmlByteConsumed</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlCleanupParser">xmlCleanupParser</a>                (void);
+void   <a href="#xmlClearNodeInfoSeq">xmlClearNodeInfoSeq</a>          (<a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq);
+void   <a href="#xmlClearParserCtxt">xmlClearParserCtxt</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreateDocParserCtxt">xmlCreateDocParserCtxt</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur);
+<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a>      (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                             void * user_data, <br>                                          <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                                 <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                              void * ioctx, <br>                                              <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a>  (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                             void * user_data, <br>                                          const char * chunk, <br>                                                int size, <br>                                          const char * filename);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCtxtReadDoc">xmlCtxtReadDoc</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCtxtReadFd">xmlCtxtReadFd</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCtxtReadFile">xmlCtxtReadFile</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * filename, <br>                                     const char * encoding, <br>                                     int options);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCtxtReadIO">xmlCtxtReadIO</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCtxtReadMemory">xmlCtxtReadMemory</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * buffer, <br>                                       int size, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+void   <a href="#xmlCtxtReset">xmlCtxtReset</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+int    <a href="#xmlCtxtResetPush">xmlCtxtResetPush</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * chunk, <br>                                        int size, <br>                                  const char * filename, <br>                                     const char * encoding);
+int    <a href="#xmlCtxtUseOptions">xmlCtxtUseOptions</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    int options);
+typedef <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> <a href="#xmlExternalEntityLoader">xmlExternalEntityLoader</a>     (const char * URL, <br>                                          const char * ID, <br>                                           <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> context);
 void   <a href="#xmlFreeParserCtxt">xmlFreeParserCtxt</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlParseDTD">xmlParseDTD</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlRecoverDoc">xmlRecoverDoc</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur);
-typedef void <a href="#commentSAXFunc">commentSAXFunc</a>                      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a>      <a href="#xmlGetExternalEntityLoader">xmlGetExternalEntityLoader</a>    (void);
+int    <a href="#xmlGetFeature">xmlGetFeature</a>                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * name, <br>                                         void * result);
+int    <a href="#xmlGetFeaturesList">xmlGetFeaturesList</a>            (int * len, <br>                                         const char ** result);
+int    <a href="#xmlHasFeature">xmlHasFeature</a>                      (<a href="libxml2-parser.html#xmlFeature">xmlFeature</a> feature);
+<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlIOParseDTD">xmlIOParseDTD</a>              (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br>                                     <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+void   <a href="#xmlInitNodeInfoSeq">xmlInitNodeInfoSeq</a>            (<a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq);
+void   <a href="#xmlInitParser">xmlInitParser</a>                      (void);
 int    <a href="#xmlInitParserCtxt">xmlInitParserCtxt</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-typedef void <a href="#attributeSAXFunc">attributeSAXFunc</a>          (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-int    <a href="#xmlParserInputGrow">xmlParserInputGrow</a>            (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in, <br/>                                   int len);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCtxtReadMemory">xmlCtxtReadMemory</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * buffer, <br/>                                      int size, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-typedef void <a href="#externalSubsetSAXFunc">externalSubsetSAXFunc</a>                (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
-typedef <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> <a href="#resolveEntitySAXFunc">resolveEntitySAXFunc</a>   (void * ctx, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
-int    <a href="#xmlPedanticParserDefault">xmlPedanticParserDefault</a>        (int val);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseEntity">xmlSAXParseEntity</a>      (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const char * filename);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlParseDoc">xmlParseDoc</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a>  (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const char * filename, <br/>                                    int recovery, <br/>                                     void * data);
+int    <a href="#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a>                (int val);
 int    <a href="#xmlLineNumbersDefault">xmlLineNumbersDefault</a>              (int val);
-<a href="libxml2-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a>      <a href="#xmlGetExternalEntityLoader">xmlGetExternalEntityLoader</a>    (void);
-typedef void <a href="#elementDeclSAXFunc">elementDeclSAXFunc</a>              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content);
-int    <a href="#xmlCtxtUseOptions">xmlCtxtUseOptions</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   int options);
-<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a>  (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                            void * user_data, <br/>                                                 const char * chunk, <br/>                                               int size, <br/>                                                 const char * filename);
-void   <a href="#xmlParserAddNodeInfo">xmlParserAddNodeInfo</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-parser.html#xmlParserNodeInfoPtr">xmlParserNodeInfoPtr</a> info);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCtxtReadFd">xmlCtxtReadFd</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-typedef void <a href="#internalSubsetSAXFunc">internalSubsetSAXFunc</a>                (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
+<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlLoadExternalEntity">xmlLoadExternalEntity</a>      (const char * URL, <br>                                          const char * ID, <br>                                           <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNewIOInputStream">xmlNewIOInputStream</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br>                                             <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
 <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlNewParserCtxt">xmlNewParserCtxt</a>        (void);
-typedef void <a href="#endDocumentSAXFunc">endDocumentSAXFunc</a>              (void * ctx);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlParseFile">xmlParseFile</a>                (const char * filename);
+int    <a href="#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     void * user_data, <br>                                  int depth, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst);
+int    <a href="#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a>    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                             void * user_data, <br>                                          int depth, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string, <br>                                               <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst, <br>                                               int recover);
+int    <a href="#xmlParseChunk">xmlParseChunk</a>                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * chunk, <br>                                        int size, <br>                                  int terminate);
+int    <a href="#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctx, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst);
+<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlParseDTD">xmlParseDTD</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlParseDoc">xmlParseDoc</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur);
 int    <a href="#xmlParseDocument">xmlParseDocument</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-typedef void <a href="#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a>        (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc);
-typedef <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> <a href="#getParameterEntitySAXFunc">getParameterEntitySAXFunc</a>   (void * ctx, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-typedef void <a href="#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a>      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len);
-void   <a href="#xmlInitNodeInfoSeq">xmlInitNodeInfoSeq</a>            (<a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq);
-int    <a href="#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a>        (int val);
-typedef void <a href="#endElementSAXFunc">endElementSAXFunc</a>                (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-unsigned long  <a href="#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a>    (const <a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq, <br/>                                              const <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-long   <a href="#xmlByteConsumed">xmlByteConsumed</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlCtxtReset">xmlCtxtReset</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#xmlSetFeature">xmlSetFeature</a>                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * name, <br/>                                        void * value);
-int    <a href="#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a>                (int val);
-int    <a href="#xmlParserInputRead">xmlParserInputRead</a>            (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in, <br/>                                   int len);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlReadFile">xmlReadFile</a>          (const char * filename, <br/>                                    const char * encoding, <br/>                                    int options);
-int    <a href="#xmlGetFeaturesList">xmlGetFeaturesList</a>            (int * len, <br/>                                        const char ** result);
-int    <a href="#xmlHasFeature">xmlHasFeature</a>                      (<a href="libxml2-parser.html#xmlFeature">xmlFeature</a> feature);
-typedef void <a href="#unparsedEntityDeclSAXFunc">unparsedEntityDeclSAXFunc</a>        (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName);
-int    <a href="#xmlSAXUserParseFile">xmlSAXUserParseFile</a>          (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    void * user_data, <br/>                                         const char * filename);
-typedef void <a href="#fatalErrorSAXFunc">fatalErrorSAXFunc</a>                (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlSAXParseDTD">xmlSAXParseDTD</a>            (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
-const <a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> *  <a href="#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a>      (const <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctx, <br/>                                                      const <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-typedef void <a href="#entityDeclSAXFunc">entityDeclSAXFunc</a>                (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlLoadExternalEntity">xmlLoadExternalEntity</a>      (const char * URL, <br/>                                                 const char * ID, <br/>                                          <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlStopParser">xmlStopParser</a>                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlReadFd">xmlReadFd</a>              (int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlParseEntity">xmlParseEntity</a>            (const char * filename);
 int    <a href="#xmlParseExtParsedEnt">xmlParseExtParsedEnt</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlReadIO">xmlReadIO</a>              (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlReadDoc">xmlReadDoc</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-int    <a href="#xmlSAXUserParseMemory">xmlSAXUserParseMemory</a>              (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    void * user_data, <br/>                                         const char * buffer, <br/>                                      int size);
-int    <a href="#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    void * user_data, <br/>                                         int depth, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst);
-typedef void <a href="#endElementNsSAX2Func">endElementNsSAX2Func</a>          (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI);
-void   <a href="#xmlCleanupParser">xmlCleanupParser</a>                (void);
-int    <a href="#xmlCtxtResetPush">xmlCtxtResetPush</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * chunk, <br/>                                       int size, <br/>                                         const char * filename, <br/>                                    const char * encoding);
-typedef int <a href="#isStandaloneSAXFunc">isStandaloneSAXFunc</a>             (void * ctx);
-typedef void <a href="#startDocumentSAXFunc">startDocumentSAXFunc</a>          (void * ctx);
-void   <a href="#xmlClearParserCtxt">xmlClearParserCtxt</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#xmlParseExternalEntity">xmlParseExternalEntity</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    void * user_data, <br/>                                         int depth, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst);
-typedef void <a href="#notationDeclSAXFunc">notationDeclSAXFunc</a>            (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId);
-typedef void <a href="#warningSAXFunc">warningSAXFunc</a>                      (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
+int    <a href="#xmlParseExternalEntity">xmlParseExternalEntity</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     void * user_data, <br>                                  int depth, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlParseFile">xmlParseFile</a>                (const char * filename);
+<a href="libxml2-xmlerror.html#xmlParserErrors">xmlParserErrors</a>    <a href="#xmlParseInNodeContext">xmlParseInNodeContext</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const char * data, <br>                                         int datalen, <br>                                       int options, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlParseMemory">xmlParseMemory</a>            (const char * buffer, <br>                                       int size);
+void   <a href="#xmlParserAddNodeInfo">xmlParserAddNodeInfo</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-parser.html#xmlParserNodeInfoPtr">xmlParserNodeInfoPtr</a> info);
+const <a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> *  <a href="#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a>      (const <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctx, <br>                                                       const <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+unsigned long  <a href="#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a>    (const <a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq, <br>                                               const <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+typedef void <a href="#xmlParserInputDeallocate">xmlParserInputDeallocate</a>  (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
+int    <a href="#xmlParserInputGrow">xmlParserInputGrow</a>            (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in, <br>                                    int len);
+int    <a href="#xmlParserInputRead">xmlParserInputRead</a>            (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in, <br>                                    int len);
+int    <a href="#xmlPedanticParserDefault">xmlPedanticParserDefault</a>        (int val);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlReadDoc">xmlReadDoc</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlReadFd">xmlReadFd</a>              (int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlReadFile">xmlReadFile</a>          (const char * filename, <br>                                     const char * encoding, <br>                                     int options);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlReadIO">xmlReadIO</a>              (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlReadMemory">xmlReadMemory</a>              (const char * buffer, <br>                                       int size, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlRecoverDoc">xmlRecoverDoc</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlRecoverFile">xmlRecoverFile</a>            (const char * filename);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlRecoverMemory">xmlRecoverMemory</a>        (const char * buffer, <br>                                       int size);
+<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlSAXParseDTD">xmlSAXParseDTD</a>            (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseDoc">xmlSAXParseDoc</a>            (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  int recovery);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseEntity">xmlSAXParseEntity</a>      (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const char * filename);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseFile">xmlSAXParseFile</a>          (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const char * filename, <br>                                     int recovery);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a>  (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const char * filename, <br>                                     int recovery, <br>                                      void * data);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseMemory">xmlSAXParseMemory</a>      (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const char * buffer, <br>                                       int size, <br>                                  int recovery);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a>      (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                             const char * buffer, <br>                                               int size, <br>                                          int recovery, <br>                                              void * data);
+int    <a href="#xmlSAXUserParseFile">xmlSAXUserParseFile</a>          (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     void * user_data, <br>                                  const char * filename);
+int    <a href="#xmlSAXUserParseMemory">xmlSAXUserParseMemory</a>              (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     void * user_data, <br>                                  const char * buffer, <br>                                       int size);
 void   <a href="#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a>    (<a href="libxml2-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a> f);
+int    <a href="#xmlSetFeature">xmlSetFeature</a>                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * name, <br>                                         void * value);
+void   <a href="#xmlSetupParserForBuffer">xmlSetupParserForBuffer</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buffer, <br>                                       const char * filename);
+void   <a href="#xmlStopParser">xmlStopParser</a>                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+int    <a href="#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a>        (int val);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_COMPLETE_ATTRS">Macro </a>XML_COMPLETE_ATTRS</h3>
+<pre class="programlisting">#define <a href="#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a>;
+</pre>
+<p>Bit in the loadsubset context field to tell to do complete the elements attributes lists with the ones defaulted from the DTDs. Use it to initialize xmlLoadExtDtdDefaultValue.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_DEFAULT_VERSION">Macro </a>XML_DEFAULT_VERSION</h3>
+<pre class="programlisting">#define <a href="#XML_DEFAULT_VERSION">XML_DEFAULT_VERSION</a>;
+</pre>
+<p>The default version of XML used: 1.0</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_DETECT_IDS">Macro </a>XML_DETECT_IDS</h3>
+<pre class="programlisting">#define <a href="#XML_DETECT_IDS">XML_DETECT_IDS</a>;
+</pre>
+<p>Bit in the loadsubset context field to tell to do ID/REFs lookups. Use it to initialize xmlLoadExtDtdDefaultValue.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SAX2_MAGIC">Macro </a>XML_SAX2_MAGIC</h3>
+<pre class="programlisting">#define <a href="#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a>;
+</pre>
+<p>Special constant found in SAX2 blocks initialized fields</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SKIP_IDS">Macro </a>XML_SKIP_IDS</h3>
+<pre class="programlisting">#define <a href="#XML_SKIP_IDS">XML_SKIP_IDS</a>;
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="XML_COMPLETE_ATTRS">Macro </a>XML_COMPLETE_ATTRS</h3><pre class="programlisting">#define <a href="#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a>;
-</pre><p>Bit in the loadsubset context field to tell to do complete the elements attributes lists with the ones defaulted from the DTDs. Use it to initialize xmlLoadExtDtdDefaultValue.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_DEFAULT_VERSION">Macro </a>XML_DEFAULT_VERSION</h3><pre class="programlisting">#define <a href="#XML_DEFAULT_VERSION">XML_DEFAULT_VERSION</a>;
-</pre><p>The default version of XML used: 1.0</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_DETECT_IDS">Macro </a>XML_DETECT_IDS</h3><pre class="programlisting">#define <a href="#XML_DETECT_IDS">XML_DETECT_IDS</a>;
-</pre><p>Bit in the loadsubset context field to tell to do ID/REFs lookups. Use it to initialize xmlLoadExtDtdDefaultValue.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SAX2_MAGIC">Macro </a>XML_SAX2_MAGIC</h3><pre class="programlisting">#define <a href="#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a>;
-</pre><p>Special constant found in SAX2 blocks initialized fields</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SKIP_IDS">Macro </a>XML_SKIP_IDS</h3><pre class="programlisting">#define <a href="#XML_SKIP_IDS">XML_SKIP_IDS</a>;
-</pre><p>Bit in the loadsubset context field to tell to not do ID/REFs registration. Used to initialize <a href="libxml2-globals.html#xmlLoadExtDtdDefaultValue">xmlLoadExtDtdDefaultValue</a> in some special cases.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFeature">Enum </a>xmlFeature</h3><pre class="programlisting">enum <a href="#xmlFeature">xmlFeature</a> {
+<p>Bit in the loadsubset context field to tell to not do ID/REFs registration. Used to initialize <a href="libxml2-globals.html#xmlLoadExtDtdDefaultValue">xmlLoadExtDtdDefaultValue</a> in some special cases.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFeature">Enum </a>xmlFeature</h3>
+<pre class="programlisting">enum <a href="#xmlFeature">xmlFeature</a> {
     <a name="XML_WITH_THREAD">XML_WITH_THREAD</a> = 1
     <a name="XML_WITH_TREE">XML_WITH_TREE</a> = 2
     <a name="XML_WITH_OUTPUT">XML_WITH_OUTPUT</a> = 3
@@ -225,10 +225,14 @@ void      <a href="#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a>    (<a hr
     <a name="XML_WITH_LZMA">XML_WITH_LZMA</a> = 33
     <a name="XML_WITH_NONE">XML_WITH_NONE</a> = 99999 /*  just to be sure of allocation size */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputState">Enum </a>xmlParserInputState</h3><pre class="programlisting">enum <a href="#xmlParserInputState">xmlParserInputState</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputState">Enum </a>xmlParserInputState</h3>
+<pre class="programlisting">enum <a href="#xmlParserInputState">xmlParserInputState</a> {
     <a name="XML_PARSER_EOF">XML_PARSER_EOF</a> = -1 /* nothing is to be parsed */
     <a name="XML_PARSER_START">XML_PARSER_START</a> = 0 /* nothing has been parsed */
     <a name="XML_PARSER_MISC">XML_PARSER_MISC</a> = 1 /* Misc* before int subset */
@@ -248,10 +252,14 @@ void      <a href="#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a>    (<a hr
     <a name="XML_PARSER_IGNORE">XML_PARSER_IGNORE</a> = 15 /* within an IGNORED section */
     <a name="XML_PARSER_PUBLIC_LITERAL">XML_PARSER_PUBLIC_LITERAL</a> = 16 /*  within a PUBLIC value */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserMode">Enum </a>xmlParserMode</h3><pre class="programlisting">enum <a href="#xmlParserMode">xmlParserMode</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserMode">Enum </a>xmlParserMode</h3>
+<pre class="programlisting">enum <a href="#xmlParserMode">xmlParserMode</a> {
     <a name="XML_PARSE_UNKNOWN">XML_PARSE_UNKNOWN</a> = 0
     <a name="XML_PARSE_DOM">XML_PARSE_DOM</a> = 1
     <a name="XML_PARSE_SAX">XML_PARSE_SAX</a> = 2
@@ -259,36 +267,56 @@ void      <a href="#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a>    (<a hr
     <a name="XML_PARSE_PUSH_SAX">XML_PARSE_PUSH_SAX</a> = 4
     <a name="XML_PARSE_READER">XML_PARSE_READER</a> = 5
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserNodeInfo">Structure </a>xmlParserNodeInfo</h3><pre class="programlisting">struct _xmlParserNodeInfo {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserNodeInfo">Structure </a>xmlParserNodeInfo</h3>
+<pre class="programlisting">struct _xmlParserNodeInfo {
     const struct _xmlNode *    node    : Position &amp; line # that text that created the node begins &amp; ends on
     unsigned long      begin_pos
     unsigned long      begin_line
     unsigned long      end_pos
     unsigned long      end_line
 } xmlParserNodeInfo;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserNodeInfoPtr">Typedef </a>xmlParserNodeInfoPtr</h3><pre class="programlisting"><a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> * xmlParserNodeInfoPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserNodeInfoPtr">Typedef </a>xmlParserNodeInfoPtr</h3>
+<pre class="programlisting"><a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> * xmlParserNodeInfoPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserNodeInfoSeq">Structure </a>xmlParserNodeInfoSeq</h3><pre class="programlisting">struct _xmlParserNodeInfoSeq {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserNodeInfoSeq">Structure </a>xmlParserNodeInfoSeq</h3>
+<pre class="programlisting">struct _xmlParserNodeInfoSeq {
     unsigned long      maximum
     unsigned long      length
     <a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> *    buffer
 } xmlParserNodeInfoSeq;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserNodeInfoSeqPtr">Typedef </a>xmlParserNodeInfoSeqPtr</h3><pre class="programlisting"><a href="libxml2-parser.html#xmlParserNodeInfoSeq">xmlParserNodeInfoSeq</a> * xmlParserNodeInfoSeqPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserNodeInfoSeqPtr">Typedef </a>xmlParserNodeInfoSeqPtr</h3>
+<pre class="programlisting"><a href="libxml2-parser.html#xmlParserNodeInfoSeq">xmlParserNodeInfoSeq</a> * xmlParserNodeInfoSeqPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserOption">Enum </a>xmlParserOption</h3><pre class="programlisting">enum <a href="#xmlParserOption">xmlParserOption</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserOption">Enum </a>xmlParserOption</h3>
+<pre class="programlisting">enum <a href="#xmlParserOption">xmlParserOption</a> {
     <a name="XML_PARSE_RECOVER">XML_PARSE_RECOVER</a> = 1 /* recover on errors */
     <a name="XML_PARSE_NOENT">XML_PARSE_NOENT</a> = 2 /* substitute entities */
     <a name="XML_PARSE_DTDLOAD">XML_PARSE_DTDLOAD</a> = 4 /* load the external subset */
@@ -313,10 +341,14 @@ void      <a href="#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a>    (<a hr
     <a name="XML_PARSE_IGNORE_ENC">XML_PARSE_IGNORE_ENC</a> = 2097152 /* ignore internal document encoding hint */
     <a name="XML_PARSE_BIG_LINES">XML_PARSE_BIG_LINES</a> = 4194304 /*  Store big lines numbers in text PSVI field */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXHandlerV1">Structure </a>xmlSAXHandlerV1</h3><pre class="programlisting">struct _xmlSAXHandlerV1 {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXHandlerV1">Structure </a>xmlSAXHandlerV1</h3>
+<pre class="programlisting">struct _xmlSAXHandlerV1 {
     <a href="libxml2-parser.html#internalSubsetSAXFunc">internalSubsetSAXFunc</a>      internalSubset
     <a href="libxml2-parser.html#isStandaloneSAXFunc">isStandaloneSAXFunc</a>  isStandalone
     <a href="libxml2-parser.html#hasInternalSubsetSAXFunc">hasInternalSubsetSAXFunc</a>        hasInternalSubset
@@ -346,428 +378,2752 @@ void   <a href="#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a>    (<a hr
     <a href="libxml2-parser.html#externalSubsetSAXFunc">externalSubsetSAXFunc</a>      externalSubset
     unsigned int       initialized
 } xmlSAXHandlerV1;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXHandlerV1Ptr">Typedef </a>xmlSAXHandlerV1Ptr</h3><pre class="programlisting"><a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> * xmlSAXHandlerV1Ptr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXHandlerV1Ptr">Typedef </a>xmlSAXHandlerV1Ptr</h3>
+<pre class="programlisting"><a href="libxml2-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a> * xmlSAXHandlerV1Ptr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStartTag">Structure </a>xmlStartTag</h3><pre class="programlisting">struct _xmlStartTag {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStartTag">Structure </a>xmlStartTag</h3>
+<pre class="programlisting">struct _xmlStartTag {
 The content of this structure is not made public by the API.
 } xmlStartTag;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="attributeDeclSAXFunc"/>Function type attributeDeclSAXFunc</h3><pre class="programlisting">void    attributeDeclSAXFunc            (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br/>                                    int type, <br/>                                         int def, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br/>                                        <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree)<br/>
-</pre><p>An <a href="libxml2-SAX.html#attribute">attribute</a> definition has been parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the name of the element</td></tr><tr><td><span class="term"><i><tt>fullname</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> type</td></tr><tr><td><span class="term"><i><tt>def</tt></i>:</span></td><td>the type of default value</td></tr><tr><td><span class="term"><i><tt>defaultValue</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> default value</td></tr><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>the tree of enumerated value set</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="attributeSAXFunc"/>Function type attributeSAXFunc</h3><pre class="programlisting">void    attributeSAXFunc                (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Handle an <a href="libxml2-SAX.html#attribute">attribute</a> that has been read by the parser. The default handling is to convert the <a href="libxml2-SAX.html#attribute">attribute</a> into an DOM subtree and past it in a new <a href="libxml2-tree.html#xmlAttr">xmlAttr</a> element added to the element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The <a href="libxml2-SAX.html#attribute">attribute</a> name, including namespace prefix</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>The <a href="libxml2-SAX.html#attribute">attribute</a> value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="cdataBlockSAXFunc"/>Function type cdataBlockSAXFunc</h3><pre class="programlisting">void  cdataBlockSAXFunc               (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int len)<br/>
-</pre><p>Called when a pcdata block has been parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>The pcdata content</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the block length</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="charactersSAXFunc"/>Function type charactersSAXFunc</h3><pre class="programlisting">void  charactersSAXFunc               (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len)<br/>
-</pre><p>Receiving some chars from the parser.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="commentSAXFunc"/>Function type commentSAXFunc</h3><pre class="programlisting">void        commentSAXFunc                  (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>A <a href="libxml2-SAX.html#comment">comment</a> has been parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#comment">comment</a> content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="elementDeclSAXFunc"/>Function type elementDeclSAXFunc</h3><pre class="programlisting">void        elementDeclSAXFunc              (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content)<br/>
-</pre><p>An element definition has been parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the element name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the element type</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the element value tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="endDocumentSAXFunc"/>Function type endDocumentSAXFunc</h3><pre class="programlisting">void        endDocumentSAXFunc              (void * ctx)<br/>
-</pre><p>Called when the document end has been detected.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="endElementNsSAX2Func"/>Function type endElementNsSAX2Func</h3><pre class="programlisting">void    endElementNsSAX2Func            (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI)<br/>
-</pre><p>SAX2 callback when an element end has been detected by the parser. It provides the namespace information for the element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>localname</tt></i>:</span></td><td>the local name of the element</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the element namespace prefix if available</td></tr><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the element namespace name if available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="endElementSAXFunc"/>Function type endElementSAXFunc</h3><pre class="programlisting">void  endElementSAXFunc               (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Called when the end of an element has been detected.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The element name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="entityDeclSAXFunc"/>Function type entityDeclSAXFunc</h3><pre class="programlisting">void  entityDeclSAXFunc               (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int type, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>An entity definition has been parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the entity type</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the entity value (without processing).</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="errorSAXFunc"/>Function type errorSAXFunc</h3><pre class="programlisting">void    errorSAXFunc                    (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Display and format an error messages, callback.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message to display/transmit</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the message display</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="externalSubsetSAXFunc"/>Function type externalSubsetSAXFunc</h3><pre class="programlisting">void  externalSubsetSAXFunc           (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>Callback on external subset declaration.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the root element name</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the external ID</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the SYSTEM ID (e.g. filename or URL)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="fatalErrorSAXFunc"/>Function type fatalErrorSAXFunc</h3><pre class="programlisting">void  fatalErrorSAXFunc               (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Display and format fatal error messages, callback. Note: so far fatalError() SAX callbacks are not used, error() get all the callbacks for errors.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message to display/transmit</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the message display</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="getEntitySAXFunc"/>Function type getEntitySAXFunc</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>       getEntitySAXFunc        (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Get an entity by name.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="getParameterEntitySAXFunc"/>Function type getParameterEntitySAXFunc</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>     getParameterEntitySAXFunc       (void * ctx, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Get a parameter entity by name.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The entity name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="hasExternalSubsetSAXFunc"/>Function type hasExternalSubsetSAXFunc</h3><pre class="programlisting">int     hasExternalSubsetSAXFunc        (void * ctx)<br/>
-</pre><p>Does this document has an external subset?</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="hasInternalSubsetSAXFunc"/>Function type hasInternalSubsetSAXFunc</h3><pre class="programlisting">int     hasInternalSubsetSAXFunc        (void * ctx)<br/>
-</pre><p>Does this document has an internal subset.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="ignorableWhitespaceSAXFunc"/>Function type ignorableWhitespaceSAXFunc</h3><pre class="programlisting">void        ignorableWhitespaceSAXFunc      (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br/>                                  int len)<br/>
-</pre><p>Receiving some ignorable whitespaces from the parser. UNUSED: by default the DOM building will use characters.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>ch</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="internalSubsetSAXFunc"/>Function type internalSubsetSAXFunc</h3><pre class="programlisting">void  internalSubsetSAXFunc           (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>Callback on internal subset declaration.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the root element name</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the external ID</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the SYSTEM ID (e.g. filename or URL)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="isStandaloneSAXFunc"/>Function type isStandaloneSAXFunc</h3><pre class="programlisting">int       isStandaloneSAXFunc             (void * ctx)<br/>
-</pre><p>Is this document tagged standalone?</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="notationDeclSAXFunc"/>Function type notationDeclSAXFunc</h3><pre class="programlisting">void      notationDeclSAXFunc             (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br/>
-</pre><p>What to do when a notation declaration has been parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The name of the notation</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="processingInstructionSAXFunc"/>Function type processingInstructionSAXFunc</h3><pre class="programlisting">void    processingInstructionSAXFunc    (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data)<br/>
-</pre><p>A processing instruction has been parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>target</tt></i>:</span></td><td>the target name</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the PI data's</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="referenceSAXFunc"/>Function type referenceSAXFunc</h3><pre class="programlisting">void    referenceSAXFunc                (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Called when an entity <a href="libxml2-SAX.html#reference">reference</a> is detected.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The entity name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="resolveEntitySAXFunc"/>Function type resolveEntitySAXFunc</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>     resolveEntitySAXFunc    (void * ctx, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br/>
-</pre><p>Callback: The entity loader, to control the loading of external entities, the application can either: - override this resolveEntity() callback in the SAX block - or better use the xmlSetExternalEntityLoader() function to set up it's own entity resolution routine</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> if inlined or NULL for DOM behaviour.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="setDocumentLocatorSAXFunc"/>Function type setDocumentLocatorSAXFunc</h3><pre class="programlisting">void  setDocumentLocatorSAXFunc       (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc)<br/>
-</pre><p>Receive the document locator at startup, actually xmlDefaultSAXLocator. Everything is available on the context, so this is useless in our case.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>loc</tt></i>:</span></td><td>A SAX Locator</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="startDocumentSAXFunc"/>Function type startDocumentSAXFunc</h3><pre class="programlisting">void    startDocumentSAXFunc            (void * ctx)<br/>
-</pre><p>Called when the document start being processed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="startElementNsSAX2Func"/>Function type startElementNsSAX2Func</h3><pre class="programlisting">void        startElementNsSAX2Func          (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         int nb_namespaces, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces, <br/>                                         int nb_attributes, <br/>                                        int nb_defaulted, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** attributes)<br/>
-</pre><p>SAX2 callback when an element start has been detected by the parser. It provides the namespace information for the element, as well as the new namespace declarations on the element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>localname</tt></i>:</span></td><td>the local name of the element</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the element namespace prefix if available</td></tr><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the element namespace name if available</td></tr><tr><td><span class="term"><i><tt>nb_namespaces</tt></i>:</span></td><td>number of namespace definitions on that node</td></tr><tr><td><span class="term"><i><tt>namespaces</tt></i>:</span></td><td>pointer to the array of prefix/URI pairs namespace definitions</td></tr><tr><td><span class="term"><i><tt>nb_attributes</tt></i>:</span></td><td>the number of attributes on that node</td></tr><tr><td><span class="term"><i><tt>nb_defaulted</tt></i>:</span></td><td>the number of defaulted attributes. The defaulted ones are at the end of the array</td></tr><tr><td><span class="term"><i><tt>attributes</tt></i>:</span></td><td>pointer to the array of (localname/prefix/URI/value/end) <a href="libxml2-SAX.html#attribute">attribute</a> values.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="startElementSAXFunc"/>Function type startElementSAXFunc</h3><pre class="programlisting">void      startElementSAXFunc             (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts)<br/>
-</pre><p>Called when an opening tag has been processed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The element name, including namespace prefix</td></tr><tr><td><span class="term"><i><tt>atts</tt></i>:</span></td><td>An array of name/value attributes pairs, NULL terminated</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="unparsedEntityDeclSAXFunc"/>Function type unparsedEntityDeclSAXFunc</h3><pre class="programlisting">void  unparsedEntityDeclSAXFunc       (void * ctx, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName)<br/>
-</pre><p>What to do when an unparsed entity declaration is parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the user data (XML parser context)</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>The name of the entity</td></tr><tr><td><span class="term"><i><tt>publicId</tt></i>:</span></td><td>The public ID of the entity</td></tr><tr><td><span class="term"><i><tt>systemId</tt></i>:</span></td><td>The system ID of the entity</td></tr><tr><td><span class="term"><i><tt>notationName</tt></i>:</span></td><td>the name of the notation</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="warningSAXFunc"/>Function type warningSAXFunc</h3><pre class="programlisting">void        warningSAXFunc                  (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Display and format a warning messages, callback.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message to display/transmit</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the message display</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExternalEntityLoader"/>Function type xmlExternalEntityLoader</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>       xmlExternalEntityLoader (const char * URL, <br/>                                                 const char * ID, <br/>                                          <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> context)<br/>
-</pre><p>External entity loaders types.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>The System ID of the resource requested</td></tr><tr><td><span class="term"><i><tt>ID</tt></i>:</span></td><td>The Public ID of the resource requested</td></tr><tr><td><span class="term"><i><tt>context</tt></i>:</span></td><td>the XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the entity input parser.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputDeallocate"/>Function type xmlParserInputDeallocate</h3><pre class="programlisting">void    xmlParserInputDeallocate        (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>Callback for freeing some parser input allocations.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the string to deallocate</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlByteConsumed"/>xmlByteConsumed ()</h3><pre class="programlisting">long xmlByteConsumed                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>This function provides the current index of the parser relative to the start of the current entity. This function is computed in bytes from the beginning starting at zero and finishing at the size in byte of the file if parsing a file. The function is of constant cost if the input is UTF-8 but can be costly if run on non-UTF-8 input.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the index in bytes from the beginning of the entity or -1 in case the index could not be computed.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCleanupParser"/>xmlCleanupParser ()</h3><pre class="programlisting">void       xmlCleanupParser                (void)<br/>
-</pre><p>This function name is somewhat misleading. It does not clean up parser state, it cleans up memory allocated by the library itself. It is a cleanup function for the XML library. It tries to reclaim all related global memory allocated for the library processing. It doesn't deallocate any document related memory. One should call xmlCleanupParser() only when the process has finished using the library and all XML/HTML documents built with it. See also xmlInitParser() which has the opposite function of preparing the library for operations. WARNING: if your application is multithreaded or has plugin support calling this may crash the application if another thread or a plugin is still using libxml2. It's sometimes very hard to guess if libxml2 is in use in the application, some libraries or plugins may use it without notice. In case of doubt abstain from calling this function or do it just before calling exit() to avoid leak reports from valgrind !</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlClearNodeInfoSeq"/>xmlClearNodeInfoSeq ()</h3><pre class="programlisting">void xmlClearNodeInfoSeq             (<a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq)<br/>
-</pre><p>-- Clear (release memory and reinitialize) node info sequence</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>seq</tt></i>:</span></td><td>a node info sequence pointer</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlClearParserCtxt"/>xmlClearParserCtxt ()</h3><pre class="programlisting">void   xmlClearParserCtxt              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Clear (release owned resources) and reinitialize a parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCreateDocParserCtxt"/>xmlCreateDocParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      xmlCreateDocParserCtxt  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur)<br/>
-</pre><p>Creates a parser context for an XML in-memory document.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser context or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCreateIOParserCtxt"/>xmlCreateIOParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>        xmlCreateIOParserCtxt   (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                            void * user_data, <br/>                                                 <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                                <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                             void * ioctx, <br/>                                             <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Create a parser context for using the XML parser with an existing I/O stream</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>a SAX handler</td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>The user data returned on SAX callbacks</td></tr><tr><td><span class="term"><i><tt>ioread</tt></i>:</span></td><td>an I/O read function</td></tr><tr><td><span class="term"><i><tt>ioclose</tt></i>:</span></td><td>an I/O close function</td></tr><tr><td><span class="term"><i><tt>ioctx</tt></i>:</span></td><td>an I/O handler</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the charset encoding if known</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser context or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCreatePushParserCtxt"/>xmlCreatePushParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>    xmlCreatePushParserCtxt (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                            void * user_data, <br/>                                                 const char * chunk, <br/>                                               int size, <br/>                                                 const char * filename)<br/>
-</pre><p>Create a parser context for using the XML parser in push mode. If @buffer and @size are non-NULL, the data is used to detect the encoding. The remaining <a href="libxml2-SAX.html#characters">characters</a> will be parsed so they don't need to be fed in again through xmlParseChunk. To allow content encoding detection, @size should be &gt;= 4 The value of @filename is used for fetching external entities and error/warning reports.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>a SAX handler</td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>The user data returned on SAX callbacks</td></tr><tr><td><span class="term"><i><tt>chunk</tt></i>:</span></td><td>a pointer to an array of chars</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>number of chars in the array</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>an optional file name or URI</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser context or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCtxtReadDoc"/>xmlCtxtReadDoc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    xmlCtxtReadDoc          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to a zero terminated string</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCtxtReadFd"/>xmlCtxtReadFd ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>      xmlCtxtReadFd           (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML from a file descriptor and build a tree. This reuses the existing @ctxt parser context NOTE that the file descriptor will not be closed when the reader is closed or reset.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>fd</tt></i>:</span></td><td>an open file descriptor</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCtxtReadFile"/>xmlCtxtReadFile ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>  xmlCtxtReadFile         (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * filename, <br/>                                    const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML file from the filesystem or the network. This reuses the existing @ctxt parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file or URL</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCtxtReadIO"/>xmlCtxtReadIO ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>      xmlCtxtReadIO           (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>ioread</tt></i>:</span></td><td>an I/O read function</td></tr><tr><td><span class="term"><i><tt>ioclose</tt></i>:</span></td><td>an I/O close function</td></tr><tr><td><span class="term"><i><tt>ioctx</tt></i>:</span></td><td>an I/O handler</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCtxtReadMemory"/>xmlCtxtReadMemory ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>      xmlCtxtReadMemory       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * buffer, <br/>                                      int size, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCtxtReset"/>xmlCtxtReset ()</h3><pre class="programlisting">void       xmlCtxtReset                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Reset a parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCtxtResetPush"/>xmlCtxtResetPush ()</h3><pre class="programlisting">int        xmlCtxtResetPush                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * chunk, <br/>                                       int size, <br/>                                         const char * filename, <br/>                                    const char * encoding)<br/>
-</pre><p>Reset a push parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>chunk</tt></i>:</span></td><td>a pointer to an array of chars</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>number of chars in the array</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>an optional file name or URI</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and 1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCtxtUseOptions"/>xmlCtxtUseOptions ()</h3><pre class="programlisting">int      xmlCtxtUseOptions               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   int options)<br/>
-</pre><p>Applies the options to the parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, the set of unknown or unimplemented options in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeParserCtxt"/>xmlFreeParserCtxt ()</h3><pre class="programlisting">void     xmlFreeParserCtxt               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Free all the memory used by a parser context. However the parsed document in ctxt-&gt;myDoc is not freed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetExternalEntityLoader"/>xmlGetExternalEntityLoader ()</h3><pre class="programlisting"><a href="libxml2-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a>      xmlGetExternalEntityLoader      (void)<br/>
-</pre><p>Get the default external entity resolver function for the application</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a> function pointer</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetFeature"/>xmlGetFeature ()</h3><pre class="programlisting">int      xmlGetFeature                   (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * name, <br/>                                        void * result)<br/>
-</pre><p>Read the current value of one feature of this parser instance</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML/HTML parser context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the feature name</td></tr><tr><td><span class="term"><i><tt>result</tt></i>:</span></td><td>location to store the result</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case or error, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetFeaturesList"/>xmlGetFeaturesList ()</h3><pre class="programlisting">int    xmlGetFeaturesList              (int * len, <br/>                                        const char ** result)<br/>
-</pre><p>Copy at most *@len feature names into the @result array</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length of the features name array (input/output)</td></tr><tr><td><span class="term"><i><tt>result</tt></i>:</span></td><td>an array of string to be filled with the features name.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case or error, or the total number of features, len is updated with the number of strings copied, strings must not be deallocated</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHasFeature"/>xmlHasFeature ()</h3><pre class="programlisting">int      xmlHasFeature                   (<a href="libxml2-parser.html#xmlFeature">xmlFeature</a> feature)<br/>
-</pre><p>Examines if the library has been compiled with a given feature.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>feature</tt></i>:</span></td><td>the feature to be examined</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a non-zero value if the feature exist, otherwise zero. Returns zero (0) if the feature does not exist or an unknown unknown feature is requested, non-zero otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIOParseDTD"/>xmlIOParseDTD ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>      xmlIOParseDTD           (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br/>                                    <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Load and parse a DTD</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block or NULL</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>an Input Buffer</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the charset encoding if known</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> or NULL in case of error. @input will be freed by the function in any case.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInitNodeInfoSeq"/>xmlInitNodeInfoSeq ()</h3><pre class="programlisting">void   xmlInitNodeInfoSeq              (<a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq)<br/>
-</pre><p>-- Initialize (set to initial state) node info sequence</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>seq</tt></i>:</span></td><td>a node info sequence pointer</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInitParser"/>xmlInitParser ()</h3><pre class="programlisting">void     xmlInitParser                   (void)<br/>
-</pre><p>Initialization function for the XML parser. This is not reentrant. Call once before processing in case of use in multithreaded programs.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInitParserCtxt"/>xmlInitParserCtxt ()</h3><pre class="programlisting">int      xmlInitParserCtxt               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Initialize a parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlKeepBlanksDefault"/>xmlKeepBlanksDefault ()</h3><pre class="programlisting">int        xmlKeepBlanksDefault            (int val)<br/>
-</pre><p>Set and return the previous value for default blanks text nodes support. The 1.x version of the parser used an heuristic to try to detect ignorable white spaces. As a result the SAX callback was generating xmlSAX2IgnorableWhitespace() callbacks instead of characters() one, and when using the DOM output text nodes containing those blanks were not generated. The 2.x and later version will switch to the XML standard way and ignorableWhitespace() are only generated when running the parser in validating mode and when the current element doesn't allow CDATA or mixed content. This function is provided as a way to force the standard behavior on 1.X libs and to switch back to the old mode for compatibility when running 1.X client code on 2.X . Upgrade of 1.X code should be done by using xmlIsBlankNode() commodity function to detect the "empty" nodes generated. This value also affect autogeneration of indentation when saving code if blanks sections are kept, indentation is not generated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>int 0 or 1</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the last value for 0 for no substitution, 1 for substitution.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLineNumbersDefault"/>xmlLineNumbersDefault ()</h3><pre class="programlisting">int      xmlLineNumbersDefault           (int val)<br/>
-</pre><p>Set and return the previous value for enabling line numbers in elements contents. This may break on old application and is turned off by default.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>int 0 or 1</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the last value for 0 for no substitution, 1 for substitution.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLoadExternalEntity"/>xmlLoadExternalEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>      xmlLoadExternalEntity   (const char * URL, <br/>                                                 const char * ID, <br/>                                          <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Load an external entity, note that the use of this function for unparsed entities may generate problems</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the URL for the entity to load</td></tr><tr><td><span class="term"><i><tt>ID</tt></i>:</span></td><td>the Public ID for the entity to load</td></tr><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the context in which the entity is called or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewIOInputStream"/>xmlNewIOInputStream ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>  xmlNewIOInputStream     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br/>                                            <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Create a new input stream structure encapsulating the @input into a stream suitable for the parser.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>an I/O Input</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the charset encoding if known</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new input stream or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewParserCtxt"/>xmlNewParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>  xmlNewParserCtxt        (void)<br/>
-</pre><p>Allocate and initialize a new parser context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseBalancedChunkMemory"/>xmlParseBalancedChunkMemory ()</h3><pre class="programlisting">int  xmlParseBalancedChunkMemory     (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    void * user_data, <br/>                                         int depth, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst)<br/>
-</pre><p>Parse a well-balanced chunk of an XML document called by the parser The allowed sequence for the Well Balanced Chunk is the one defined by the content production in the XML grammar: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document the chunk pertains to (must not be NULL)</td></tr><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block (possibly NULL)</td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>The user data returned on SAX callbacks (possibly NULL)</td></tr><tr><td><span class="term"><i><tt>depth</tt></i>:</span></td><td>Used for loop detection, use 0</td></tr><tr><td><span class="term"><i><tt>string</tt></i>:</span></td><td>the input string in UTF8 or ISO-Latin (zero terminated)</td></tr><tr><td><span class="term"><i><tt>lst</tt></i>:</span></td><td>the return value for the set of parsed nodes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the chunk is well balanced, -1 in case of args problem and the parser error code otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseBalancedChunkMemoryRecover"/>xmlParseBalancedChunkMemoryRecover ()</h3><pre class="programlisting">int    xmlParseBalancedChunkMemoryRecover      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                            void * user_data, <br/>                                                 int depth, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string, <br/>                                              <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst, <br/>                                              int recover)<br/>
-</pre><p>Parse a well-balanced chunk of an XML document called by the parser The allowed sequence for the Well Balanced Chunk is the one defined by the content production in the XML grammar: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document the chunk pertains to (must not be NULL)</td></tr><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block (possibly NULL)</td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>The user data returned on SAX callbacks (possibly NULL)</td></tr><tr><td><span class="term"><i><tt>depth</tt></i>:</span></td><td>Used for loop detection, use 0</td></tr><tr><td><span class="term"><i><tt>string</tt></i>:</span></td><td>the input string in UTF8 or ISO-Latin (zero terminated)</td></tr><tr><td><span class="term"><i><tt>lst</tt></i>:</span></td><td>the return value for the set of parsed nodes</td></tr><tr><td><span class="term"><i><tt>recover</tt></i>:</span></td><td>return nodes even if the data is broken (use 0)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the chunk is well balanced, -1 in case of args problem and the parser error code otherwise In case recover is set to 1, the nodelist will not be empty even if the parsed chunk is not well balanced, assuming the parsing succeeded to some extent.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseChunk"/>xmlParseChunk ()</h3><pre class="programlisting">int      xmlParseChunk                   (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * chunk, <br/>                                       int size, <br/>                                         int terminate)<br/>
-</pre><p>Parse a Chunk of memory</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>chunk</tt></i>:</span></td><td>an char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size in byte of the chunk</td></tr><tr><td><span class="term"><i><tt>terminate</tt></i>:</span></td><td>last chunk indicator</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>zero if no error, the <a href="libxml2-xmlerror.html#xmlParserErrors">xmlParserErrors</a> otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseCtxtExternalEntity"/>xmlParseCtxtExternalEntity ()</h3><pre class="programlisting">int    xmlParseCtxtExternalEntity      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctx, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst)<br/>
-</pre><p>Parse an external general entity within an existing parsing context An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the existing parsing context</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the URL for the entity to load</td></tr><tr><td><span class="term"><i><tt>ID</tt></i>:</span></td><td>the System ID for the entity to load</td></tr><tr><td><span class="term"><i><tt>lst</tt></i>:</span></td><td>the return value for the set of parsed nodes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the entity is well formed, -1 in case of args problem and the parser error code otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseDTD"/>xmlParseDTD ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>  xmlParseDTD             (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>Load and parse an external subset.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>a NAME* containing the External ID of the DTD</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>a NAME* containing the URL to the DTD</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseDoc"/>xmlParseDoc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>  xmlParseDoc             (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur)<br/>
-</pre><p>parse an XML in-memory document and build a tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseDocument"/>xmlParseDocument ()</h3><pre class="programlisting">int        xmlParseDocument                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an XML document (and build a tree if using the standard SAX interface). [1] document ::= prolog element Misc* [22] prolog ::= XMLDecl? Misc* (doctypedecl Misc*)?</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0, -1 in case of error. the parser context is augmented as a result of the parsing.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseEntity"/>xmlParseEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    xmlParseEntity          (const char * filename)<br/>
-</pre><p>parse an XML external entity out of context and build a tree. [78] extParsedEnt ::= TextDecl? content This correspond to a "Well Balanced" chunk</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseExtParsedEnt"/>xmlParseExtParsedEnt ()</h3><pre class="programlisting">int        xmlParseExtParsedEnt            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse a general parsed entity An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0, -1 in case of error. the parser context is augmented as a result of the parsing.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseExternalEntity"/>xmlParseExternalEntity ()</h3><pre class="programlisting">int    xmlParseExternalEntity          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    void * user_data, <br/>                                         int depth, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst)<br/>
-</pre><p>Parse an external general entity An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document the chunk pertains to</td></tr><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block (possibly NULL)</td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>The user data returned on SAX callbacks (possibly NULL)</td></tr><tr><td><span class="term"><i><tt>depth</tt></i>:</span></td><td>Used for loop detection, use 0</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the URL for the entity to load</td></tr><tr><td><span class="term"><i><tt>ID</tt></i>:</span></td><td>the System ID for the entity to load</td></tr><tr><td><span class="term"><i><tt>lst</tt></i>:</span></td><td>the return value for the set of parsed nodes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the entity is well formed, -1 in case of args problem and the parser error code otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseFile"/>xmlParseFile ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlParseFile            (const char * filename)<br/>
-</pre><p>parse an XML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree if the file was wellformed, NULL otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseInNodeContext"/>xmlParseInNodeContext ()</h3><pre class="programlisting"><a href="libxml2-xmlerror.html#xmlParserErrors">xmlParserErrors</a>      xmlParseInNodeContext   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const char * data, <br/>                                        int datalen, <br/>                                      int options, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst)<br/>
-</pre><p>Parse a well-balanced chunk of an XML document within the context (DTD, namespaces, etc ...) of the given node. The allowed sequence for the data is a Well Balanced Chunk defined by the content production in the XML grammar: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the context node</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the input string</td></tr><tr><td><span class="term"><i><tt>datalen</tt></i>:</span></td><td>the input string length in bytes</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>lst</tt></i>:</span></td><td>the return value for the set of parsed nodes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td><a href="libxml2-xmlerror.html#XML_ERR_OK">XML_ERR_OK</a> if the chunk is well balanced, and the parser error code otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseMemory"/>xmlParseMemory ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    xmlParseMemory          (const char * buffer, <br/>                                      int size)<br/>
-</pre><p>parse an XML in-memory block and build a tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>an pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserAddNodeInfo"/>xmlParserAddNodeInfo ()</h3><pre class="programlisting">void       xmlParserAddNodeInfo            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-parser.html#xmlParserNodeInfoPtr">xmlParserNodeInfoPtr</a> info)<br/>
-</pre><p>Insert node info record into the sorted sequence</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>info</tt></i>:</span></td><td>a node info sequence pointer</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserFindNodeInfo"/>xmlParserFindNodeInfo ()</h3><pre class="programlisting">const <a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> *    xmlParserFindNodeInfo   (const <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctx, <br/>                                                      const <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Find the parser node info struct for a given node</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>an XML node within the tree</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an <a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> block pointer or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserFindNodeInfoIndex"/>xmlParserFindNodeInfoIndex ()</h3><pre class="programlisting">unsigned long  xmlParserFindNodeInfoIndex      (const <a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq, <br/>                                              const <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p><a href="libxml2-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a> : Find the index that the info record for the given node is or should be at in a sorted sequence</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>seq</tt></i>:</span></td><td>a node info sequence pointer</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>an XML node pointer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a long indicating the position of the record</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputGrow"/>xmlParserInputGrow ()</h3><pre class="programlisting">int    xmlParserInputGrow              (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in, <br/>                                   int len)<br/>
-</pre><p>This function increase the input for the parser. It tries to preserve pointers to the input buffer, and keep already read data</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>an XML parser input</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>an indicative size for the lookahead</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the amount of char read, or -1 in case of error, 0 indicate the end of this entity</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputRead"/>xmlParserInputRead ()</h3><pre class="programlisting">int    xmlParserInputRead              (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in, <br/>                                   int len)<br/>
-</pre><p>This function was internal and is deprecated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>an XML parser input</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>an indicative size for the lookahead</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 as this is an error to use it.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPedanticParserDefault"/>xmlPedanticParserDefault ()</h3><pre class="programlisting">int        xmlPedanticParserDefault        (int val)<br/>
-</pre><p>Set and return the previous value for enabling pedantic warnings.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>int 0 or 1</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the last value for 0 for no substitution, 1 for substitution.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReadDoc"/>xmlReadDoc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    xmlReadDoc              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML in-memory document and build a tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to a zero terminated string</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReadFd"/>xmlReadFd ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>      xmlReadFd               (int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML from a file descriptor and build a tree. NOTE that the file descriptor will not be closed when the reader is closed or reset.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>fd</tt></i>:</span></td><td>an open file descriptor</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReadFile"/>xmlReadFile ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>  xmlReadFile             (const char * filename, <br/>                                    const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML file from the filesystem or the network.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file or URL</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReadIO"/>xmlReadIO ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>      xmlReadIO               (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML document from I/O functions and source and build a tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ioread</tt></i>:</span></td><td>an I/O read function</td></tr><tr><td><span class="term"><i><tt>ioclose</tt></i>:</span></td><td>an I/O close function</td></tr><tr><td><span class="term"><i><tt>ioctx</tt></i>:</span></td><td>an I/O handler</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReadMemory"/>xmlReadMemory ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>      xmlReadMemory           (const char * buffer, <br/>                                      int size, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML in-memory document and build a tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRecoverDoc"/>xmlRecoverDoc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>      xmlRecoverDoc           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur)<br/>
-</pre><p>parse an XML in-memory document and build a tree. In the case the document is not Well Formed, a attempt to build a tree is tried anyway</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree or NULL in case of failure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRecoverFile"/>xmlRecoverFile ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    xmlRecoverFile          (const char * filename)<br/>
-</pre><p>parse an XML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. In the case the document is not Well Formed, it attempts to build a tree anyway</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree or NULL in case of failure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRecoverMemory"/>xmlRecoverMemory ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlRecoverMemory        (const char * buffer, <br/>                                      int size)<br/>
-</pre><p>parse an XML in-memory block and build a tree. In the case the document is not Well Formed, an attempt to build a tree is tried anyway</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>an pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXParseDTD"/>xmlSAXParseDTD ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    xmlSAXParseDTD          (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>Load and parse an external subset.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>a NAME* containing the External ID of the DTD</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>a NAME* containing the URL to the DTD</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXParseDoc"/>xmlSAXParseDoc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    xmlSAXParseDoc          (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         int recovery)<br/>
-</pre><p>parse an XML in-memory document and build a tree. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr><tr><td><span class="term"><i><tt>recovery</tt></i>:</span></td><td>work in recovery mode, i.e. tries to read no Well Formed documents</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXParseEntity"/>xmlSAXParseEntity ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>      xmlSAXParseEntity       (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const char * filename)<br/>
-</pre><p>parse an XML external entity out of context and build a tree. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines. [78] extParsedEnt ::= TextDecl? content This correspond to a "Well Balanced" chunk</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXParseFile"/>xmlSAXParseFile ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>  xmlSAXParseFile         (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const char * filename, <br/>                                    int recovery)<br/>
-</pre><p>parse an XML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>recovery</tt></i>:</span></td><td>work in recovery mode, i.e. tries to read no Well Formed documents</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXParseFileWithData"/>xmlSAXParseFileWithData ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>  xmlSAXParseFileWithData (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const char * filename, <br/>                                    int recovery, <br/>                                     void * data)<br/>
-</pre><p>parse an XML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines. User data (void *) is stored within the parser context in the context's _private member, so it is available nearly everywhere in libxml</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>recovery</tt></i>:</span></td><td>work in recovery mode, i.e. tries to read no Well Formed documents</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the userdata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXParseMemory"/>xmlSAXParseMemory ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>      xmlSAXParseMemory       (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    const char * buffer, <br/>                                      int size, <br/>                                         int recovery)<br/>
-</pre><p>parse an XML in-memory block and use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>an pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>recovery</tt></i>:</span></td><td>work in recovery mode, i.e. tries to read not Well Formed documents</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXParseMemoryWithData"/>xmlSAXParseMemoryWithData ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>      xmlSAXParseMemoryWithData       (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                            const char * buffer, <br/>                                              int size, <br/>                                                 int recovery, <br/>                                             void * data)<br/>
-</pre><p>parse an XML in-memory block and use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines. User data (void *) is stored within the parser context in the context's _private member, so it is available nearly everywhere in libxml</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>the SAX handler block</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>an pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>recovery</tt></i>:</span></td><td>work in recovery mode, i.e. tries to read no Well Formed documents</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the userdata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting document tree</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXUserParseFile"/>xmlSAXUserParseFile ()</h3><pre class="programlisting">int  xmlSAXUserParseFile             (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    void * user_data, <br/>                                         const char * filename)<br/>
-</pre><p>parse an XML file and call the given SAX handler routines. Automatic support for ZLIB/Compress compressed document is provided</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>a SAX handler</td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>The user data returned on SAX callbacks</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success or a error number otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXUserParseMemory"/>xmlSAXUserParseMemory ()</h3><pre class="programlisting">int      xmlSAXUserParseMemory           (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    void * user_data, <br/>                                         const char * buffer, <br/>                                      int size)<br/>
-</pre><p>A better SAX parsing routine. parse an XML in-memory buffer and call the given SAX handler routines.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>a SAX handler</td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>The user data returned on SAX callbacks</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>an in-memory XML document input</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the length of the XML document in bytes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success or a error number otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetExternalEntityLoader"/>xmlSetExternalEntityLoader ()</h3><pre class="programlisting">void   xmlSetExternalEntityLoader      (<a href="libxml2-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a> f)<br/>
-</pre><p>Changes the defaultexternal entity resolver function for the application</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the new entity resolver function</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetFeature"/>xmlSetFeature ()</h3><pre class="programlisting">int      xmlSetFeature                   (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * name, <br/>                                        void * value)<br/>
-</pre><p>Change the current value of one feature of this parser instance</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML/HTML parser context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the feature name</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>pointer to the location of the new value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case or error, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetupParserForBuffer"/>xmlSetupParserForBuffer ()</h3><pre class="programlisting">void xmlSetupParserForBuffer         (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buffer, <br/>                                      const char * filename)<br/>
-</pre><p>Setup the parser context to parse a new buffer; Clears any prior contents from the parser context. The buffer parameter must not be NULL, but the filename parameter can be</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buffer</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStopParser"/>xmlStopParser ()</h3><pre class="programlisting">void     xmlStopParser                   (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Blocks further parser processing</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSubstituteEntitiesDefault"/>xmlSubstituteEntitiesDefault ()</h3><pre class="programlisting">int        xmlSubstituteEntitiesDefault    (int val)<br/>
-</pre><p>Set and return the previous value for default entity support. Initially the parser always keep entity references instead of substituting entity values in the output. This function has to be used to change the default parser behavior SAX::substituteEntities() has to be used for changing that on a file by file basis.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>int 0 or 1</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the last value for 0 for no substitution, 1 for substitution.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="attributeDeclSAXFunc"></a>Function type attributeDeclSAXFunc</h3>
+<pre class="programlisting">void       attributeDeclSAXFunc            (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * fullname, <br>                                     int type, <br>                                  int def, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br>                                         <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree)<br>
+</pre>
+<p>An <a href="libxml2-SAX.html#attribute">attribute</a> definition has been parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the name of the element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>fullname</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>def</tt></i>:</span></td>
+<td>the type of default value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>defaultValue</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> default value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>the tree of enumerated value set</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="attributeSAXFunc"></a>Function type attributeSAXFunc</h3>
+<pre class="programlisting">void       attributeSAXFunc                (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Handle an <a href="libxml2-SAX.html#attribute">attribute</a> that has been read by the parser. The default handling is to convert the <a href="libxml2-SAX.html#attribute">attribute</a> into an DOM subtree and past it in a new <a href="libxml2-tree.html#xmlAttr">xmlAttr</a> element added to the element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The <a href="libxml2-SAX.html#attribute">attribute</a> name, including namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>The <a href="libxml2-SAX.html#attribute">attribute</a> value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="cdataBlockSAXFunc"></a>Function type cdataBlockSAXFunc</h3>
+<pre class="programlisting">void       cdataBlockSAXFunc               (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int len)<br>
+</pre>
+<p>Called when a pcdata block has been parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>The pcdata content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the block length</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="charactersSAXFunc"></a>Function type charactersSAXFunc</h3>
+<pre class="programlisting">void       charactersSAXFunc               (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len)<br>
+</pre>
+<p>Receiving some chars from the parser.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="commentSAXFunc"></a>Function type commentSAXFunc</h3>
+<pre class="programlisting">void       commentSAXFunc                  (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>A <a href="libxml2-SAX.html#comment">comment</a> has been parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#comment">comment</a> content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="elementDeclSAXFunc"></a>Function type elementDeclSAXFunc</h3>
+<pre class="programlisting">void       elementDeclSAXFunc              (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content)<br>
+</pre>
+<p>An element definition has been parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the element type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the element value tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="endDocumentSAXFunc"></a>Function type endDocumentSAXFunc</h3>
+<pre class="programlisting">void       endDocumentSAXFunc              (void * ctx)<br>
+</pre>
+<p>Called when the document end has been detected.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="endElementNsSAX2Func"></a>Function type endElementNsSAX2Func</h3>
+<pre class="programlisting">void       endElementNsSAX2Func            (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI)<br>
+</pre>
+<p>SAX2 callback when an element end has been detected by the parser. It provides the namespace information for the element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>localname</tt></i>:</span></td>
+<td>the local name of the element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the element namespace prefix if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the element namespace name if available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="endElementSAXFunc"></a>Function type endElementSAXFunc</h3>
+<pre class="programlisting">void       endElementSAXFunc               (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Called when the end of an element has been detected.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The element name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="entityDeclSAXFunc"></a>Function type entityDeclSAXFunc</h3>
+<pre class="programlisting">void       entityDeclSAXFunc               (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int type, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>An entity definition has been parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the entity type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the entity value (without processing).</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="errorSAXFunc"></a>Function type errorSAXFunc</h3>
+<pre class="programlisting">void       errorSAXFunc                    (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Display and format an error messages, callback.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message to display/transmit</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the message display</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="externalSubsetSAXFunc"></a>Function type externalSubsetSAXFunc</h3>
+<pre class="programlisting">void       externalSubsetSAXFunc           (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>Callback on external subset declaration.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the root element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the external ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the SYSTEM ID (e.g. filename or URL)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="fatalErrorSAXFunc"></a>Function type fatalErrorSAXFunc</h3>
+<pre class="programlisting">void       fatalErrorSAXFunc               (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Display and format fatal error messages, callback. Note: so far fatalError() SAX callbacks are not used, error() get all the callbacks for errors.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message to display/transmit</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the message display</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="getEntitySAXFunc"></a>Function type getEntitySAXFunc</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  getEntitySAXFunc        (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Get an entity by name.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="getParameterEntitySAXFunc"></a>Function type getParameterEntitySAXFunc</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  getParameterEntitySAXFunc       (void * ctx, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Get a parameter entity by name.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="hasExternalSubsetSAXFunc"></a>Function type hasExternalSubsetSAXFunc</h3>
+<pre class="programlisting">int        hasExternalSubsetSAXFunc        (void * ctx)<br>
+</pre>
+<p>Does this document has an external subset?</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="hasInternalSubsetSAXFunc"></a>Function type hasInternalSubsetSAXFunc</h3>
+<pre class="programlisting">int        hasInternalSubsetSAXFunc        (void * ctx)<br>
+</pre>
+<p>Does this document has an internal subset.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="ignorableWhitespaceSAXFunc"></a>Function type ignorableWhitespaceSAXFunc</h3>
+<pre class="programlisting">void       ignorableWhitespaceSAXFunc      (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ch, <br>                                   int len)<br>
+</pre>
+<p>Receiving some ignorable whitespaces from the parser. UNUSED: by default the DOM building will use characters.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ch</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="internalSubsetSAXFunc"></a>Function type internalSubsetSAXFunc</h3>
+<pre class="programlisting">void       internalSubsetSAXFunc           (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>Callback on internal subset declaration.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the root element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the external ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the SYSTEM ID (e.g. filename or URL)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="isStandaloneSAXFunc"></a>Function type isStandaloneSAXFunc</h3>
+<pre class="programlisting">int        isStandaloneSAXFunc             (void * ctx)<br>
+</pre>
+<p>Is this document tagged standalone?</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="notationDeclSAXFunc"></a>Function type notationDeclSAXFunc</h3>
+<pre class="programlisting">void       notationDeclSAXFunc             (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br>
+</pre>
+<p>What to do when a notation declaration has been parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The name of the notation</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="processingInstructionSAXFunc"></a>Function type processingInstructionSAXFunc</h3>
+<pre class="programlisting">void       processingInstructionSAXFunc    (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data)<br>
+</pre>
+<p>A processing instruction has been parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>target</tt></i>:</span></td>
+<td>the target name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the PI data's</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="referenceSAXFunc"></a>Function type referenceSAXFunc</h3>
+<pre class="programlisting">void       referenceSAXFunc                (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Called when an entity <a href="libxml2-SAX.html#reference">reference</a> is detected.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The entity name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="resolveEntitySAXFunc"></a>Function type resolveEntitySAXFunc</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        resolveEntitySAXFunc    (void * ctx, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId)<br>
+</pre>
+<p>Callback: The entity loader, to control the loading of external entities, the application can either: - override this resolveEntity() callback in the SAX block - or better use the xmlSetExternalEntityLoader() function to set up it's own entity resolution routine</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> if inlined or NULL for DOM behaviour.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="setDocumentLocatorSAXFunc"></a>Function type setDocumentLocatorSAXFunc</h3>
+<pre class="programlisting">void       setDocumentLocatorSAXFunc       (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a> loc)<br>
+</pre>
+<p>Receive the document locator at startup, actually xmlDefaultSAXLocator. Everything is available on the context, so this is useless in our case.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>loc</tt></i>:</span></td>
+<td>A SAX Locator</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="startDocumentSAXFunc"></a>Function type startDocumentSAXFunc</h3>
+<pre class="programlisting">void       startDocumentSAXFunc            (void * ctx)<br>
+</pre>
+<p>Called when the document start being processed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="startElementNsSAX2Func"></a>Function type startElementNsSAX2Func</h3>
+<pre class="programlisting">void       startElementNsSAX2Func          (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localname, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  int nb_namespaces, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces, <br>                                  int nb_attributes, <br>                                         int nb_defaulted, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** attributes)<br>
+</pre>
+<p>SAX2 callback when an element start has been detected by the parser. It provides the namespace information for the element, as well as the new namespace declarations on the element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>localname</tt></i>:</span></td>
+<td>the local name of the element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the element namespace prefix if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the element namespace name if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nb_namespaces</tt></i>:</span></td>
+<td>number of namespace definitions on that node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaces</tt></i>:</span></td>
+<td>pointer to the array of prefix/URI pairs namespace definitions</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nb_attributes</tt></i>:</span></td>
+<td>the number of attributes on that node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nb_defaulted</tt></i>:</span></td>
+<td>the number of defaulted attributes. The defaulted ones are at the end of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attributes</tt></i>:</span></td>
+<td>pointer to the array of (localname/prefix/URI/value/end) <a href="libxml2-SAX.html#attribute">attribute</a> values.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="startElementSAXFunc"></a>Function type startElementSAXFunc</h3>
+<pre class="programlisting">void       startElementSAXFunc             (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** atts)<br>
+</pre>
+<p>Called when an opening tag has been processed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The element name, including namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>atts</tt></i>:</span></td>
+<td>An array of name/value attributes pairs, NULL terminated</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="unparsedEntityDeclSAXFunc"></a>Function type unparsedEntityDeclSAXFunc</h3>
+<pre class="programlisting">void       unparsedEntityDeclSAXFunc       (void * ctx, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemId, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName)<br>
+</pre>
+<p>What to do when an unparsed entity declaration is parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the user data (XML parser context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>The name of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicId</tt></i>:</span></td>
+<td>The public ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>systemId</tt></i>:</span></td>
+<td>The system ID of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>notationName</tt></i>:</span></td>
+<td>the name of the notation</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="warningSAXFunc"></a>Function type warningSAXFunc</h3>
+<pre class="programlisting">void       warningSAXFunc                  (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Display and format a warning messages, callback.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message to display/transmit</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the message display</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExternalEntityLoader"></a>Function type xmlExternalEntityLoader</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlExternalEntityLoader (const char * URL, <br>                                          const char * ID, <br>                                           <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> context)<br>
+</pre>
+<p>External entity loaders types.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>The System ID of the resource requested</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ID</tt></i>:</span></td>
+<td>The Public ID of the resource requested</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>context</tt></i>:</span></td>
+<td>the XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the entity input parser.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputDeallocate"></a>Function type xmlParserInputDeallocate</h3>
+<pre class="programlisting">void       xmlParserInputDeallocate        (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>Callback for freeing some parser input allocations.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the string to deallocate</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlByteConsumed"></a>xmlByteConsumed ()</h3>
+<pre class="programlisting">long       xmlByteConsumed                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>This function provides the current index of the parser relative to the start of the current entity. This function is computed in bytes from the beginning starting at zero and finishing at the size in byte of the file if parsing a file. The function is of constant cost if the input is UTF-8 but can be costly if run on non-UTF-8 input.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the index in bytes from the beginning of the entity or -1 in case the index could not be computed.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCleanupParser"></a>xmlCleanupParser ()</h3>
+<pre class="programlisting">void       xmlCleanupParser                (void)<br>
+</pre>
+<p>This function name is somewhat misleading. It does not clean up parser state, it cleans up memory allocated by the library itself. It is a cleanup function for the XML library. It tries to reclaim all related global memory allocated for the library processing. It doesn't deallocate any document related memory. One should call xmlCleanupParser() only when the process has finished using the library and all XML/HTML documents built with it. See also xmlInitParser() which has the opposite function of preparing the library for operations. WARNING: if your application is multithreaded or has plugin support calling this may crash the application if another thread or a plugin is still using libxml2. It's sometimes very hard to guess if libxml2 is in use in the application, some libraries or plugins may use it without notice. In case of doubt abstain from calling this function or do it just before calling exit() to avoid leak reports from valgrind !</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlClearNodeInfoSeq"></a>xmlClearNodeInfoSeq ()</h3>
+<pre class="programlisting">void       xmlClearNodeInfoSeq             (<a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq)<br>
+</pre>
+<p>-- Clear (release memory and reinitialize) node info sequence</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>seq</tt></i>:</span></td>
+<td>a node info sequence pointer</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlClearParserCtxt"></a>xmlClearParserCtxt ()</h3>
+<pre class="programlisting">void       xmlClearParserCtxt              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Clear (release owned resources) and reinitialize a parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCreateDocParserCtxt"></a>xmlCreateDocParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>  xmlCreateDocParserCtxt  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur)<br>
+</pre>
+<p>Creates a parser context for an XML in-memory document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser context or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCreateIOParserCtxt"></a>xmlCreateIOParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>  xmlCreateIOParserCtxt   (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                             void * user_data, <br>                                          <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                                 <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                              void * ioctx, <br>                                              <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Create a parser context for using the XML parser with an existing I/O stream</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>a SAX handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>The user data returned on SAX callbacks</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioread</tt></i>:</span></td>
+<td>an I/O read function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioclose</tt></i>:</span></td>
+<td>an I/O close function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioctx</tt></i>:</span></td>
+<td>an I/O handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the charset encoding if known</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser context or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCreatePushParserCtxt"></a>xmlCreatePushParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>  xmlCreatePushParserCtxt (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                             void * user_data, <br>                                          const char * chunk, <br>                                                int size, <br>                                          const char * filename)<br>
+</pre>
+<p>Create a parser context for using the XML parser in push mode. If @buffer and @size are non-NULL, the data is used to detect the encoding. The remaining <a href="libxml2-SAX.html#characters">characters</a> will be parsed so they don't need to be fed in again through xmlParseChunk. To allow content encoding detection, @size should be &gt;= 4 The value of @filename is used for fetching external entities and error/warning reports.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>a SAX handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>The user data returned on SAX callbacks</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>chunk</tt></i>:</span></td>
+<td>a pointer to an array of chars</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>number of chars in the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>an optional file name or URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser context or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCtxtReadDoc"></a>xmlCtxtReadDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlCtxtReadDoc          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to a zero terminated string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCtxtReadFd"></a>xmlCtxtReadFd ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlCtxtReadFd           (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML from a file descriptor and build a tree. This reuses the existing @ctxt parser context NOTE that the file descriptor will not be closed when the reader is closed or reset.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>fd</tt></i>:</span></td>
+<td>an open file descriptor</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCtxtReadFile"></a>xmlCtxtReadFile ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlCtxtReadFile         (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * filename, <br>                                     const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML file from the filesystem or the network. This reuses the existing @ctxt parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file or URL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCtxtReadIO"></a>xmlCtxtReadIO ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlCtxtReadIO           (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioread</tt></i>:</span></td>
+<td>an I/O read function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioclose</tt></i>:</span></td>
+<td>an I/O close function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioctx</tt></i>:</span></td>
+<td>an I/O handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCtxtReadMemory"></a>xmlCtxtReadMemory ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlCtxtReadMemory       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * buffer, <br>                                       int size, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCtxtReset"></a>xmlCtxtReset ()</h3>
+<pre class="programlisting">void       xmlCtxtReset                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Reset a parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCtxtResetPush"></a>xmlCtxtResetPush ()</h3>
+<pre class="programlisting">int        xmlCtxtResetPush                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * chunk, <br>                                        int size, <br>                                  const char * filename, <br>                                     const char * encoding)<br>
+</pre>
+<p>Reset a push parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>chunk</tt></i>:</span></td>
+<td>a pointer to an array of chars</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>number of chars in the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>an optional file name or URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and 1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCtxtUseOptions"></a>xmlCtxtUseOptions ()</h3>
+<pre class="programlisting">int        xmlCtxtUseOptions               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    int options)<br>
+</pre>
+<p>Applies the options to the parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, the set of unknown or unimplemented options in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeParserCtxt"></a>xmlFreeParserCtxt ()</h3>
+<pre class="programlisting">void       xmlFreeParserCtxt               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Free all the memory used by a parser context. However the parsed document in ctxt-&gt;myDoc is not freed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetExternalEntityLoader"></a>xmlGetExternalEntityLoader ()</h3>
+<pre class="programlisting"><a href="libxml2-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a>  xmlGetExternalEntityLoader      (void)<br>
+</pre>
+<p>Get the default external entity resolver function for the application</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a> function pointer</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetFeature"></a>xmlGetFeature ()</h3>
+<pre class="programlisting">int        xmlGetFeature                   (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * name, <br>                                         void * result)<br>
+</pre>
+<p>Read the current value of one feature of this parser instance</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML/HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the feature name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>result</tt></i>:</span></td>
+<td>location to store the result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case or error, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetFeaturesList"></a>xmlGetFeaturesList ()</h3>
+<pre class="programlisting">int        xmlGetFeaturesList              (int * len, <br>                                         const char ** result)<br>
+</pre>
+<p>Copy at most *@len feature names into the @result array</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length of the features name array (input/output)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>result</tt></i>:</span></td>
+<td>an array of string to be filled with the features name.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case or error, or the total number of features, len is updated with the number of strings copied, strings must not be deallocated</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHasFeature"></a>xmlHasFeature ()</h3>
+<pre class="programlisting">int        xmlHasFeature                   (<a href="libxml2-parser.html#xmlFeature">xmlFeature</a> feature)<br>
+</pre>
+<p>Examines if the library has been compiled with a given feature.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>feature</tt></i>:</span></td>
+<td>the feature to be examined</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a non-zero value if the feature exist, otherwise zero. Returns zero (0) if the feature does not exist or an unknown unknown feature is requested, non-zero otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIOParseDTD"></a>xmlIOParseDTD ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>        xmlIOParseDTD           (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br>                                     <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Load and parse a DTD</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>an Input Buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the charset encoding if known</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> or NULL in case of error. @input will be freed by the function in any case.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInitNodeInfoSeq"></a>xmlInitNodeInfoSeq ()</h3>
+<pre class="programlisting">void       xmlInitNodeInfoSeq              (<a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq)<br>
+</pre>
+<p>-- Initialize (set to initial state) node info sequence</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>seq</tt></i>:</span></td>
+<td>a node info sequence pointer</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInitParser"></a>xmlInitParser ()</h3>
+<pre class="programlisting">void       xmlInitParser                   (void)<br>
+</pre>
+<p>Initialization function for the XML parser. This is not reentrant. Call once before processing in case of use in multithreaded programs.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInitParserCtxt"></a>xmlInitParserCtxt ()</h3>
+<pre class="programlisting">int        xmlInitParserCtxt               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Initialize a parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlKeepBlanksDefault"></a>xmlKeepBlanksDefault ()</h3>
+<pre class="programlisting">int        xmlKeepBlanksDefault            (int val)<br>
+</pre>
+<p>Set and return the previous value for default blanks text nodes support. The 1.x version of the parser used an heuristic to try to detect ignorable white spaces. As a result the SAX callback was generating xmlSAX2IgnorableWhitespace() callbacks instead of characters() one, and when using the DOM output text nodes containing those blanks were not generated. The 2.x and later version will switch to the XML standard way and ignorableWhitespace() are only generated when running the parser in validating mode and when the current element doesn't allow CDATA or mixed content. This function is provided as a way to force the standard behavior on 1.X libs and to switch back to the old mode for compatibility when running 1.X client code on 2.X . Upgrade of 1.X code should be done by using xmlIsBlankNode() commodity function to detect the "empty" nodes generated. This value also affect autogeneration of indentation when saving code if blanks sections are kept, indentation is not generated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>int 0 or 1</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the last value for 0 for no substitution, 1 for substitution.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLineNumbersDefault"></a>xmlLineNumbersDefault ()</h3>
+<pre class="programlisting">int        xmlLineNumbersDefault           (int val)<br>
+</pre>
+<p>Set and return the previous value for enabling line numbers in elements contents. This may break on old application and is turned off by default.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>int 0 or 1</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the last value for 0 for no substitution, 1 for substitution.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLoadExternalEntity"></a>xmlLoadExternalEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlLoadExternalEntity   (const char * URL, <br>                                          const char * ID, <br>                                           <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Load an external entity, note that the use of this function for unparsed entities may generate problems</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the URL for the entity to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ID</tt></i>:</span></td>
+<td>the Public ID for the entity to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the context in which the entity is called or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewIOInputStream"></a>xmlNewIOInputStream ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlNewIOInputStream     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br>                                             <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Create a new input stream structure encapsulating the @input into a stream suitable for the parser.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>an I/O Input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the charset encoding if known</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new input stream or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewParserCtxt"></a>xmlNewParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>  xmlNewParserCtxt        (void)<br>
+</pre>
+<p>Allocate and initialize a new parser context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> or NULL</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseBalancedChunkMemory"></a>xmlParseBalancedChunkMemory ()</h3>
+<pre class="programlisting">int        xmlParseBalancedChunkMemory     (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     void * user_data, <br>                                  int depth, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst)<br>
+</pre>
+<p>Parse a well-balanced chunk of an XML document called by the parser The allowed sequence for the Well Balanced Chunk is the one defined by the content production in the XML grammar: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document the chunk pertains to (must not be NULL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block (possibly NULL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>The user data returned on SAX callbacks (possibly NULL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>depth</tt></i>:</span></td>
+<td>Used for loop detection, use 0</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>string</tt></i>:</span></td>
+<td>the input string in UTF8 or ISO-Latin (zero terminated)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>lst</tt></i>:</span></td>
+<td>the return value for the set of parsed nodes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the chunk is well balanced, -1 in case of args problem and the parser error code otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseBalancedChunkMemoryRecover"></a>xmlParseBalancedChunkMemoryRecover ()</h3>
+<pre class="programlisting">int        xmlParseBalancedChunkMemoryRecover      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                             void * user_data, <br>                                          int depth, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string, <br>                                               <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst, <br>                                               int recover)<br>
+</pre>
+<p>Parse a well-balanced chunk of an XML document called by the parser The allowed sequence for the Well Balanced Chunk is the one defined by the content production in the XML grammar: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document the chunk pertains to (must not be NULL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block (possibly NULL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>The user data returned on SAX callbacks (possibly NULL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>depth</tt></i>:</span></td>
+<td>Used for loop detection, use 0</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>string</tt></i>:</span></td>
+<td>the input string in UTF8 or ISO-Latin (zero terminated)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>lst</tt></i>:</span></td>
+<td>the return value for the set of parsed nodes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>recover</tt></i>:</span></td>
+<td>return nodes even if the data is broken (use 0)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the chunk is well balanced, -1 in case of args problem and the parser error code otherwise In case recover is set to 1, the nodelist will not be empty even if the parsed chunk is not well balanced, assuming the parsing succeeded to some extent.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseChunk"></a>xmlParseChunk ()</h3>
+<pre class="programlisting">int        xmlParseChunk                   (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * chunk, <br>                                        int size, <br>                                  int terminate)<br>
+</pre>
+<p>Parse a Chunk of memory</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>chunk</tt></i>:</span></td>
+<td>an char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size in byte of the chunk</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>terminate</tt></i>:</span></td>
+<td>last chunk indicator</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>zero if no error, the <a href="libxml2-xmlerror.html#xmlParserErrors">xmlParserErrors</a> otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseCtxtExternalEntity"></a>xmlParseCtxtExternalEntity ()</h3>
+<pre class="programlisting">int        xmlParseCtxtExternalEntity      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctx, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst)<br>
+</pre>
+<p>Parse an external general entity within an existing parsing context An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the existing parsing context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the URL for the entity to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ID</tt></i>:</span></td>
+<td>the System ID for the entity to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>lst</tt></i>:</span></td>
+<td>the return value for the set of parsed nodes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the entity is well formed, -1 in case of args problem and the parser error code otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseDTD"></a>xmlParseDTD ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>        xmlParseDTD             (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>Load and parse an external subset.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>a NAME* containing the External ID of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>a NAME* containing the URL to the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseDoc"></a>xmlParseDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlParseDoc             (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur)<br>
+</pre>
+<p>parse an XML in-memory document and build a tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseDocument"></a>xmlParseDocument ()</h3>
+<pre class="programlisting">int        xmlParseDocument                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML document (and build a tree if using the standard SAX interface). [1] document ::= prolog element Misc* [22] prolog ::= XMLDecl? Misc* (doctypedecl Misc*)?</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0, -1 in case of error. the parser context is augmented as a result of the parsing.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseEntity"></a>xmlParseEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlParseEntity          (const char * filename)<br>
+</pre>
+<p>parse an XML external entity out of context and build a tree. [78] extParsedEnt ::= TextDecl? content This correspond to a "Well Balanced" chunk</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseExtParsedEnt"></a>xmlParseExtParsedEnt ()</h3>
+<pre class="programlisting">int        xmlParseExtParsedEnt            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse a general parsed entity An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0, -1 in case of error. the parser context is augmented as a result of the parsing.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseExternalEntity"></a>xmlParseExternalEntity ()</h3>
+<pre class="programlisting">int        xmlParseExternalEntity          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     void * user_data, <br>                                  int depth, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst)<br>
+</pre>
+<p>Parse an external general entity An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document the chunk pertains to</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block (possibly NULL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>The user data returned on SAX callbacks (possibly NULL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>depth</tt></i>:</span></td>
+<td>Used for loop detection, use 0</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the URL for the entity to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ID</tt></i>:</span></td>
+<td>the System ID for the entity to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>lst</tt></i>:</span></td>
+<td>the return value for the set of parsed nodes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the entity is well formed, -1 in case of args problem and the parser error code otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseFile"></a>xmlParseFile ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlParseFile            (const char * filename)<br>
+</pre>
+<p>parse an XML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree if the file was wellformed, NULL otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseInNodeContext"></a>xmlParseInNodeContext ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlerror.html#xmlParserErrors">xmlParserErrors</a>        xmlParseInNodeContext   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const char * data, <br>                                         int datalen, <br>                                       int options, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * lst)<br>
+</pre>
+<p>Parse a well-balanced chunk of an XML document within the context (DTD, namespaces, etc ...) of the given node. The allowed sequence for the data is a Well Balanced Chunk defined by the content production in the XML grammar: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the context node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the input string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>datalen</tt></i>:</span></td>
+<td>the input string length in bytes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>lst</tt></i>:</span></td>
+<td>the return value for the set of parsed nodes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>
+<a href="libxml2-xmlerror.html#XML_ERR_OK">XML_ERR_OK</a> if the chunk is well balanced, and the parser error code otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseMemory"></a>xmlParseMemory ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlParseMemory          (const char * buffer, <br>                                       int size)<br>
+</pre>
+<p>parse an XML in-memory block and build a tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>an pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserAddNodeInfo"></a>xmlParserAddNodeInfo ()</h3>
+<pre class="programlisting">void       xmlParserAddNodeInfo            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-parser.html#xmlParserNodeInfoPtr">xmlParserNodeInfoPtr</a> info)<br>
+</pre>
+<p>Insert node info record into the sorted sequence</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>info</tt></i>:</span></td>
+<td>a node info sequence pointer</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserFindNodeInfo"></a>xmlParserFindNodeInfo ()</h3>
+<pre class="programlisting">const <a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> *      xmlParserFindNodeInfo   (const <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctx, <br>                                                       const <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Find the parser node info struct for a given node</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>an XML node within the tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an <a href="libxml2-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a> block pointer or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserFindNodeInfoIndex"></a>xmlParserFindNodeInfoIndex ()</h3>
+<pre class="programlisting">unsigned long      xmlParserFindNodeInfoIndex      (const <a href="libxml2-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a> seq, <br>                                               const <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p><a href="libxml2-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a> : Find the index that the info record for the given node is or should be at in a sorted sequence</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>seq</tt></i>:</span></td>
+<td>a node info sequence pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>an XML node pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a long indicating the position of the record</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputGrow"></a>xmlParserInputGrow ()</h3>
+<pre class="programlisting">int        xmlParserInputGrow              (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in, <br>                                    int len)<br>
+</pre>
+<p>This function increase the input for the parser. It tries to preserve pointers to the input buffer, and keep already read data</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>an XML parser input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>an indicative size for the lookahead</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the amount of char read, or -1 in case of error, 0 indicate the end of this entity</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputRead"></a>xmlParserInputRead ()</h3>
+<pre class="programlisting">int        xmlParserInputRead              (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in, <br>                                    int len)<br>
+</pre>
+<p>This function was internal and is deprecated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>an XML parser input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>an indicative size for the lookahead</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 as this is an error to use it.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPedanticParserDefault"></a>xmlPedanticParserDefault ()</h3>
+<pre class="programlisting">int        xmlPedanticParserDefault        (int val)<br>
+</pre>
+<p>Set and return the previous value for enabling pedantic warnings.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>int 0 or 1</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the last value for 0 for no substitution, 1 for substitution.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReadDoc"></a>xmlReadDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlReadDoc              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML in-memory document and build a tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to a zero terminated string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReadFd"></a>xmlReadFd ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlReadFd               (int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML from a file descriptor and build a tree. NOTE that the file descriptor will not be closed when the reader is closed or reset.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>fd</tt></i>:</span></td>
+<td>an open file descriptor</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReadFile"></a>xmlReadFile ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlReadFile             (const char * filename, <br>                                     const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML file from the filesystem or the network.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file or URL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReadIO"></a>xmlReadIO ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlReadIO               (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML document from I/O functions and source and build a tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ioread</tt></i>:</span></td>
+<td>an I/O read function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioclose</tt></i>:</span></td>
+<td>an I/O close function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioctx</tt></i>:</span></td>
+<td>an I/O handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReadMemory"></a>xmlReadMemory ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlReadMemory           (const char * buffer, <br>                                       int size, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML in-memory document and build a tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRecoverDoc"></a>xmlRecoverDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlRecoverDoc           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur)<br>
+</pre>
+<p>parse an XML in-memory document and build a tree. In the case the document is not Well Formed, a attempt to build a tree is tried anyway</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree or NULL in case of failure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRecoverFile"></a>xmlRecoverFile ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlRecoverFile          (const char * filename)<br>
+</pre>
+<p>parse an XML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. In the case the document is not Well Formed, it attempts to build a tree anyway</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree or NULL in case of failure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRecoverMemory"></a>xmlRecoverMemory ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlRecoverMemory        (const char * buffer, <br>                                       int size)<br>
+</pre>
+<p>parse an XML in-memory block and build a tree. In the case the document is not Well Formed, an attempt to build a tree is tried anyway</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>an pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXParseDTD"></a>xmlSAXParseDTD ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>        xmlSAXParseDTD          (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>Load and parse an external subset.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>a NAME* containing the External ID of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>a NAME* containing the URL to the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXParseDoc"></a>xmlSAXParseDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlSAXParseDoc          (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  int recovery)<br>
+</pre>
+<p>parse an XML in-memory document and build a tree. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>recovery</tt></i>:</span></td>
+<td>work in recovery mode, i.e. tries to read no Well Formed documents</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXParseEntity"></a>xmlSAXParseEntity ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlSAXParseEntity       (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const char * filename)<br>
+</pre>
+<p>parse an XML external entity out of context and build a tree. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines. [78] extParsedEnt ::= TextDecl? content This correspond to a "Well Balanced" chunk</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXParseFile"></a>xmlSAXParseFile ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlSAXParseFile         (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const char * filename, <br>                                     int recovery)<br>
+</pre>
+<p>parse an XML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>recovery</tt></i>:</span></td>
+<td>work in recovery mode, i.e. tries to read no Well Formed documents</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXParseFileWithData"></a>xmlSAXParseFileWithData ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlSAXParseFileWithData (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const char * filename, <br>                                     int recovery, <br>                                      void * data)<br>
+</pre>
+<p>parse an XML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines. User data (void *) is stored within the parser context in the context's _private member, so it is available nearly everywhere in libxml</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>recovery</tt></i>:</span></td>
+<td>work in recovery mode, i.e. tries to read no Well Formed documents</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXParseMemory"></a>xmlSAXParseMemory ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlSAXParseMemory       (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     const char * buffer, <br>                                       int size, <br>                                  int recovery)<br>
+</pre>
+<p>parse an XML in-memory block and use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>an pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>recovery</tt></i>:</span></td>
+<td>work in recovery mode, i.e. tries to read not Well Formed documents</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXParseMemoryWithData"></a>xmlSAXParseMemoryWithData ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlSAXParseMemoryWithData       (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                             const char * buffer, <br>                                               int size, <br>                                          int recovery, <br>                                              void * data)<br>
+</pre>
+<p>parse an XML in-memory block and use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines. User data (void *) is stored within the parser context in the context's _private member, so it is available nearly everywhere in libxml</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>the SAX handler block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>an pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>recovery</tt></i>:</span></td>
+<td>work in recovery mode, i.e. tries to read no Well Formed documents</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the userdata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting document tree</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXUserParseFile"></a>xmlSAXUserParseFile ()</h3>
+<pre class="programlisting">int        xmlSAXUserParseFile             (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     void * user_data, <br>                                  const char * filename)<br>
+</pre>
+<p>parse an XML file and call the given SAX handler routines. Automatic support for ZLIB/Compress compressed document is provided</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>a SAX handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>The user data returned on SAX callbacks</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success or a error number otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXUserParseMemory"></a>xmlSAXUserParseMemory ()</h3>
+<pre class="programlisting">int        xmlSAXUserParseMemory           (<a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     void * user_data, <br>                                  const char * buffer, <br>                                       int size)<br>
+</pre>
+<p>A better SAX parsing routine. parse an XML in-memory buffer and call the given SAX handler routines.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>a SAX handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>The user data returned on SAX callbacks</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>an in-memory XML document input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the length of the XML document in bytes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success or a error number otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetExternalEntityLoader"></a>xmlSetExternalEntityLoader ()</h3>
+<pre class="programlisting">void       xmlSetExternalEntityLoader      (<a href="libxml2-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a> f)<br>
+</pre>
+<p>Changes the defaultexternal entity resolver function for the application</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the new entity resolver function</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetFeature"></a>xmlSetFeature ()</h3>
+<pre class="programlisting">int        xmlSetFeature                   (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * name, <br>                                         void * value)<br>
+</pre>
+<p>Change the current value of one feature of this parser instance</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML/HTML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the feature name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>pointer to the location of the new value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case or error, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetupParserForBuffer"></a>xmlSetupParserForBuffer ()</h3>
+<pre class="programlisting">void       xmlSetupParserForBuffer         (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buffer, <br>                                       const char * filename)<br>
+</pre>
+<p>Setup the parser context to parse a new buffer; Clears any prior contents from the parser context. The buffer parameter must not be NULL, but the filename parameter can be</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStopParser"></a>xmlStopParser ()</h3>
+<pre class="programlisting">void       xmlStopParser                   (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Blocks further parser processing</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSubstituteEntitiesDefault"></a>xmlSubstituteEntitiesDefault ()</h3>
+<pre class="programlisting">int        xmlSubstituteEntitiesDefault    (int val)<br>
+</pre>
+<p>Set and return the previous value for default entity support. Initially the parser always keep entity references instead of substituting entity values in the output. This function has to be used to change the default parser behavior SAX::substituteEntities() has to be used for changing that on a file by file basis.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>int 0 or 1</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the last value for 0 for no substitution, 1 for substitution.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 5d66399..4de6e6d 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>parserInternals: internals routines and limits exported by the parser.</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-parser.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-pattern.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">parserInternals</span>
-    </h2>
-    <p>parserInternals - internals routines and limits exported by the parser.</p>
-    <p>this module exports a number of internal parsing routines they are not really all intended for applications but can prove useful doing low level processing. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>parserInternals: internals routines and limits exported by the parser.</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-parser.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-pattern.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">parserInternals</span></h2>
+<p>parserInternals - internals routines and limits exported by the parser.</p>
+<p>this module exports a number of internal parsing routines they are not really all intended for applications but can prove useful doing low level processing. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#INPUT_CHUNK">INPUT_CHUNK</a>;
+#define <a href="#IS_ASCII_DIGIT">IS_ASCII_DIGIT</a>(c);
+#define <a href="#IS_ASCII_LETTER">IS_ASCII_LETTER</a>(c);
+#define <a href="#IS_BASECHAR">IS_BASECHAR</a>(c);
 #define <a href="#IS_BLANK">IS_BLANK</a>(c);
+#define <a href="#IS_BLANK_CH">IS_BLANK_CH</a>(c);
 #define <a href="#IS_BYTE_CHAR">IS_BYTE_CHAR</a>(c);
-#define <a href="#IS_PUBIDCHAR">IS_PUBIDCHAR</a>(c);
+#define <a href="#IS_CHAR">IS_CHAR</a>(c);
+#define <a href="#IS_CHAR_CH">IS_CHAR_CH</a>(c);
+#define <a href="#IS_COMBINING">IS_COMBINING</a>(c);
+#define <a href="#IS_COMBINING_CH">IS_COMBINING_CH</a>(c);
+#define <a href="#IS_DIGIT">IS_DIGIT</a>(c);
 #define <a href="#IS_DIGIT_CH">IS_DIGIT_CH</a>(c);
 #define <a href="#IS_EXTENDER">IS_EXTENDER</a>(c);
-#define <a href="#IS_ASCII_DIGIT">IS_ASCII_DIGIT</a>(c);
-#define <a href="#IS_COMBINING_CH">IS_COMBINING_CH</a>(c);
-#define <a href="#IS_CHAR">IS_CHAR</a>(c);
-#define <a href="#IS_LETTER">IS_LETTER</a>(c);
+#define <a href="#IS_EXTENDER_CH">IS_EXTENDER_CH</a>(c);
 #define <a href="#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a>(c);
-#define <a href="#MOVETO_STARTTAG">MOVETO_STARTTAG</a>(p);
-#define <a href="#XML_MAX_NAME_LENGTH">XML_MAX_NAME_LENGTH</a>;
-#define <a href="#IS_ASCII_LETTER">IS_ASCII_LETTER</a>(c);
-#define <a href="#IS_DIGIT">IS_DIGIT</a>(c);
-#define <a href="#XML_MAX_DICTIONARY_LIMIT">XML_MAX_DICTIONARY_LIMIT</a>;
-#define <a href="#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a>;
+#define <a href="#IS_LETTER">IS_LETTER</a>(c);
+#define <a href="#IS_LETTER_CH">IS_LETTER_CH</a>(c);
+#define <a href="#IS_PUBIDCHAR">IS_PUBIDCHAR</a>(c);
+#define <a href="#IS_PUBIDCHAR_CH">IS_PUBIDCHAR_CH</a>(c);
 #define <a href="#MOVETO_ENDTAG">MOVETO_ENDTAG</a>(p);
+#define <a href="#MOVETO_STARTTAG">MOVETO_STARTTAG</a>(p);
 #define <a href="#SKIP_EOL">SKIP_EOL</a>(p);
-#define <a href="#IS_EXTENDER_CH">IS_EXTENDER_CH</a>(c);
-#define <a href="#IS_BLANK_CH">IS_BLANK_CH</a>(c);
-#define <a href="#IS_LETTER_CH">IS_LETTER_CH</a>(c);
+#define <a href="#XML_MAX_DICTIONARY_LIMIT">XML_MAX_DICTIONARY_LIMIT</a>;
 #define <a href="#XML_MAX_LOOKUP_LIMIT">XML_MAX_LOOKUP_LIMIT</a>;
-#define <a href="#XML_MAX_TEXT_LENGTH">XML_MAX_TEXT_LENGTH</a>;
-#define <a href="#XML_SUBSTITUTE_NONE">XML_SUBSTITUTE_NONE</a>;
-#define <a href="#IS_COMBINING">IS_COMBINING</a>(c);
 #define <a href="#XML_MAX_NAMELEN">XML_MAX_NAMELEN</a>;
-#define <a href="#IS_BASECHAR">IS_BASECHAR</a>(c);
-#define <a href="#INPUT_CHUNK">INPUT_CHUNK</a>;
-#define <a href="#IS_PUBIDCHAR_CH">IS_PUBIDCHAR_CH</a>(c);
-#define <a href="#IS_CHAR_CH">IS_CHAR_CH</a>(c);
+#define <a href="#XML_MAX_NAME_LENGTH">XML_MAX_NAME_LENGTH</a>;
+#define <a href="#XML_MAX_TEXT_LENGTH">XML_MAX_TEXT_LENGTH</a>;
 #define <a href="#XML_SUBSTITUTE_BOTH">XML_SUBSTITUTE_BOTH</a>;
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#nodePop">nodePop</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlParseNotationDecl">xmlParseNotationDecl</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlParseExternalSubset">xmlParseExternalSubset</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
-void   <a href="#xmlParseMisc">xmlParseMisc</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#xmlSwitchInputEncoding">xmlSwitchInputEncoding</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input, <br/>                                        <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler);
-<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNewStringInputStream">xmlNewStringInputStream</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buffer);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseExternalID">xmlParseExternalID</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** publicID, <br/>                                         int strict);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlScanName">xmlScanName</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#xmlParseElementDecl">xmlParseElementDecl</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlParseMarkupDecl">xmlParseMarkupDecl</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>      <a href="#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a>        (const char * filename, <br/>                                                    const char * encoding);
-int    <a href="#inputPush">inputPush</a>                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> value);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                                 int len, <br/>                                          int what, <br/>                                                 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br/>                                                 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br/>                                                <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3);
+#define <a href="#XML_SUBSTITUTE_NONE">XML_SUBSTITUTE_NONE</a>;
+#define <a href="#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a>;
+#define <a href="#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a>;
+<a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>      <a href="#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a>        (const char * filename, <br>                                                     const char * encoding);
+void   <a href="#htmlInitAutoClose">htmlInitAutoClose</a>              (void);
+<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#inputPop">inputPop</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+int    <a href="#inputPush">inputPush</a>                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> value);
 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#namePop">namePop</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlParseContent">xmlParseContent</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNewInputStream">xmlNewInputStream</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNamespaceParseQName">xmlNamespaceParseQName</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix);
-<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNewInputFromFile">xmlNewInputFromFile</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           const char * filename);
-void   <a href="#xmlParserHandlePEReference">xmlParserHandlePEReference</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStringDecodeEntities">xmlStringDecodeEntities</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         int what, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br/>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3);
+int    <a href="#namePush">namePush</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#nodePop">nodePop</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+int    <a href="#nodePush">nodePush</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> value);
+int    <a href="#xmlCheckLanguageID">xmlCheckLanguageID</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * lang);
+int    <a href="#xmlCopyChar">xmlCopyChar</a>                  (int len, <br>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * out, <br>                                        int val);
+int    <a href="#xmlCopyCharMultiByte">xmlCopyCharMultiByte</a>                (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * out, <br>                                        int val);
+<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a>      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br>                                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br>                                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base);
 <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreateFileParserCtxt">xmlCreateFileParserCtxt</a>  (const char * filename);
-int    <a href="#xmlParseCharRef">xmlParseCharRef</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlParseElement">xmlParseElement</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlParseTextDecl">xmlParseTextDecl</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNewEntityInputStream">xmlNewEntityInputStream</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> entity);
-int    <a href="#xmlCopyCharMultiByte">xmlCopyCharMultiByte</a>                (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * out, <br/>                                       int val);
-<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                                   int inputchk);
-void   <a href="#xmlParseCharData">xmlParseCharData</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   int cdata);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseVersionInfo">xmlParseVersionInfo</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#xmlParseSDDecl">xmlParseSDDecl</a>                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#xmlParseEnumeratedType">xmlParseEnumeratedType</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> * tree);
-void   <a href="#xmlHandleEntity">xmlHandleEntity</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> entity);
-int    <a href="#xmlCurrentChar">xmlCurrentChar</a>                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   int * len);
-int    <a href="#xmlSkipBlankChars">xmlSkipBlankChars</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>    <a href="#xmlParseNotationType">xmlParseNotationType</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlParserInputShrink">xmlParserInputShrink</a>                (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in);
-void   <a href="#xmlSetEntityReferenceFunc">xmlSetEntityReferenceFunc</a>      (<a href="libxml2-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a> func);
+<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreateMemoryParserCtxt">xmlCreateMemoryParserCtxt</a>      (const char * buffer, <br>                                                       int size);
+<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreateURLParserCtxt">xmlCreateURLParserCtxt</a>    (const char * filename, <br>                                             int options);
+int    <a href="#xmlCurrentChar">xmlCurrentChar</a>                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    int * len);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlDecodeEntities">xmlDecodeEntities</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    int len, <br>                                   int what, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3);
+typedef void <a href="#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a>              (<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> ent, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> firstNode, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> lastNode);
+void   <a href="#xmlErrMemory">xmlErrMemory</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * extra);
 void   <a href="#xmlFreeInputStream">xmlFreeInputStream</a>            (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input);
-void   <a href="#xmlParsePEReference">xmlParsePEReference</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreateURLParserCtxt">xmlCreateURLParserCtxt</a>    (const char * filename, <br/>                                            int options);
+void   <a href="#xmlHandleEntity">xmlHandleEntity</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> entity);
 int    <a href="#xmlIsLetter">xmlIsLetter</a>                  (int c);
-int    <a href="#xmlCheckLanguageID">xmlCheckLanguageID</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * lang);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNamespaceParseQName">xmlNamespaceParseQName</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix);
+<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNewEntityInputStream">xmlNewEntityInputStream</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> entity);
+<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNewInputFromFile">xmlNewInputFromFile</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            const char * filename);
+<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNewInputStream">xmlNewInputStream</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNewStringInputStream">xmlNewStringInputStream</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buffer);
 void   <a href="#xmlNextChar">xmlNextChar</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>    <a href="#xmlParseEnumerationType">xmlParseEnumerationType</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#xmlParseAttributeType">xmlParseAttributeType</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> * tree);
-int    <a href="#xmlParseDefaultDecl">xmlParseDefaultDecl</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** value);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseSystemLiteral">xmlParseSystemLiteral</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseAttValue">xmlParseAttValue</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreateMemoryParserCtxt">xmlCreateMemoryParserCtxt</a>      (const char * buffer, <br/>                                                      int size);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlParseAttribute">xmlParseAttribute</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** value);
 void   <a href="#xmlParseAttributeListDecl">xmlParseAttributeListDecl</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlParseName">xmlParseName</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+int    <a href="#xmlParseAttributeType">xmlParseAttributeType</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> * tree);
+void   <a href="#xmlParseCDSect">xmlParseCDSect</a>                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParseCharData">xmlParseCharData</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    int cdata);
+int    <a href="#xmlParseCharRef">xmlParseCharRef</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParseComment">xmlParseComment</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParseContent">xmlParseContent</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+int    <a href="#xmlParseDefaultDecl">xmlParseDefaultDecl</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** value);
+void   <a href="#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParseElement">xmlParseElement</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                                    int inputchk);
+int    <a href="#xmlParseElementContentDecl">xmlParseElementContentDecl</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> * result);
+int    <a href="#xmlParseElementDecl">xmlParseElementDecl</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                                    int inputchk);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseEncName">xmlParseEncName</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#nodePush">nodePush</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> value);
-int    <a href="#xmlSwitchEncoding">xmlSwitchEncoding</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
-int    <a href="#xmlSwitchToEncoding">xmlSwitchToEncoding</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler);
-<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlParseEntityRef">xmlParseEntityRef</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlParseAttribute">xmlParseAttribute</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** value);
-void   <a href="#xmlParseEndTag">xmlParseEndTag</a>                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlParseEncodingDecl">xmlParseEncodingDecl</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#htmlInitAutoClose">htmlInitAutoClose</a>              (void);
-<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a>      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br/>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br/>                                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlSplitQName">xmlSplitQName</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix);
-void   <a href="#xmlParserHandleReference">xmlParserHandleReference</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParseEndTag">xmlParseEndTag</a>                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParseEntityDecl">xmlParseEntityDecl</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>      <a href="#xmlParseEntityRef">xmlParseEntityRef</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseEntityValue">xmlParseEntityValue</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** orig);
+int    <a href="#xmlParseEnumeratedType">xmlParseEnumeratedType</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> * tree);
+<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>    <a href="#xmlParseEnumerationType">xmlParseEnumerationType</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseExternalID">xmlParseExternalID</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** publicID, <br>                                  int strict);
+void   <a href="#xmlParseExternalSubset">xmlParseExternalSubset</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
+void   <a href="#xmlParseMarkupDecl">xmlParseMarkupDecl</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParseMisc">xmlParseMisc</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlParseName">xmlParseName</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParseNamespace">xmlParseNamespace</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseNmtoken">xmlParseNmtoken</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParseNotationDecl">xmlParseNotationDecl</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>    <a href="#xmlParseNotationType">xmlParseNotationType</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParsePEReference">xmlParsePEReference</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParsePI">xmlParsePI</a>                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlParsePITarget">xmlParsePITarget</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#xmlParseElementContentDecl">xmlParseElementContentDecl</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> * result);
-<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#inputPop">inputPop</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>   <a href="#xmlPopInput">xmlPopInput</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParsePubidLiteral">xmlParsePubidLiteral</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#xmlPushInput">xmlPushInput</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseEntityValue">xmlParseEntityValue</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** orig);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlDecodeEntities">xmlDecodeEntities</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   int len, <br/>                                  int what, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br/>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseVersionNum">xmlParseVersionNum</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlParseXMLDecl">xmlParseXMLDecl</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-typedef void <a href="#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a>              (<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> ent, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> firstNode, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> lastNode);
-<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                                   int inputchk);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseQuotedString">xmlParseQuotedString</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlParseCDSect">xmlParseCDSect</a>                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#xmlStringCurrentChar">xmlStringCurrentChar</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         int * len);
-void   <a href="#xmlParseComment">xmlParseComment</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlErrMemory">xmlErrMemory</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * extra);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseNmtoken">xmlParseNmtoken</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
 void   <a href="#xmlParseReference">xmlParseReference</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#namePush">namePush</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-void   <a href="#xmlParseNamespace">xmlParseNamespace</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-int    <a href="#xmlCopyChar">xmlCopyChar</a>                  (int len, <br/>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * out, <br/>                                       int val);
-void   <a href="#xmlParsePI">xmlParsePI</a>                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+int    <a href="#xmlParseSDDecl">xmlParseSDDecl</a>                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlParseStartTag">xmlParseStartTag</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-void   <a href="#xmlParseEntityDecl">xmlParseEntityDecl</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseSystemLiteral">xmlParseSystemLiteral</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParseTextDecl">xmlParseTextDecl</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseVersionInfo">xmlParseVersionInfo</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlParseVersionNum">xmlParseVersionNum</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParseXMLDecl">xmlParseXMLDecl</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParserHandlePEReference">xmlParserHandlePEReference</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParserHandleReference">xmlParserHandleReference</a>        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlParserInputShrink">xmlParserInputShrink</a>                (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>   <a href="#xmlPopInput">xmlPopInput</a>                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+int    <a href="#xmlPushInput">xmlPushInput</a>                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlScanName">xmlScanName</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+void   <a href="#xmlSetEntityReferenceFunc">xmlSetEntityReferenceFunc</a>      (<a href="libxml2-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a> func);
+int    <a href="#xmlSkipBlankChars">xmlSkipBlankChars</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlSplitQName">xmlSplitQName</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix);
+int    <a href="#xmlStringCurrentChar">xmlStringCurrentChar</a>                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  int * len);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStringDecodeEntities">xmlStringDecodeEntities</a>  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  int what, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                          int len, <br>                                           int what, <br>                                          <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br>                                          <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br>                                                 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3);
+int    <a href="#xmlSwitchEncoding">xmlSwitchEncoding</a>              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+int    <a href="#xmlSwitchInputEncoding">xmlSwitchInputEncoding</a>            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input, <br>                                         <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler);
+int    <a href="#xmlSwitchToEncoding">xmlSwitchToEncoding</a>          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="INPUT_CHUNK">Macro </a>INPUT_CHUNK</h3>
+<pre class="programlisting">#define <a href="#INPUT_CHUNK">INPUT_CHUNK</a>;
+</pre>
+<p>The parser tries to always have that amount of input ready. One of the point is providing context when reporting errors.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_ASCII_DIGIT">Macro </a>IS_ASCII_DIGIT</h3>
+<pre class="programlisting">#define <a href="#IS_ASCII_DIGIT">IS_ASCII_DIGIT</a>(c);
+</pre>
+<p>Macro to check [0-9]</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_ASCII_LETTER">Macro </a>IS_ASCII_LETTER</h3>
+<pre class="programlisting">#define <a href="#IS_ASCII_LETTER">IS_ASCII_LETTER</a>(c);
+</pre>
+<p>Macro to check [a-zA-Z]</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_BASECHAR">Macro </a>IS_BASECHAR</h3>
+<pre class="programlisting">#define <a href="#IS_BASECHAR">IS_BASECHAR</a>(c);
+</pre>
+<p>Macro to check the following production in the XML spec: [85] BaseChar ::= ... long list see REC ...</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an UNICODE value (int)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_BLANK">Macro </a>IS_BLANK</h3>
+<pre class="programlisting">#define <a href="#IS_BLANK">IS_BLANK</a>(c);
+</pre>
+<p>Macro to check the following production in the XML spec: [3] S ::= (#x20 | #x9 | #xD | #xA)+</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an UNICODE value (int)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_BLANK_CH">Macro </a>IS_BLANK_CH</h3>
+<pre class="programlisting">#define <a href="#IS_BLANK_CH">IS_BLANK_CH</a>(c);
+</pre>
+<p>Behaviour same as <a href="libxml2-parserInternals.html#IS_BLANK">IS_BLANK</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value (normally unsigned char)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_BYTE_CHAR">Macro </a>IS_BYTE_CHAR</h3>
+<pre class="programlisting">#define <a href="#IS_BYTE_CHAR">IS_BYTE_CHAR</a>(c);
+</pre>
+<p>Macro to check the following production in the XML spec: [2] Char ::= #x9 | #xA | #xD | [#x20...] any byte character in the accepted range</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an byte value (int)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_CHAR">Macro </a>IS_CHAR</h3>
+<pre class="programlisting">#define <a href="#IS_CHAR">IS_CHAR</a>(c);
+</pre>
+<p>Macro to check the following production in the XML spec: [2] Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF] any Unicode character, excluding the surrogate blocks, FFFE, and FFFF.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an UNICODE value (int)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_CHAR_CH">Macro </a>IS_CHAR_CH</h3>
+<pre class="programlisting">#define <a href="#IS_CHAR_CH">IS_CHAR_CH</a>(c);
+</pre>
+<p>Behaves like <a href="libxml2-parserInternals.html#IS_CHAR">IS_CHAR</a> on single-byte value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> (usually an unsigned char)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_COMBINING">Macro </a>IS_COMBINING</h3>
+<pre class="programlisting">#define <a href="#IS_COMBINING">IS_COMBINING</a>(c);
+</pre>
+<p>Macro to check the following production in the XML spec: [87] CombiningChar ::= ... long list see REC ...</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an UNICODE value (int)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_COMBINING_CH">Macro </a>IS_COMBINING_CH</h3>
+<pre class="programlisting">#define <a href="#IS_COMBINING_CH">IS_COMBINING_CH</a>(c);
+</pre>
+<p>Always false (all combining chars &gt; 0xff)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> (usually an unsigned char)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_DIGIT">Macro </a>IS_DIGIT</h3>
+<pre class="programlisting">#define <a href="#IS_DIGIT">IS_DIGIT</a>(c);
+</pre>
+<p>Macro to check the following production in the XML spec: [88] Digit ::= ... long list see REC ...</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an UNICODE value (int)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_DIGIT_CH">Macro </a>IS_DIGIT_CH</h3>
+<pre class="programlisting">#define <a href="#IS_DIGIT_CH">IS_DIGIT_CH</a>(c);
+</pre>
+<p>Behaves like <a href="libxml2-parserInternals.html#IS_DIGIT">IS_DIGIT</a> but with a single byte argument</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value (usually an unsigned char)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_EXTENDER">Macro </a>IS_EXTENDER</h3>
+<pre class="programlisting">#define <a href="#IS_EXTENDER">IS_EXTENDER</a>(c);
+</pre>
+<p>Macro to check the following production in the XML spec: [89] Extender ::= #x00B7 | #x02D0 | #x02D1 | #x0387 | #x0640 | #x0E46 | #x0EC6 | #x3005 | [#x3031-#x3035] | [#x309D-#x309E] | [#x30FC-#x30FE]</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an UNICODE value (int)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_EXTENDER_CH">Macro </a>IS_EXTENDER_CH</h3>
+<pre class="programlisting">#define <a href="#IS_EXTENDER_CH">IS_EXTENDER_CH</a>(c);
+</pre>
+<p>Behaves like <a href="libxml2-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a> but with a single-byte argument</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value (usually an unsigned char)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_IDEOGRAPHIC">Macro </a>IS_IDEOGRAPHIC</h3>
+<pre class="programlisting">#define <a href="#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a>(c);
+</pre>
+<p>Macro to check the following production in the XML spec: [86] Ideographic ::= [#x4E00-#x9FA5] | #x3007 | [#x3021-#x3029]</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an UNICODE value (int)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_LETTER">Macro </a>IS_LETTER</h3>
+<pre class="programlisting">#define <a href="#IS_LETTER">IS_LETTER</a>(c);
+</pre>
+<p>Macro to check the following production in the XML spec: [84] Letter ::= BaseChar | Ideographic</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an UNICODE value (int)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_LETTER_CH">Macro </a>IS_LETTER_CH</h3>
+<pre class="programlisting">#define <a href="#IS_LETTER_CH">IS_LETTER_CH</a>(c);
+</pre>
+<p>Macro behaves like IS_LETTER, but only check base chars</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value (normally unsigned char)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_PUBIDCHAR">Macro </a>IS_PUBIDCHAR</h3>
+<pre class="programlisting">#define <a href="#IS_PUBIDCHAR">IS_PUBIDCHAR</a>(c);
+</pre>
+<p>Macro to check the following production in the XML spec: [13] PubidChar ::= #x20 | #xD | #xA | [a-zA-Z0-9] | [-'()+,./:=?;!*#@$_%]</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an UNICODE value (int)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="IS_PUBIDCHAR_CH">Macro </a>IS_PUBIDCHAR_CH</h3>
+<pre class="programlisting">#define <a href="#IS_PUBIDCHAR_CH">IS_PUBIDCHAR_CH</a>(c);
+</pre>
+<p>Same as <a href="libxml2-parserInternals.html#IS_PUBIDCHAR">IS_PUBIDCHAR</a> but for single-byte value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value (normally unsigned char)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="MOVETO_ENDTAG">Macro </a>MOVETO_ENDTAG</h3>
+<pre class="programlisting">#define <a href="#MOVETO_ENDTAG">MOVETO_ENDTAG</a>(p);
+</pre>
+<p>Skips to the next '&gt;' char.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>p</tt></i>:</span></td>
+<td>and UTF8 string pointer</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="MOVETO_STARTTAG">Macro </a>MOVETO_STARTTAG</h3>
+<pre class="programlisting">#define <a href="#MOVETO_STARTTAG">MOVETO_STARTTAG</a>(p);
+</pre>
+<p>Skips to the next '&lt;' char.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>p</tt></i>:</span></td>
+<td>and UTF8 string pointer</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="SKIP_EOL">Macro </a>SKIP_EOL</h3>
+<pre class="programlisting">#define <a href="#SKIP_EOL">SKIP_EOL</a>(p);
+</pre>
+<p>Skips the end of line chars.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>p</tt></i>:</span></td>
+<td>and UTF8 string pointer</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_MAX_DICTIONARY_LIMIT">Macro </a>XML_MAX_DICTIONARY_LIMIT</h3>
+<pre class="programlisting">#define <a href="#XML_MAX_DICTIONARY_LIMIT">XML_MAX_DICTIONARY_LIMIT</a>;
+</pre>
+<p>Maximum size allowed by the parser for a dictionary by default This is not a limitation of the parser but a safety boundary feature, use <a href="libxml2-parser.html#XML_PARSE_HUGE">XML_PARSE_HUGE</a> option to override it. Introduced in 2.9.0</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_MAX_LOOKUP_LIMIT">Macro </a>XML_MAX_LOOKUP_LIMIT</h3>
+<pre class="programlisting">#define <a href="#XML_MAX_LOOKUP_LIMIT">XML_MAX_LOOKUP_LIMIT</a>;
+</pre>
+<p>Maximum size allowed by the parser for ahead lookup This is an upper boundary enforced by the parser to avoid bad behaviour on "unfriendly' content Introduced in 2.9.0</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_MAX_NAMELEN">Macro </a>XML_MAX_NAMELEN</h3>
+<pre class="programlisting">#define <a href="#XML_MAX_NAMELEN">XML_MAX_NAMELEN</a>;
+</pre>
+<p>Identifiers can be longer, but this will be more costly at runtime.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_MAX_NAME_LENGTH">Macro </a>XML_MAX_NAME_LENGTH</h3>
+<pre class="programlisting">#define <a href="#XML_MAX_NAME_LENGTH">XML_MAX_NAME_LENGTH</a>;
+</pre>
+<p>Maximum size allowed for a markup identifier. This is not a limitation of the parser but a safety boundary feature, use <a href="libxml2-parser.html#XML_PARSE_HUGE">XML_PARSE_HUGE</a> option to override it. Note that with the use of parsing dictionaries overriding the limit may result in more runtime memory usage in face of "unfriendly' content Introduced in 2.9.0</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_MAX_TEXT_LENGTH">Macro </a>XML_MAX_TEXT_LENGTH</h3>
+<pre class="programlisting">#define <a href="#XML_MAX_TEXT_LENGTH">XML_MAX_TEXT_LENGTH</a>;
+</pre>
+<p>Maximum size allowed for a single text node when building a tree. This is not a limitation of the parser but a safety boundary feature, use <a href="libxml2-parser.html#XML_PARSE_HUGE">XML_PARSE_HUGE</a> option to override it. Introduced in 2.9.0</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SUBSTITUTE_BOTH">Macro </a>XML_SUBSTITUTE_BOTH</h3>
+<pre class="programlisting">#define <a href="#XML_SUBSTITUTE_BOTH">XML_SUBSTITUTE_BOTH</a>;
+</pre>
+<p>Both general and parameter entities need to be substituted.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SUBSTITUTE_NONE">Macro </a>XML_SUBSTITUTE_NONE</h3>
+<pre class="programlisting">#define <a href="#XML_SUBSTITUTE_NONE">XML_SUBSTITUTE_NONE</a>;
+</pre>
+<p>If no entities need to be substituted.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SUBSTITUTE_PEREF">Macro </a>XML_SUBSTITUTE_PEREF</h3>
+<pre class="programlisting">#define <a href="#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a>;
+</pre>
+<p>Whether parameter entities need to be substituted.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SUBSTITUTE_REF">Macro </a>XML_SUBSTITUTE_REF</h3>
+<pre class="programlisting">#define <a href="#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a>;
+</pre>
+<p>Whether general entities need to be substituted.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlEntityReferenceFunc"></a>Function type xmlEntityReferenceFunc</h3>
+<pre class="programlisting">void       xmlEntityReferenceFunc          (<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> ent, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> firstNode, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> lastNode)<br>
+</pre>
+<p>Callback function used when one needs to be able to track back the provenance of a chunk of nodes inherited from an entity replacement.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ent</tt></i>:</span></td>
+<td>the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>firstNode</tt></i>:</span></td>
+<td>the fist node in the chunk</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>lastNode</tt></i>:</span></td>
+<td>the last nod in the chunk</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserMaxDepth">Variable </a>xmlParserMaxDepth</h3>
+<pre class="programlisting">unsigned int xmlParserMaxDepth;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStringComment">Variable </a>xmlStringComment</h3>
+<pre class="programlisting">const xmlCharxmlStringComment[] xmlStringComment;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStringText">Variable </a>xmlStringText</h3>
+<pre class="programlisting">const xmlCharxmlStringText[] xmlStringText;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStringTextNoenc">Variable </a>xmlStringTextNoenc</h3>
+<pre class="programlisting">const xmlCharxmlStringTextNoenc[] xmlStringTextNoenc;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlCreateFileParserCtxt"></a>htmlCreateFileParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>  htmlCreateFileParserCtxt        (const char * filename, <br>                                                     const char * encoding)<br>
+</pre>
+<p>Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>a free form C string describing the HTML document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser context or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="htmlInitAutoClose"></a>htmlInitAutoClose ()</h3>
+<pre class="programlisting">void       htmlInitAutoClose               (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. This is a no-op now.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="inputPop"></a>inputPop ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        inputPop        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Pops the top parser input from the input stack</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the input just removed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="inputPush"></a>inputPush ()</h3>
+<pre class="programlisting">int        inputPush                       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> value)<br>
+</pre>
+<p>Pushes a new parser input on top of the input stack</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the parser input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, the index in the stack otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="namePop"></a>namePop ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       namePop                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Pops the top element name from the name stack</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the name just removed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="namePush"></a>namePush ()</h3>
+<pre class="programlisting">int        namePush                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="INPUT_CHUNK">Macro </a>INPUT_CHUNK</h3><pre class="programlisting">#define <a href="#INPUT_CHUNK">INPUT_CHUNK</a>;
-</pre><p>The parser tries to always have that amount of input ready. One of the point is providing context when reporting errors.</p>
+<p>Pushes a new element name on top of the name stack</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, the index in the stack otherwise</td>
+</tr>
+</tbody>
+</table></div>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_ASCII_DIGIT">Macro </a>IS_ASCII_DIGIT</h3><pre class="programlisting">#define <a href="#IS_ASCII_DIGIT">IS_ASCII_DIGIT</a>(c);
-</pre><p>Macro to check [0-9]</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value</td></tr></tbody></table></div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="nodePop"></a>nodePop ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      nodePop                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Pops the top element node from the node stack</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the node just removed</td>
+</tr>
+</tbody>
+</table></div>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_ASCII_LETTER">Macro </a>IS_ASCII_LETTER</h3><pre class="programlisting">#define <a href="#IS_ASCII_LETTER">IS_ASCII_LETTER</a>(c);
-</pre><p>Macro to check [a-zA-Z]</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value</td></tr></tbody></table></div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="nodePush"></a>nodePush ()</h3>
+<pre class="programlisting">int        nodePush                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> value)<br>
+</pre>
+<p>Pushes a new element node on top of the node stack</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the element node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, the index in the stack otherwise</td>
+</tr>
+</tbody>
+</table></div>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_BASECHAR">Macro </a>IS_BASECHAR</h3><pre class="programlisting">#define <a href="#IS_BASECHAR">IS_BASECHAR</a>(c);
-</pre><p>Macro to check the following production in the XML spec: [85] BaseChar ::= ... long list see REC ...</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an UNICODE value (int)</td></tr></tbody></table></div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCheckLanguageID"></a>xmlCheckLanguageID ()</h3>
+<pre class="programlisting">int        xmlCheckLanguageID              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * lang)<br>
+</pre>
+<p>Checks that the value conforms to the LanguageID production: NOTE: this is somewhat deprecated, those productions were removed from the XML Second edition. [33] LanguageID ::= Langcode ('-' Subcode)* [34] Langcode ::= ISO639Code | IanaCode | UserCode [35] ISO639Code ::= ([a-z] | [A-Z]) ([a-z] | [A-Z]) [36] IanaCode ::= ('i' | 'I') '-' ([a-z] | [A-Z])+ [37] UserCode ::= ('x' | 'X') '-' ([a-z] | [A-Z])+ [38] Subcode ::= ([a-z] | [A-Z])+ The current REC <a href="libxml2-SAX.html#reference">reference</a> the successors of RFC 1766, currently 5646 http://www.rfc-editor.org/rfc/rfc5646.txt langtag = language ["-" script] ["-" region] *("-" variant) *("-" extension) ["-" privateuse] language = 2*3ALPHA ; shortest ISO 639 code ["-" extlang] ; sometimes followed by ; extended language subtags / 4ALPHA ; or reserved for future use / 5*8ALPHA ; or registered language subtag extlang = 3ALPHA ; selected ISO 639 codes *2("-" 3ALPHA) ; permanently reserved script = 4ALPHA ; ISO 15924 code region = 2ALPHA ; ISO 3166-1 code / 3DIGIT ; UN M.49 code variant = 5*8alphanum ; registered variants / (DIGIT 3alphanum) extension = singleton 1*("-" (2*8alphanum)) ; Single alphanumerics ; "x" reserved for private use singleton = DIGIT ; 0 - 9 / %x41-57 ; A - W / %x59-5A ; Y - Z / %x61-77 ; a - w / %x79-7A ; y - z it sounds right to still allow Irregular i-xxx IANA and user codes too The parser below doesn't try to cope with extension or privateuse that could be added but that's not interoperable anyway</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>lang</tt></i>:</span></td>
+<td>pointer to the string value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if correct 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_BLANK">Macro </a>IS_BLANK</h3><pre class="programlisting">#define <a href="#IS_BLANK">IS_BLANK</a>(c);
-</pre><p>Macro to check the following production in the XML spec: [3] S ::= (#x20 | #x9 | #xD | #xA)+</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an UNICODE value (int)</td></tr></tbody></table></div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyChar"></a>xmlCopyChar ()</h3>
+<pre class="programlisting">int        xmlCopyChar                     (int len, <br>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * out, <br>                                        int val)<br>
+</pre>
+<p>append the char value in the array</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>Ignored, compatibility</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the char value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> written</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyCharMultiByte"></a>xmlCopyCharMultiByte ()</h3>
+<pre class="programlisting">int        xmlCopyCharMultiByte            (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * out, <br>                                        int val)<br>
+</pre>
+<p>append the char value in the array</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the char value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> written</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCreateEntityParserCtxt"></a>xmlCreateEntityParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>  xmlCreateEntityParserCtxt       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br>                                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br>                                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base)<br>
+</pre>
+<p>Create a parser context for an external entity Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the entity URL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ID</tt></i>:</span></td>
+<td>the entity PUBLIC ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>base</tt></i>:</span></td>
+<td>a possible base for the target URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser context or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCreateFileParserCtxt"></a>xmlCreateFileParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>  xmlCreateFileParserCtxt (const char * filename)<br>
+</pre>
+<p>Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser context or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCreateMemoryParserCtxt"></a>xmlCreateMemoryParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>  xmlCreateMemoryParserCtxt       (const char * buffer, <br>                                                       int size)<br>
+</pre>
+<p>Create a parser context for an XML in-memory document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser context or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCreateURLParserCtxt"></a>xmlCreateURLParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>  xmlCreateURLParserCtxt  (const char * filename, <br>                                             int options)<br>
+</pre>
+<p>Create a parser context for a file or URL content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time and for file accesses</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename or URL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser context or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCurrentChar"></a>xmlCurrentChar ()</h3>
+<pre class="programlisting">int        xmlCurrentChar                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    int * len)<br>
+</pre>
+<p>The current char value, if using UTF-8 this may actually span multiple bytes in the input buffer. Implement the end of line normalization: 2.11 End-of-Line Handling Wherever an external parsed entity or the literal entity value of an internal parsed entity contains either the literal two-character sequence "#xD#xA" or a standalone literal #xD, an XML processor must pass to the application the single character #xA. This behavior can conveniently be produced by normalizing all line breaks to #xA on input, before parsing.)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>pointer to the length of the char read</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the current char value and its length</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDecodeEntities"></a>xmlDecodeEntities ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlDecodeEntities       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    int len, <br>                                   int what, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3)<br>
+</pre>
+<p>This function is deprecated, we now always process entities content through <a href="libxml2-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a> TODO: remove it in next major release. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the len to decode (in bytes !), -1 for no size limit</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>what</tt></i>:</span></td>
+<td>combination of <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a> and <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end</tt></i>:</span></td>
+<td>an end marker xmlChar, 0 if none</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end2</tt></i>:</span></td>
+<td>an end marker xmlChar, 0 if none</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end3</tt></i>:</span></td>
+<td>an end marker xmlChar, 0 if none</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>A newly allocated string with the substitution done. The caller must deallocate it !</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlErrMemory"></a>xmlErrMemory ()</h3>
+<pre class="programlisting">void       xmlErrMemory                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const char * extra)<br>
+</pre>
+<p>Handle a redefinition of <a href="libxml2-SAX.html#attribute">attribute</a> error</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>extra</tt></i>:</span></td>
+<td>extra information</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeInputStream"></a>xmlFreeInputStream ()</h3>
+<pre class="programlisting">void       xmlFreeInputStream              (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input)<br>
+</pre>
+<p>Free up an input stream.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>
+</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHandleEntity"></a>xmlHandleEntity ()</h3>
+<pre class="programlisting">void       xmlHandleEntity                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> entity)<br>
+</pre>
+<p>Default handling of defined entities, when should we define a new input stream ? When do we just handle that as a set of chars ? OBSOLETE: to be removed at some point.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>entity</tt></i>:</span></td>
+<td>an XML entity pointer.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsLetter"></a>xmlIsLetter ()</h3>
+<pre class="programlisting">int        xmlIsLetter                     (int c)<br>
+</pre>
+<p>Check whether the character is allowed by the production [84] Letter ::= BaseChar | Ideographic</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>c</tt></i>:</span></td>
+<td>an unicode character (int)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if not, non-zero otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNamespaceParseNCName"></a>xmlNamespaceParseNCName ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlNamespaceParseNCName (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML namespace name. TODO: this seems not in use anymore, the namespace handling is done on top of the SAX interfaces, i.e. not on raw input. [NS 3] NCName ::= (Letter | '_') (NCNameChar)* [NS 4] NCNameChar ::= Letter | Digit | '.' | '-' | '_' | CombiningChar | Extender</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the namespace name or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNamespaceParseNSDef"></a>xmlNamespaceParseNSDef ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlNamespaceParseNSDef  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse a namespace prefix declaration TODO: this seems not in use anymore, the namespace handling is done on top of the SAX interfaces, i.e. not on raw input. [NS 1] NSDef ::= PrefixDef Eq SystemLiteral [NS 2] PrefixDef ::= 'xmlns' (':' NCName)?</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the namespace name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNamespaceParseQName"></a>xmlNamespaceParseQName ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlNamespaceParseQName  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix)<br>
+</pre>
+<p>TODO: this seems not in use anymore, the namespace handling is done on top of the SAX interfaces, i.e. not on raw input. parse an XML qualified name [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> **</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the local part, and prefix is updated to get the Prefix if any.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewEntityInputStream"></a>xmlNewEntityInputStream ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlNewEntityInputStream (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> entity)<br>
+</pre>
+<p>Create a new input stream based on an <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>entity</tt></i>:</span></td>
+<td>an Entity pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new input stream or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewInputFromFile"></a>xmlNewInputFromFile ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlNewInputFromFile     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            const char * filename)<br>
+</pre>
+<p>Create a new input stream based on a file or an URL.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename to use as entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new input stream or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewInputStream"></a>xmlNewInputStream ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlNewInputStream       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Create a new input stream structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new input stream or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewStringInputStream"></a>xmlNewStringInputStream ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlNewStringInputStream (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buffer)<br>
+</pre>
+<p>Create a new input stream based on a memory buffer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>an memory buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new input stream</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNextChar"></a>xmlNextChar ()</h3>
+<pre class="programlisting">void       xmlNextChar                     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Skip to the next char input char.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseAttValue"></a>xmlParseAttValue ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseAttValue        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse a value for an <a href="libxml2-SAX.html#attribute">attribute</a> Note: the parser won't do substitution of entities here, this will be handled later in <a href="libxml2-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a> [10] AttValue ::= '"' ([^&lt;&amp;"] | Reference)* '"' | "'" ([^&lt;&amp;'] | Reference)* "'" 3.3.3 Attribute-Value Normalization: Before the value of an <a href="libxml2-SAX.html#attribute">attribute</a> is passed to the application or checked for validity, the XML processor must normalize it as follows: - a character <a href="libxml2-SAX.html#reference">reference</a> is processed by appending the referenced character to the <a href="libxml2-SAX.html#attribute">attribute</a> value - an entity <a href="libxml2-SAX.html#reference">reference</a> is processed by recursively processing the replacement text of the entity - a whitespace character (#x20, #xD, #xA, #x9) is processed by appending #x20 to the normalized value, except that only a single #x20 is appended for a "#xD#xA" sequence that is part of an external parsed entity or the literal entity value of an internal parsed entity - other <a href="libxml2-SAX.html#characters">characters</a> are processed by appending them to the normalized value If the declared value is not CDATA, then the XML processor must further process the normalized <a href="libxml2-SAX.html#attribute">attribute</a> value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) <a href="libxml2-SAX.html#characters">characters</a> by a single space (#x20) character. All attributes for which no declaration has been read should be treated by a non-validating parser as if declared CDATA.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the AttValue parsed or NULL. The value has to be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseAttribute"></a>xmlParseAttribute ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParseAttribute       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** value)<br>
+</pre>
+<p>parse an <a href="libxml2-SAX.html#attribute">attribute</a> [41] Attribute ::= Name Eq AttValue [ WFC: No External Entity References ] Attribute values cannot contain direct or indirect entity references to external entities. [ WFC: No &lt; in Attribute Values ] The replacement text of any entity referred to directly or indirectly in an <a href="libxml2-SAX.html#attribute">attribute</a> value (other than "&amp;lt;") must not contain a &lt;. [ VC: Attribute Value Type ] The <a href="libxml2-SAX.html#attribute">attribute</a> must have been declared; the value must be of the type declared for it. [25] Eq ::= S? '=' S? With namespace: [NS 11] Attribute ::= QName Eq AttValue Also the case QName == xmlns:??? is handled independently as a namespace definition.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** used to store the value of the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name, and the value in *value.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseAttributeListDecl"></a>xmlParseAttributeListDecl ()</h3>
+<pre class="programlisting">void       xmlParseAttributeListDecl       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>: parse the Attribute list def for an element [52] AttlistDecl ::= '&lt;!ATTLIST' S Name AttDef* S? '&gt;' [53] AttDef ::= S Name S AttType S DefaultDecl</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseAttributeType"></a>xmlParseAttributeType ()</h3>
+<pre class="programlisting">int        xmlParseAttributeType           (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> * tree)<br>
+</pre>
+<p>parse the Attribute list def for an element [54] AttType ::= StringType | TokenizedType | EnumeratedType [55] StringType ::= 'CDATA' [56] TokenizedType ::= 'ID' | 'IDREF' | 'IDREFS' | 'ENTITY' | 'ENTITIES' | 'NMTOKEN' | 'NMTOKENS' Validity constraints for <a href="libxml2-SAX.html#attribute">attribute</a> values syntax are checked in xmlValidateAttributeValue() [ VC: ID ] Values of type ID must match the Name production. A name must not appear more than once in an XML document as a value of this type; i.e., ID values must uniquely identify the elements which bear them. [ VC: One ID per Element Type ] No element type may have more than one ID <a href="libxml2-SAX.html#attribute">attribute</a> specified. [ VC: ID Attribute Default ] An ID <a href="libxml2-SAX.html#attribute">attribute</a> must have a declared default of #IMPLIED or #REQUIRED. [ VC: IDREF ] Values of type IDREF must match the Name production, and values of type IDREFS must match Names; each IDREF Name must match the value of an ID <a href="libxml2-SAX.html#attribute">attribute</a> on some element in the XML document; i.e. IDREF values must match the value of some ID attribute. [ VC: Entity Name ] Values of type ENTITY must match the Name production, values of type ENTITIES must match Names; each Entity Name must match the name of an unparsed entity declared in the DTD. [ VC: Name Token ] Values of type NMTOKEN must match the Nmtoken production; values of type NMTOKENS must match Nmtokens.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>the enumeration tree built while parsing</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> type</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseCDSect"></a>xmlParseCDSect ()</h3>
+<pre class="programlisting">void       xmlParseCDSect                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Parse escaped pure raw content. [18] CDSect ::= CDStart CData CDEnd [19] CDStart ::= '&lt;![CDATA[' [20] Data ::= (Char* - (Char* ']]&gt;' Char*)) [21] CDEnd ::= ']]&gt;'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseCharData"></a>xmlParseCharData ()</h3>
+<pre class="programlisting">void       xmlParseCharData                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    int cdata)<br>
+</pre>
+<p>parse a CharData section. if we are within a CDATA section ']]&gt;' marks an end of section. The right angle bracket (&gt;) may be represented using the string "&amp;gt;", and must, for compatibility, be escaped using "&amp;gt;" or a character <a href="libxml2-SAX.html#reference">reference</a> when it appears in the string "]]&gt;" in content, when that string is not marking the end of a CDATA section. [14] CharData ::= [^&lt;&amp;]* - ([^&lt;&amp;]* ']]&gt;' [^&lt;&amp;]*)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cdata</tt></i>:</span></td>
+<td>int indicating whether we are within a CDATA section</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseCharRef"></a>xmlParseCharRef ()</h3>
+<pre class="programlisting">int        xmlParseCharRef                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse Reference declarations [66] CharRef ::= '&amp;#' [0-9]+ ';' | '&amp;#x' [0-9a-fA-F]+ ';' [ WFC: Legal Character ] Characters referred to using character references must match the production for Char.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the value parsed (as an int), 0 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseComment"></a>xmlParseComment ()</h3>
+<pre class="programlisting">void       xmlParseComment                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Skip an XML (SGML) <a href="libxml2-SAX.html#comment">comment</a> &lt;!-- .... --&gt; The spec says that "For compatibility, the string "--" (double-hyphen) must not occur within comments. " [15] Comment ::= '&lt;!--' ((Char - '-') | ('-' (Char - '-')))* '--&gt;'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseContent"></a>xmlParseContent ()</h3>
+<pre class="programlisting">void       xmlParseContent                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Parse a content sequence. Stops at EOF or '&lt;/'. [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseDefaultDecl"></a>xmlParseDefaultDecl ()</h3>
+<pre class="programlisting">int        xmlParseDefaultDecl             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** value)<br>
+</pre>
+<p>Parse an <a href="libxml2-SAX.html#attribute">attribute</a> default declaration [60] DefaultDecl ::= '#REQUIRED' | '#IMPLIED' | (('#FIXED' S)? AttValue) [ VC: Required Attribute ] if the default declaration is the keyword #REQUIRED, then the <a href="libxml2-SAX.html#attribute">attribute</a> must be specified for all elements of the type in the attribute-list declaration. [ VC: Attribute Default Legal ] The declared default value must meet the lexical constraints of the declared <a href="libxml2-SAX.html#attribute">attribute</a> type c.f. xmlValidateAttributeDecl() [ VC: Fixed Attribute Default ] if an <a href="libxml2-SAX.html#attribute">attribute</a> has a default value declared with the #FIXED keyword, instances of that <a href="libxml2-SAX.html#attribute">attribute</a> must match the default value. [ WFC: No &lt; in Attribute Values ] handled in xmlParseAttValue()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>Receive a possible fixed default value for the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>XML_ATTRIBUTE_NONE, XML_ATTRIBUTE_REQUIRED, <a href="libxml2-tree.html#XML_ATTRIBUTE_IMPLIED">XML_ATTRIBUTE_IMPLIED</a> or XML_ATTRIBUTE_FIXED.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseDocTypeDecl"></a>xmlParseDocTypeDecl ()</h3>
+<pre class="programlisting">void       xmlParseDocTypeDecl             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse a DOCTYPE declaration [28] doctypedecl ::= '&lt;!DOCTYPE' S Name (S ExternalID)? S? ('[' (markupdecl | PEReference | S)* ']' S?)? '&gt;' [ VC: Root Element Type ] The Name in the document type declaration must match the element type of the root element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseElement"></a>xmlParseElement ()</h3>
+<pre class="programlisting">void       xmlParseElement                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML element [39] element ::= EmptyElemTag | STag content ETag [ WFC: Element Type Match ] The Name in an element's end-tag must match the element type in the start-tag.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseElementChildrenContentDecl"></a>xmlParseElementChildrenContentDecl ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>  xmlParseElementChildrenContentDecl      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                                    int inputchk)<br>
+</pre>
+<p>parse the declaration for a Mixed Element content The leading '(' and spaces have been skipped in <a href="libxml2-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a> [47] children ::= (choice | seq) ('?' | '*' | '+')? [48] cp ::= (Name | choice | seq) ('?' | '*' | '+')? [49] choice ::= '(' S? cp ( S? '|' S? cp )* S? ')' [50] seq ::= '(' S? cp ( S? ',' S? cp )* S? ')' [ VC: Proper Group/PE Nesting ] applies to [49] and [50] TODO Parameter-entity replacement text must be properly nested with parenthesized groups. That is to say, if either of the opening or closing parentheses in a choice, seq, or Mixed construct is contained in the replacement text for a parameter entity, both must be contained in the same replacement text. For interoperability, if a parameter-entity <a href="libxml2-SAX.html#reference">reference</a> appears in a choice, seq, or Mixed construct, its replacement text should not be empty, and neither the first nor last non-blank character of the replacement text should be a connector (| or ,).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inputchk</tt></i>:</span></td>
+<td>the input used for the current entity, needed for boundary checks</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the tree of <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> describing the element hierarchy.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseElementContentDecl"></a>xmlParseElementContentDecl ()</h3>
+<pre class="programlisting">int        xmlParseElementContentDecl      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> * result)<br>
+</pre>
+<p>parse the declaration for an Element content either Mixed or Children, the cases EMPTY and ANY are handled directly in <a href="libxml2-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a> [46] contentspec ::= 'EMPTY' | 'ANY' | Mixed | children</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the element being defined.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>result</tt></i>:</span></td>
+<td>the Element Content pointer will be stored here if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the type of element content XML_ELEMENT_TYPE_xxx</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseElementDecl"></a>xmlParseElementDecl ()</h3>
+<pre class="programlisting">int        xmlParseElementDecl             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an Element declaration. [45] elementdecl ::= '&lt;!ELEMENT' S Name S contentspec S? '&gt;' [ VC: Unique Element Type Declaration ] No element type may be declared more than once</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the type of the element, or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseElementMixedContentDecl"></a>xmlParseElementMixedContentDecl ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>  xmlParseElementMixedContentDecl (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                                    int inputchk)<br>
+</pre>
+<p>parse the declaration for a Mixed Element content The leading '(' and spaces have been skipped in <a href="libxml2-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a> [51] Mixed ::= '(' S? '#PCDATA' (S? '|' S? Name)* S? ')*' | '(' S? '#PCDATA' S? ')' [ VC: Proper Group/PE Nesting ] applies to [51] too (see [49]) [ VC: No Duplicate Types ] The same name must not appear more than once in a single mixed-content declaration.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inputchk</tt></i>:</span></td>
+<td>the input used for the current entity, needed for boundary checks</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the list of the <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> describing the element choices</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseEncName"></a>xmlParseEncName ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseEncName         (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse the XML encoding name [81] EncName ::= [A-Za-z] ([A-Za-z0-9._] | '-')*</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the encoding name value or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseEncodingDecl"></a>xmlParseEncodingDecl ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParseEncodingDecl    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse the XML encoding declaration [80] EncodingDecl ::= S 'encoding' Eq ('"' EncName '"' | "'" EncName "'") this setups the conversion filters.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the encoding value or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseEndTag"></a>xmlParseEndTag ()</h3>
+<pre class="programlisting">void       xmlParseEndTag                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an end of tag [42] ETag ::= '&lt;/' Name S? '&gt;' With namespace [NS 9] ETag ::= '&lt;/' QName S? '&gt;'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseEntityDecl"></a>xmlParseEntityDecl ()</h3>
+<pre class="programlisting">void       xmlParseEntityDecl              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse &lt;!ENTITY declarations [70] EntityDecl ::= GEDecl | PEDecl [71] GEDecl ::= '&lt;!ENTITY' S Name S EntityDef S? '&gt;' [72] PEDecl ::= '&lt;!ENTITY' S '%' S Name S PEDef S? '&gt;' [73] EntityDef ::= EntityValue | (ExternalID NDataDecl?) [74] PEDef ::= EntityValue | ExternalID [76] NDataDecl ::= S 'NDATA' S Name [ VC: Notation Declared ] The Name must match the declared name of a notation.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseEntityRef"></a>xmlParseEntityRef ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>  xmlParseEntityRef       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse ENTITY references declarations [68] EntityRef ::= '&amp;' Name ';' [ WFC: Entity Declared ] In a document without any DTD, a document with only an internal DTD subset which contains no parameter entity references, or a document with "standalone='yes'", the Name given in the entity <a href="libxml2-SAX.html#reference">reference</a> must match that in an entity declaration, except that well-formed documents need not declare any of the following entities: amp, lt, gt, apos, quot. The declaration of a parameter entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it. Similarly, the declaration of a general entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it which appears in a default value in an attribute-list declaration. Note that if entities are declared in the external subset or in external parameter entities, a non-validating processor is not obligated to read and process their declarations; for such documents, the rule that an entity must be declared is a well-formedness constraint only if standalone='yes'. [ WFC: Parsed Entity ] An entity <a href="libxml2-SAX.html#reference">reference</a> must not contain the name of an unparsed entity</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found, or NULL otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseEntityValue"></a>xmlParseEntityValue ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseEntityValue     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** orig)<br>
+</pre>
+<p>parse a value for ENTITY declarations [9] EntityValue ::= '"' ([^%&amp;"] | PEReference | Reference)* '"' | "'" ([^%&amp;'] | PEReference | Reference)* "'"</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>orig</tt></i>:</span></td>
+<td>if non-NULL store a copy of the original entity value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the EntityValue parsed with <a href="libxml2-SAX.html#reference">reference</a> substituted or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseEnumeratedType"></a>xmlParseEnumeratedType ()</h3>
+<pre class="programlisting">int        xmlParseEnumeratedType          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> * tree)<br>
+</pre>
+<p>parse an Enumerated <a href="libxml2-SAX.html#attribute">attribute</a> type. [57] EnumeratedType ::= NotationType | Enumeration [58] NotationType ::= 'NOTATION' S '(' S? Name (S? '|' S? Name)* S? ')'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>the enumeration tree built while parsing</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>
+<a href="libxml2-tree.html#XML_ATTRIBUTE_ENUMERATION">XML_ATTRIBUTE_ENUMERATION</a> or <a href="libxml2-tree.html#XML_ATTRIBUTE_NOTATION">XML_ATTRIBUTE_NOTATION</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseEnumerationType"></a>xmlParseEnumerationType ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>        xmlParseEnumerationType (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an Enumeration <a href="libxml2-SAX.html#attribute">attribute</a> type. [59] Enumeration ::= '(' S? Nmtoken (S? '|' S? Nmtoken)* S? ')' [ VC: Enumeration ] Values of this type must match one of the Nmtoken tokens in the declaration</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the enumeration <a href="libxml2-SAX.html#attribute">attribute</a> tree built while parsing</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseExternalID"></a>xmlParseExternalID ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseExternalID      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** publicID, <br>                                  int strict)<br>
+</pre>
+<p>Parse an External ID or a Public ID NOTE: Productions [75] and [83] interact badly since [75] can generate 'PUBLIC' S PubidLiteral S SystemLiteral [75] ExternalID ::= 'SYSTEM' S SystemLiteral | 'PUBLIC' S PubidLiteral S SystemLiteral [83] PublicID ::= 'PUBLIC' S PubidLiteral</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicID</tt></i>:</span></td>
+<td>a xmlChar** receiving PubidLiteral</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>strict</tt></i>:</span></td>
+<td>indicate whether we should restrict parsing to only production [75], see NOTE below</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the function returns SystemLiteral and in the second case publicID receives PubidLiteral, is strict is off it is possible to return NULL and have publicID set.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseExternalSubset"></a>xmlParseExternalSubset ()</h3>
+<pre class="programlisting">void       xmlParseExternalSubset          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>parse Markup declarations from an external subset [30] extSubset ::= textDecl? extSubsetDecl [31] extSubsetDecl ::= (markupdecl | conditionalSect | PEReference | S) *</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the external identifier</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the system identifier (or URL)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseMarkupDecl"></a>xmlParseMarkupDecl ()</h3>
+<pre class="programlisting">void       xmlParseMarkupDecl              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse Markup declarations [29] markupdecl ::= elementdecl | AttlistDecl | EntityDecl | NotationDecl | PI | Comment [ VC: Proper Declaration/PE Nesting ] Parameter-entity replacement text must be properly nested with markup declarations. That is to say, if either the first character or the last character of a markup declaration (markupdecl above) is contained in the replacement text for a parameter-entity reference, both must be contained in the same replacement text. [ WFC: PEs in Internal Subset ] In the internal DTD subset, parameter-entity references can occur only where markup declarations can occur, not within markup declarations. (This does not apply to references that occur in external parameter entities or to the external subset.)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseMisc"></a>xmlParseMisc ()</h3>
+<pre class="programlisting">void       xmlParseMisc                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML Misc* optional field. [27] Misc ::= Comment | PI | S</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseName"></a>xmlParseName ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParseName            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML name. [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)* [6] Names ::= Name (#x20 Name)*</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the Name parsed or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseNamespace"></a>xmlParseNamespace ()</h3>
+<pre class="programlisting">void       xmlParseNamespace               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>xmlParseNamespace: parse specific PI '&lt;?namespace ...' constructs. This is what the older xml-name Working Draft specified, a bunch of other stuff may still rely on it, so support is still here as if it was declared on the root of the Tree:-( TODO: remove from library To be removed at next drop of binary compatibility</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseNmtoken"></a>xmlParseNmtoken ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseNmtoken         (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML Nmtoken. [7] Nmtoken ::= (NameChar)+ [8] Nmtokens ::= Nmtoken (#x20 Nmtoken)*</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the Nmtoken parsed or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseNotationDecl"></a>xmlParseNotationDecl ()</h3>
+<pre class="programlisting">void       xmlParseNotationDecl            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse a notation declaration [82] NotationDecl ::= '&lt;!NOTATION' S Name S (ExternalID | PublicID) S? '&gt;' Hence there is actually 3 choices: 'PUBLIC' S PubidLiteral 'PUBLIC' S PubidLiteral S SystemLiteral and 'SYSTEM' S SystemLiteral See the NOTE on xmlParseExternalID().</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseNotationType"></a>xmlParseNotationType ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>        xmlParseNotationType    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an Notation <a href="libxml2-SAX.html#attribute">attribute</a> type. Note: the leading 'NOTATION' S part has already being parsed... [58] NotationType ::= 'NOTATION' S '(' S? Name (S? '|' S? Name)* S? ')' [ VC: Notation Attributes ] Values of this type must match one of the notation names included in the declaration; all notation names in the declaration must be declared.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the notation <a href="libxml2-SAX.html#attribute">attribute</a> tree built while parsing</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParsePEReference"></a>xmlParsePEReference ()</h3>
+<pre class="programlisting">void       xmlParsePEReference             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse PEReference declarations The entity content is handled directly by pushing it's content as a new input stream. [69] PEReference ::= '%' Name ';' [ WFC: No Recursion ] A parsed entity must not contain a recursive <a href="libxml2-SAX.html#reference">reference</a> to itself, either directly or indirectly. [ WFC: Entity Declared ] In a document without any DTD, a document with only an internal DTD subset which contains no parameter entity references, or a document with "standalone='yes'", ... ... The declaration of a parameter entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it... [ VC: Entity Declared ] In a document with an external subset or external parameter entities with "standalone='no'", ... ... The declaration of a parameter entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it... [ WFC: In DTD ] Parameter-entity references may only appear in the DTD. NOTE: misleading but this is handled.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParsePI"></a>xmlParsePI ()</h3>
+<pre class="programlisting">void       xmlParsePI                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML Processing Instruction. [16] PI ::= '&lt;?' PITarget (S (Char* - (Char* '?&gt;' Char*)))? '?&gt;' The processing is transferred to SAX once parsed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParsePITarget"></a>xmlParsePITarget ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParsePITarget        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse the name of a PI [17] PITarget ::= Name - (('X' | 'x') ('M' | 'm') ('L' | 'l'))</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the PITarget name or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParsePubidLiteral"></a>xmlParsePubidLiteral ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParsePubidLiteral    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML public literal [12] PubidLiteral ::= '"' PubidChar* '"' | "'" (PubidChar - "'")* "'"</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the PubidLiteral parsed or NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseQuotedString"></a>xmlParseQuotedString ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseQuotedString    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Parse and return a string between quotes or doublequotes TODO: Deprecated, to be removed at next drop of binary compatibility</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the string parser or NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseReference"></a>xmlParseReference ()</h3>
+<pre class="programlisting">void       xmlParseReference               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse and handle entity references in content, depending on the SAX interface, this may end-up in a call to character() if this is a CharRef, a predefined entity, if there is no reference() callback. or if the parser was asked to switch to that mode. [67] Reference ::= EntityRef | CharRef</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseSDDecl"></a>xmlParseSDDecl ()</h3>
+<pre class="programlisting">int        xmlParseSDDecl                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse the XML standalone declaration [32] SDDecl ::= S 'standalone' Eq (("'" ('yes' | 'no') "'") | ('"' ('yes' | 'no')'"')) [ VC: Standalone Document Declaration ] TODO The standalone document declaration must have the value "no" if any external markup declarations contain declarations of: - attributes with default values, if elements to which these attributes apply appear in the document without specifications of values for these attributes, or - entities (other than amp, lt, gt, apos, quot), if references to those entities appear in the document, or - attributes with values subject to normalization, where the <a href="libxml2-SAX.html#attribute">attribute</a> appears in the document with a value which will change as a result of normalization, or - element types with element content, if white space occurs directly within any instance of those types.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if standalone="yes" 0 if standalone="no" -2 if standalone <a href="libxml2-SAX.html#attribute">attribute</a> is missing or invalid (A standalone value of -2 means that the XML declaration was found, but no value was specified for the standalone attribute).</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseStartTag"></a>xmlParseStartTag ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParseStartTag        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse a start of tag either for rule element or EmptyElement. In both case we don't parse the tag closing chars. [40] STag ::= '&lt;' Name (S Attribute)* S? '&gt;' [ WFC: Unique Att Spec ] No <a href="libxml2-SAX.html#attribute">attribute</a> name may appear more than once in the same start-tag or empty-element tag. [44] EmptyElemTag ::= '&lt;' Name (S Attribute)* S? '/&gt;' [ WFC: Unique Att Spec ] No <a href="libxml2-SAX.html#attribute">attribute</a> name may appear more than once in the same start-tag or empty-element tag. With namespace: [NS 8] STag ::= '&lt;' QName (S Attribute)* S? '&gt;' [NS 10] EmptyElement ::= '&lt;' QName (S Attribute)* S? '/&gt;'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the element name parsed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseSystemLiteral"></a>xmlParseSystemLiteral ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseSystemLiteral   (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML Literal [11] SystemLiteral ::= ('"' [^"]* '"') | ("'" [^']* "'")</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the SystemLiteral parsed or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseTextDecl"></a>xmlParseTextDecl ()</h3>
+<pre class="programlisting">void       xmlParseTextDecl                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML declaration header for external entities [77] TextDecl ::= '&lt;?xml' VersionInfo? EncodingDecl S? '?&gt;'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseVersionInfo"></a>xmlParseVersionInfo ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseVersionInfo     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse the XML version. [24] VersionInfo ::= S 'version' Eq (' VersionNum ' | " VersionNum ") [25] Eq ::= S? '=' S?</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the version string, e.g. "1.0"</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseVersionNum"></a>xmlParseVersionNum ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseVersionNum      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse the XML version value. [26] VersionNum ::= '1.' [0-9]+ In practice allow [0-9].[0-9]+ at that level</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the string giving the XML version number, or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseXMLDecl"></a>xmlParseXMLDecl ()</h3>
+<pre class="programlisting">void       xmlParseXMLDecl                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML declaration header [23] XMLDecl ::= '&lt;?xml' VersionInfo EncodingDecl? SDDecl? S? '?&gt;'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserHandlePEReference"></a>xmlParserHandlePEReference ()</h3>
+<pre class="programlisting">void       xmlParserHandlePEReference      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>[69] PEReference ::= '%' Name ';' [ WFC: No Recursion ] A parsed entity must not contain a recursive <a href="libxml2-SAX.html#reference">reference</a> to itself, either directly or indirectly. [ WFC: Entity Declared ] In a document without any DTD, a document with only an internal DTD subset which contains no parameter entity references, or a document with "standalone='yes'", ... ... The declaration of a parameter entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it... [ VC: Entity Declared ] In a document with an external subset or external parameter entities with "standalone='no'", ... ... The declaration of a parameter entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it... [ WFC: In DTD ] Parameter-entity references may only appear in the DTD. NOTE: misleading but this is handled. A PEReference may have been detected in the current input stream the handling is done accordingly to http://www.w3.org/TR/REC-xml#entproc i.e. - Included in literal in entity values - Included as Parameter Entity <a href="libxml2-SAX.html#reference">reference</a> within DTDs</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserHandleReference"></a>xmlParserHandleReference ()</h3>
+<pre class="programlisting">void       xmlParserHandleReference        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>TODO: Remove, now deprecated ... the test is done directly in the content parsing routines. [67] Reference ::= EntityRef | CharRef [68] EntityRef ::= '&amp;' Name ';' [ WFC: Entity Declared ] the Name given in the entity <a href="libxml2-SAX.html#reference">reference</a> must match that in an entity declaration, except that well-formed documents need not declare any of the following entities: amp, lt, gt, apos, quot. [ WFC: Parsed Entity ] An entity <a href="libxml2-SAX.html#reference">reference</a> must not contain the name of an unparsed entity [66] CharRef ::= '&amp;#' [0-9]+ ';' | '&amp;#x' [0-9a-fA-F]+ ';' A PEReference may have been detected in the current input stream the handling is done accordingly to http://www.w3.org/TR/REC-xml#entproc</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputShrink"></a>xmlParserInputShrink ()</h3>
+<pre class="programlisting">void       xmlParserInputShrink            (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in)<br>
+</pre>
+<p>This function removes used input for the parser.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>an XML parser input</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPopInput"></a>xmlPopInput ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a>       xmlPopInput                     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>xmlPopInput: the current input pointed by ctxt-&gt;input came to an end pop it and return the next char.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the current <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> in the parser context</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPushInput"></a>xmlPushInput ()</h3>
+<pre class="programlisting">int        xmlPushInput                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input)<br>
+</pre>
+<p>xmlPushInput: switch to a new input stream which is stacked on top of the previous one(s).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>an XML parser input fragment (entity, XML fragment ...).</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error or the index in the input stack</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlScanName"></a>xmlScanName ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlScanName             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Trickery: parse an XML name but without consuming the input flow Needed for rollback cases. Used only when parsing entities references. TODO: seems deprecated now, only used in the default part of <a href="libxml2-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a> [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)* [6] Names ::= Name (S Name)*</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the Name parsed or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetEntityReferenceFunc"></a>xmlSetEntityReferenceFunc ()</h3>
+<pre class="programlisting">void       xmlSetEntityReferenceFunc       (<a href="libxml2-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a> func)<br>
+</pre>
+<p>Set the function to call call back when a xml <a href="libxml2-SAX.html#reference">reference</a> has been made</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>func</tt></i>:</span></td>
+<td>A valid function</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSkipBlankChars"></a>xmlSkipBlankChars ()</h3>
+<pre class="programlisting">int        xmlSkipBlankChars               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>skip all blanks character found at that point in the input streams. It pops up finished entities in the process if allowable at that point.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of space chars skipped</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSplitQName"></a>xmlSplitQName ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlSplitQName           (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix)<br>
+</pre>
+<p>parse an UTF8 encoded XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> **</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the local part, and prefix is updated to get the Prefix if any.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStringCurrentChar"></a>xmlStringCurrentChar ()</h3>
+<pre class="programlisting">int        xmlStringCurrentChar            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  int * len)<br>
+</pre>
+<p>The current char value, if using UTF-8 this may actually span multiple bytes in the input buffer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>pointer to the beginning of the char</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>pointer to the length of the char read</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the current char value and its length</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStringDecodeEntities"></a>xmlStringDecodeEntities ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlStringDecodeEntities (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  int what, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3)<br>
+</pre>
+<p>Takes a entity string content and process to do the adequate substitutions. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the input string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>what</tt></i>:</span></td>
+<td>combination of <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a> and <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end</tt></i>:</span></td>
+<td>an end marker xmlChar, 0 if none</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end2</tt></i>:</span></td>
+<td>an end marker xmlChar, 0 if none</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end3</tt></i>:</span></td>
+<td>an end marker xmlChar, 0 if none</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>A newly allocated string with the substitution done. The caller must deallocate it !</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStringLenDecodeEntities"></a>xmlStringLenDecodeEntities ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlStringLenDecodeEntities      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                          int len, <br>                                           int what, <br>                                          <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br>                                          <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br>                                                 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3)<br>
+</pre>
+<p>Takes a entity string content and process to do the adequate substitutions. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the input string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the string length</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>what</tt></i>:</span></td>
+<td>combination of <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a> and <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end</tt></i>:</span></td>
+<td>an end marker xmlChar, 0 if none</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end2</tt></i>:</span></td>
+<td>an end marker xmlChar, 0 if none</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end3</tt></i>:</span></td>
+<td>an end marker xmlChar, 0 if none</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>A newly allocated string with the substitution done. The caller must deallocate it !</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSwitchEncoding"></a>xmlSwitchEncoding ()</h3>
+<pre class="programlisting">int        xmlSwitchEncoding               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>change the input functions when discovering the character encoding of a given entity.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the encoding value (number)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSwitchInputEncoding"></a>xmlSwitchInputEncoding ()</h3>
+<pre class="programlisting">int        xmlSwitchInputEncoding          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input, <br>                                         <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler)<br>
+</pre>
+<p>DEPRECATED: Use <a href="libxml2-parserInternals.html#xmlSwitchToEncoding">xmlSwitchToEncoding</a> change the input functions when discovering the character encoding of a given entity.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>the input stream</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td>the encoding handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSwitchToEncoding"></a>xmlSwitchToEncoding ()</h3>
+<pre class="programlisting">int        xmlSwitchToEncoding             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler)<br>
+</pre>
+<p>change the input functions when discovering the character encoding of a given entity.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td>the encoding handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_BLANK_CH">Macro </a>IS_BLANK_CH</h3><pre class="programlisting">#define <a href="#IS_BLANK_CH">IS_BLANK_CH</a>(c);
-</pre><p>Behaviour same as <a href="libxml2-parserInternals.html#IS_BLANK">IS_BLANK</a></p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value (normally unsigned char)</td></tr></tbody></table></div>
+<hr>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_BYTE_CHAR">Macro </a>IS_BYTE_CHAR</h3><pre class="programlisting">#define <a href="#IS_BYTE_CHAR">IS_BYTE_CHAR</a>(c);
-</pre><p>Macro to check the following production in the XML spec: [2] Char ::= #x9 | #xA | #xD | [#x20...] any byte character in the accepted range</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an byte value (int)</td></tr></tbody></table></div>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_CHAR">Macro </a>IS_CHAR</h3><pre class="programlisting">#define <a href="#IS_CHAR">IS_CHAR</a>(c);
-</pre><p>Macro to check the following production in the XML spec: [2] Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF] any Unicode character, excluding the surrogate blocks, FFFE, and FFFF.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an UNICODE value (int)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_CHAR_CH">Macro </a>IS_CHAR_CH</h3><pre class="programlisting">#define <a href="#IS_CHAR_CH">IS_CHAR_CH</a>(c);
-</pre><p>Behaves like <a href="libxml2-parserInternals.html#IS_CHAR">IS_CHAR</a> on single-byte value</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> (usually an unsigned char)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_COMBINING">Macro </a>IS_COMBINING</h3><pre class="programlisting">#define <a href="#IS_COMBINING">IS_COMBINING</a>(c);
-</pre><p>Macro to check the following production in the XML spec: [87] CombiningChar ::= ... long list see REC ...</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an UNICODE value (int)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_COMBINING_CH">Macro </a>IS_COMBINING_CH</h3><pre class="programlisting">#define <a href="#IS_COMBINING_CH">IS_COMBINING_CH</a>(c);
-</pre><p>Always false (all combining chars &gt; 0xff)</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> (usually an unsigned char)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_DIGIT">Macro </a>IS_DIGIT</h3><pre class="programlisting">#define <a href="#IS_DIGIT">IS_DIGIT</a>(c);
-</pre><p>Macro to check the following production in the XML spec: [88] Digit ::= ... long list see REC ...</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an UNICODE value (int)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_DIGIT_CH">Macro </a>IS_DIGIT_CH</h3><pre class="programlisting">#define <a href="#IS_DIGIT_CH">IS_DIGIT_CH</a>(c);
-</pre><p>Behaves like <a href="libxml2-parserInternals.html#IS_DIGIT">IS_DIGIT</a> but with a single byte argument</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value (usually an unsigned char)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_EXTENDER">Macro </a>IS_EXTENDER</h3><pre class="programlisting">#define <a href="#IS_EXTENDER">IS_EXTENDER</a>(c);
-</pre><p>Macro to check the following production in the XML spec: [89] Extender ::= #x00B7 | #x02D0 | #x02D1 | #x0387 | #x0640 | #x0E46 | #x0EC6 | #x3005 | [#x3031-#x3035] | [#x309D-#x309E] | [#x30FC-#x30FE]</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an UNICODE value (int)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_EXTENDER_CH">Macro </a>IS_EXTENDER_CH</h3><pre class="programlisting">#define <a href="#IS_EXTENDER_CH">IS_EXTENDER_CH</a>(c);
-</pre><p>Behaves like <a href="libxml2-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a> but with a single-byte argument</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value (usually an unsigned char)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_IDEOGRAPHIC">Macro </a>IS_IDEOGRAPHIC</h3><pre class="programlisting">#define <a href="#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a>(c);
-</pre><p>Macro to check the following production in the XML spec: [86] Ideographic ::= [#x4E00-#x9FA5] | #x3007 | [#x3021-#x3029]</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an UNICODE value (int)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_LETTER">Macro </a>IS_LETTER</h3><pre class="programlisting">#define <a href="#IS_LETTER">IS_LETTER</a>(c);
-</pre><p>Macro to check the following production in the XML spec: [84] Letter ::= BaseChar | Ideographic</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an UNICODE value (int)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_LETTER_CH">Macro </a>IS_LETTER_CH</h3><pre class="programlisting">#define <a href="#IS_LETTER_CH">IS_LETTER_CH</a>(c);
-</pre><p>Macro behaves like IS_LETTER, but only check base chars</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value (normally unsigned char)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_PUBIDCHAR">Macro </a>IS_PUBIDCHAR</h3><pre class="programlisting">#define <a href="#IS_PUBIDCHAR">IS_PUBIDCHAR</a>(c);
-</pre><p>Macro to check the following production in the XML spec: [13] PubidChar ::= #x20 | #xD | #xA | [a-zA-Z0-9] | [-'()+,./:=?;!*#@$_%]</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an UNICODE value (int)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="IS_PUBIDCHAR_CH">Macro </a>IS_PUBIDCHAR_CH</h3><pre class="programlisting">#define <a href="#IS_PUBIDCHAR_CH">IS_PUBIDCHAR_CH</a>(c);
-</pre><p>Same as <a href="libxml2-parserInternals.html#IS_PUBIDCHAR">IS_PUBIDCHAR</a> but for single-byte value</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> value (normally unsigned char)</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="MOVETO_ENDTAG">Macro </a>MOVETO_ENDTAG</h3><pre class="programlisting">#define <a href="#MOVETO_ENDTAG">MOVETO_ENDTAG</a>(p);
-</pre><p>Skips to the next '&gt;' char.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>p</tt></i>:</span></td><td>and UTF8 string pointer</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="MOVETO_STARTTAG">Macro </a>MOVETO_STARTTAG</h3><pre class="programlisting">#define <a href="#MOVETO_STARTTAG">MOVETO_STARTTAG</a>(p);
-</pre><p>Skips to the next '&lt;' char.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>p</tt></i>:</span></td><td>and UTF8 string pointer</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="SKIP_EOL">Macro </a>SKIP_EOL</h3><pre class="programlisting">#define <a href="#SKIP_EOL">SKIP_EOL</a>(p);
-</pre><p>Skips the end of line chars.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>p</tt></i>:</span></td><td>and UTF8 string pointer</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_MAX_DICTIONARY_LIMIT">Macro </a>XML_MAX_DICTIONARY_LIMIT</h3><pre class="programlisting">#define <a href="#XML_MAX_DICTIONARY_LIMIT">XML_MAX_DICTIONARY_LIMIT</a>;
-</pre><p>Maximum size allowed by the parser for a dictionary by default This is not a limitation of the parser but a safety boundary feature, use <a href="libxml2-parser.html#XML_PARSE_HUGE">XML_PARSE_HUGE</a> option to override it. Introduced in 2.9.0</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_MAX_LOOKUP_LIMIT">Macro </a>XML_MAX_LOOKUP_LIMIT</h3><pre class="programlisting">#define <a href="#XML_MAX_LOOKUP_LIMIT">XML_MAX_LOOKUP_LIMIT</a>;
-</pre><p>Maximum size allowed by the parser for ahead lookup This is an upper boundary enforced by the parser to avoid bad behaviour on "unfriendly' content Introduced in 2.9.0</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_MAX_NAMELEN">Macro </a>XML_MAX_NAMELEN</h3><pre class="programlisting">#define <a href="#XML_MAX_NAMELEN">XML_MAX_NAMELEN</a>;
-</pre><p>Identifiers can be longer, but this will be more costly at runtime.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_MAX_NAME_LENGTH">Macro </a>XML_MAX_NAME_LENGTH</h3><pre class="programlisting">#define <a href="#XML_MAX_NAME_LENGTH">XML_MAX_NAME_LENGTH</a>;
-</pre><p>Maximum size allowed for a markup identifier. This is not a limitation of the parser but a safety boundary feature, use <a href="libxml2-parser.html#XML_PARSE_HUGE">XML_PARSE_HUGE</a> option to override it. Note that with the use of parsing dictionaries overriding the limit may result in more runtime memory usage in face of "unfriendly' content Introduced in 2.9.0</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_MAX_TEXT_LENGTH">Macro </a>XML_MAX_TEXT_LENGTH</h3><pre class="programlisting">#define <a href="#XML_MAX_TEXT_LENGTH">XML_MAX_TEXT_LENGTH</a>;
-</pre><p>Maximum size allowed for a single text node when building a tree. This is not a limitation of the parser but a safety boundary feature, use <a href="libxml2-parser.html#XML_PARSE_HUGE">XML_PARSE_HUGE</a> option to override it. Introduced in 2.9.0</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SUBSTITUTE_BOTH">Macro </a>XML_SUBSTITUTE_BOTH</h3><pre class="programlisting">#define <a href="#XML_SUBSTITUTE_BOTH">XML_SUBSTITUTE_BOTH</a>;
-</pre><p>Both general and parameter entities need to be substituted.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SUBSTITUTE_NONE">Macro </a>XML_SUBSTITUTE_NONE</h3><pre class="programlisting">#define <a href="#XML_SUBSTITUTE_NONE">XML_SUBSTITUTE_NONE</a>;
-</pre><p>If no entities need to be substituted.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SUBSTITUTE_PEREF">Macro </a>XML_SUBSTITUTE_PEREF</h3><pre class="programlisting">#define <a href="#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a>;
-</pre><p>Whether parameter entities need to be substituted.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SUBSTITUTE_REF">Macro </a>XML_SUBSTITUTE_REF</h3><pre class="programlisting">#define <a href="#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a>;
-</pre><p>Whether general entities need to be substituted.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlEntityReferenceFunc"/>Function type xmlEntityReferenceFunc</h3><pre class="programlisting">void        xmlEntityReferenceFunc          (<a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> ent, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> firstNode, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> lastNode)<br/>
-</pre><p>Callback function used when one needs to be able to track back the provenance of a chunk of nodes inherited from an entity replacement.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ent</tt></i>:</span></td><td>the entity</td></tr><tr><td><span class="term"><i><tt>firstNode</tt></i>:</span></td><td>the fist node in the chunk</td></tr><tr><td><span class="term"><i><tt>lastNode</tt></i>:</span></td><td>the last nod in the chunk</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserMaxDepth">Variable </a>xmlParserMaxDepth</h3><pre class="programlisting">unsigned int xmlParserMaxDepth;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStringComment">Variable </a>xmlStringComment</h3><pre class="programlisting">const xmlCharxmlStringComment[] xmlStringComment;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStringText">Variable </a>xmlStringText</h3><pre class="programlisting">const xmlCharxmlStringText[] xmlStringText;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStringTextNoenc">Variable </a>xmlStringTextNoenc</h3><pre class="programlisting">const xmlCharxmlStringTextNoenc[] xmlStringTextNoenc;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlCreateFileParserCtxt"/>htmlCreateFileParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a>  htmlCreateFileParserCtxt        (const char * filename, <br/>                                                    const char * encoding)<br/>
-</pre><p>Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>a free form C string describing the HTML document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser context or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="htmlInitAutoClose"/>htmlInitAutoClose ()</h3><pre class="programlisting">void     htmlInitAutoClose               (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. This is a no-op now.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="inputPop"/>inputPop ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        inputPop        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Pops the top parser input from the input stack</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the input just removed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="inputPush"/>inputPush ()</h3><pre class="programlisting">int      inputPush                       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> value)<br/>
-</pre><p>Pushes a new parser input on top of the input stack</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the parser input</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, the index in the stack otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="namePop"/>namePop ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namePop                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Pops the top element name from the name stack</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the name just removed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="namePush"/>namePush ()</h3><pre class="programlisting">int        namePush                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Pushes a new element name on top of the name stack</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the element name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, the index in the stack otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="nodePop"/>nodePop ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        nodePop                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Pops the top element node from the node stack</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the node just removed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="nodePush"/>nodePush ()</h3><pre class="programlisting">int        nodePush                        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> value)<br/>
-</pre><p>Pushes a new element node on top of the node stack</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the element node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, the index in the stack otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCheckLanguageID"/>xmlCheckLanguageID ()</h3><pre class="programlisting">int    xmlCheckLanguageID              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * lang)<br/>
-</pre><p>Checks that the value conforms to the LanguageID production: NOTE: this is somewhat deprecated, those productions were removed from the XML Second edition. [33] LanguageID ::= Langcode ('-' Subcode)* [34] Langcode ::= ISO639Code | IanaCode | UserCode [35] ISO639Code ::= ([a-z] | [A-Z]) ([a-z] | [A-Z]) [36] IanaCode ::= ('i' | 'I') '-' ([a-z] | [A-Z])+ [37] UserCode ::= ('x' | 'X') '-' ([a-z] | [A-Z])+ [38] Subcode ::= ([a-z] | [A-Z])+ The current REC <a href="libxml2-SAX.html#reference">reference</a> the successors of RFC 1766, currently 5646 http://www.rfc-editor.org/rfc/rfc5646.txt langtag = language ["-" script] ["-" region] *("-" variant) *("-" extension) ["-" privateuse] language = 2*3ALPHA ; shortest ISO 639 code ["-" extlang] ; sometimes followed by ; extended language subtags / 4ALPHA ; or reserved for future use / 5*8ALPHA ; or registered language subtag extlang = 3ALPHA ; selected ISO 639 codes *2("-" 3ALPHA) ; permanently reserved script = 4ALPHA ; ISO 15924 code region = 2ALPHA ; ISO 3166-1 code / 3DIGIT ; UN M.49 code variant = 5*8alphanum ; registered variants / (DIGIT 3alphanum) extension = singleton 1*("-" (2*8alphanum)) ; Single alphanumerics ; "x" reserved for private use singleton = DIGIT ; 0 - 9 / %x41-57 ; A - W / %x59-5A ; Y - Z / %x61-77 ; a - w / %x79-7A ; y - z it sounds right to still allow Irregular i-xxx IANA and user codes too The parser below doesn't try to cope with extension or privateuse that could be added but that's not interoperable anyway</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>lang</tt></i>:</span></td><td>pointer to the string value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if correct 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyChar"/>xmlCopyChar ()</h3><pre class="programlisting">int  xmlCopyChar                     (int len, <br/>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * out, <br/>                                       int val)<br/>
-</pre><p>append the char value in the array</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>Ignored, compatibility</td></tr><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the char value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> written</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyCharMultiByte"/>xmlCopyCharMultiByte ()</h3><pre class="programlisting">int        xmlCopyCharMultiByte            (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * out, <br/>                                       int val)<br/>
-</pre><p>append the char value in the array</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>pointer to an array of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a></td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the char value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> written</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCreateEntityParserCtxt"/>xmlCreateEntityParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>        xmlCreateEntityParserCtxt       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URL, <br/>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID, <br/>                                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base)<br/>
-</pre><p>Create a parser context for an external entity Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the entity URL</td></tr><tr><td><span class="term"><i><tt>ID</tt></i>:</span></td><td>the entity PUBLIC ID</td></tr><tr><td><span class="term"><i><tt>base</tt></i>:</span></td><td>a possible base for the target URI</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser context or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCreateFileParserCtxt"/>xmlCreateFileParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>    xmlCreateFileParserCtxt (const char * filename)<br/>
-</pre><p>Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser context or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCreateMemoryParserCtxt"/>xmlCreateMemoryParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>        xmlCreateMemoryParserCtxt       (const char * buffer, <br/>                                                      int size)<br/>
-</pre><p>Create a parser context for an XML in-memory document.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser context or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCreateURLParserCtxt"/>xmlCreateURLParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      xmlCreateURLParserCtxt  (const char * filename, <br/>                                            int options)<br/>
-</pre><p>Create a parser context for a file or URL content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time and for file accesses</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename or URL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser context or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCurrentChar"/>xmlCurrentChar ()</h3><pre class="programlisting">int    xmlCurrentChar                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   int * len)<br/>
-</pre><p>The current char value, if using UTF-8 this may actually span multiple bytes in the input buffer. Implement the end of line normalization: 2.11 End-of-Line Handling Wherever an external parsed entity or the literal entity value of an internal parsed entity contains either the literal two-character sequence "#xD#xA" or a standalone literal #xD, an XML processor must pass to the application the single character #xA. This behavior can conveniently be produced by normalizing all line breaks to #xA on input, before parsing.)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XML parser context</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>pointer to the length of the char read</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the current char value and its length</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDecodeEntities"/>xmlDecodeEntities ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlDecodeEntities       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   int len, <br/>                                  int what, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br/>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3)<br/>
-</pre><p>This function is deprecated, we now always process entities content through <a href="libxml2-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a> TODO: remove it in next major release. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the parser context</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the len to decode (in bytes !), -1 for no size limit</td></tr><tr><td><span class="term"><i><tt>what</tt></i>:</span></td><td>combination of <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a> and <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a></td></tr><tr><td><span class="term"><i><tt>end</tt></i>:</span></td><td>an end marker xmlChar, 0 if none</td></tr><tr><td><span class="term"><i><tt>end2</tt></i>:</span></td><td>an end marker xmlChar, 0 if none</td></tr><tr><td><span class="term"><i><tt>end3</tt></i>:</span></td><td>an end marker xmlChar, 0 if none</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>A newly allocated string with the substitution done. The caller must deallocate it !</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlErrMemory"/>xmlErrMemory ()</h3><pre class="programlisting">void       xmlErrMemory                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const char * extra)<br/>
-</pre><p>Handle a redefinition of <a href="libxml2-SAX.html#attribute">attribute</a> error</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>extra</tt></i>:</span></td><td>extra information</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeInputStream"/>xmlFreeInputStream ()</h3><pre class="programlisting">void   xmlFreeInputStream              (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input)<br/>
-</pre><p>Free up an input stream.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHandleEntity"/>xmlHandleEntity ()</h3><pre class="programlisting">void xmlHandleEntity                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> entity)<br/>
-</pre><p>Default handling of defined entities, when should we define a new input stream ? When do we just handle that as a set of chars ? OBSOLETE: to be removed at some point.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>entity</tt></i>:</span></td><td>an XML entity pointer.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsLetter"/>xmlIsLetter ()</h3><pre class="programlisting">int  xmlIsLetter                     (int c)<br/>
-</pre><p>Check whether the character is allowed by the production [84] Letter ::= BaseChar | Ideographic</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>c</tt></i>:</span></td><td>an unicode character (int)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if not, non-zero otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNamespaceParseNCName"/>xmlNamespaceParseNCName ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlNamespaceParseNCName (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an XML namespace name. TODO: this seems not in use anymore, the namespace handling is done on top of the SAX interfaces, i.e. not on raw input. [NS 3] NCName ::= (Letter | '_') (NCNameChar)* [NS 4] NCNameChar ::= Letter | Digit | '.' | '-' | '_' | CombiningChar | Extender</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the namespace name or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNamespaceParseNSDef"/>xmlNamespaceParseNSDef ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlNamespaceParseNSDef  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse a namespace prefix declaration TODO: this seems not in use anymore, the namespace handling is done on top of the SAX interfaces, i.e. not on raw input. [NS 1] NSDef ::= PrefixDef Eq SystemLiteral [NS 2] PrefixDef ::= 'xmlns' (':' NCName)?</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the namespace name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNamespaceParseQName"/>xmlNamespaceParseQName ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlNamespaceParseQName  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix)<br/>
-</pre><p>TODO: this seems not in use anymore, the namespace handling is done on top of the SAX interfaces, i.e. not on raw input. parse an XML qualified name [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> **</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the local part, and prefix is updated to get the Prefix if any.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewEntityInputStream"/>xmlNewEntityInputStream ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>  xmlNewEntityInputStream (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> entity)<br/>
-</pre><p>Create a new input stream based on an <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>entity</tt></i>:</span></td><td>an Entity pointer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new input stream or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewInputFromFile"/>xmlNewInputFromFile ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>  xmlNewInputFromFile     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           const char * filename)<br/>
-</pre><p>Create a new input stream based on a file or an URL.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename to use as entity</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new input stream or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewInputStream"/>xmlNewInputStream ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>      xmlNewInputStream       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Create a new input stream structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new input stream or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewStringInputStream"/>xmlNewStringInputStream ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>  xmlNewStringInputStream (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buffer)<br/>
-</pre><p>Create a new input stream based on a memory buffer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>an memory buffer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new input stream</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNextChar"/>xmlNextChar ()</h3><pre class="programlisting">void xmlNextChar                     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Skip to the next char input char.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseAttValue"/>xmlParseAttValue ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseAttValue        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse a value for an <a href="libxml2-SAX.html#attribute">attribute</a> Note: the parser won't do substitution of entities here, this will be handled later in <a href="libxml2-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a> [10] AttValue ::= '"' ([^&lt;&amp;"] | Reference)* '"' | "'" ([^&lt;&amp;'] | Reference)* "'" 3.3.3 Attribute-Value Normalization: Before the value of an <a href="libxml2-SAX.html#attribute">attribute</a> is passed to the application or checked for validity, the XML processor must normalize it as follows: - a character <a href="libxml2-SAX.html#reference">reference</a> is processed by appending the referenced character to the <a href="libxml2-SAX.html#attribute">attribute</a> value - an entity <a href="libxml2-SAX.html#reference">reference</a> is processed by recursively processing the replacement text of the entity - a whitespace character (#x20, #xD, #xA, #x9) is processed by appending #x20 to the normalized value, except that only a single #x20 is appended for a "#xD#xA" sequence that is part of an external parsed entity or the literal entity value of an internal parsed entity - other <a href="libxml2-SAX.html#characters">characters</a> are processed by appending them to the normalized value If the declared value is not CDATA, then the XML processor must further process the normalized <a href="libxml2-SAX.html#attribute">attribute</a> value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) <a href="libxml2-SAX.html#characters">characters</a> by a single space (#x20) character. All attributes for which no declaration has been read should be treated by a non-validating parser as if declared CDATA.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the AttValue parsed or NULL. The value has to be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseAttribute"/>xmlParseAttribute ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseAttribute       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** value)<br/>
-</pre><p>parse an <a href="libxml2-SAX.html#attribute">attribute</a> [41] Attribute ::= Name Eq AttValue [ WFC: No External Entity References ] Attribute values cannot contain direct or indirect entity references to external entities. [ WFC: No &lt; in Attribute Values ] The replacement text of any entity referred to directly or indirectly in an <a href="libxml2-SAX.html#attribute">attribute</a> value (other than "&amp;lt;") must not contain a &lt;. [ VC: Attribute Value Type ] The <a href="libxml2-SAX.html#attribute">attribute</a> must have been declared; the value must be of the type declared for it. [25] Eq ::= S? '=' S? With namespace: [NS 11] Attribute ::= QName Eq AttValue Also the case QName == xmlns:??? is handled independently as a namespace definition.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** used to store the value of the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name, and the value in *value.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseAttributeListDecl"/>xmlParseAttributeListDecl ()</h3><pre class="programlisting">void     xmlParseAttributeListDecl       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>: parse the Attribute list def for an element [52] AttlistDecl ::= '&lt;!ATTLIST' S Name AttDef* S? '&gt;' [53] AttDef ::= S Name S AttType S DefaultDecl</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseAttributeType"/>xmlParseAttributeType ()</h3><pre class="programlisting">int      xmlParseAttributeType           (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> * tree)<br/>
-</pre><p>parse the Attribute list def for an element [54] AttType ::= StringType | TokenizedType | EnumeratedType [55] StringType ::= 'CDATA' [56] TokenizedType ::= 'ID' | 'IDREF' | 'IDREFS' | 'ENTITY' | 'ENTITIES' | 'NMTOKEN' | 'NMTOKENS' Validity constraints for <a href="libxml2-SAX.html#attribute">attribute</a> values syntax are checked in xmlValidateAttributeValue() [ VC: ID ] Values of type ID must match the Name production. A name must not appear more than once in an XML document as a value of this type; i.e., ID values must uniquely identify the elements which bear them. [ VC: One ID per Element Type ] No element type may have more than one ID <a href="libxml2-SAX.html#attribute">attribute</a> specified. [ VC: ID Attribute Default ] An ID <a href="libxml2-SAX.html#attribute">attribute</a> must have a declared default of #IMPLIED or #REQUIRED. [ VC: IDREF ] Values of type IDREF must match the Name production, and values of type IDREFS must match Names; each IDREF Name must match the value of an ID <a href="libxml2-SAX.html#attribute">attribute</a> on some element in the XML document; i.e. IDREF values must match the value of some ID attribute. [ VC: Entity Name ] Values of type ENTITY must match the Name production, values of type ENTITIES must match Names; each Entity Name must match the name of an unparsed entity declared in the DTD. [ VC: Name Token ] Values of type NMTOKEN must match the Nmtoken production; values of type NMTOKENS must match Nmtokens.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>the enumeration tree built while parsing</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> type</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseCDSect"/>xmlParseCDSect ()</h3><pre class="programlisting">void   xmlParseCDSect                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Parse escaped pure raw content. [18] CDSect ::= CDStart CData CDEnd [19] CDStart ::= '&lt;![CDATA[' [20] Data ::= (Char* - (Char* ']]&gt;' Char*)) [21] CDEnd ::= ']]&gt;'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseCharData"/>xmlParseCharData ()</h3><pre class="programlisting">void       xmlParseCharData                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   int cdata)<br/>
-</pre><p>parse a CharData section. if we are within a CDATA section ']]&gt;' marks an end of section. The right angle bracket (&gt;) may be represented using the string "&amp;gt;", and must, for compatibility, be escaped using "&amp;gt;" or a character <a href="libxml2-SAX.html#reference">reference</a> when it appears in the string "]]&gt;" in content, when that string is not marking the end of a CDATA section. [14] CharData ::= [^&lt;&amp;]* - ([^&lt;&amp;]* ']]&gt;' [^&lt;&amp;]*)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>cdata</tt></i>:</span></td><td>int indicating whether we are within a CDATA section</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseCharRef"/>xmlParseCharRef ()</h3><pre class="programlisting">int  xmlParseCharRef                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse Reference declarations [66] CharRef ::= '&amp;#' [0-9]+ ';' | '&amp;#x' [0-9a-fA-F]+ ';' [ WFC: Legal Character ] Characters referred to using character references must match the production for Char.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the value parsed (as an int), 0 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseComment"/>xmlParseComment ()</h3><pre class="programlisting">void xmlParseComment                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Skip an XML (SGML) <a href="libxml2-SAX.html#comment">comment</a> &lt;!-- .... --&gt; The spec says that "For compatibility, the string "--" (double-hyphen) must not occur within comments. " [15] Comment ::= '&lt;!--' ((Char - '-') | ('-' (Char - '-')))* '--&gt;'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseContent"/>xmlParseContent ()</h3><pre class="programlisting">void xmlParseContent                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Parse a content sequence. Stops at EOF or '&lt;/'. [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseDefaultDecl"/>xmlParseDefaultDecl ()</h3><pre class="programlisting">int  xmlParseDefaultDecl             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** value)<br/>
-</pre><p>Parse an <a href="libxml2-SAX.html#attribute">attribute</a> default declaration [60] DefaultDecl ::= '#REQUIRED' | '#IMPLIED' | (('#FIXED' S)? AttValue) [ VC: Required Attribute ] if the default declaration is the keyword #REQUIRED, then the <a href="libxml2-SAX.html#attribute">attribute</a> must be specified for all elements of the type in the attribute-list declaration. [ VC: Attribute Default Legal ] The declared default value must meet the lexical constraints of the declared <a href="libxml2-SAX.html#attribute">attribute</a> type c.f. xmlValidateAttributeDecl() [ VC: Fixed Attribute Default ] if an <a href="libxml2-SAX.html#attribute">attribute</a> has a default value declared with the #FIXED keyword, instances of that <a href="libxml2-SAX.html#attribute">attribute</a> must match the default value. [ WFC: No &lt; in Attribute Values ] handled in xmlParseAttValue()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>Receive a possible fixed default value for the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>XML_ATTRIBUTE_NONE, XML_ATTRIBUTE_REQUIRED, <a href="libxml2-tree.html#XML_ATTRIBUTE_IMPLIED">XML_ATTRIBUTE_IMPLIED</a> or XML_ATTRIBUTE_FIXED.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseDocTypeDecl"/>xmlParseDocTypeDecl ()</h3><pre class="programlisting">void xmlParseDocTypeDecl             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse a DOCTYPE declaration [28] doctypedecl ::= '&lt;!DOCTYPE' S Name (S ExternalID)? S? ('[' (markupdecl | PEReference | S)* ']' S?)? '&gt;' [ VC: Root Element Type ] The Name in the document type declaration must match the element type of the root element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseElement"/>xmlParseElement ()</h3><pre class="programlisting">void xmlParseElement                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an XML element [39] element ::= EmptyElemTag | STag content ETag [ WFC: Element Type Match ] The Name in an element's end-tag must match the element type in the start-tag.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseElementChildrenContentDecl"/>xmlParseElementChildrenContentDecl ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      xmlParseElementChildrenContentDecl      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                                   int inputchk)<br/>
-</pre><p>parse the declaration for a Mixed Element content The leading '(' and spaces have been skipped in <a href="libxml2-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a> [47] children ::= (choice | seq) ('?' | '*' | '+')? [48] cp ::= (Name | choice | seq) ('?' | '*' | '+')? [49] choice ::= '(' S? cp ( S? '|' S? cp )* S? ')' [50] seq ::= '(' S? cp ( S? ',' S? cp )* S? ')' [ VC: Proper Group/PE Nesting ] applies to [49] and [50] TODO Parameter-entity replacement text must be properly nested with parenthesized groups. That is to say, if either of the opening or closing parentheses in a choice, seq, or Mixed construct is contained in the replacement text for a parameter entity, both must be contained in the same replacement text. For interoperability, if a parameter-entity <a href="libxml2-SAX.html#reference">reference</a> appears in a choice, seq, or Mixed construct, its replacement text should not be empty, and neither the first nor last non-blank character of the replacement text should be a connector (| or ,).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>inputchk</tt></i>:</span></td><td>the input used for the current entity, needed for boundary checks</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the tree of <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> describing the element hierarchy.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseElementContentDecl"/>xmlParseElementContentDecl ()</h3><pre class="programlisting">int    xmlParseElementContentDecl      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> * result)<br/>
-</pre><p>parse the declaration for an Element content either Mixed or Children, the cases EMPTY and ANY are handled directly in <a href="libxml2-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a> [46] contentspec ::= 'EMPTY' | 'ANY' | Mixed | children</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the element being defined.</td></tr><tr><td><span class="term"><i><tt>result</tt></i>:</span></td><td>the Element Content pointer will be stored here if any</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the type of element content XML_ELEMENT_TYPE_xxx</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseElementDecl"/>xmlParseElementDecl ()</h3><pre class="programlisting">int  xmlParseElementDecl             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an Element declaration. [45] elementdecl ::= '&lt;!ELEMENT' S Name S contentspec S? '&gt;' [ VC: Unique Element Type Declaration ] No element type may be declared more than once</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the type of the element, or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseElementMixedContentDecl"/>xmlParseElementMixedContentDecl ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>    xmlParseElementMixedContentDecl (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                                   int inputchk)<br/>
-</pre><p>parse the declaration for a Mixed Element content The leading '(' and spaces have been skipped in <a href="libxml2-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a> [51] Mixed ::= '(' S? '#PCDATA' (S? '|' S? Name)* S? ')*' | '(' S? '#PCDATA' S? ')' [ VC: Proper Group/PE Nesting ] applies to [51] too (see [49]) [ VC: No Duplicate Types ] The same name must not appear more than once in a single mixed-content declaration.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>inputchk</tt></i>:</span></td><td>the input used for the current entity, needed for boundary checks</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the list of the <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> describing the element choices</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseEncName"/>xmlParseEncName ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParseEncName         (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse the XML encoding name [81] EncName ::= [A-Za-z] ([A-Za-z0-9._] | '-')*</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the encoding name value or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseEncodingDecl"/>xmlParseEncodingDecl ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParseEncodingDecl    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse the XML encoding declaration [80] EncodingDecl ::= S 'encoding' Eq ('"' EncName '"' | "'" EncName "'") this setups the conversion filters.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the encoding value or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseEndTag"/>xmlParseEndTag ()</h3><pre class="programlisting">void   xmlParseEndTag                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an end of tag [42] ETag ::= '&lt;/' Name S? '&gt;' With namespace [NS 9] ETag ::= '&lt;/' QName S? '&gt;'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseEntityDecl"/>xmlParseEntityDecl ()</h3><pre class="programlisting">void   xmlParseEntityDecl              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse &lt;!ENTITY declarations [70] EntityDecl ::= GEDecl | PEDecl [71] GEDecl ::= '&lt;!ENTITY' S Name S EntityDef S? '&gt;' [72] PEDecl ::= '&lt;!ENTITY' S '%' S Name S PEDef S? '&gt;' [73] EntityDef ::= EntityValue | (ExternalID NDataDecl?) [74] PEDef ::= EntityValue | ExternalID [76] NDataDecl ::= S 'NDATA' S Name [ VC: Notation Declared ] The Name must match the declared name of a notation.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseEntityRef"/>xmlParseEntityRef ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a>        xmlParseEntityRef       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse ENTITY references declarations [68] EntityRef ::= '&amp;' Name ';' [ WFC: Entity Declared ] In a document without any DTD, a document with only an internal DTD subset which contains no parameter entity references, or a document with "standalone='yes'", the Name given in the entity <a href="libxml2-SAX.html#reference">reference</a> must match that in an entity declaration, except that well-formed documents need not declare any of the following entities: amp, lt, gt, apos, quot. The declaration of a parameter entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it. Similarly, the declaration of a general entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it which appears in a default value in an attribute-list declaration. Note that if entities are declared in the external subset or in external parameter entities, a non-validating processor is not obligated to read and process their declarations; for such documents, the rule that an entity must be declared is a well-formedness constraint only if standalone='yes'. [ WFC: Parsed Entity ] An entity <a href="libxml2-SAX.html#reference">reference</a> must not contain the name of an unparsed entity</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlEntityPtr">xmlEntityPtr</a> if found, or NULL otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseEntityValue"/>xmlParseEntityValue ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParseEntityValue     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** orig)<br/>
-</pre><p>parse a value for ENTITY declarations [9] EntityValue ::= '"' ([^%&amp;"] | PEReference | Reference)* '"' | "'" ([^%&amp;'] | PEReference | Reference)* "'"</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>orig</tt></i>:</span></td><td>if non-NULL store a copy of the original entity value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the EntityValue parsed with <a href="libxml2-SAX.html#reference">reference</a> substituted or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseEnumeratedType"/>xmlParseEnumeratedType ()</h3><pre class="programlisting">int    xmlParseEnumeratedType          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> * tree)<br/>
-</pre><p>parse an Enumerated <a href="libxml2-SAX.html#attribute">attribute</a> type. [57] EnumeratedType ::= NotationType | Enumeration [58] NotationType ::= 'NOTATION' S '(' S? Name (S? '|' S? Name)* S? ')'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>the enumeration tree built while parsing</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td><a href="libxml2-tree.html#XML_ATTRIBUTE_ENUMERATION">XML_ATTRIBUTE_ENUMERATION</a> or <a href="libxml2-tree.html#XML_ATTRIBUTE_NOTATION">XML_ATTRIBUTE_NOTATION</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseEnumerationType"/>xmlParseEnumerationType ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>  xmlParseEnumerationType (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an Enumeration <a href="libxml2-SAX.html#attribute">attribute</a> type. [59] Enumeration ::= '(' S? Nmtoken (S? '|' S? Nmtoken)* S? ')' [ VC: Enumeration ] Values of this type must match one of the Nmtoken tokens in the declaration</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the enumeration <a href="libxml2-SAX.html#attribute">attribute</a> tree built while parsing</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseExternalID"/>xmlParseExternalID ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlParseExternalID      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** publicID, <br/>                                         int strict)<br/>
-</pre><p>Parse an External ID or a Public ID NOTE: Productions [75] and [83] interact badly since [75] can generate 'PUBLIC' S PubidLiteral S SystemLiteral [75] ExternalID ::= 'SYSTEM' S SystemLiteral | 'PUBLIC' S PubidLiteral S SystemLiteral [83] PublicID ::= 'PUBLIC' S PubidLiteral</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>publicID</tt></i>:</span></td><td>a xmlChar** receiving PubidLiteral</td></tr><tr><td><span class="term"><i><tt>strict</tt></i>:</span></td><td>indicate whether we should restrict parsing to only production [75], see NOTE below</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the function returns SystemLiteral and in the second case publicID receives PubidLiteral, is strict is off it is possible to return NULL and have publicID set.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseExternalSubset"/>xmlParseExternalSubset ()</h3><pre class="programlisting">void   xmlParseExternalSubset          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>parse Markup declarations from an external subset [30] extSubset ::= textDecl? extSubsetDecl [31] extSubsetDecl ::= (markupdecl | conditionalSect | PEReference | S) *</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the external identifier</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the system identifier (or URL)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseMarkupDecl"/>xmlParseMarkupDecl ()</h3><pre class="programlisting">void   xmlParseMarkupDecl              (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse Markup declarations [29] markupdecl ::= elementdecl | AttlistDecl | EntityDecl | NotationDecl | PI | Comment [ VC: Proper Declaration/PE Nesting ] Parameter-entity replacement text must be properly nested with markup declarations. That is to say, if either the first character or the last character of a markup declaration (markupdecl above) is contained in the replacement text for a parameter-entity reference, both must be contained in the same replacement text. [ WFC: PEs in Internal Subset ] In the internal DTD subset, parameter-entity references can occur only where markup declarations can occur, not within markup declarations. (This does not apply to references that occur in external parameter entities or to the external subset.)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseMisc"/>xmlParseMisc ()</h3><pre class="programlisting">void       xmlParseMisc                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an XML Misc* optional field. [27] Misc ::= Comment | PI | S</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseName"/>xmlParseName ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParseName            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an XML name. [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)* [6] Names ::= Name (#x20 Name)*</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the Name parsed or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseNamespace"/>xmlParseNamespace ()</h3><pre class="programlisting">void     xmlParseNamespace               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>xmlParseNamespace: parse specific PI '&lt;?namespace ...' constructs. This is what the older xml-name Working Draft specified, a bunch of other stuff may still rely on it, so support is still here as if it was declared on the root of the Tree:-( TODO: remove from library To be removed at next drop of binary compatibility</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseNmtoken"/>xmlParseNmtoken ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParseNmtoken         (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an XML Nmtoken. [7] Nmtoken ::= (NameChar)+ [8] Nmtokens ::= Nmtoken (#x20 Nmtoken)*</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the Nmtoken parsed or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseNotationDecl"/>xmlParseNotationDecl ()</h3><pre class="programlisting">void       xmlParseNotationDecl            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse a notation declaration [82] NotationDecl ::= '&lt;!NOTATION' S Name S (ExternalID | PublicID) S? '&gt;' Hence there is actually 3 choices: 'PUBLIC' S PubidLiteral 'PUBLIC' S PubidLiteral S SystemLiteral and 'SYSTEM' S SystemLiteral See the NOTE on xmlParseExternalID().</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseNotationType"/>xmlParseNotationType ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>        xmlParseNotationType    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an Notation <a href="libxml2-SAX.html#attribute">attribute</a> type. Note: the leading 'NOTATION' S part has already being parsed... [58] NotationType ::= 'NOTATION' S '(' S? Name (S? '|' S? Name)* S? ')' [ VC: Notation Attributes ] Values of this type must match one of the notation names included in the declaration; all notation names in the declaration must be declared.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the notation <a href="libxml2-SAX.html#attribute">attribute</a> tree built while parsing</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParsePEReference"/>xmlParsePEReference ()</h3><pre class="programlisting">void xmlParsePEReference             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse PEReference declarations The entity content is handled directly by pushing it's content as a new input stream. [69] PEReference ::= '%' Name ';' [ WFC: No Recursion ] A parsed entity must not contain a recursive <a href="libxml2-SAX.html#reference">reference</a> to itself, either directly or indirectly. [ WFC: Entity Declared ] In a document without any DTD, a document with only an internal DTD subset which contains no parameter entity references, or a document with "standalone='yes'", ... ... The declaration of a parameter entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it... [ VC: Entity Declared ] In a document with an external subset or external parameter entities with "standalone='no'", ... ... The declaration of a parameter entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it... [ WFC: In DTD ] Parameter-entity references may only appear in the DTD. NOTE: misleading but this is handled.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParsePI"/>xmlParsePI ()</h3><pre class="programlisting">void   xmlParsePI                      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an XML Processing Instruction. [16] PI ::= '&lt;?' PITarget (S (Char* - (Char* '?&gt;' Char*)))? '?&gt;' The processing is transferred to SAX once parsed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParsePITarget"/>xmlParsePITarget ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParsePITarget        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse the name of a PI [17] PITarget ::= Name - (('X' | 'x') ('M' | 'm') ('L' | 'l'))</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the PITarget name or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParsePubidLiteral"/>xmlParsePubidLiteral ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParsePubidLiteral    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an XML public literal [12] PubidLiteral ::= '"' PubidChar* '"' | "'" (PubidChar - "'")* "'"</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the PubidLiteral parsed or NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseQuotedString"/>xmlParseQuotedString ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlParseQuotedString    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Parse and return a string between quotes or doublequotes TODO: Deprecated, to be removed at next drop of binary compatibility</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the string parser or NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseReference"/>xmlParseReference ()</h3><pre class="programlisting">void     xmlParseReference               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse and handle entity references in content, depending on the SAX interface, this may end-up in a call to character() if this is a CharRef, a predefined entity, if there is no reference() callback. or if the parser was asked to switch to that mode. [67] Reference ::= EntityRef | CharRef</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseSDDecl"/>xmlParseSDDecl ()</h3><pre class="programlisting">int    xmlParseSDDecl                  (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse the XML standalone declaration [32] SDDecl ::= S 'standalone' Eq (("'" ('yes' | 'no') "'") | ('"' ('yes' | 'no')'"')) [ VC: Standalone Document Declaration ] TODO The standalone document declaration must have the value "no" if any external markup declarations contain declarations of: - attributes with default values, if elements to which these attributes apply appear in the document without specifications of values for these attributes, or - entities (other than amp, lt, gt, apos, quot), if references to those entities appear in the document, or - attributes with values subject to normalization, where the <a href="libxml2-SAX.html#attribute">attribute</a> appears in the document with a value which will change as a result of normalization, or - element types with element content, if white space occurs directly within any instance of those types.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if standalone="yes" 0 if standalone="no" -2 if standalone <a href="libxml2-SAX.html#attribute">attribute</a> is missing or invalid (A standalone value of -2 means that the XML declaration was found, but no value was specified for the standalone attribute).</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseStartTag"/>xmlParseStartTag ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParseStartTag        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse a start of tag either for rule element or EmptyElement. In both case we don't parse the tag closing chars. [40] STag ::= '&lt;' Name (S Attribute)* S? '&gt;' [ WFC: Unique Att Spec ] No <a href="libxml2-SAX.html#attribute">attribute</a> name may appear more than once in the same start-tag or empty-element tag. [44] EmptyElemTag ::= '&lt;' Name (S Attribute)* S? '/&gt;' [ WFC: Unique Att Spec ] No <a href="libxml2-SAX.html#attribute">attribute</a> name may appear more than once in the same start-tag or empty-element tag. With namespace: [NS 8] STag ::= '&lt;' QName (S Attribute)* S? '&gt;' [NS 10] EmptyElement ::= '&lt;' QName (S Attribute)* S? '/&gt;'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the element name parsed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseSystemLiteral"/>xmlParseSystemLiteral ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlParseSystemLiteral   (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an XML Literal [11] SystemLiteral ::= ('"' [^"]* '"') | ("'" [^']* "'")</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the SystemLiteral parsed or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseTextDecl"/>xmlParseTextDecl ()</h3><pre class="programlisting">void       xmlParseTextDecl                (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an XML declaration header for external entities [77] TextDecl ::= '&lt;?xml' VersionInfo? EncodingDecl S? '?&gt;'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseVersionInfo"/>xmlParseVersionInfo ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlParseVersionInfo     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse the XML version. [24] VersionInfo ::= S 'version' Eq (' VersionNum ' | " VersionNum ") [25] Eq ::= S? '=' S?</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the version string, e.g. "1.0"</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseVersionNum"/>xmlParseVersionNum ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlParseVersionNum      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse the XML version value. [26] VersionNum ::= '1.' [0-9]+ In practice allow [0-9].[0-9]+ at that level</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the string giving the XML version number, or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseXMLDecl"/>xmlParseXMLDecl ()</h3><pre class="programlisting">void xmlParseXMLDecl                 (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse an XML declaration header [23] XMLDecl ::= '&lt;?xml' VersionInfo EncodingDecl? SDDecl? S? '?&gt;'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserHandlePEReference"/>xmlParserHandlePEReference ()</h3><pre class="programlisting">void   xmlParserHandlePEReference      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>[69] PEReference ::= '%' Name ';' [ WFC: No Recursion ] A parsed entity must not contain a recursive <a href="libxml2-SAX.html#reference">reference</a> to itself, either directly or indirectly. [ WFC: Entity Declared ] In a document without any DTD, a document with only an internal DTD subset which contains no parameter entity references, or a document with "standalone='yes'", ... ... The declaration of a parameter entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it... [ VC: Entity Declared ] In a document with an external subset or external parameter entities with "standalone='no'", ... ... The declaration of a parameter entity must precede any <a href="libxml2-SAX.html#reference">reference</a> to it... [ WFC: In DTD ] Parameter-entity references may only appear in the DTD. NOTE: misleading but this is handled. A PEReference may have been detected in the current input stream the handling is done accordingly to http://www.w3.org/TR/REC-xml#entproc i.e. - Included in literal in entity values - Included as Parameter Entity <a href="libxml2-SAX.html#reference">reference</a> within DTDs</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserHandleReference"/>xmlParserHandleReference ()</h3><pre class="programlisting">void       xmlParserHandleReference        (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>TODO: Remove, now deprecated ... the test is done directly in the content parsing routines. [67] Reference ::= EntityRef | CharRef [68] EntityRef ::= '&amp;' Name ';' [ WFC: Entity Declared ] the Name given in the entity <a href="libxml2-SAX.html#reference">reference</a> must match that in an entity declaration, except that well-formed documents need not declare any of the following entities: amp, lt, gt, apos, quot. [ WFC: Parsed Entity ] An entity <a href="libxml2-SAX.html#reference">reference</a> must not contain the name of an unparsed entity [66] CharRef ::= '&amp;#' [0-9]+ ';' | '&amp;#x' [0-9a-fA-F]+ ';' A PEReference may have been detected in the current input stream the handling is done accordingly to http://www.w3.org/TR/REC-xml#entproc</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputShrink"/>xmlParserInputShrink ()</h3><pre class="programlisting">void       xmlParserInputShrink            (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> in)<br/>
-</pre><p>This function removes used input for the parser.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>an XML parser input</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPopInput"/>xmlPopInput ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> xmlPopInput                     (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>xmlPopInput: the current input pointed by ctxt-&gt;input came to an end pop it and return the next char.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the current <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> in the parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPushInput"/>xmlPushInput ()</h3><pre class="programlisting">int        xmlPushInput                    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input)<br/>
-</pre><p>xmlPushInput: switch to a new input stream which is stacked on top of the previous one(s).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>an XML parser input fragment (entity, XML fragment ...).</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error or the index in the input stack</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlScanName"/>xmlScanName ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlScanName             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Trickery: parse an XML name but without consuming the input flow Needed for rollback cases. Used only when parsing entities references. TODO: seems deprecated now, only used in the default part of <a href="libxml2-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a> [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)* [6] Names ::= Name (S Name)*</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the Name parsed or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetEntityReferenceFunc"/>xmlSetEntityReferenceFunc ()</h3><pre class="programlisting">void     xmlSetEntityReferenceFunc       (<a href="libxml2-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a> func)<br/>
-</pre><p>Set the function to call call back when a xml <a href="libxml2-SAX.html#reference">reference</a> has been made</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>func</tt></i>:</span></td><td>A valid function</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSkipBlankChars"/>xmlSkipBlankChars ()</h3><pre class="programlisting">int      xmlSkipBlankChars               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>skip all blanks character found at that point in the input streams. It pops up finished entities in the process if allowable at that point.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of space chars skipped</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSplitQName"/>xmlSplitQName ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlSplitQName           (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix)<br/>
-</pre><p>parse an UTF8 encoded XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> **</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the local part, and prefix is updated to get the Prefix if any.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStringCurrentChar"/>xmlStringCurrentChar ()</h3><pre class="programlisting">int        xmlStringCurrentChar            (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         int * len)<br/>
-</pre><p>The current char value, if using UTF-8 this may actually span multiple bytes in the input buffer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XML parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>pointer to the beginning of the char</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>pointer to the length of the char read</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the current char value and its length</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStringDecodeEntities"/>xmlStringDecodeEntities ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlStringDecodeEntities (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         int what, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br/>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3)<br/>
-</pre><p>Takes a entity string content and process to do the adequate substitutions. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the parser context</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the input string</td></tr><tr><td><span class="term"><i><tt>what</tt></i>:</span></td><td>combination of <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a> and <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a></td></tr><tr><td><span class="term"><i><tt>end</tt></i>:</span></td><td>an end marker xmlChar, 0 if none</td></tr><tr><td><span class="term"><i><tt>end2</tt></i>:</span></td><td>an end marker xmlChar, 0 if none</td></tr><tr><td><span class="term"><i><tt>end3</tt></i>:</span></td><td>an end marker xmlChar, 0 if none</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>A newly allocated string with the substitution done. The caller must deallocate it !</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStringLenDecodeEntities"/>xmlStringLenDecodeEntities ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlStringLenDecodeEntities      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                                 int len, <br/>                                          int what, <br/>                                                 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end, <br/>                                                 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end2, <br/>                                                <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> end3)<br/>
-</pre><p>Takes a entity string content and process to do the adequate substitutions. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the parser context</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the input string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the string length</td></tr><tr><td><span class="term"><i><tt>what</tt></i>:</span></td><td>combination of <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a> and <a href="libxml2-parserInternals.html#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a></td></tr><tr><td><span class="term"><i><tt>end</tt></i>:</span></td><td>an end marker xmlChar, 0 if none</td></tr><tr><td><span class="term"><i><tt>end2</tt></i>:</span></td><td>an end marker xmlChar, 0 if none</td></tr><tr><td><span class="term"><i><tt>end3</tt></i>:</span></td><td>an end marker xmlChar, 0 if none</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>A newly allocated string with the substitution done. The caller must deallocate it !</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSwitchEncoding"/>xmlSwitchEncoding ()</h3><pre class="programlisting">int      xmlSwitchEncoding               (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>change the input functions when discovering the character encoding of a given entity.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the parser context</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the encoding value (number)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSwitchInputEncoding"/>xmlSwitchInputEncoding ()</h3><pre class="programlisting">int    xmlSwitchInputEncoding          (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input, <br/>                                        <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler)<br/>
-</pre><p>DEPRECATED: Use <a href="libxml2-parserInternals.html#xmlSwitchToEncoding">xmlSwitchToEncoding</a> change the input functions when discovering the character encoding of a given entity.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the parser context</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>the input stream</td></tr><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>the encoding handler</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSwitchToEncoding"/>xmlSwitchToEncoding ()</h3><pre class="programlisting">int  xmlSwitchToEncoding             (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> handler)<br/>
-</pre><p>change the input functions when discovering the character encoding of a given entity.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the parser context</td></tr><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>the encoding handler</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</body>
 </html>
index 321bd79..72992a6 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>pattern: pattern expression handling</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-parserInternals.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-relaxng.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">pattern</span>
-    </h2>
-    <p>pattern - pattern expression handling</p>
-    <p>allows to compile and test pattern expressions for nodes either in a tree or based on a parser state. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef <a href="libxml2-pattern.html#xmlStreamCtxt">xmlStreamCtxt</a> * <a href="#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>pattern: pattern expression handling</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-parserInternals.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-relaxng.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">pattern</span></h2>
+<p>pattern - pattern expression handling</p>
+<p>allows to compile and test pattern expressions for nodes either in a tree or based on a parser state. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlPattern <a href="#xmlPattern">xmlPattern</a>;
 typedef enum <a href="#xmlPatternFlags">xmlPatternFlags</a>;
-typedef struct _xmlStreamCtxt <a href="#xmlStreamCtxt">xmlStreamCtxt</a>;
-typedef struct _xmlPattern <a href="#xmlPattern">xmlPattern</a>;
 typedef <a href="libxml2-pattern.html#xmlPattern">xmlPattern</a> * <a href="#xmlPatternPtr">xmlPatternPtr</a>;
-int    <a href="#xmlPatternMinDepth">xmlPatternMinDepth</a>            (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
-<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a>   <a href="#xmlPatternGetStreamCtxt">xmlPatternGetStreamCtxt</a>  (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
-int    <a href="#xmlPatternFromRoot">xmlPatternFromRoot</a>            (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
+typedef struct _xmlStreamCtxt <a href="#xmlStreamCtxt">xmlStreamCtxt</a>;
+typedef <a href="libxml2-pattern.html#xmlStreamCtxt">xmlStreamCtxt</a> * <a href="#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a>;
+void   <a href="#xmlFreePattern">xmlFreePattern</a>                    (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
 void   <a href="#xmlFreePatternList">xmlFreePatternList</a>            (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
+void   <a href="#xmlFreeStreamCtxt">xmlFreeStreamCtxt</a>              (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream);
+int    <a href="#xmlPatternFromRoot">xmlPatternFromRoot</a>            (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
+<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a>   <a href="#xmlPatternGetStreamCtxt">xmlPatternGetStreamCtxt</a>  (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
+int    <a href="#xmlPatternMatch">xmlPatternMatch</a>                  (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+int    <a href="#xmlPatternMaxDepth">xmlPatternMaxDepth</a>            (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
+int    <a href="#xmlPatternMinDepth">xmlPatternMinDepth</a>            (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
 int    <a href="#xmlPatternStreamable">xmlPatternStreamable</a>                (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
-int    <a href="#xmlStreamPushAttr">xmlStreamPushAttr</a>              (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns);
-int    <a href="#xmlPatternMatch">xmlPatternMatch</a>                  (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-int    <a href="#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a>              (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> streamCtxt);
+<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> <a href="#xmlPatterncompile">xmlPatterncompile</a>      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pattern, <br>                                      <a href="libxml2-dict.html#xmlDict">xmlDict</a> * dict, <br>                                    int flags, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces);
 int    <a href="#xmlStreamPop">xmlStreamPop</a>                        (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream);
-void   <a href="#xmlFreePattern">xmlFreePattern</a>                    (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
-int    <a href="#xmlStreamPush">xmlStreamPush</a>                      (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns);
-int    <a href="#xmlPatternMaxDepth">xmlPatternMaxDepth</a>            (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp);
-<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> <a href="#xmlPatterncompile">xmlPatterncompile</a>      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pattern, <br/>                                     <a href="libxml2-dict.html#xmlDict">xmlDict</a> * dict, <br/>                                   int flags, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces);
-int    <a href="#xmlStreamPushNode">xmlStreamPushNode</a>              (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns, <br/>                                  int nodeType);
-void   <a href="#xmlFreeStreamCtxt">xmlFreeStreamCtxt</a>              (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream);
+int    <a href="#xmlStreamPush">xmlStreamPush</a>                      (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns);
+int    <a href="#xmlStreamPushAttr">xmlStreamPushAttr</a>              (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns);
+int    <a href="#xmlStreamPushNode">xmlStreamPushNode</a>              (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns, <br>                                   int nodeType);
+int    <a href="#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a>              (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> streamCtxt);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlPattern">Structure </a>xmlPattern</h3><pre class="programlisting">struct _xmlPattern {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPattern">Structure </a>xmlPattern</h3>
+<pre class="programlisting">struct _xmlPattern {
 The content of this structure is not made public by the API.
 } xmlPattern;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPatternFlags">Enum </a>xmlPatternFlags</h3><pre class="programlisting">enum <a href="#xmlPatternFlags">xmlPatternFlags</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPatternFlags">Enum </a>xmlPatternFlags</h3>
+<pre class="programlisting">enum <a href="#xmlPatternFlags">xmlPatternFlags</a> {
     <a name="XML_PATTERN_DEFAULT">XML_PATTERN_DEFAULT</a> = 0 /* simple pattern match */
     <a name="XML_PATTERN_XPATH">XML_PATTERN_XPATH</a> = 1 /* standard XPath pattern */
     <a name="XML_PATTERN_XSSEL">XML_PATTERN_XSSEL</a> = 2 /* XPath subset for schema selector */
     <a name="XML_PATTERN_XSFIELD">XML_PATTERN_XSFIELD</a> = 4 /*  XPath subset for schema field */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPatternPtr">Typedef </a>xmlPatternPtr</h3><pre class="programlisting"><a href="libxml2-pattern.html#xmlPattern">xmlPattern</a> * xmlPatternPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPatternPtr">Typedef </a>xmlPatternPtr</h3>
+<pre class="programlisting"><a href="libxml2-pattern.html#xmlPattern">xmlPattern</a> * xmlPatternPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStreamCtxt">Structure </a>xmlStreamCtxt</h3><pre class="programlisting">struct _xmlStreamCtxt {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStreamCtxt">Structure </a>xmlStreamCtxt</h3>
+<pre class="programlisting">struct _xmlStreamCtxt {
 The content of this structure is not made public by the API.
 } xmlStreamCtxt;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStreamCtxtPtr">Typedef </a>xmlStreamCtxtPtr</h3><pre class="programlisting"><a href="libxml2-pattern.html#xmlStreamCtxt">xmlStreamCtxt</a> * xmlStreamCtxtPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreePattern"/>xmlFreePattern ()</h3><pre class="programlisting">void   xmlFreePattern                  (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br/>
-</pre><p>Free up the memory allocated by @comp</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>an XSLT comp</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreePatternList"/>xmlFreePatternList ()</h3><pre class="programlisting">void   xmlFreePatternList              (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br/>
-</pre><p>Free up the memory allocated by all the elements of @comp</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>an XSLT comp list</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeStreamCtxt"/>xmlFreeStreamCtxt ()</h3><pre class="programlisting">void     xmlFreeStreamCtxt               (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream)<br/>
-</pre><p>Free the stream context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>stream</tt></i>:</span></td><td>the stream context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPatternFromRoot"/>xmlPatternFromRoot ()</h3><pre class="programlisting">int    xmlPatternFromRoot              (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br/>
-</pre><p>Check if the pattern must be looked at from the root.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>the precompiled pattern</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true, 0 if false and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPatternGetStreamCtxt"/>xmlPatternGetStreamCtxt ()</h3><pre class="programlisting"><a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> xmlPatternGetStreamCtxt (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br/>
-</pre><p>Get a streaming context for that pattern Use <a href="libxml2-pattern.html#xmlFreeStreamCtxt">xmlFreeStreamCtxt</a> to free the context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>the precompiled pattern</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the context or NULL in case of failure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPatternMatch"/>xmlPatternMatch ()</h3><pre class="programlisting">int  xmlPatternMatch                 (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Test whether the node matches the pattern</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>the precompiled pattern</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if it matches, 0 if it doesn't and -1 in case of failure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPatternMaxDepth"/>xmlPatternMaxDepth ()</h3><pre class="programlisting">int    xmlPatternMaxDepth              (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br/>
-</pre><p>Check the maximum depth reachable by a pattern</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>the precompiled pattern</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-2 if no limit (using //), otherwise the depth, and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPatternMinDepth"/>xmlPatternMinDepth ()</h3><pre class="programlisting">int    xmlPatternMinDepth              (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br/>
-</pre><p>Check the minimum depth reachable by a pattern, 0 mean the / or . are part of the set.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>the precompiled pattern</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error otherwise the depth,</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPatternStreamable"/>xmlPatternStreamable ()</h3><pre class="programlisting">int        xmlPatternStreamable            (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br/>
-</pre><p>Check if the pattern is streamable i.e. xmlPatternGetStreamCtxt() should work.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>the precompiled pattern</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if streamable, 0 if not and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPatterncompile"/>xmlPatterncompile ()</h3><pre class="programlisting"><a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a>   xmlPatterncompile       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pattern, <br/>                                     <a href="libxml2-dict.html#xmlDict">xmlDict</a> * dict, <br/>                                   int flags, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces)<br/>
-</pre><p>Compile a pattern.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>pattern</tt></i>:</span></td><td>the pattern to compile</td></tr><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>an optional dictionary for interned strings</td></tr><tr><td><span class="term"><i><tt>flags</tt></i>:</span></td><td>compilation flags, see <a href="libxml2-pattern.html#xmlPatternFlags">xmlPatternFlags</a></td></tr><tr><td><span class="term"><i><tt>namespaces</tt></i>:</span></td><td>the prefix definitions, array of [URI, prefix] or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the compiled form of the pattern or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStreamPop"/>xmlStreamPop ()</h3><pre class="programlisting">int        xmlStreamPop                    (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream)<br/>
-</pre><p>push one level from the stream.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>stream</tt></i>:</span></td><td>the stream context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 0 otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStreamPush"/>xmlStreamPush ()</h3><pre class="programlisting">int      xmlStreamPush                   (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns)<br/>
-</pre><p>Push new data onto the stream. NOTE: if the call xmlPatterncompile() indicated a dictionary, then strings for name and ns will be expected to come from the dictionary. Both @name and @ns being NULL means the / i.e. the root of the document. This can also act as a reset. Otherwise the function will act as if it has been given an element-node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>stream</tt></i>:</span></td><td>the stream context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the current name</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>the namespace name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 1 if the current state in the stream is a match and 0 otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStreamPushAttr"/>xmlStreamPushAttr ()</h3><pre class="programlisting">int      xmlStreamPushAttr               (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns)<br/>
-</pre><p>Push new <a href="libxml2-SAX.html#attribute">attribute</a> data onto the stream. NOTE: if the call xmlPatterncompile() indicated a dictionary, then strings for name and ns will be expected to come from the dictionary. Both @name and @ns being NULL means the / i.e. the root of the document. This can also act as a reset. Otherwise the function will act as if it has been given an attribute-node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>stream</tt></i>:</span></td><td>the stream context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the current name</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>the namespace name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 1 if the current state in the stream is a match and 0 otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStreamPushNode"/>xmlStreamPushNode ()</h3><pre class="programlisting">int      xmlStreamPushNode               (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns, <br/>                                  int nodeType)<br/>
-</pre><p>Push new data onto the stream. NOTE: if the call xmlPatterncompile() indicated a dictionary, then strings for name and ns will be expected to come from the dictionary. Both @name and @ns being NULL means the / i.e. the root of the document. This can also act as a reset. Different from xmlStreamPush() this function can be fed with nodes of type: element-, attribute-, text-, cdata-section-, comment- and processing-instruction-node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>stream</tt></i>:</span></td><td>the stream context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the current name</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>the namespace name</td></tr><tr><td><span class="term"><i><tt>nodeType</tt></i>:</span></td><td>the type of the node being pushed</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 1 if the current state in the stream is a match and 0 otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStreamWantsAnyNode"/>xmlStreamWantsAnyNode ()</h3><pre class="programlisting">int      xmlStreamWantsAnyNode           (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> streamCtxt)<br/>
-</pre><p>Query if the streaming pattern additionally needs to be fed with text-, cdata-section-, comment- and processing-instruction-nodes. If the result is 0 then only element-nodes and attribute-nodes need to be pushed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>streamCtxt</tt></i>:</span></td><td>the stream context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 in case of need of nodes of the above described types, 0 otherwise. -1 on API errors.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStreamCtxtPtr">Typedef </a>xmlStreamCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-pattern.html#xmlStreamCtxt">xmlStreamCtxt</a> * xmlStreamCtxtPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreePattern"></a>xmlFreePattern ()</h3>
+<pre class="programlisting">void       xmlFreePattern                  (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br>
+</pre>
+<p>Free up the memory allocated by @comp</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>an XSLT comp</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreePatternList"></a>xmlFreePatternList ()</h3>
+<pre class="programlisting">void       xmlFreePatternList              (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br>
+</pre>
+<p>Free up the memory allocated by all the elements of @comp</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>an XSLT comp list</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeStreamCtxt"></a>xmlFreeStreamCtxt ()</h3>
+<pre class="programlisting">void       xmlFreeStreamCtxt               (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream)<br>
+</pre>
+<p>Free the stream context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>stream</tt></i>:</span></td>
+<td>the stream context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPatternFromRoot"></a>xmlPatternFromRoot ()</h3>
+<pre class="programlisting">int        xmlPatternFromRoot              (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br>
+</pre>
+<p>Check if the pattern must be looked at from the root.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>the precompiled pattern</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true, 0 if false and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPatternGetStreamCtxt"></a>xmlPatternGetStreamCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a>       xmlPatternGetStreamCtxt (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br>
+</pre>
+<p>Get a streaming context for that pattern Use <a href="libxml2-pattern.html#xmlFreeStreamCtxt">xmlFreeStreamCtxt</a> to free the context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>the precompiled pattern</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the context or NULL in case of failure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPatternMatch"></a>xmlPatternMatch ()</h3>
+<pre class="programlisting">int        xmlPatternMatch                 (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Test whether the node matches the pattern</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>the precompiled pattern</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if it matches, 0 if it doesn't and -1 in case of failure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPatternMaxDepth"></a>xmlPatternMaxDepth ()</h3>
+<pre class="programlisting">int        xmlPatternMaxDepth              (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br>
+</pre>
+<p>Check the maximum depth reachable by a pattern</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>the precompiled pattern</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-2 if no limit (using //), otherwise the depth, and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPatternMinDepth"></a>xmlPatternMinDepth ()</h3>
+<pre class="programlisting">int        xmlPatternMinDepth              (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br>
+</pre>
+<p>Check the minimum depth reachable by a pattern, 0 mean the / or . are part of the set.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>the precompiled pattern</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error otherwise the depth,</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPatternStreamable"></a>xmlPatternStreamable ()</h3>
+<pre class="programlisting">int        xmlPatternStreamable            (<a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a> comp)<br>
+</pre>
+<p>Check if the pattern is streamable i.e. xmlPatternGetStreamCtxt() should work.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>the precompiled pattern</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if streamable, 0 if not and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPatterncompile"></a>xmlPatterncompile ()</h3>
+<pre class="programlisting"><a href="libxml2-pattern.html#xmlPatternPtr">xmlPatternPtr</a>     xmlPatterncompile       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pattern, <br>                                      <a href="libxml2-dict.html#xmlDict">xmlDict</a> * dict, <br>                                    int flags, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces)<br>
+</pre>
+<p>Compile a pattern.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>pattern</tt></i>:</span></td>
+<td>the pattern to compile</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>an optional dictionary for interned strings</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>flags</tt></i>:</span></td>
+<td>compilation flags, see <a href="libxml2-pattern.html#xmlPatternFlags">xmlPatternFlags</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaces</tt></i>:</span></td>
+<td>the prefix definitions, array of [URI, prefix] or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the compiled form of the pattern or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStreamPop"></a>xmlStreamPop ()</h3>
+<pre class="programlisting">int        xmlStreamPop                    (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream)<br>
+</pre>
+<p>push one level from the stream.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>stream</tt></i>:</span></td>
+<td>the stream context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 0 otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStreamPush"></a>xmlStreamPush ()</h3>
+<pre class="programlisting">int        xmlStreamPush                   (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns)<br>
+</pre>
+<p>Push new data onto the stream. NOTE: if the call xmlPatterncompile() indicated a dictionary, then strings for name and ns will be expected to come from the dictionary. Both @name and @ns being NULL means the / i.e. the root of the document. This can also act as a reset. Otherwise the function will act as if it has been given an element-node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>stream</tt></i>:</span></td>
+<td>the stream context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the current name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>the namespace name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 1 if the current state in the stream is a match and 0 otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStreamPushAttr"></a>xmlStreamPushAttr ()</h3>
+<pre class="programlisting">int        xmlStreamPushAttr               (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns)<br>
+</pre>
+<p>Push new <a href="libxml2-SAX.html#attribute">attribute</a> data onto the stream. NOTE: if the call xmlPatterncompile() indicated a dictionary, then strings for name and ns will be expected to come from the dictionary. Both @name and @ns being NULL means the / i.e. the root of the document. This can also act as a reset. Otherwise the function will act as if it has been given an attribute-node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>stream</tt></i>:</span></td>
+<td>the stream context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the current name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>the namespace name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 1 if the current state in the stream is a match and 0 otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStreamPushNode"></a>xmlStreamPushNode ()</h3>
+<pre class="programlisting">int        xmlStreamPushNode               (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> stream, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns, <br>                                   int nodeType)<br>
+</pre>
+<p>Push new data onto the stream. NOTE: if the call xmlPatterncompile() indicated a dictionary, then strings for name and ns will be expected to come from the dictionary. Both @name and @ns being NULL means the / i.e. the root of the document. This can also act as a reset. Different from xmlStreamPush() this function can be fed with nodes of type: element-, attribute-, text-, cdata-section-, comment- and processing-instruction-node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>stream</tt></i>:</span></td>
+<td>the stream context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the current name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>the namespace name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nodeType</tt></i>:</span></td>
+<td>the type of the node being pushed</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 1 if the current state in the stream is a match and 0 otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStreamWantsAnyNode"></a>xmlStreamWantsAnyNode ()</h3>
+<pre class="programlisting">int        xmlStreamWantsAnyNode           (<a href="libxml2-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a> streamCtxt)<br>
+</pre>
+<p>Query if the streaming pattern additionally needs to be fed with text-, cdata-section-, comment- and processing-instruction-nodes. If the result is 0 then only element-nodes and attribute-nodes need to be pushed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>streamCtxt</tt></i>:</span></td>
+<td>the stream context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 in case of need of nodes of the above described types, 0 otherwise. -1 on API errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 145f7dc..72d1b8b 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>relaxng: implementation of the Relax-NG validation</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-pattern.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-schemasInternals.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">relaxng</span>
-    </h2>
-    <p>relaxng - implementation of the Relax-NG validation</p>
-    <p>implementation of the Relax-NG validation </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef struct _xmlRelaxNG <a href="#xmlRelaxNG">xmlRelaxNG</a>;
-typedef <a href="libxml2-relaxng.html#xmlRelaxNG">xmlRelaxNG</a> * <a href="#xmlRelaxNGPtr">xmlRelaxNGPtr</a>;
-typedef enum <a href="#xmlRelaxNGValidErr">xmlRelaxNGValidErr</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>relaxng: implementation of the Relax-NG validation</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-pattern.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-schemasInternals.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">relaxng</span></h2>
+<p>relaxng - implementation of the Relax-NG validation</p>
+<p>implementation of the Relax-NG validation </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlRelaxNG <a href="#xmlRelaxNG">xmlRelaxNG</a>;
 typedef struct _xmlRelaxNGParserCtxt <a href="#xmlRelaxNGParserCtxt">xmlRelaxNGParserCtxt</a>;
 typedef <a href="libxml2-relaxng.html#xmlRelaxNGParserCtxt">xmlRelaxNGParserCtxt</a> * <a href="#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a>;
 typedef enum <a href="#xmlRelaxNGParserFlag">xmlRelaxNGParserFlag</a>;
+typedef <a href="libxml2-relaxng.html#xmlRelaxNG">xmlRelaxNG</a> * <a href="#xmlRelaxNGPtr">xmlRelaxNGPtr</a>;
 typedef struct _xmlRelaxNGValidCtxt <a href="#xmlRelaxNGValidCtxt">xmlRelaxNGValidCtxt</a>;
 typedef <a href="libxml2-relaxng.html#xmlRelaxNGValidCtxt">xmlRelaxNGValidCtxt</a> * <a href="#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a>;
+typedef enum <a href="#xmlRelaxNGValidErr">xmlRelaxNGValidErr</a>;
+void   <a href="#xmlRelaxNGCleanupTypes">xmlRelaxNGCleanupTypes</a>            (void);
+void   <a href="#xmlRelaxNGDump">xmlRelaxNGDump</a>                    (FILE * output, <br>                                     <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema);
+void   <a href="#xmlRelaxNGDumpTree">xmlRelaxNGDumpTree</a>            (FILE * output, <br>                                     <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema);
+void   <a href="#xmlRelaxNGFree">xmlRelaxNGFree</a>                    (<a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema);
+void   <a href="#xmlRelaxNGFreeParserCtxt">xmlRelaxNGFreeParserCtxt</a>        (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt);
 void   <a href="#xmlRelaxNGFreeValidCtxt">xmlRelaxNGFreeValidCtxt</a>          (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt);
+int    <a href="#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a>      (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br>                                   <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> * err, <br>                                  <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> * warn, <br>                                     void ** ctx);
+int    <a href="#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a>        (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> * err, <br>                                  <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> * warn, <br>                                     void ** ctx);
+int    <a href="#xmlRelaxNGInitTypes">xmlRelaxNGInitTypes</a>          (void);
 <a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a>     <a href="#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a>    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-void   <a href="#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a>        (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> err, <br/>                                   <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> warn, <br/>                                      void * ctx);
+<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a>     <a href="#xmlRelaxNGNewMemParserCtxt">xmlRelaxNGNewMemParserCtxt</a>    (const char * buffer, <br>                                                       int size);
 <a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a>     <a href="#xmlRelaxNGNewParserCtxt">xmlRelaxNGNewParserCtxt</a>  (const char * URL);
-int    <a href="#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a>      (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br/>                                  <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> * err, <br/>                                         <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> * warn, <br/>                                    void ** ctx);
-int    <a href="#xmlRelaxNGValidatePopElement">xmlRelaxNGValidatePopElement</a>        (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
 <a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a>       <a href="#xmlRelaxNGNewValidCtxt">xmlRelaxNGNewValidCtxt</a>    (<a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema);
-<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a>     <a href="#xmlRelaxNGNewMemParserCtxt">xmlRelaxNGNewMemParserCtxt</a>    (const char * buffer, <br/>                                                      int size);
-void   <a href="#xmlRelaxNGDump">xmlRelaxNGDump</a>                    (FILE * output, <br/>                                    <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema);
-void   <a href="#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a>      (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br/>                                  <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> err, <br/>                                   <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> warn, <br/>                                      void * ctx);
 <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> <a href="#xmlRelaxNGParse">xmlRelaxNGParse</a>          (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt);
-void   <a href="#xmlRelaxNGSetParserStructuredErrors">xmlRelaxNGSetParserStructuredErrors</a>  (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br/>                                          <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br/>                                                 void * ctx);
-int    <a href="#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a>      (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
-typedef void <a href="#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a>    (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-int    <a href="#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a>      (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
-void   <a href="#xmlRelaxNGFree">xmlRelaxNGFree</a>                    (<a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema);
-int    <a href="#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a>              (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-void   <a href="#xmlRelaxNGSetValidStructuredErrors">xmlRelaxNGSetValidStructuredErrors</a>    (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                            <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br/>                                                 void * ctx);
-void   <a href="#xmlRelaxNGFreeParserCtxt">xmlRelaxNGFreeParserCtxt</a>        (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt);
-int    <a href="#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a>        (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> * err, <br/>                                         <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> * warn, <br/>                                    void ** ctx);
-int    <a href="#xmlRelaxNGInitTypes">xmlRelaxNGInitTypes</a>          (void);
-void   <a href="#xmlRelaxNGDumpTree">xmlRelaxNGDumpTree</a>            (FILE * output, <br/>                                    <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema);
-void   <a href="#xmlRelaxNGCleanupTypes">xmlRelaxNGCleanupTypes</a>            (void);
-int    <a href="#xmlRelaxNGValidatePushCData">xmlRelaxNGValidatePushCData</a>  (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data, <br/>                                        int len);
-int    <a href="#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a>              (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br/>                                  int flags);
-typedef void <a href="#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a>        (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNG">Structure </a>xmlRelaxNG</h3><pre class="programlisting">struct _xmlRelaxNG {
+void   <a href="#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a>      (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br>                                   <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> err, <br>                                    <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> warn, <br>                                       void * ctx);
+void   <a href="#xmlRelaxNGSetParserStructuredErrors">xmlRelaxNGSetParserStructuredErrors</a>  (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br>                                           <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br>                                          void * ctx);
+void   <a href="#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a>        (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> err, <br>                                    <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> warn, <br>                                       void * ctx);
+void   <a href="#xmlRelaxNGSetValidStructuredErrors">xmlRelaxNGSetValidStructuredErrors</a>    (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                             <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br>                                          void * ctx);
+int    <a href="#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a>              (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+int    <a href="#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a>      (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
+int    <a href="#xmlRelaxNGValidatePopElement">xmlRelaxNGValidatePopElement</a>        (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
+int    <a href="#xmlRelaxNGValidatePushCData">xmlRelaxNGValidatePushCData</a>  (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data, <br>                                         int len);
+int    <a href="#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a>      (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
+typedef void <a href="#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a>    (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+typedef void <a href="#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a>        (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+int    <a href="#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a>              (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br>                                   int flags);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNG">Structure </a>xmlRelaxNG</h3>
+<pre class="programlisting">struct _xmlRelaxNG {
 The content of this structure is not made public by the API.
 } xmlRelaxNG;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGParserCtxt">Structure </a>xmlRelaxNGParserCtxt</h3><pre class="programlisting">struct _xmlRelaxNGParserCtxt {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGParserCtxt">Structure </a>xmlRelaxNGParserCtxt</h3>
+<pre class="programlisting">struct _xmlRelaxNGParserCtxt {
 The content of this structure is not made public by the API.
 } xmlRelaxNGParserCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGParserCtxtPtr">Typedef </a>xmlRelaxNGParserCtxtPtr</h3><pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGParserCtxt">xmlRelaxNGParserCtxt</a> * xmlRelaxNGParserCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGParserCtxtPtr">Typedef </a>xmlRelaxNGParserCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGParserCtxt">xmlRelaxNGParserCtxt</a> * xmlRelaxNGParserCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGParserFlag">Enum </a>xmlRelaxNGParserFlag</h3><pre class="programlisting">enum <a href="#xmlRelaxNGParserFlag">xmlRelaxNGParserFlag</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGParserFlag">Enum </a>xmlRelaxNGParserFlag</h3>
+<pre class="programlisting">enum <a href="#xmlRelaxNGParserFlag">xmlRelaxNGParserFlag</a> {
     <a name="XML_RELAXNGP_NONE">XML_RELAXNGP_NONE</a> = 0
     <a name="XML_RELAXNGP_FREE_DOC">XML_RELAXNGP_FREE_DOC</a> = 1
     <a name="XML_RELAXNGP_CRNG">XML_RELAXNGP_CRNG</a> = 2
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGPtr">Typedef </a>xmlRelaxNGPtr</h3><pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNG">xmlRelaxNG</a> * xmlRelaxNGPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGPtr">Typedef </a>xmlRelaxNGPtr</h3>
+<pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNG">xmlRelaxNG</a> * xmlRelaxNGPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGValidCtxt">Structure </a>xmlRelaxNGValidCtxt</h3><pre class="programlisting">struct _xmlRelaxNGValidCtxt {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGValidCtxt">Structure </a>xmlRelaxNGValidCtxt</h3>
+<pre class="programlisting">struct _xmlRelaxNGValidCtxt {
 The content of this structure is not made public by the API.
 } xmlRelaxNGValidCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGValidCtxtPtr">Typedef </a>xmlRelaxNGValidCtxtPtr</h3><pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGValidCtxt">xmlRelaxNGValidCtxt</a> * xmlRelaxNGValidCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGValidCtxtPtr">Typedef </a>xmlRelaxNGValidCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGValidCtxt">xmlRelaxNGValidCtxt</a> * xmlRelaxNGValidCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGValidErr">Enum </a>xmlRelaxNGValidErr</h3><pre class="programlisting">enum <a href="#xmlRelaxNGValidErr">xmlRelaxNGValidErr</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGValidErr">Enum </a>xmlRelaxNGValidErr</h3>
+<pre class="programlisting">enum <a href="#xmlRelaxNGValidErr">xmlRelaxNGValidErr</a> {
     <a name="XML_RELAXNG_OK">XML_RELAXNG_OK</a> = 0
     <a name="XML_RELAXNG_ERR_MEMORY">XML_RELAXNG_ERR_MEMORY</a> = 1
     <a name="XML_RELAXNG_ERR_TYPE">XML_RELAXNG_ERR_TYPE</a> = 2
@@ -165,114 +173,620 @@ The content of this structure is not made public by the API.
     <a name="XML_RELAXNG_ERR_ELEMWRONG">XML_RELAXNG_ERR_ELEMWRONG</a> = 38
     <a name="XML_RELAXNG_ERR_TEXTWRONG">XML_RELAXNG_ERR_TEXTWRONG</a> = 39
 };
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGValidityErrorFunc"/>Function type xmlRelaxNGValidityErrorFunc</h3><pre class="programlisting">void      xmlRelaxNGValidityErrorFunc     (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Signature of an error callback from a Relax-NG validation</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGValidityWarningFunc"/>Function type xmlRelaxNGValidityWarningFunc</h3><pre class="programlisting">void  xmlRelaxNGValidityWarningFunc   (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Signature of a warning callback from a Relax-NG validation</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGCleanupTypes"/>xmlRelaxNGCleanupTypes ()</h3><pre class="programlisting">void   xmlRelaxNGCleanupTypes          (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Cleanup the default Schemas type library associated to RelaxNG</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGDump"/>xmlRelaxNGDump ()</h3><pre class="programlisting">void   xmlRelaxNGDump                  (FILE * output, <br/>                                    <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema)<br/>
-</pre><p>Dump a RelaxNG structure back</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the file output</td></tr><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a schema structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGDumpTree"/>xmlRelaxNGDumpTree ()</h3><pre class="programlisting">void   xmlRelaxNGDumpTree              (FILE * output, <br/>                                    <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema)<br/>
-</pre><p>Dump the transformed RelaxNG tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the file output</td></tr><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a schema structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGFree"/>xmlRelaxNGFree ()</h3><pre class="programlisting">void   xmlRelaxNGFree                  (<a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema)<br/>
-</pre><p>Deallocate a RelaxNG structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a schema structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGFreeParserCtxt"/>xmlRelaxNGFreeParserCtxt ()</h3><pre class="programlisting">void       xmlRelaxNGFreeParserCtxt        (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Free the resources associated to the schema parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the schema parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGFreeValidCtxt"/>xmlRelaxNGFreeValidCtxt ()</h3><pre class="programlisting">void xmlRelaxNGFreeValidCtxt         (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt)<br/>
-</pre><p>Free the resources associated to the schema validation context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the schema validation context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGGetParserErrors"/>xmlRelaxNGGetParserErrors ()</h3><pre class="programlisting">int      xmlRelaxNGGetParserErrors       (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br/>                                  <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> * err, <br/>                                         <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> * warn, <br/>                                    void ** ctx)<br/>
-</pre><p>Get the callback information used to handle errors for a validation context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a Relax-NG validation context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error callback result</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning callback result</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>contextual data for the callbacks result</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of failure, 0 otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGGetValidErrors"/>xmlRelaxNGGetValidErrors ()</h3><pre class="programlisting">int        xmlRelaxNGGetValidErrors        (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> * err, <br/>                                         <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> * warn, <br/>                                    void ** ctx)<br/>
-</pre><p>Get the error and warning callback information</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a Relax-NG validation context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error function result</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning function result</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the functions context result</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error and 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGInitTypes"/>xmlRelaxNGInitTypes ()</h3><pre class="programlisting">int  xmlRelaxNGInitTypes             (void)<br/>
-</pre><p>Initialize the default type libraries.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGNewDocParserCtxt"/>xmlRelaxNGNewDocParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a>     xmlRelaxNGNewDocParserCtxt      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Create an XML RelaxNGs parser context for that document. Note: since the process of compiling a RelaxNG schemas modifies the document, the @doc parameter is duplicated internally.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a preparsed document tree</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGNewMemParserCtxt"/>xmlRelaxNGNewMemParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a>     xmlRelaxNGNewMemParserCtxt      (const char * buffer, <br/>                                                      int size)<br/>
-</pre><p>Create an XML RelaxNGs parse context for that memory buffer expected to contain an XML RelaxNGs file.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array containing the schemas</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGNewParserCtxt"/>xmlRelaxNGNewParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a>   xmlRelaxNGNewParserCtxt (const char * URL)<br/>
-</pre><p>Create an XML RelaxNGs parse context for that file/resource expected to contain an XML RelaxNGs file.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the location of the schema</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGNewValidCtxt"/>xmlRelaxNGNewValidCtxt ()</h3><pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a>       xmlRelaxNGNewValidCtxt  (<a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema)<br/>
-</pre><p>Create an XML RelaxNGs validation context based on the given schema</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a precompiled XML RelaxNGs</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the validation context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGParse"/>xmlRelaxNGParse ()</h3><pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a>       xmlRelaxNGParse         (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse a schema definition resource and build an internal XML Schema structure which can be used to validate instances.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a Relax-NG parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the internal XML RelaxNG structure built from the resource or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGSetParserErrors"/>xmlRelaxNGSetParserErrors ()</h3><pre class="programlisting">void     xmlRelaxNGSetParserErrors       (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br/>                                  <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> err, <br/>                                   <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> warn, <br/>                                      void * ctx)<br/>
-</pre><p>Set the callback functions used to handle errors for a validation context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a Relax-NG validation context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error callback</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning callback</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>contextual data for the callbacks</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGSetParserStructuredErrors"/>xmlRelaxNGSetParserStructuredErrors ()</h3><pre class="programlisting">void xmlRelaxNGSetParserStructuredErrors     (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br/>                                          <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br/>                                                 void * ctx)<br/>
-</pre><p>Set the callback functions used to handle errors for a parsing context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a Relax-NG parser context</td></tr><tr><td><span class="term"><i><tt>serror</tt></i>:</span></td><td>the error callback</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>contextual data for the callbacks</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGSetValidErrors"/>xmlRelaxNGSetValidErrors ()</h3><pre class="programlisting">void       xmlRelaxNGSetValidErrors        (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> err, <br/>                                   <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> warn, <br/>                                      void * ctx)<br/>
-</pre><p>Set the error and warning callback information</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a Relax-NG validation context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error function</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning function</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the functions context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGSetValidStructuredErrors"/>xmlRelaxNGSetValidStructuredErrors ()</h3><pre class="programlisting">void   xmlRelaxNGSetValidStructuredErrors      (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                            <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br/>                                                 void * ctx)<br/>
-</pre><p>Set the structured error callback</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a Relax-NG validation context</td></tr><tr><td><span class="term"><i><tt>serror</tt></i>:</span></td><td>the structured error function</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the functions context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGValidateDoc"/>xmlRelaxNGValidateDoc ()</h3><pre class="programlisting">int      xmlRelaxNGValidateDoc           (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Validate a document tree in memory.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a Relax-NG validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a parsed document tree</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the document is valid, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGValidateFullElement"/>xmlRelaxNGValidateFullElement ()</h3><pre class="programlisting">int      xmlRelaxNGValidateFullElement   (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br/>
-</pre><p>Validate a full subtree when xmlRelaxNGValidatePushElement() returned 0 and the content of the node has been expanded.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element instance</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if no validation problem was found or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGValidatePopElement"/>xmlRelaxNGValidatePopElement ()</h3><pre class="programlisting">int        xmlRelaxNGValidatePopElement    (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br/>
-</pre><p>Pop the element end from the RelaxNG validation stack.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the RelaxNG validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element instance</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if no validation problem was found or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGValidatePushCData"/>xmlRelaxNGValidatePushCData ()</h3><pre class="programlisting">int  xmlRelaxNGValidatePushCData     (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data, <br/>                                        int len)<br/>
-</pre><p>check the CData parsed for validation in the current stack</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the RelaxNG validation context</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>some character data read</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length of the data</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if no validation problem was found or -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxNGValidatePushElement"/>xmlRelaxNGValidatePushElement ()</h3><pre class="programlisting">int      xmlRelaxNGValidatePushElement   (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br/>
-</pre><p>Push a new element start on the RelaxNG validation stack.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element instance</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if no validation problem was found or 0 if validating the element requires a full node, and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRelaxParserSetFlag"/>xmlRelaxParserSetFlag ()</h3><pre class="programlisting">int      xmlRelaxParserSetFlag           (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br/>                                  int flags)<br/>
-</pre><p>Semi private function used to pass information to a parser context which are a combination of <a href="libxml2-relaxng.html#xmlRelaxNGParserFlag">xmlRelaxNGParserFlag</a> .</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a RelaxNG parser context</td></tr><tr><td><span class="term"><i><tt>flags</tt></i>:</span></td><td>a set of flags values</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGValidityErrorFunc"></a>Function type xmlRelaxNGValidityErrorFunc</h3>
+<pre class="programlisting">void       xmlRelaxNGValidityErrorFunc     (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Signature of an error callback from a Relax-NG validation</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGValidityWarningFunc"></a>Function type xmlRelaxNGValidityWarningFunc</h3>
+<pre class="programlisting">void       xmlRelaxNGValidityWarningFunc   (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Signature of a warning callback from a Relax-NG validation</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGCleanupTypes"></a>xmlRelaxNGCleanupTypes ()</h3>
+<pre class="programlisting">void       xmlRelaxNGCleanupTypes          (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Cleanup the default Schemas type library associated to RelaxNG</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGDump"></a>xmlRelaxNGDump ()</h3>
+<pre class="programlisting">void       xmlRelaxNGDump                  (FILE * output, <br>                                     <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema)<br>
+</pre>
+<p>Dump a RelaxNG structure back</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the file output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>schema</tt></i>:</span></td>
+<td>a schema structure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGDumpTree"></a>xmlRelaxNGDumpTree ()</h3>
+<pre class="programlisting">void       xmlRelaxNGDumpTree              (FILE * output, <br>                                     <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema)<br>
+</pre>
+<p>Dump the transformed RelaxNG tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the file output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>schema</tt></i>:</span></td>
+<td>a schema structure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGFree"></a>xmlRelaxNGFree ()</h3>
+<pre class="programlisting">void       xmlRelaxNGFree                  (<a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema)<br>
+</pre>
+<p>Deallocate a RelaxNG structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>schema</tt></i>:</span></td>
+<td>a schema structure</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGFreeParserCtxt"></a>xmlRelaxNGFreeParserCtxt ()</h3>
+<pre class="programlisting">void       xmlRelaxNGFreeParserCtxt        (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Free the resources associated to the schema parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the schema parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGFreeValidCtxt"></a>xmlRelaxNGFreeValidCtxt ()</h3>
+<pre class="programlisting">void       xmlRelaxNGFreeValidCtxt         (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Free the resources associated to the schema validation context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the schema validation context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGGetParserErrors"></a>xmlRelaxNGGetParserErrors ()</h3>
+<pre class="programlisting">int        xmlRelaxNGGetParserErrors       (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br>                                   <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> * err, <br>                                  <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> * warn, <br>                                     void ** ctx)<br>
+</pre>
+<p>Get the callback information used to handle errors for a validation context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a Relax-NG validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>err</tt></i>:</span></td>
+<td>the error callback result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>warn</tt></i>:</span></td>
+<td>the warning callback result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>contextual data for the callbacks result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of failure, 0 otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGGetValidErrors"></a>xmlRelaxNGGetValidErrors ()</h3>
+<pre class="programlisting">int        xmlRelaxNGGetValidErrors        (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> * err, <br>                                  <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> * warn, <br>                                     void ** ctx)<br>
+</pre>
+<p>Get the error and warning callback information</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a Relax-NG validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>err</tt></i>:</span></td>
+<td>the error function result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>warn</tt></i>:</span></td>
+<td>the warning function result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the functions context result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error and 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGInitTypes"></a>xmlRelaxNGInitTypes ()</h3>
+<pre class="programlisting">int        xmlRelaxNGInitTypes             (void)<br>
+</pre>
+<p>Initialize the default type libraries.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGNewDocParserCtxt"></a>xmlRelaxNGNewDocParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> xmlRelaxNGNewDocParserCtxt      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Create an XML RelaxNGs parser context for that document. Note: since the process of compiling a RelaxNG schemas modifies the document, the @doc parameter is duplicated internally.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a preparsed document tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the parser context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGNewMemParserCtxt"></a>xmlRelaxNGNewMemParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> xmlRelaxNGNewMemParserCtxt      (const char * buffer, <br>                                                       int size)<br>
+</pre>
+<p>Create an XML RelaxNGs parse context for that memory buffer expected to contain an XML RelaxNGs file.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a pointer to a char array containing the schemas</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the parser context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGNewParserCtxt"></a>xmlRelaxNGNewParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> xmlRelaxNGNewParserCtxt (const char * URL)<br>
+</pre>
+<p>Create an XML RelaxNGs parse context for that file/resource expected to contain an XML RelaxNGs file.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the location of the schema</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the parser context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGNewValidCtxt"></a>xmlRelaxNGNewValidCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a>   xmlRelaxNGNewValidCtxt  (<a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema)<br>
+</pre>
+<p>Create an XML RelaxNGs validation context based on the given schema</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>schema</tt></i>:</span></td>
+<td>a precompiled XML RelaxNGs</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the validation context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGParse"></a>xmlRelaxNGParse ()</h3>
+<pre class="programlisting"><a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a>     xmlRelaxNGParse         (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse a schema definition resource and build an internal XML Schema structure which can be used to validate instances.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a Relax-NG parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the internal XML RelaxNG structure built from the resource or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGSetParserErrors"></a>xmlRelaxNGSetParserErrors ()</h3>
+<pre class="programlisting">void       xmlRelaxNGSetParserErrors       (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br>                                   <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> err, <br>                                    <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> warn, <br>                                       void * ctx)<br>
+</pre>
+<p>Set the callback functions used to handle errors for a validation context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a Relax-NG validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>err</tt></i>:</span></td>
+<td>the error callback</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>warn</tt></i>:</span></td>
+<td>the warning callback</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>contextual data for the callbacks</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGSetParserStructuredErrors"></a>xmlRelaxNGSetParserStructuredErrors ()</h3>
+<pre class="programlisting">void       xmlRelaxNGSetParserStructuredErrors     (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br>                                           <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br>                                          void * ctx)<br>
+</pre>
+<p>Set the callback functions used to handle errors for a parsing context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a Relax-NG parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>serror</tt></i>:</span></td>
+<td>the error callback</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>contextual data for the callbacks</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGSetValidErrors"></a>xmlRelaxNGSetValidErrors ()</h3>
+<pre class="programlisting">void       xmlRelaxNGSetValidErrors        (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a> err, <br>                                    <a href="libxml2-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a> warn, <br>                                       void * ctx)<br>
+</pre>
+<p>Set the error and warning callback information</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a Relax-NG validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>err</tt></i>:</span></td>
+<td>the error function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>warn</tt></i>:</span></td>
+<td>the warning function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the functions context</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGSetValidStructuredErrors"></a>xmlRelaxNGSetValidStructuredErrors ()</h3>
+<pre class="programlisting">void       xmlRelaxNGSetValidStructuredErrors      (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                             <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br>                                          void * ctx)<br>
+</pre>
+<p>Set the structured error callback</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a Relax-NG validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>serror</tt></i>:</span></td>
+<td>the structured error function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the functions context</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGValidateDoc"></a>xmlRelaxNGValidateDoc ()</h3>
+<pre class="programlisting">int        xmlRelaxNGValidateDoc           (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Validate a document tree in memory.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a Relax-NG validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a parsed document tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the document is valid, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGValidateFullElement"></a>xmlRelaxNGValidateFullElement ()</h3>
+<pre class="programlisting">int        xmlRelaxNGValidateFullElement   (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br>
+</pre>
+<p>Validate a full subtree when xmlRelaxNGValidatePushElement() returned 0 and the content of the node has been expanded.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if no validation problem was found or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGValidatePopElement"></a>xmlRelaxNGValidatePopElement ()</h3>
+<pre class="programlisting">int        xmlRelaxNGValidatePopElement    (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br>
+</pre>
+<p>Pop the element end from the RelaxNG validation stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the RelaxNG validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if no validation problem was found or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGValidatePushCData"></a>xmlRelaxNGValidatePushCData ()</h3>
+<pre class="programlisting">int        xmlRelaxNGValidatePushCData     (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data, <br>                                         int len)<br>
+</pre>
+<p>check the CData parsed for validation in the current stack</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the RelaxNG validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>some character data read</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length of the data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if no validation problem was found or -1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxNGValidatePushElement"></a>xmlRelaxNGValidatePushElement ()</h3>
+<pre class="programlisting">int        xmlRelaxNGValidatePushElement   (<a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br>
+</pre>
+<p>Push a new element start on the RelaxNG validation stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if no validation problem was found or 0 if validating the element requires a full node, and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRelaxParserSetFlag"></a>xmlRelaxParserSetFlag ()</h3>
+<pre class="programlisting">int        xmlRelaxParserSetFlag           (<a href="libxml2-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a> ctxt, <br>                                   int flags)<br>
+</pre>
+<p>Semi private function used to pass information to a parser context which are a combination of <a href="libxml2-relaxng.html#xmlRelaxNGParserFlag">xmlRelaxNGParserFlag</a> .</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a RelaxNG parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>flags</tt></i>:</span></td>
+<td>a set of flags values</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 0d6d39e..8c45bdf 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>schemasInternals: internal interfaces for XML Schemas</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-relaxng.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-schematron.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">schemasInternals</span>
-    </h2>
-    <p>schemasInternals - internal interfaces for XML Schemas</p>
-    <p>internal interfaces for the XML Schemas handling and schema validity checking The Schemas development is a Work In Progress. Some of those interfaces are not guaranteed to be API or ABI stable ! </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</a>;
-#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</a>;
-#define <a href="#XML_SCHEMAS_TYPE_FIXUP_1">XML_SCHEMAS_TYPE_FIXUP_1</a>;
-#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</a>;
-#define <a href="#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a>;
-#define <a href="#XML_SCHEMAS_QUALIF_ATTR">XML_SCHEMAS_QUALIF_ATTR</a>;
-#define <a href="#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a>;
-#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a>;
-#define <a href="#XML_SCHEMAS_ATTR_USE_REQUIRED">XML_SCHEMAS_ATTR_USE_REQUIRED</a>;
-#define <a href="#XML_SCHEMAS_FACET_COLLAPSE">XML_SCHEMAS_FACET_COLLAPSE</a>;
-#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE">XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE</a>;
-#define <a href="#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>schemasInternals: internal interfaces for XML Schemas</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-relaxng.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-schematron.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">schemasInternals</span></h2>
+<p>schemasInternals - internal interfaces for XML Schemas</p>
+<p>internal interfaces for the XML Schemas handling and schema validity checking The Schemas development is a Work In Progress. Some of those interfaces are not guaranteed to be API or ABI stable ! </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a>;
+#define <a href="#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a>;
+#define <a href="#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a>;
+#define <a href="#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a>;
+#define <a href="#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a>;
 #define <a href="#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a>;
-#define <a href="#XML_SCHEMAS_TYPE_INTERNAL_RESOLVED">XML_SCHEMAS_TYPE_INTERNAL_RESOLVED</a>;
-#define <a href="#XML_SCHEMAS_QUALIF_ELEM">XML_SCHEMAS_QUALIF_ELEM</a>;
-#define <a href="#XML_SCHEMAS_TYPE_VARIETY_LIST">XML_SCHEMAS_TYPE_VARIETY_LIST</a>;
-#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE">XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE</a>;
-#define <a href="#XML_SCHEMAS_ELEM_INTERNAL_CHECKED">XML_SCHEMAS_ELEM_INTERNAL_CHECKED</a>;
-#define <a href="#XML_SCHEMAS_INCLUDING_CONVERT_NS">XML_SCHEMAS_INCLUDING_CONVERT_NS</a>;
+#define <a href="#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a>;
+#define <a href="#XML_SCHEMAS_ATTRGROUP_HAS_REFS">XML_SCHEMAS_ATTRGROUP_HAS_REFS</a>;
+#define <a href="#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a>;
+#define <a href="#XML_SCHEMAS_ATTRGROUP_REDEFINED">XML_SCHEMAS_ATTRGROUP_REDEFINED</a>;
+#define <a href="#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a>;
+#define <a href="#XML_SCHEMAS_ATTR_FIXED">XML_SCHEMAS_ATTR_FIXED</a>;
+#define <a href="#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a>;
 #define <a href="#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a>;
+#define <a href="#XML_SCHEMAS_ATTR_NSDEFAULT">XML_SCHEMAS_ATTR_NSDEFAULT</a>;
+#define <a href="#XML_SCHEMAS_ATTR_USE_OPTIONAL">XML_SCHEMAS_ATTR_USE_OPTIONAL</a>;
 #define <a href="#XML_SCHEMAS_ATTR_USE_PROHIBITED">XML_SCHEMAS_ATTR_USE_PROHIBITED</a>;
-#define <a href="#XML_SCHEMAS_ELEM_NILLABLE">XML_SCHEMAS_ELEM_NILLABLE</a>;
+#define <a href="#XML_SCHEMAS_ATTR_USE_REQUIRED">XML_SCHEMAS_ATTR_USE_REQUIRED</a>;
+#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</a>;
+#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</a>;
 #define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION">XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION</a>;
-#define <a href="#XML_SCHEMAS_ATTRGROUP_REDEFINED">XML_SCHEMAS_ATTRGROUP_REDEFINED</a>;
-#define <a href="#XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD">XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD</a>;
-#define <a href="#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a>;
+#define <a href="#XML_SCHEMAS_ELEM_ABSTRACT">XML_SCHEMAS_ELEM_ABSTRACT</a>;
+#define <a href="#XML_SCHEMAS_ELEM_BLOCK_ABSENT">XML_SCHEMAS_ELEM_BLOCK_ABSENT</a>;
+#define <a href="#XML_SCHEMAS_ELEM_BLOCK_EXTENSION">XML_SCHEMAS_ELEM_BLOCK_EXTENSION</a>;
+#define <a href="#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</a>;
 #define <a href="#XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</a>;
-#define <a href="#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a>;
-#define <a href="#XML_SCHEMAS_TYPE_REDEFINED">XML_SCHEMAS_TYPE_REDEFINED</a>;
+#define <a href="#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a>;
+#define <a href="#XML_SCHEMAS_ELEM_DEFAULT">XML_SCHEMAS_ELEM_DEFAULT</a>;
+#define <a href="#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a>;
+#define <a href="#XML_SCHEMAS_ELEM_FINAL_EXTENSION">XML_SCHEMAS_ELEM_FINAL_EXTENSION</a>;
+#define <a href="#XML_SCHEMAS_ELEM_FINAL_RESTRICTION">XML_SCHEMAS_ELEM_FINAL_RESTRICTION</a>;
 #define <a href="#XML_SCHEMAS_ELEM_FIXED">XML_SCHEMAS_ELEM_FIXED</a>;
-#define <a href="#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a>;
-#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ATOMIC">XML_SCHEMAS_TYPE_VARIETY_ATOMIC</a>;
-#define <a href="#XML_SCHEMAS_TYPE_FINAL_LIST">XML_SCHEMAS_TYPE_FINAL_LIST</a>;
-#define <a href="#XML_SCHEMAS_ATTR_USE_OPTIONAL">XML_SCHEMAS_ATTR_USE_OPTIONAL</a>;
-#define <a href="#XML_SCHEMAS_ATTR_NSDEFAULT">XML_SCHEMAS_ATTR_NSDEFAULT</a>;
-#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_REPLACE">XML_SCHEMAS_TYPE_WHITESPACE_REPLACE</a>;
-#define <a href="#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</a>;
-#define <a href="#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a>;
-#define <a href="#XML_SCHEMAS_FACET_UNKNOWN">XML_SCHEMAS_FACET_UNKNOWN</a>;
-#define <a href="#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a>;
-#define <a href="#XML_SCHEMAS_FACET_PRESERVE">XML_SCHEMAS_FACET_PRESERVE</a>;
-#define <a href="#XML_SCHEMAS_ELEM_BLOCK_EXTENSION">XML_SCHEMAS_ELEM_BLOCK_EXTENSION</a>;
-#define <a href="#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a>;
-#define <a href="#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a>;
-#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a>;
-#define <a href="#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a>;
-#define <a href="#XML_SCHEMAS_TYPE_GLOBAL">XML_SCHEMAS_TYPE_GLOBAL</a>;
-#define <a href="#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a>;
-#define <a href="#XML_SCHEMAS_TYPE_MIXED">XML_SCHEMAS_TYPE_MIXED</a>;
-#define <a href="#XML_SCHEMAS_ATTR_FIXED">XML_SCHEMAS_ATTR_FIXED</a>;
+#define <a href="#XML_SCHEMAS_ELEM_GLOBAL">XML_SCHEMAS_ELEM_GLOBAL</a>;
+#define <a href="#XML_SCHEMAS_ELEM_INTERNAL_CHECKED">XML_SCHEMAS_ELEM_INTERNAL_CHECKED</a>;
 #define <a href="#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</a>;
-#define <a href="#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a>;
-#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_LIST">XML_SCHEMAS_FINAL_DEFAULT_LIST</a>;
-#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a>;
-#define <a href="#XML_SCHEMAS_ELEM_FINAL_RESTRICTION">XML_SCHEMAS_ELEM_FINAL_RESTRICTION</a>;
-#define <a href="#XML_SCHEMAS_WILDCARD_COMPLETE">XML_SCHEMAS_WILDCARD_COMPLETE</a>;
-#define <a href="#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a>;
+#define <a href="#XML_SCHEMAS_ELEM_NILLABLE">XML_SCHEMAS_ELEM_NILLABLE</a>;
 #define <a href="#XML_SCHEMAS_ELEM_NSDEFAULT">XML_SCHEMAS_ELEM_NSDEFAULT</a>;
-#define <a href="#XML_SCHEMAS_ELEM_GLOBAL">XML_SCHEMAS_ELEM_GLOBAL</a>;
+#define <a href="#XML_SCHEMAS_ELEM_REF">XML_SCHEMAS_ELEM_REF</a>;
+#define <a href="#XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD">XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD</a>;
 #define <a href="#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a>;
-#define <a href="#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a>;
+#define <a href="#XML_SCHEMAS_FACET_COLLAPSE">XML_SCHEMAS_FACET_COLLAPSE</a>;
+#define <a href="#XML_SCHEMAS_FACET_PRESERVE">XML_SCHEMAS_FACET_PRESERVE</a>;
+#define <a href="#XML_SCHEMAS_FACET_REPLACE">XML_SCHEMAS_FACET_REPLACE</a>;
+#define <a href="#XML_SCHEMAS_FACET_UNKNOWN">XML_SCHEMAS_FACET_UNKNOWN</a>;
+#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</a>;
+#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_LIST">XML_SCHEMAS_FINAL_DEFAULT_LIST</a>;
+#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</a>;
+#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_UNION">XML_SCHEMAS_FINAL_DEFAULT_UNION</a>;
+#define <a href="#XML_SCHEMAS_INCLUDING_CONVERT_NS">XML_SCHEMAS_INCLUDING_CONVERT_NS</a>;
+#define <a href="#XML_SCHEMAS_QUALIF_ATTR">XML_SCHEMAS_QUALIF_ATTR</a>;
+#define <a href="#XML_SCHEMAS_QUALIF_ELEM">XML_SCHEMAS_QUALIF_ELEM</a>;
+#define <a href="#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a>;
+#define <a href="#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a>;
+#define <a href="#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a>;
+#define <a href="#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</a>;
+#define <a href="#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a>;
+#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a>;
+#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a>;
+#define <a href="#XML_SCHEMAS_TYPE_FACETSNEEDVALUE">XML_SCHEMAS_TYPE_FACETSNEEDVALUE</a>;
+#define <a href="#XML_SCHEMAS_TYPE_FINAL_DEFAULT">XML_SCHEMAS_TYPE_FINAL_DEFAULT</a>;
+#define <a href="#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a>;
+#define <a href="#XML_SCHEMAS_TYPE_FINAL_LIST">XML_SCHEMAS_TYPE_FINAL_LIST</a>;
 #define <a href="#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a>;
+#define <a href="#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a>;
+#define <a href="#XML_SCHEMAS_TYPE_FIXUP_1">XML_SCHEMAS_TYPE_FIXUP_1</a>;
+#define <a href="#XML_SCHEMAS_TYPE_GLOBAL">XML_SCHEMAS_TYPE_GLOBAL</a>;
 #define <a href="#XML_SCHEMAS_TYPE_HAS_FACETS">XML_SCHEMAS_TYPE_HAS_FACETS</a>;
-#define <a href="#XML_SCHEMAS_ELEM_FINAL_EXTENSION">XML_SCHEMAS_ELEM_FINAL_EXTENSION</a>;
-#define <a href="#XML_SCHEMAS_TYPE_NORMVALUENEEDED">XML_SCHEMAS_TYPE_NORMVALUENEEDED</a>;
-#define <a href="#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a>;
-#define <a href="#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a>;
 #define <a href="#XML_SCHEMAS_TYPE_INTERNAL_INVALID">XML_SCHEMAS_TYPE_INTERNAL_INVALID</a>;
-#define <a href="#XML_SCHEMAS_ATTRGROUP_HAS_REFS">XML_SCHEMAS_ATTRGROUP_HAS_REFS</a>;
-#define <a href="#XML_SCHEMAS_ELEM_ABSTRACT">XML_SCHEMAS_ELEM_ABSTRACT</a>;
-#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</a>;
-#define <a href="#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a>;
-#define <a href="#XML_SCHEMAS_TYPE_FINAL_DEFAULT">XML_SCHEMAS_TYPE_FINAL_DEFAULT</a>;
-#define <a href="#XML_SCHEMAS_TYPE_FACETSNEEDVALUE">XML_SCHEMAS_TYPE_FACETSNEEDVALUE</a>;
-#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_UNION">XML_SCHEMAS_FINAL_DEFAULT_UNION</a>;
-#define <a href="#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</a>;
-#define <a href="#XML_SCHEMAS_FACET_REPLACE">XML_SCHEMAS_FACET_REPLACE</a>;
-#define <a href="#XML_SCHEMAS_ELEM_DEFAULT">XML_SCHEMAS_ELEM_DEFAULT</a>;
+#define <a href="#XML_SCHEMAS_TYPE_INTERNAL_RESOLVED">XML_SCHEMAS_TYPE_INTERNAL_RESOLVED</a>;
 #define <a href="#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a>;
-#define <a href="#XML_SCHEMAS_ELEM_BLOCK_ABSENT">XML_SCHEMAS_ELEM_BLOCK_ABSENT</a>;
-#define <a href="#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a>;
-#define <a href="#XML_SCHEMAS_ELEM_REF">XML_SCHEMAS_ELEM_REF</a>;
-typedef <a href="libxml2-schemasInternals.html#xmlSchemaAttributeGroup">xmlSchemaAttributeGroup</a> * <a href="#xmlSchemaAttributeGroupPtr">xmlSchemaAttributeGroupPtr</a>;
-typedef <a href="libxml2-schemasInternals.html#xmlSchemaElement">xmlSchemaElement</a> * <a href="#xmlSchemaElementPtr">xmlSchemaElementPtr</a>;
-typedef <a href="libxml2-schemasInternals.html#xmlSchemaFacetLink">xmlSchemaFacetLink</a> * <a href="#xmlSchemaFacetLinkPtr">xmlSchemaFacetLinkPtr</a>;
-typedef struct _xmlSchemaVal <a href="#xmlSchemaVal">xmlSchemaVal</a>;
-typedef <a href="libxml2-schemasInternals.html#xmlSchemaAttributeLink">xmlSchemaAttributeLink</a> * <a href="#xmlSchemaAttributeLinkPtr">xmlSchemaAttributeLinkPtr</a>;
-typedef struct _xmlSchemaType <a href="#xmlSchemaType">xmlSchemaType</a>;
+#define <a href="#XML_SCHEMAS_TYPE_MIXED">XML_SCHEMAS_TYPE_MIXED</a>;
+#define <a href="#XML_SCHEMAS_TYPE_NORMVALUENEEDED">XML_SCHEMAS_TYPE_NORMVALUENEEDED</a>;
+#define <a href="#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a>;
+#define <a href="#XML_SCHEMAS_TYPE_REDEFINED">XML_SCHEMAS_TYPE_REDEFINED</a>;
+#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a>;
+#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ATOMIC">XML_SCHEMAS_TYPE_VARIETY_ATOMIC</a>;
+#define <a href="#XML_SCHEMAS_TYPE_VARIETY_LIST">XML_SCHEMAS_TYPE_VARIETY_LIST</a>;
+#define <a href="#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a>;
+#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE">XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE</a>;
+#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE">XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE</a>;
+#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_REPLACE">XML_SCHEMAS_TYPE_WHITESPACE_REPLACE</a>;
+#define <a href="#XML_SCHEMAS_WILDCARD_COMPLETE">XML_SCHEMAS_WILDCARD_COMPLETE</a>;
 typedef struct _xmlSchemaAnnot <a href="#xmlSchemaAnnot">xmlSchemaAnnot</a>;
 typedef <a href="libxml2-schemasInternals.html#xmlSchemaAnnot">xmlSchemaAnnot</a> * <a href="#xmlSchemaAnnotPtr">xmlSchemaAnnotPtr</a>;
+typedef struct _xmlSchemaAttribute <a href="#xmlSchemaAttribute">xmlSchemaAttribute</a>;
+typedef struct _xmlSchemaAttributeGroup <a href="#xmlSchemaAttributeGroup">xmlSchemaAttributeGroup</a>;
+typedef <a href="libxml2-schemasInternals.html#xmlSchemaAttributeGroup">xmlSchemaAttributeGroup</a> * <a href="#xmlSchemaAttributeGroupPtr">xmlSchemaAttributeGroupPtr</a>;
+typedef struct _xmlSchemaAttributeLink <a href="#xmlSchemaAttributeLink">xmlSchemaAttributeLink</a>;
+typedef <a href="libxml2-schemasInternals.html#xmlSchemaAttributeLink">xmlSchemaAttributeLink</a> * <a href="#xmlSchemaAttributeLinkPtr">xmlSchemaAttributeLinkPtr</a>;
+typedef <a href="libxml2-schemasInternals.html#xmlSchemaAttribute">xmlSchemaAttribute</a> * <a href="#xmlSchemaAttributePtr">xmlSchemaAttributePtr</a>;
+typedef enum <a href="#xmlSchemaContentType">xmlSchemaContentType</a>;
 typedef struct _xmlSchemaElement <a href="#xmlSchemaElement">xmlSchemaElement</a>;
-typedef struct _xmlSchemaWildcard <a href="#xmlSchemaWildcard">xmlSchemaWildcard</a>;
-typedef <a href="libxml2-schemasInternals.html#xmlSchemaWildcard">xmlSchemaWildcard</a> * <a href="#xmlSchemaWildcardPtr">xmlSchemaWildcardPtr</a>;
+typedef <a href="libxml2-schemasInternals.html#xmlSchemaElement">xmlSchemaElement</a> * <a href="#xmlSchemaElementPtr">xmlSchemaElementPtr</a>;
+typedef struct _xmlSchemaFacet <a href="#xmlSchemaFacet">xmlSchemaFacet</a>;
+typedef struct _xmlSchemaFacetLink <a href="#xmlSchemaFacetLink">xmlSchemaFacetLink</a>;
+typedef <a href="libxml2-schemasInternals.html#xmlSchemaFacetLink">xmlSchemaFacetLink</a> * <a href="#xmlSchemaFacetLinkPtr">xmlSchemaFacetLinkPtr</a>;
 typedef <a href="libxml2-schemasInternals.html#xmlSchemaFacet">xmlSchemaFacet</a> * <a href="#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a>;
+typedef struct _xmlSchemaNotation <a href="#xmlSchemaNotation">xmlSchemaNotation</a>;
+typedef <a href="libxml2-schemasInternals.html#xmlSchemaNotation">xmlSchemaNotation</a> * <a href="#xmlSchemaNotationPtr">xmlSchemaNotationPtr</a>;
+typedef struct _xmlSchemaType <a href="#xmlSchemaType">xmlSchemaType</a>;
 typedef struct _xmlSchemaTypeLink <a href="#xmlSchemaTypeLink">xmlSchemaTypeLink</a>;
-typedef struct _xmlSchemaAttributeLink <a href="#xmlSchemaAttributeLink">xmlSchemaAttributeLink</a>;
-typedef <a href="libxml2-schemasInternals.html#xmlSchemaVal">xmlSchemaVal</a> * <a href="#xmlSchemaValPtr">xmlSchemaValPtr</a>;
-typedef struct _xmlSchemaFacetLink <a href="#xmlSchemaFacetLink">xmlSchemaFacetLink</a>;
-typedef <a href="libxml2-schemasInternals.html#xmlSchemaWildcardNs">xmlSchemaWildcardNs</a> * <a href="#xmlSchemaWildcardNsPtr">xmlSchemaWildcardNsPtr</a>;
-typedef struct _xmlSchemaAttributeGroup <a href="#xmlSchemaAttributeGroup">xmlSchemaAttributeGroup</a>;
 typedef <a href="libxml2-schemasInternals.html#xmlSchemaTypeLink">xmlSchemaTypeLink</a> * <a href="#xmlSchemaTypeLinkPtr">xmlSchemaTypeLinkPtr</a>;
-typedef struct _xmlSchemaWildcardNs <a href="#xmlSchemaWildcardNs">xmlSchemaWildcardNs</a>;
-typedef <a href="libxml2-schemasInternals.html#xmlSchemaAttribute">xmlSchemaAttribute</a> * <a href="#xmlSchemaAttributePtr">xmlSchemaAttributePtr</a>;
-typedef <a href="libxml2-schemasInternals.html#xmlSchemaNotation">xmlSchemaNotation</a> * <a href="#xmlSchemaNotationPtr">xmlSchemaNotationPtr</a>;
-typedef enum <a href="#xmlSchemaValType">xmlSchemaValType</a>;
 typedef <a href="libxml2-schemasInternals.html#xmlSchemaType">xmlSchemaType</a> * <a href="#xmlSchemaTypePtr">xmlSchemaTypePtr</a>;
-typedef struct _xmlSchemaNotation <a href="#xmlSchemaNotation">xmlSchemaNotation</a>;
-typedef struct _xmlSchemaFacet <a href="#xmlSchemaFacet">xmlSchemaFacet</a>;
-typedef enum <a href="#xmlSchemaContentType">xmlSchemaContentType</a>;
 typedef enum <a href="#xmlSchemaTypeType">xmlSchemaTypeType</a>;
-typedef struct _xmlSchemaAttribute <a href="#xmlSchemaAttribute">xmlSchemaAttribute</a>;
+typedef struct _xmlSchemaVal <a href="#xmlSchemaVal">xmlSchemaVal</a>;
+typedef <a href="libxml2-schemasInternals.html#xmlSchemaVal">xmlSchemaVal</a> * <a href="#xmlSchemaValPtr">xmlSchemaValPtr</a>;
+typedef enum <a href="#xmlSchemaValType">xmlSchemaValType</a>;
+typedef struct _xmlSchemaWildcard <a href="#xmlSchemaWildcard">xmlSchemaWildcard</a>;
+typedef struct _xmlSchemaWildcardNs <a href="#xmlSchemaWildcardNs">xmlSchemaWildcardNs</a>;
+typedef <a href="libxml2-schemasInternals.html#xmlSchemaWildcardNs">xmlSchemaWildcardNs</a> * <a href="#xmlSchemaWildcardNsPtr">xmlSchemaWildcardNsPtr</a>;
+typedef <a href="libxml2-schemasInternals.html#xmlSchemaWildcard">xmlSchemaWildcard</a> * <a href="#xmlSchemaWildcardPtr">xmlSchemaWildcardPtr</a>;
 void   <a href="#xmlSchemaFreeType">xmlSchemaFreeType</a>              (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type);
 void   <a href="#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a>              (<a href="libxml2-schemasInternals.html#xmlSchemaWildcardPtr">xmlSchemaWildcardPtr</a> wildcard);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ANYATTR_LAX">Macro </a>XML_SCHEMAS_ANYATTR_LAX</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a>;
-</pre><p>Ignore validation non definition on attributes Obsolete, not used anymore.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ANYATTR_SKIP">Macro </a>XML_SCHEMAS_ANYATTR_SKIP</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a>;
-</pre><p>Skip unknown <a href="libxml2-SAX.html#attribute">attribute</a> from validation Obsolete, not used anymore.</p>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ANYATTR_LAX">Macro </a>XML_SCHEMAS_ANYATTR_LAX</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a>;
+</pre>
+<p>Ignore validation non definition on attributes Obsolete, not used anymore.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ANYATTR_SKIP">Macro </a>XML_SCHEMAS_ANYATTR_SKIP</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a>;
+</pre>
+<p>Skip unknown <a href="libxml2-SAX.html#attribute">attribute</a> from validation Obsolete, not used anymore.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ANYATTR_STRICT">Macro </a>XML_SCHEMAS_ANYATTR_STRICT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a>;
-</pre><p>Apply strict validation rules on attributes Obsolete, not used anymore.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ANYATTR_STRICT">Macro </a>XML_SCHEMAS_ANYATTR_STRICT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a>;
+</pre>
+<p>Apply strict validation rules on attributes Obsolete, not used anymore.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ANY_LAX">Macro </a>XML_SCHEMAS_ANY_LAX</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a>;
-</pre><p>Used by wildcards. Validate if type found, don't worry if not found</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ANY_LAX">Macro </a>XML_SCHEMAS_ANY_LAX</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a>;
+</pre>
+<p>Used by wildcards. Validate if type found, don't worry if not found</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ANY_SKIP">Macro </a>XML_SCHEMAS_ANY_SKIP</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a>;
-</pre><p>Skip unknown <a href="libxml2-SAX.html#attribute">attribute</a> from validation</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ANY_SKIP">Macro </a>XML_SCHEMAS_ANY_SKIP</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a>;
+</pre>
+<p>Skip unknown <a href="libxml2-SAX.html#attribute">attribute</a> from validation</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ANY_STRICT">Macro </a>XML_SCHEMAS_ANY_STRICT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a>;
-</pre><p>Used by wildcards. Apply strict validation rules</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ANY_STRICT">Macro </a>XML_SCHEMAS_ANY_STRICT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a>;
+</pre>
+<p>Used by wildcards. Apply strict validation rules</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTRGROUP_GLOBAL">Macro </a>XML_SCHEMAS_ATTRGROUP_GLOBAL</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a>;
+</pre>
+<p>The <a href="libxml2-SAX.html#attribute">attribute</a> group has been defined.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTRGROUP_GLOBAL">Macro </a>XML_SCHEMAS_ATTRGROUP_GLOBAL</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a>;
-</pre><p>The <a href="libxml2-SAX.html#attribute">attribute</a> group has been defined.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTRGROUP_HAS_REFS">Macro </a>XML_SCHEMAS_ATTRGROUP_HAS_REFS</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_HAS_REFS">XML_SCHEMAS_ATTRGROUP_HAS_REFS</a>;
+</pre>
+<p>Whether this attr. group contains attr. group references.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTRGROUP_HAS_REFS">Macro </a>XML_SCHEMAS_ATTRGROUP_HAS_REFS</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_HAS_REFS">XML_SCHEMAS_ATTRGROUP_HAS_REFS</a>;
-</pre><p>Whether this attr. group contains attr. group references.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTRGROUP_MARKED">Macro </a>XML_SCHEMAS_ATTRGROUP_MARKED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a>;
+</pre>
+<p>Marks the attr group as marked; used for circular checks.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTRGROUP_MARKED">Macro </a>XML_SCHEMAS_ATTRGROUP_MARKED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a>;
-</pre><p>Marks the attr group as marked; used for circular checks.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTRGROUP_REDEFINED">Macro </a>XML_SCHEMAS_ATTRGROUP_REDEFINED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_REDEFINED">XML_SCHEMAS_ATTRGROUP_REDEFINED</a>;
+</pre>
+<p>The attr group was redefined.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTRGROUP_REDEFINED">Macro </a>XML_SCHEMAS_ATTRGROUP_REDEFINED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_REDEFINED">XML_SCHEMAS_ATTRGROUP_REDEFINED</a>;
-</pre><p>The attr group was redefined.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">Macro </a>XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a>;
+</pre>
+<p>The <a href="libxml2-SAX.html#attribute">attribute</a> wildcard has been built.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">Macro </a>XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a>;
-</pre><p>The <a href="libxml2-SAX.html#attribute">attribute</a> wildcard has been built.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTR_FIXED">Macro </a>XML_SCHEMAS_ATTR_FIXED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_FIXED">XML_SCHEMAS_ATTR_FIXED</a>;
+</pre>
+<p>the <a href="libxml2-SAX.html#attribute">attribute</a> has a fixed value</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTR_FIXED">Macro </a>XML_SCHEMAS_ATTR_FIXED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_FIXED">XML_SCHEMAS_ATTR_FIXED</a>;
-</pre><p>the <a href="libxml2-SAX.html#attribute">attribute</a> has a fixed value</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTR_GLOBAL">Macro </a>XML_SCHEMAS_ATTR_GLOBAL</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a>;
+</pre>
+<p>allow elements in no namespace</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTR_GLOBAL">Macro </a>XML_SCHEMAS_ATTR_GLOBAL</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a>;
-</pre><p>allow elements in no namespace</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">Macro </a>XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a>;
+</pre>
+<p>this is set when the "type" and "ref" references have been resolved.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">Macro </a>XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a>;
-</pre><p>this is set when the "type" and "ref" references have been resolved.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTR_NSDEFAULT">Macro </a>XML_SCHEMAS_ATTR_NSDEFAULT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_NSDEFAULT">XML_SCHEMAS_ATTR_NSDEFAULT</a>;
+</pre>
+<p>allow elements in no namespace</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTR_NSDEFAULT">Macro </a>XML_SCHEMAS_ATTR_NSDEFAULT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_NSDEFAULT">XML_SCHEMAS_ATTR_NSDEFAULT</a>;
-</pre><p>allow elements in no namespace</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTR_USE_OPTIONAL">Macro </a>XML_SCHEMAS_ATTR_USE_OPTIONAL</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_OPTIONAL">XML_SCHEMAS_ATTR_USE_OPTIONAL</a>;
+</pre>
+<p>The <a href="libxml2-SAX.html#attribute">attribute</a> is optional.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTR_USE_OPTIONAL">Macro </a>XML_SCHEMAS_ATTR_USE_OPTIONAL</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_OPTIONAL">XML_SCHEMAS_ATTR_USE_OPTIONAL</a>;
-</pre><p>The <a href="libxml2-SAX.html#attribute">attribute</a> is optional.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTR_USE_PROHIBITED">Macro </a>XML_SCHEMAS_ATTR_USE_PROHIBITED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_PROHIBITED">XML_SCHEMAS_ATTR_USE_PROHIBITED</a>;
+</pre>
+<p>Used by wildcards. The <a href="libxml2-SAX.html#attribute">attribute</a> is prohibited.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTR_USE_PROHIBITED">Macro </a>XML_SCHEMAS_ATTR_USE_PROHIBITED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_PROHIBITED">XML_SCHEMAS_ATTR_USE_PROHIBITED</a>;
-</pre><p>Used by wildcards. The <a href="libxml2-SAX.html#attribute">attribute</a> is prohibited.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ATTR_USE_REQUIRED">Macro </a>XML_SCHEMAS_ATTR_USE_REQUIRED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_REQUIRED">XML_SCHEMAS_ATTR_USE_REQUIRED</a>;
+</pre>
+<p>The <a href="libxml2-SAX.html#attribute">attribute</a> is required.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ATTR_USE_REQUIRED">Macro </a>XML_SCHEMAS_ATTR_USE_REQUIRED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_REQUIRED">XML_SCHEMAS_ATTR_USE_REQUIRED</a>;
-</pre><p>The <a href="libxml2-SAX.html#attribute">attribute</a> is required.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">Macro </a>XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</a>;
+</pre>
+<p>the schema has "extension" in the set of blockDefault.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">Macro </a>XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</a>;
-</pre><p>the schema has "extension" in the set of blockDefault.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">Macro </a>XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</a>;
+</pre>
+<p>the schema has "restriction" in the set of blockDefault.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">Macro </a>XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</a>;
-</pre><p>the schema has "restriction" in the set of blockDefault.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION">Macro </a>XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION">XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION</a>;
+</pre>
+<p>the schema has "substitution" in the set of blockDefault.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION">Macro </a>XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION">XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION</a>;
-</pre><p>the schema has "substitution" in the set of blockDefault.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_ABSTRACT">Macro </a>XML_SCHEMAS_ELEM_ABSTRACT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_ABSTRACT">XML_SCHEMAS_ELEM_ABSTRACT</a>;
+</pre>
+<p>the element is abstract</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_ABSTRACT">Macro </a>XML_SCHEMAS_ELEM_ABSTRACT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_ABSTRACT">XML_SCHEMAS_ELEM_ABSTRACT</a>;
-</pre><p>the element is abstract</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_BLOCK_ABSENT">Macro </a>XML_SCHEMAS_ELEM_BLOCK_ABSENT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_ABSENT">XML_SCHEMAS_ELEM_BLOCK_ABSENT</a>;
+</pre>
+<p>the "block" <a href="libxml2-SAX.html#attribute">attribute</a> is absent</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_BLOCK_ABSENT">Macro </a>XML_SCHEMAS_ELEM_BLOCK_ABSENT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_ABSENT">XML_SCHEMAS_ELEM_BLOCK_ABSENT</a>;
-</pre><p>the "block" <a href="libxml2-SAX.html#attribute">attribute</a> is absent</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_BLOCK_EXTENSION">Macro </a>XML_SCHEMAS_ELEM_BLOCK_EXTENSION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_EXTENSION">XML_SCHEMAS_ELEM_BLOCK_EXTENSION</a>;
+</pre>
+<p>disallowed substitutions are absent</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_BLOCK_EXTENSION">Macro </a>XML_SCHEMAS_ELEM_BLOCK_EXTENSION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_EXTENSION">XML_SCHEMAS_ELEM_BLOCK_EXTENSION</a>;
-</pre><p>disallowed substitutions are absent</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">Macro </a>XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</a>;
-</pre><p>disallowed substitutions: "restriction"</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">Macro </a>XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</a>;
+</pre>
+<p>disallowed substitutions: "restriction"</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">Macro </a>XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</a>;
-</pre><p>disallowed substitutions: "substitution"</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">Macro </a>XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</a>;
+</pre>
+<p>disallowed substitutions: "substitution"</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_CIRCULAR">Macro </a>XML_SCHEMAS_ELEM_CIRCULAR</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a>;
-</pre><p>a helper flag for the search of circular references.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_CIRCULAR">Macro </a>XML_SCHEMAS_ELEM_CIRCULAR</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a>;
+</pre>
+<p>a helper flag for the search of circular references.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_DEFAULT">Macro </a>XML_SCHEMAS_ELEM_DEFAULT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_DEFAULT">XML_SCHEMAS_ELEM_DEFAULT</a>;
-</pre><p>the element has a default value</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_DEFAULT">Macro </a>XML_SCHEMAS_ELEM_DEFAULT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_DEFAULT">XML_SCHEMAS_ELEM_DEFAULT</a>;
+</pre>
+<p>the element has a default value</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_FINAL_ABSENT">Macro </a>XML_SCHEMAS_ELEM_FINAL_ABSENT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a>;
-</pre><p>substitution group exclusions are absent</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_FINAL_ABSENT">Macro </a>XML_SCHEMAS_ELEM_FINAL_ABSENT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a>;
+</pre>
+<p>substitution group exclusions are absent</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_FINAL_EXTENSION">Macro </a>XML_SCHEMAS_ELEM_FINAL_EXTENSION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_EXTENSION">XML_SCHEMAS_ELEM_FINAL_EXTENSION</a>;
-</pre><p>substitution group exclusions: "extension"</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_FINAL_EXTENSION">Macro </a>XML_SCHEMAS_ELEM_FINAL_EXTENSION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_EXTENSION">XML_SCHEMAS_ELEM_FINAL_EXTENSION</a>;
+</pre>
+<p>substitution group exclusions: "extension"</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_FINAL_RESTRICTION">Macro </a>XML_SCHEMAS_ELEM_FINAL_RESTRICTION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_RESTRICTION">XML_SCHEMAS_ELEM_FINAL_RESTRICTION</a>;
-</pre><p>substitution group exclusions: "restriction"</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_FINAL_RESTRICTION">Macro </a>XML_SCHEMAS_ELEM_FINAL_RESTRICTION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_RESTRICTION">XML_SCHEMAS_ELEM_FINAL_RESTRICTION</a>;
+</pre>
+<p>substitution group exclusions: "restriction"</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_FIXED">Macro </a>XML_SCHEMAS_ELEM_FIXED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FIXED">XML_SCHEMAS_ELEM_FIXED</a>;
-</pre><p>the element has a fixed value</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_FIXED">Macro </a>XML_SCHEMAS_ELEM_FIXED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FIXED">XML_SCHEMAS_ELEM_FIXED</a>;
+</pre>
+<p>the element has a fixed value</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_GLOBAL">Macro </a>XML_SCHEMAS_ELEM_GLOBAL</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_GLOBAL">XML_SCHEMAS_ELEM_GLOBAL</a>;
-</pre><p>the element is global</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_GLOBAL">Macro </a>XML_SCHEMAS_ELEM_GLOBAL</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_GLOBAL">XML_SCHEMAS_ELEM_GLOBAL</a>;
+</pre>
+<p>the element is global</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_INTERNAL_CHECKED">Macro </a>XML_SCHEMAS_ELEM_INTERNAL_CHECKED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_INTERNAL_CHECKED">XML_SCHEMAS_ELEM_INTERNAL_CHECKED</a>;
-</pre><p>this is set when the elem decl has been checked against all constraints</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_INTERNAL_CHECKED">Macro </a>XML_SCHEMAS_ELEM_INTERNAL_CHECKED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_INTERNAL_CHECKED">XML_SCHEMAS_ELEM_INTERNAL_CHECKED</a>;
+</pre>
+<p>this is set when the elem decl has been checked against all constraints</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">Macro </a>XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</a>;
-</pre><p>this is set when "type", "ref", "substitutionGroup" references have been resolved.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">Macro </a>XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</a>;
+</pre>
+<p>this is set when "type", "ref", "substitutionGroup" references have been resolved.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_NILLABLE">Macro </a>XML_SCHEMAS_ELEM_NILLABLE</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_NILLABLE">XML_SCHEMAS_ELEM_NILLABLE</a>;
-</pre><p>the element is nillable</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_NILLABLE">Macro </a>XML_SCHEMAS_ELEM_NILLABLE</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_NILLABLE">XML_SCHEMAS_ELEM_NILLABLE</a>;
+</pre>
+<p>the element is nillable</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_NSDEFAULT">Macro </a>XML_SCHEMAS_ELEM_NSDEFAULT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_NSDEFAULT">XML_SCHEMAS_ELEM_NSDEFAULT</a>;
-</pre><p>allow elements in no namespace Obsolete, not used anymore.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_NSDEFAULT">Macro </a>XML_SCHEMAS_ELEM_NSDEFAULT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_NSDEFAULT">XML_SCHEMAS_ELEM_NSDEFAULT</a>;
+</pre>
+<p>allow elements in no namespace Obsolete, not used anymore.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_REF">Macro </a>XML_SCHEMAS_ELEM_REF</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_REF">XML_SCHEMAS_ELEM_REF</a>;
-</pre><p>the element is a <a href="libxml2-SAX.html#reference">reference</a> to a type</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_REF">Macro </a>XML_SCHEMAS_ELEM_REF</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_REF">XML_SCHEMAS_ELEM_REF</a>;
+</pre>
+<p>the element is a <a href="libxml2-SAX.html#reference">reference</a> to a type</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD">Macro </a>XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD">XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD</a>;
-</pre><p>the declaration is a substitution group head</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD">Macro </a>XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD">XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD</a>;
+</pre>
+<p>the declaration is a substitution group head</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_ELEM_TOPLEVEL">Macro </a>XML_SCHEMAS_ELEM_TOPLEVEL</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a>;
-</pre><p>the element is top level obsolete: use <a href="libxml2-schemasInternals.html#XML_SCHEMAS_ELEM_GLOBAL">XML_SCHEMAS_ELEM_GLOBAL</a> instead</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_ELEM_TOPLEVEL">Macro </a>XML_SCHEMAS_ELEM_TOPLEVEL</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a>;
+</pre>
+<p>the element is top level obsolete: use <a href="libxml2-schemasInternals.html#XML_SCHEMAS_ELEM_GLOBAL">XML_SCHEMAS_ELEM_GLOBAL</a> instead</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_FACET_COLLAPSE">Macro </a>XML_SCHEMAS_FACET_COLLAPSE</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_COLLAPSE">XML_SCHEMAS_FACET_COLLAPSE</a>;
-</pre><p>collapse the types of the facet</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_FACET_COLLAPSE">Macro </a>XML_SCHEMAS_FACET_COLLAPSE</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_COLLAPSE">XML_SCHEMAS_FACET_COLLAPSE</a>;
+</pre>
+<p>collapse the types of the facet</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_FACET_PRESERVE">Macro </a>XML_SCHEMAS_FACET_PRESERVE</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_PRESERVE">XML_SCHEMAS_FACET_PRESERVE</a>;
-</pre><p>preserve the type of the facet</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_FACET_PRESERVE">Macro </a>XML_SCHEMAS_FACET_PRESERVE</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_PRESERVE">XML_SCHEMAS_FACET_PRESERVE</a>;
+</pre>
+<p>preserve the type of the facet</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_FACET_REPLACE">Macro </a>XML_SCHEMAS_FACET_REPLACE</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_REPLACE">XML_SCHEMAS_FACET_REPLACE</a>;
-</pre><p>replace the type of the facet</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_FACET_REPLACE">Macro </a>XML_SCHEMAS_FACET_REPLACE</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_REPLACE">XML_SCHEMAS_FACET_REPLACE</a>;
+</pre>
+<p>replace the type of the facet</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_FACET_UNKNOWN">Macro </a>XML_SCHEMAS_FACET_UNKNOWN</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_UNKNOWN">XML_SCHEMAS_FACET_UNKNOWN</a>;
-</pre><p>unknown facet handling</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_FACET_UNKNOWN">Macro </a>XML_SCHEMAS_FACET_UNKNOWN</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_UNKNOWN">XML_SCHEMAS_FACET_UNKNOWN</a>;
+</pre>
+<p>unknown facet handling</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">Macro </a>XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</a>;
-</pre><p>the schema has "extension" in the set of finalDefault.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">Macro </a>XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</a>;
+</pre>
+<p>the schema has "extension" in the set of finalDefault.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_FINAL_DEFAULT_LIST">Macro </a>XML_SCHEMAS_FINAL_DEFAULT_LIST</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_LIST">XML_SCHEMAS_FINAL_DEFAULT_LIST</a>;
-</pre><p>the schema has "list" in the set of finalDefault.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_FINAL_DEFAULT_LIST">Macro </a>XML_SCHEMAS_FINAL_DEFAULT_LIST</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_LIST">XML_SCHEMAS_FINAL_DEFAULT_LIST</a>;
+</pre>
+<p>the schema has "list" in the set of finalDefault.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">Macro </a>XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</a>;
-</pre><p>the schema has "restriction" in the set of finalDefault.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">Macro </a>XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</a>;
+</pre>
+<p>the schema has "restriction" in the set of finalDefault.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_FINAL_DEFAULT_UNION">Macro </a>XML_SCHEMAS_FINAL_DEFAULT_UNION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_UNION">XML_SCHEMAS_FINAL_DEFAULT_UNION</a>;
-</pre><p>the schema has "union" in the set of finalDefault.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_FINAL_DEFAULT_UNION">Macro </a>XML_SCHEMAS_FINAL_DEFAULT_UNION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_UNION">XML_SCHEMAS_FINAL_DEFAULT_UNION</a>;
+</pre>
+<p>the schema has "union" in the set of finalDefault.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_INCLUDING_CONVERT_NS">Macro </a>XML_SCHEMAS_INCLUDING_CONVERT_NS</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_INCLUDING_CONVERT_NS">XML_SCHEMAS_INCLUDING_CONVERT_NS</a>;
-</pre><p>the schema is currently including an other schema with no target namespace.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_INCLUDING_CONVERT_NS">Macro </a>XML_SCHEMAS_INCLUDING_CONVERT_NS</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_INCLUDING_CONVERT_NS">XML_SCHEMAS_INCLUDING_CONVERT_NS</a>;
+</pre>
+<p>the schema is currently including an other schema with no target namespace.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_QUALIF_ATTR">Macro </a>XML_SCHEMAS_QUALIF_ATTR</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_QUALIF_ATTR">XML_SCHEMAS_QUALIF_ATTR</a>;
-</pre><p>Reflects attributeFormDefault == qualified in an XML schema document.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_QUALIF_ATTR">Macro </a>XML_SCHEMAS_QUALIF_ATTR</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_QUALIF_ATTR">XML_SCHEMAS_QUALIF_ATTR</a>;
+</pre>
+<p>Reflects attributeFormDefault == qualified in an XML schema document.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_QUALIF_ELEM">Macro </a>XML_SCHEMAS_QUALIF_ELEM</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_QUALIF_ELEM">XML_SCHEMAS_QUALIF_ELEM</a>;
-</pre><p>Reflects elementFormDefault == qualified in an XML schema document.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_QUALIF_ELEM">Macro </a>XML_SCHEMAS_QUALIF_ELEM</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_QUALIF_ELEM">XML_SCHEMAS_QUALIF_ELEM</a>;
+</pre>
+<p>Reflects elementFormDefault == qualified in an XML schema document.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_ABSTRACT">Macro </a>XML_SCHEMAS_TYPE_ABSTRACT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a>;
-</pre><p>the simple/complexType is abstract.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_ABSTRACT">Macro </a>XML_SCHEMAS_TYPE_ABSTRACT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a>;
+</pre>
+<p>the simple/complexType is abstract.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_BLOCK_DEFAULT">Macro </a>XML_SCHEMAS_TYPE_BLOCK_DEFAULT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a>;
-</pre><p>the complexType did not specify 'block' so use the default of the &lt;schema&gt; item.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_BLOCK_DEFAULT">Macro </a>XML_SCHEMAS_TYPE_BLOCK_DEFAULT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a>;
+</pre>
+<p>the complexType did not specify 'block' so use the default of the &lt;schema&gt; item.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_BLOCK_EXTENSION">Macro </a>XML_SCHEMAS_TYPE_BLOCK_EXTENSION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a>;
-</pre><p>the complexType has a 'block' of "extension".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_BLOCK_EXTENSION">Macro </a>XML_SCHEMAS_TYPE_BLOCK_EXTENSION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a>;
+</pre>
+<p>the complexType has a 'block' of "extension".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">Macro </a>XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</a>;
-</pre><p>the complexType has a 'block' of "restriction".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">Macro </a>XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</a>;
+</pre>
+<p>the complexType has a 'block' of "restriction".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">Macro </a>XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a>;
-</pre><p>Marks the item as a builtin primitive.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">Macro </a>XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a>;
+</pre>
+<p>Marks the item as a builtin primitive.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">Macro </a>XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a>;
-</pre><p>the simple or complex type has a derivation method of "extension".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">Macro </a>XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a>;
+</pre>
+<p>the simple or complex type has a derivation method of "extension".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">Macro </a>XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a>;
-</pre><p>the simple or complex type has a derivation method of "restriction".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">Macro </a>XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a>;
+</pre>
+<p>the simple or complex type has a derivation method of "restriction".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_FACETSNEEDVALUE">Macro </a>XML_SCHEMAS_TYPE_FACETSNEEDVALUE</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FACETSNEEDVALUE">XML_SCHEMAS_TYPE_FACETSNEEDVALUE</a>;
-</pre><p>indicates if the facets need a computed value</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_FACETSNEEDVALUE">Macro </a>XML_SCHEMAS_TYPE_FACETSNEEDVALUE</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FACETSNEEDVALUE">XML_SCHEMAS_TYPE_FACETSNEEDVALUE</a>;
+</pre>
+<p>indicates if the facets need a computed value</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_FINAL_DEFAULT">Macro </a>XML_SCHEMAS_TYPE_FINAL_DEFAULT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_DEFAULT">XML_SCHEMAS_TYPE_FINAL_DEFAULT</a>;
-</pre><p>the simpleType has a final of "default".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_FINAL_DEFAULT">Macro </a>XML_SCHEMAS_TYPE_FINAL_DEFAULT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_DEFAULT">XML_SCHEMAS_TYPE_FINAL_DEFAULT</a>;
+</pre>
+<p>the simpleType has a final of "default".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_FINAL_EXTENSION">Macro </a>XML_SCHEMAS_TYPE_FINAL_EXTENSION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a>;
-</pre><p>the complexType has a final of "extension".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_FINAL_EXTENSION">Macro </a>XML_SCHEMAS_TYPE_FINAL_EXTENSION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a>;
+</pre>
+<p>the complexType has a final of "extension".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_FINAL_LIST">Macro </a>XML_SCHEMAS_TYPE_FINAL_LIST</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_LIST">XML_SCHEMAS_TYPE_FINAL_LIST</a>;
-</pre><p>the simpleType has a final of "list".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_FINAL_LIST">Macro </a>XML_SCHEMAS_TYPE_FINAL_LIST</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_LIST">XML_SCHEMAS_TYPE_FINAL_LIST</a>;
+</pre>
+<p>the simpleType has a final of "list".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_FINAL_RESTRICTION">Macro </a>XML_SCHEMAS_TYPE_FINAL_RESTRICTION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a>;
-</pre><p>the simpleType/complexType has a final of "restriction".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_FINAL_RESTRICTION">Macro </a>XML_SCHEMAS_TYPE_FINAL_RESTRICTION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a>;
+</pre>
+<p>the simpleType/complexType has a final of "restriction".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_FINAL_UNION">Macro </a>XML_SCHEMAS_TYPE_FINAL_UNION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a>;
-</pre><p>the simpleType has a final of "union".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_FINAL_UNION">Macro </a>XML_SCHEMAS_TYPE_FINAL_UNION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a>;
+</pre>
+<p>the simpleType has a final of "union".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_FIXUP_1">Macro </a>XML_SCHEMAS_TYPE_FIXUP_1</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FIXUP_1">XML_SCHEMAS_TYPE_FIXUP_1</a>;
-</pre><p>First stage of fixup was done.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_FIXUP_1">Macro </a>XML_SCHEMAS_TYPE_FIXUP_1</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FIXUP_1">XML_SCHEMAS_TYPE_FIXUP_1</a>;
+</pre>
+<p>First stage of fixup was done.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_GLOBAL">Macro </a>XML_SCHEMAS_TYPE_GLOBAL</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_GLOBAL">XML_SCHEMAS_TYPE_GLOBAL</a>;
-</pre><p>the type is global</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_GLOBAL">Macro </a>XML_SCHEMAS_TYPE_GLOBAL</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_GLOBAL">XML_SCHEMAS_TYPE_GLOBAL</a>;
+</pre>
+<p>the type is global</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_HAS_FACETS">Macro </a>XML_SCHEMAS_TYPE_HAS_FACETS</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_HAS_FACETS">XML_SCHEMAS_TYPE_HAS_FACETS</a>;
-</pre><p>has facets</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_HAS_FACETS">Macro </a>XML_SCHEMAS_TYPE_HAS_FACETS</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_HAS_FACETS">XML_SCHEMAS_TYPE_HAS_FACETS</a>;
+</pre>
+<p>has facets</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_INTERNAL_INVALID">Macro </a>XML_SCHEMAS_TYPE_INTERNAL_INVALID</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_INTERNAL_INVALID">XML_SCHEMAS_TYPE_INTERNAL_INVALID</a>;
-</pre><p>indicates that the type is invalid</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_INTERNAL_INVALID">Macro </a>XML_SCHEMAS_TYPE_INTERNAL_INVALID</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_INTERNAL_INVALID">XML_SCHEMAS_TYPE_INTERNAL_INVALID</a>;
+</pre>
+<p>indicates that the type is invalid</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_INTERNAL_RESOLVED">Macro </a>XML_SCHEMAS_TYPE_INTERNAL_RESOLVED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_INTERNAL_RESOLVED">XML_SCHEMAS_TYPE_INTERNAL_RESOLVED</a>;
-</pre><p>indicates that the type was typefixed</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_INTERNAL_RESOLVED">Macro </a>XML_SCHEMAS_TYPE_INTERNAL_RESOLVED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_INTERNAL_RESOLVED">XML_SCHEMAS_TYPE_INTERNAL_RESOLVED</a>;
+</pre>
+<p>indicates that the type was typefixed</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_MARKED">Macro </a>XML_SCHEMAS_TYPE_MARKED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a>;
-</pre><p>Marks the item as marked; used for circular checks.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_MARKED">Macro </a>XML_SCHEMAS_TYPE_MARKED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a>;
+</pre>
+<p>Marks the item as marked; used for circular checks.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_MIXED">Macro </a>XML_SCHEMAS_TYPE_MIXED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_MIXED">XML_SCHEMAS_TYPE_MIXED</a>;
-</pre><p>the element content type is mixed</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_MIXED">Macro </a>XML_SCHEMAS_TYPE_MIXED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_MIXED">XML_SCHEMAS_TYPE_MIXED</a>;
+</pre>
+<p>the element content type is mixed</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_NORMVALUENEEDED">Macro </a>XML_SCHEMAS_TYPE_NORMVALUENEEDED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_NORMVALUENEEDED">XML_SCHEMAS_TYPE_NORMVALUENEEDED</a>;
-</pre><p>indicates if the facets (pattern) need a normalized value</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_NORMVALUENEEDED">Macro </a>XML_SCHEMAS_TYPE_NORMVALUENEEDED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_NORMVALUENEEDED">XML_SCHEMAS_TYPE_NORMVALUENEEDED</a>;
+</pre>
+<p>indicates if the facets (pattern) need a normalized value</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">Macro </a>XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a>;
-</pre><p>the complexType owns an <a href="libxml2-SAX.html#attribute">attribute</a> wildcard, i.e. it can be freed by the complexType</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">Macro </a>XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a>;
+</pre>
+<p>the complexType owns an <a href="libxml2-SAX.html#attribute">attribute</a> wildcard, i.e. it can be freed by the complexType</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_REDEFINED">Macro </a>XML_SCHEMAS_TYPE_REDEFINED</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_REDEFINED">XML_SCHEMAS_TYPE_REDEFINED</a>;
-</pre><p>The type was redefined.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_REDEFINED">Macro </a>XML_SCHEMAS_TYPE_REDEFINED</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_REDEFINED">XML_SCHEMAS_TYPE_REDEFINED</a>;
+</pre>
+<p>The type was redefined.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_VARIETY_ABSENT">Macro </a>XML_SCHEMAS_TYPE_VARIETY_ABSENT</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a>;
-</pre><p>the simpleType has a variety of "absent". TODO: Actually not necessary :-/, since if none of the variety flags occur then it's automatically absent.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_VARIETY_ABSENT">Macro </a>XML_SCHEMAS_TYPE_VARIETY_ABSENT</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a>;
+</pre>
+<p>the simpleType has a variety of "absent". TODO: Actually not necessary :-/, since if none of the variety flags occur then it's automatically absent.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_VARIETY_ATOMIC">Macro </a>XML_SCHEMAS_TYPE_VARIETY_ATOMIC</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ATOMIC">XML_SCHEMAS_TYPE_VARIETY_ATOMIC</a>;
-</pre><p>the simpleType has a variety of "union".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_VARIETY_ATOMIC">Macro </a>XML_SCHEMAS_TYPE_VARIETY_ATOMIC</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ATOMIC">XML_SCHEMAS_TYPE_VARIETY_ATOMIC</a>;
+</pre>
+<p>the simpleType has a variety of "union".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_VARIETY_LIST">Macro </a>XML_SCHEMAS_TYPE_VARIETY_LIST</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_LIST">XML_SCHEMAS_TYPE_VARIETY_LIST</a>;
-</pre><p>the simpleType has a variety of "list".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_VARIETY_LIST">Macro </a>XML_SCHEMAS_TYPE_VARIETY_LIST</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_LIST">XML_SCHEMAS_TYPE_VARIETY_LIST</a>;
+</pre>
+<p>the simpleType has a variety of "list".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_VARIETY_UNION">Macro </a>XML_SCHEMAS_TYPE_VARIETY_UNION</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a>;
-</pre><p>the simpleType has a variety of "union".</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_VARIETY_UNION">Macro </a>XML_SCHEMAS_TYPE_VARIETY_UNION</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a>;
+</pre>
+<p>the simpleType has a variety of "union".</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE">Macro </a>XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE">XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE</a>;
-</pre><p>a whitespace-facet value of "collapse"</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE">Macro </a>XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE">XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE</a>;
+</pre>
+<p>a whitespace-facet value of "collapse"</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE">Macro </a>XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE">XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE</a>;
-</pre><p>a whitespace-facet value of "preserve"</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE">Macro </a>XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE">XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE</a>;
+</pre>
+<p>a whitespace-facet value of "preserve"</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_TYPE_WHITESPACE_REPLACE">Macro </a>XML_SCHEMAS_TYPE_WHITESPACE_REPLACE</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_REPLACE">XML_SCHEMAS_TYPE_WHITESPACE_REPLACE</a>;
-</pre><p>a whitespace-facet value of "replace"</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_TYPE_WHITESPACE_REPLACE">Macro </a>XML_SCHEMAS_TYPE_WHITESPACE_REPLACE</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_WHITESPACE_REPLACE">XML_SCHEMAS_TYPE_WHITESPACE_REPLACE</a>;
+</pre>
+<p>a whitespace-facet value of "replace"</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_SCHEMAS_WILDCARD_COMPLETE">Macro </a>XML_SCHEMAS_WILDCARD_COMPLETE</h3><pre class="programlisting">#define <a href="#XML_SCHEMAS_WILDCARD_COMPLETE">XML_SCHEMAS_WILDCARD_COMPLETE</a>;
-</pre><p>If the wildcard is complete.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_SCHEMAS_WILDCARD_COMPLETE">Macro </a>XML_SCHEMAS_WILDCARD_COMPLETE</h3>
+<pre class="programlisting">#define <a href="#XML_SCHEMAS_WILDCARD_COMPLETE">XML_SCHEMAS_WILDCARD_COMPLETE</a>;
+</pre>
+<p>If the wildcard is complete.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaAnnot">Structure </a>xmlSchemaAnnot</h3><pre class="programlisting">struct _xmlSchemaAnnot {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaAnnot">Structure </a>xmlSchemaAnnot</h3>
+<pre class="programlisting">struct _xmlSchemaAnnot {
     struct _xmlSchemaAnnot *   next
     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      content : the annotation
 } xmlSchemaAnnot;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaAnnotPtr">Typedef </a>xmlSchemaAnnotPtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaAnnot">xmlSchemaAnnot</a> * xmlSchemaAnnotPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaAnnotPtr">Typedef </a>xmlSchemaAnnotPtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaAnnot">xmlSchemaAnnot</a> * xmlSchemaAnnotPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaAttribute">Structure </a>xmlSchemaAttribute</h3><pre class="programlisting">struct _xmlSchemaAttribute {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaAttribute">Structure </a>xmlSchemaAttribute</h3>
+<pre class="programlisting">struct _xmlSchemaAttribute {
     <a href="libxml2-schemasInternals.html#xmlSchemaTypeType">xmlSchemaTypeType</a>    type
     struct _xmlSchemaAttribute *       next    : the next <a href="libxml2-SAX.html#attribute">attribute</a> (not used?)
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : the name of the declaration
@@ -524,10 +840,14 @@ void      <a href="#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a>              (<a href="libxm
     <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>        defVal  : The compiled value constraint
     <a href="libxml2-schemasInternals.html#xmlSchemaAttributePtr">xmlSchemaAttributePtr</a>    refDecl : Deprecated; not used
 } xmlSchemaAttribute;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaAttributeGroup">Structure </a>xmlSchemaAttributeGroup</h3><pre class="programlisting">struct _xmlSchemaAttributeGroup {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaAttributeGroup">Structure </a>xmlSchemaAttributeGroup</h3>
+<pre class="programlisting">struct _xmlSchemaAttributeGroup {
     <a href="libxml2-schemasInternals.html#xmlSchemaTypeType">xmlSchemaTypeType</a>    type    : The kind of type
     struct _xmlSchemaAttribute *       next    : the next <a href="libxml2-SAX.html#attribute">attribute</a> if in a group ...
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name
@@ -544,29 +864,49 @@ void      <a href="#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a>              (<a href="libxm
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       targetNamespace
     void *     attrUses
 } xmlSchemaAttributeGroup;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaAttributeGroupPtr">Typedef </a>xmlSchemaAttributeGroupPtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaAttributeGroup">xmlSchemaAttributeGroup</a> * xmlSchemaAttributeGroupPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaAttributeGroupPtr">Typedef </a>xmlSchemaAttributeGroupPtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaAttributeGroup">xmlSchemaAttributeGroup</a> * xmlSchemaAttributeGroupPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaAttributeLink">Structure </a>xmlSchemaAttributeLink</h3><pre class="programlisting">struct _xmlSchemaAttributeLink {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaAttributeLink">Structure </a>xmlSchemaAttributeLink</h3>
+<pre class="programlisting">struct _xmlSchemaAttributeLink {
     struct _xmlSchemaAttributeLink *   next    : the next <a href="libxml2-SAX.html#attribute">attribute</a> link ...
     struct _xmlSchemaAttribute *       attr    : the linked <a href="libxml2-SAX.html#attribute">attribute</a>
 } xmlSchemaAttributeLink;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaAttributeLinkPtr">Typedef </a>xmlSchemaAttributeLinkPtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaAttributeLink">xmlSchemaAttributeLink</a> * xmlSchemaAttributeLinkPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaAttributeLinkPtr">Typedef </a>xmlSchemaAttributeLinkPtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaAttributeLink">xmlSchemaAttributeLink</a> * xmlSchemaAttributeLinkPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaAttributePtr">Typedef </a>xmlSchemaAttributePtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaAttribute">xmlSchemaAttribute</a> * xmlSchemaAttributePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaAttributePtr">Typedef </a>xmlSchemaAttributePtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaAttribute">xmlSchemaAttribute</a> * xmlSchemaAttributePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaContentType">Enum </a>xmlSchemaContentType</h3><pre class="programlisting">enum <a href="#xmlSchemaContentType">xmlSchemaContentType</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaContentType">Enum </a>xmlSchemaContentType</h3>
+<pre class="programlisting">enum <a href="#xmlSchemaContentType">xmlSchemaContentType</a> {
     <a name="XML_SCHEMA_CONTENT_UNKNOWN">XML_SCHEMA_CONTENT_UNKNOWN</a> = 0
     <a name="XML_SCHEMA_CONTENT_EMPTY">XML_SCHEMA_CONTENT_EMPTY</a> = 1
     <a name="XML_SCHEMA_CONTENT_ELEMENTS">XML_SCHEMA_CONTENT_ELEMENTS</a> = 2
@@ -576,10 +916,14 @@ void      <a href="#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a>              (<a href="libxm
     <a name="XML_SCHEMA_CONTENT_BASIC">XML_SCHEMA_CONTENT_BASIC</a> = 6
     <a name="XML_SCHEMA_CONTENT_ANY">XML_SCHEMA_CONTENT_ANY</a> = 7
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaElement">Structure </a>xmlSchemaElement</h3><pre class="programlisting">struct _xmlSchemaElement {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaElement">Structure </a>xmlSchemaElement</h3>
+<pre class="programlisting">struct _xmlSchemaElement {
     <a href="libxml2-schemasInternals.html#xmlSchemaTypeType">xmlSchemaTypeType</a>    type    : The kind of type
     struct _xmlSchemaType *    next    : Not used?
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name
@@ -607,14 +951,22 @@ void      <a href="#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a>              (<a href="libxm
     <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>        defVal  : The compiled value constraint.
     void *     idcs    : The identity-constraint defs
 } xmlSchemaElement;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaElementPtr">Typedef </a>xmlSchemaElementPtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaElement">xmlSchemaElement</a> * xmlSchemaElementPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaElementPtr">Typedef </a>xmlSchemaElementPtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaElement">xmlSchemaElement</a> * xmlSchemaElementPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaFacet">Structure </a>xmlSchemaFacet</h3><pre class="programlisting">struct _xmlSchemaFacet {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaFacet">Structure </a>xmlSchemaFacet</h3>
+<pre class="programlisting">struct _xmlSchemaFacet {
     <a href="libxml2-schemasInternals.html#xmlSchemaTypeType">xmlSchemaTypeType</a>    type    : The kind of type
     struct _xmlSchemaFacet *   next    : the next type if in a sequence ...
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       value   : The original value
@@ -626,39 +978,63 @@ void      <a href="#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a>              (<a href="libxm
     <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>        val     : The compiled value
     <a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a>     regexp  : The regex for patterns
 } xmlSchemaFacet;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaFacetLink">Structure </a>xmlSchemaFacetLink</h3><pre class="programlisting">struct _xmlSchemaFacetLink {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaFacetLink">Structure </a>xmlSchemaFacetLink</h3>
+<pre class="programlisting">struct _xmlSchemaFacetLink {
     struct _xmlSchemaFacetLink *       next    : the next facet link ...
     <a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a>    facet   : the linked facet
 } xmlSchemaFacetLink;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaFacetLinkPtr">Typedef </a>xmlSchemaFacetLinkPtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaFacetLink">xmlSchemaFacetLink</a> * xmlSchemaFacetLinkPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaFacetLinkPtr">Typedef </a>xmlSchemaFacetLinkPtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaFacetLink">xmlSchemaFacetLink</a> * xmlSchemaFacetLinkPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaFacetPtr">Typedef </a>xmlSchemaFacetPtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaFacet">xmlSchemaFacet</a> * xmlSchemaFacetPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaFacetPtr">Typedef </a>xmlSchemaFacetPtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaFacet">xmlSchemaFacet</a> * xmlSchemaFacetPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaNotation">Structure </a>xmlSchemaNotation</h3><pre class="programlisting">struct _xmlSchemaNotation {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaNotation">Structure </a>xmlSchemaNotation</h3>
+<pre class="programlisting">struct _xmlSchemaNotation {
     <a href="libxml2-schemasInternals.html#xmlSchemaTypeType">xmlSchemaTypeType</a>    type    : The kind of type
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name
     <a href="libxml2-schemasInternals.html#xmlSchemaAnnotPtr">xmlSchemaAnnotPtr</a>    annot
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       identifier
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       targetNamespace
 } xmlSchemaNotation;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaNotationPtr">Typedef </a>xmlSchemaNotationPtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaNotation">xmlSchemaNotation</a> * xmlSchemaNotationPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaNotationPtr">Typedef </a>xmlSchemaNotationPtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaNotation">xmlSchemaNotation</a> * xmlSchemaNotationPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaType">Structure </a>xmlSchemaType</h3><pre class="programlisting">struct _xmlSchemaType {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaType">Structure </a>xmlSchemaType</h3>
+<pre class="programlisting">struct _xmlSchemaType {
     <a href="libxml2-schemasInternals.html#xmlSchemaTypeType">xmlSchemaTypeType</a>    type    : The kind of type
     struct _xmlSchemaType *    next    : the next type if in a sequence ...
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name
@@ -690,25 +1066,41 @@ void     <a href="#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a>              (<a href="libxm
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       targetNamespace
     void *     attrUses
 } xmlSchemaType;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaTypeLink">Structure </a>xmlSchemaTypeLink</h3><pre class="programlisting">struct _xmlSchemaTypeLink {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaTypeLink">Structure </a>xmlSchemaTypeLink</h3>
+<pre class="programlisting">struct _xmlSchemaTypeLink {
     struct _xmlSchemaTypeLink *        next    : the next type link ...
     <a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>      type    : the linked type
 } xmlSchemaTypeLink;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaTypeLinkPtr">Typedef </a>xmlSchemaTypeLinkPtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaTypeLink">xmlSchemaTypeLink</a> * xmlSchemaTypeLinkPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaTypeLinkPtr">Typedef </a>xmlSchemaTypeLinkPtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaTypeLink">xmlSchemaTypeLink</a> * xmlSchemaTypeLinkPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaTypePtr">Typedef </a>xmlSchemaTypePtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaType">xmlSchemaType</a> * xmlSchemaTypePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaTypePtr">Typedef </a>xmlSchemaTypePtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaType">xmlSchemaType</a> * xmlSchemaTypePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaTypeType">Enum </a>xmlSchemaTypeType</h3><pre class="programlisting">enum <a href="#xmlSchemaTypeType">xmlSchemaTypeType</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaTypeType">Enum </a>xmlSchemaTypeType</h3>
+<pre class="programlisting">enum <a href="#xmlSchemaTypeType">xmlSchemaTypeType</a> {
     <a name="XML_SCHEMA_TYPE_BASIC">XML_SCHEMA_TYPE_BASIC</a> = 1 /* A built-in datatype */
     <a name="XML_SCHEMA_TYPE_ANY">XML_SCHEMA_TYPE_ANY</a> = 2
     <a name="XML_SCHEMA_TYPE_FACET">XML_SCHEMA_TYPE_FACET</a> = 3
@@ -750,20 +1142,32 @@ void     <a href="#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a>              (<a href="libxm
     <a name="XML_SCHEMA_EXTRA_QNAMEREF">XML_SCHEMA_EXTRA_QNAMEREF</a> = 2000
     <a name="XML_SCHEMA_EXTRA_ATTR_USE_PROHIB">XML_SCHEMA_EXTRA_ATTR_USE_PROHIB</a> = 2001
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaVal">Structure </a>xmlSchemaVal</h3><pre class="programlisting">struct _xmlSchemaVal {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaVal">Structure </a>xmlSchemaVal</h3>
+<pre class="programlisting">struct _xmlSchemaVal {
 The content of this structure is not made public by the API.
 } xmlSchemaVal;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValPtr">Typedef </a>xmlSchemaValPtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaVal">xmlSchemaVal</a> * xmlSchemaValPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValPtr">Typedef </a>xmlSchemaValPtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaVal">xmlSchemaVal</a> * xmlSchemaValPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValType">Enum </a>xmlSchemaValType</h3><pre class="programlisting">enum <a href="#xmlSchemaValType">xmlSchemaValType</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValType">Enum </a>xmlSchemaValType</h3>
+<pre class="programlisting">enum <a href="#xmlSchemaValType">xmlSchemaValType</a> {
     <a name="XML_SCHEMAS_UNKNOWN">XML_SCHEMAS_UNKNOWN</a> = 0
     <a name="XML_SCHEMAS_STRING">XML_SCHEMAS_STRING</a> = 1
     <a name="XML_SCHEMAS_NORMSTRING">XML_SCHEMAS_NORMSTRING</a> = 2
@@ -812,10 +1216,14 @@ The content of this structure is not made public by the API.
     <a name="XML_SCHEMAS_ANYTYPE">XML_SCHEMAS_ANYTYPE</a> = 45
     <a name="XML_SCHEMAS_ANYSIMPLETYPE">XML_SCHEMAS_ANYSIMPLETYPE</a> = 46
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaWildcard">Structure </a>xmlSchemaWildcard</h3><pre class="programlisting">struct _xmlSchemaWildcard {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaWildcard">Structure </a>xmlSchemaWildcard</h3>
+<pre class="programlisting">struct _xmlSchemaWildcard {
     <a href="libxml2-schemasInternals.html#xmlSchemaTypeType">xmlSchemaTypeType</a>    type    : The kind of type
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       id      : Deprecated; not used
     <a href="libxml2-schemasInternals.html#xmlSchemaAnnotPtr">xmlSchemaAnnotPtr</a>    annot
@@ -828,33 +1236,68 @@ The content of this structure is not made public by the API.
     <a href="libxml2-schemasInternals.html#xmlSchemaWildcardNsPtr">xmlSchemaWildcardNsPtr</a>  negNsSet        : The negated namespace
     int        flags
 } xmlSchemaWildcard;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaWildcardNs">Structure </a>xmlSchemaWildcardNs</h3><pre class="programlisting">struct _xmlSchemaWildcardNs {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaWildcardNs">Structure </a>xmlSchemaWildcardNs</h3>
+<pre class="programlisting">struct _xmlSchemaWildcardNs {
     struct _xmlSchemaWildcardNs *      next    : the next constraint link ...
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       value   : the value
 } xmlSchemaWildcardNs;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaWildcardNsPtr">Typedef </a>xmlSchemaWildcardNsPtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaWildcardNs">xmlSchemaWildcardNs</a> * xmlSchemaWildcardNsPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaWildcardPtr">Typedef </a>xmlSchemaWildcardPtr</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaWildcard">xmlSchemaWildcard</a> * xmlSchemaWildcardPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaFreeType"/>xmlSchemaFreeType ()</h3><pre class="programlisting">void     xmlSchemaFreeType               (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type)<br/>
-</pre><p>Deallocate a Schema Type structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>a schema type structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaFreeWildcard"/>xmlSchemaFreeWildcard ()</h3><pre class="programlisting">void     xmlSchemaFreeWildcard           (<a href="libxml2-schemasInternals.html#xmlSchemaWildcardPtr">xmlSchemaWildcardPtr</a> wildcard)<br/>
-</pre><p>Deallocates a wildcard structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>wildcard</tt></i>:</span></td><td>a wildcard structure</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaWildcardNsPtr">Typedef </a>xmlSchemaWildcardNsPtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaWildcardNs">xmlSchemaWildcardNs</a> * xmlSchemaWildcardNsPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaWildcardPtr">Typedef </a>xmlSchemaWildcardPtr</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaWildcard">xmlSchemaWildcard</a> * xmlSchemaWildcardPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaFreeType"></a>xmlSchemaFreeType ()</h3>
+<pre class="programlisting">void       xmlSchemaFreeType               (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type)<br>
+</pre>
+<p>Deallocate a Schema Type structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>a schema type structure</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaFreeWildcard"></a>xmlSchemaFreeWildcard ()</h3>
+<pre class="programlisting">void       xmlSchemaFreeWildcard           (<a href="libxml2-schemasInternals.html#xmlSchemaWildcardPtr">xmlSchemaWildcardPtr</a> wildcard)<br>
+</pre>
+<p>Deallocates a wildcard structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>wildcard</tt></i>:</span></td>
+<td>a wildcard structure</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index d1788ba..00ee0c7 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>schematron: XML Schematron implementation</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-schemasInternals.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-threads.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">schematron</span>
-    </h2>
-    <p>schematron - XML Schematron implementation</p>
-    <p>interface to the XML Schematron validity checking. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef struct _xmlSchematronValidCtxt <a href="#xmlSchematronValidCtxt">xmlSchematronValidCtxt</a>;
-typedef enum <a href="#xmlSchematronValidOptions">xmlSchematronValidOptions</a>;
-typedef <a href="libxml2-schematron.html#xmlSchematron">xmlSchematron</a> * <a href="#xmlSchematronPtr">xmlSchematronPtr</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>schematron: XML Schematron implementation</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-schemasInternals.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-threads.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">schematron</span></h2>
+<p>schematron - XML Schematron implementation</p>
+<p>interface to the XML Schematron validity checking. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlSchematron <a href="#xmlSchematron">xmlSchematron</a>;
 typedef struct _xmlSchematronParserCtxt <a href="#xmlSchematronParserCtxt">xmlSchematronParserCtxt</a>;
-typedef struct _xmlSchematron <a href="#xmlSchematron">xmlSchematron</a>;
-typedef <a href="libxml2-schematron.html#xmlSchematronValidCtxt">xmlSchematronValidCtxt</a> * <a href="#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a>;
 typedef <a href="libxml2-schematron.html#xmlSchematronParserCtxt">xmlSchematronParserCtxt</a> * <a href="#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>;
-int    <a href="#xmlSchematronValidateDoc">xmlSchematronValidateDoc</a>        (<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> instance);
-void   <a href="#xmlSchematronFreeParserCtxt">xmlSchematronFreeParserCtxt</a>  (<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a> ctxt);
-<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>    <a href="#xmlSchematronNewMemParserCtxt">xmlSchematronNewMemParserCtxt</a>      (const char * buffer, <br/>                                                      int size);
-typedef void <a href="#xmlSchematronValidityErrorFunc">xmlSchematronValidityErrorFunc</a>      (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>    <a href="#xmlSchematronNewParserCtxt">xmlSchematronNewParserCtxt</a>    (const char * URL);
-typedef void <a href="#xmlSchematronValidityWarningFunc">xmlSchematronValidityWarningFunc</a>  (void * ctx, <br/>                                               const char * msg, <br/>                                                 ... ...);
+typedef <a href="libxml2-schematron.html#xmlSchematron">xmlSchematron</a> * <a href="#xmlSchematronPtr">xmlSchematronPtr</a>;
+typedef struct _xmlSchematronValidCtxt <a href="#xmlSchematronValidCtxt">xmlSchematronValidCtxt</a>;
+typedef <a href="libxml2-schematron.html#xmlSchematronValidCtxt">xmlSchematronValidCtxt</a> * <a href="#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a>;
+typedef enum <a href="#xmlSchematronValidOptions">xmlSchematronValidOptions</a>;
 void   <a href="#xmlSchematronFree">xmlSchematronFree</a>              (<a href="libxml2-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a> schema);
-void   <a href="#xmlSchematronSetValidStructuredErrors">xmlSchematronSetValidStructuredErrors</a>      (<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br/>                                                 void * ctx);
+void   <a href="#xmlSchematronFreeParserCtxt">xmlSchematronFreeParserCtxt</a>  (<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a> ctxt);
 void   <a href="#xmlSchematronFreeValidCtxt">xmlSchematronFreeValidCtxt</a>    (<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a> ctxt);
-<a href="libxml2-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a>        <a href="#xmlSchematronParse">xmlSchematronParse</a>    (<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a> ctxt);
 <a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>    <a href="#xmlSchematronNewDocParserCtxt">xmlSchematronNewDocParserCtxt</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a>      <a href="#xmlSchematronNewValidCtxt">xmlSchematronNewValidCtxt</a>      (<a href="libxml2-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a> schema, <br/>                                                   int options);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematron">Structure </a>xmlSchematron</h3><pre class="programlisting">struct _xmlSchematron {
+<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>    <a href="#xmlSchematronNewMemParserCtxt">xmlSchematronNewMemParserCtxt</a>      (const char * buffer, <br>                                                       int size);
+<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>    <a href="#xmlSchematronNewParserCtxt">xmlSchematronNewParserCtxt</a>    (const char * URL);
+<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a>      <a href="#xmlSchematronNewValidCtxt">xmlSchematronNewValidCtxt</a>      (<a href="libxml2-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a> schema, <br>                                                    int options);
+<a href="libxml2-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a>        <a href="#xmlSchematronParse">xmlSchematronParse</a>    (<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a> ctxt);
+void   <a href="#xmlSchematronSetValidStructuredErrors">xmlSchematronSetValidStructuredErrors</a>      (<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br>                                          void * ctx);
+int    <a href="#xmlSchematronValidateDoc">xmlSchematronValidateDoc</a>        (<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> instance);
+typedef void <a href="#xmlSchematronValidityErrorFunc">xmlSchematronValidityErrorFunc</a>      (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+typedef void <a href="#xmlSchematronValidityWarningFunc">xmlSchematronValidityWarningFunc</a>  (void * ctx, <br>                                                const char * msg, <br>                                          ... ...);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematron">Structure </a>xmlSchematron</h3>
+<pre class="programlisting">struct _xmlSchematron {
 The content of this structure is not made public by the API.
 } xmlSchematron;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronParserCtxt">Structure </a>xmlSchematronParserCtxt</h3><pre class="programlisting">struct _xmlSchematronParserCtxt {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronParserCtxt">Structure </a>xmlSchematronParserCtxt</h3>
+<pre class="programlisting">struct _xmlSchematronParserCtxt {
 The content of this structure is not made public by the API.
 } xmlSchematronParserCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronParserCtxtPtr">Typedef </a>xmlSchematronParserCtxtPtr</h3><pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronParserCtxt">xmlSchematronParserCtxt</a> * xmlSchematronParserCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronParserCtxtPtr">Typedef </a>xmlSchematronParserCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronParserCtxt">xmlSchematronParserCtxt</a> * xmlSchematronParserCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronPtr">Typedef </a>xmlSchematronPtr</h3><pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematron">xmlSchematron</a> * xmlSchematronPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronPtr">Typedef </a>xmlSchematronPtr</h3>
+<pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematron">xmlSchematron</a> * xmlSchematronPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronValidCtxt">Structure </a>xmlSchematronValidCtxt</h3><pre class="programlisting">struct _xmlSchematronValidCtxt {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronValidCtxt">Structure </a>xmlSchematronValidCtxt</h3>
+<pre class="programlisting">struct _xmlSchematronValidCtxt {
 The content of this structure is not made public by the API.
 } xmlSchematronValidCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronValidCtxtPtr">Typedef </a>xmlSchematronValidCtxtPtr</h3><pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronValidCtxt">xmlSchematronValidCtxt</a> * xmlSchematronValidCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronValidCtxtPtr">Typedef </a>xmlSchematronValidCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronValidCtxt">xmlSchematronValidCtxt</a> * xmlSchematronValidCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronValidOptions">Enum </a>xmlSchematronValidOptions</h3><pre class="programlisting">enum <a href="#xmlSchematronValidOptions">xmlSchematronValidOptions</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronValidOptions">Enum </a>xmlSchematronValidOptions</h3>
+<pre class="programlisting">enum <a href="#xmlSchematronValidOptions">xmlSchematronValidOptions</a> {
     <a name="XML_SCHEMATRON_OUT_QUIET">XML_SCHEMATRON_OUT_QUIET</a> = 1 /* quiet no report */
     <a name="XML_SCHEMATRON_OUT_TEXT">XML_SCHEMATRON_OUT_TEXT</a> = 2 /* build a textual report */
     <a name="XML_SCHEMATRON_OUT_XML">XML_SCHEMATRON_OUT_XML</a> = 4 /* output SVRL */
@@ -109,58 +113,270 @@ The content of this structure is not made public by the API.
     <a name="XML_SCHEMATRON_OUT_BUFFER">XML_SCHEMATRON_OUT_BUFFER</a> = 512 /* output to a buffer */
     <a name="XML_SCHEMATRON_OUT_IO">XML_SCHEMATRON_OUT_IO</a> = 1024 /*  output to I/O mechanism */
 };
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronValidityErrorFunc"/>Function type xmlSchematronValidityErrorFunc</h3><pre class="programlisting">void        xmlSchematronValidityErrorFunc  (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Signature of an error callback from a Schematron validation</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronValidityWarningFunc"/>Function type xmlSchematronValidityWarningFunc</h3><pre class="programlisting">void    xmlSchematronValidityWarningFunc        (void * ctx, <br/>                                               const char * msg, <br/>                                                 ... ...)<br/>
-</pre><p>Signature of a warning callback from a Schematron validation</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronFree"/>xmlSchematronFree ()</h3><pre class="programlisting">void     xmlSchematronFree               (<a href="libxml2-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a> schema)<br/>
-</pre><p>Deallocate a Schematron structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a schema structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronFreeParserCtxt"/>xmlSchematronFreeParserCtxt ()</h3><pre class="programlisting">void xmlSchematronFreeParserCtxt     (<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Free the resources associated to the schema parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the schema parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronFreeValidCtxt"/>xmlSchematronFreeValidCtxt ()</h3><pre class="programlisting">void   xmlSchematronFreeValidCtxt      (<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a> ctxt)<br/>
-</pre><p>Free the resources associated to the schema validation context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the schema validation context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronNewDocParserCtxt"/>xmlSchematronNewDocParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>      xmlSchematronNewDocParserCtxt   (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Create an XML Schematrons parse context for that document. NB. The document may be modified during the parsing process.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a preparsed document tree</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronNewMemParserCtxt"/>xmlSchematronNewMemParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>      xmlSchematronNewMemParserCtxt   (const char * buffer, <br/>                                                      int size)<br/>
-</pre><p>Create an XML Schematrons parse context for that memory buffer expected to contain an XML Schematrons file.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array containing the schemas</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronNewParserCtxt"/>xmlSchematronNewParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>    xmlSchematronNewParserCtxt      (const char * URL)<br/>
-</pre><p>Create an XML Schematrons parse context for that file/resource expected to contain an XML Schematrons file.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the location of the schema</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronNewValidCtxt"/>xmlSchematronNewValidCtxt ()</h3><pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a>        xmlSchematronNewValidCtxt       (<a href="libxml2-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a> schema, <br/>                                                   int options)<br/>
-</pre><p>Create an XML Schematrons validation context based on the given schema.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a precompiled XML Schematrons</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a set of <a href="libxml2-schematron.html#xmlSchematronValidOptions">xmlSchematronValidOptions</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the validation context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronParse"/>xmlSchematronParse ()</h3><pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a>        xmlSchematronParse      (<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse a schema definition resource and build an internal XML Schema structure which can be used to validate instances.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the internal XML Schematron structure built from the resource or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronSetValidStructuredErrors"/>xmlSchematronSetValidStructuredErrors ()</h3><pre class="programlisting">void     xmlSchematronSetValidStructuredErrors   (<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br/>                                                 void * ctx)<br/>
-</pre><p>Set the structured error callback</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a Schematron validation context</td></tr><tr><td><span class="term"><i><tt>serror</tt></i>:</span></td><td>the structured error function</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the functions context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchematronValidateDoc"/>xmlSchematronValidateDoc ()</h3><pre class="programlisting">int        xmlSchematronValidateDoc        (<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> instance)<br/>
-</pre><p>Validate a tree instance against the schematron</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the schema validation context</td></tr><tr><td><span class="term"><i><tt>instance</tt></i>:</span></td><td>the document instance tree</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of internal error and an error count otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronValidityErrorFunc"></a>Function type xmlSchematronValidityErrorFunc</h3>
+<pre class="programlisting">void       xmlSchematronValidityErrorFunc  (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Signature of an error callback from a Schematron validation</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronValidityWarningFunc"></a>Function type xmlSchematronValidityWarningFunc</h3>
+<pre class="programlisting">void       xmlSchematronValidityWarningFunc        (void * ctx, <br>                                                const char * msg, <br>                                          ... ...)<br>
+</pre>
+<p>Signature of a warning callback from a Schematron validation</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronFree"></a>xmlSchematronFree ()</h3>
+<pre class="programlisting">void       xmlSchematronFree               (<a href="libxml2-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a> schema)<br>
+</pre>
+<p>Deallocate a Schematron structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>schema</tt></i>:</span></td>
+<td>a schema structure</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronFreeParserCtxt"></a>xmlSchematronFreeParserCtxt ()</h3>
+<pre class="programlisting">void       xmlSchematronFreeParserCtxt     (<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Free the resources associated to the schema parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the schema parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronFreeValidCtxt"></a>xmlSchematronFreeValidCtxt ()</h3>
+<pre class="programlisting">void       xmlSchematronFreeValidCtxt      (<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Free the resources associated to the schema validation context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the schema validation context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronNewDocParserCtxt"></a>xmlSchematronNewDocParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>        xmlSchematronNewDocParserCtxt   (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Create an XML Schematrons parse context for that document. NB. The document may be modified during the parsing process.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a preparsed document tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the parser context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronNewMemParserCtxt"></a>xmlSchematronNewMemParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>        xmlSchematronNewMemParserCtxt   (const char * buffer, <br>                                                       int size)<br>
+</pre>
+<p>Create an XML Schematrons parse context for that memory buffer expected to contain an XML Schematrons file.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a pointer to a char array containing the schemas</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the parser context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronNewParserCtxt"></a>xmlSchematronNewParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a>        xmlSchematronNewParserCtxt      (const char * URL)<br>
+</pre>
+<p>Create an XML Schematrons parse context for that file/resource expected to contain an XML Schematrons file.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the location of the schema</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the parser context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronNewValidCtxt"></a>xmlSchematronNewValidCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a>  xmlSchematronNewValidCtxt       (<a href="libxml2-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a> schema, <br>                                                    int options)<br>
+</pre>
+<p>Create an XML Schematrons validation context based on the given schema.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>schema</tt></i>:</span></td>
+<td>a precompiled XML Schematrons</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a set of <a href="libxml2-schematron.html#xmlSchematronValidOptions">xmlSchematronValidOptions</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the validation context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronParse"></a>xmlSchematronParse ()</h3>
+<pre class="programlisting"><a href="libxml2-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a>    xmlSchematronParse      (<a href="libxml2-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse a schema definition resource and build an internal XML Schema structure which can be used to validate instances.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the internal XML Schematron structure built from the resource or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronSetValidStructuredErrors"></a>xmlSchematronSetValidStructuredErrors ()</h3>
+<pre class="programlisting">void       xmlSchematronSetValidStructuredErrors   (<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br>                                          void * ctx)<br>
+</pre>
+<p>Set the structured error callback</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a Schematron validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>serror</tt></i>:</span></td>
+<td>the structured error function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the functions context</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchematronValidateDoc"></a>xmlSchematronValidateDoc ()</h3>
+<pre class="programlisting">int        xmlSchematronValidateDoc        (<a href="libxml2-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> instance)<br>
+</pre>
+<p>Validate a tree instance against the schematron</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>instance</tt></i>:</span></td>
+<td>the document instance tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 in case of internal error and an error count otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 2fdfc00..4ab52dc 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>threads: interfaces for thread handling</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-schematron.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-tree.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">threads</span>
-    </h2>
-    <p>threads - interfaces for thread handling</p>
-    <p>set of generic threading related routines should work with pthreads, Windows native or TLS threads </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef struct _xmlMutex <a href="#xmlMutex">xmlMutex</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>threads: interfaces for thread handling</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-schematron.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-tree.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">threads</span></h2>
+<p>threads - interfaces for thread handling</p>
+<p>set of generic threading related routines should work with pthreads, Windows native or TLS threads </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlMutex <a href="#xmlMutex">xmlMutex</a>;
+typedef <a href="libxml2-threads.html#xmlMutex">xmlMutex</a> * <a href="#xmlMutexPtr">xmlMutexPtr</a>;
 typedef struct _xmlRMutex <a href="#xmlRMutex">xmlRMutex</a>;
 typedef <a href="libxml2-threads.html#xmlRMutex">xmlRMutex</a> * <a href="#xmlRMutexPtr">xmlRMutexPtr</a>;
-typedef <a href="libxml2-threads.html#xmlMutex">xmlMutex</a> * <a href="#xmlMutexPtr">xmlMutexPtr</a>;
+void   <a href="#xmlCleanupThreads">xmlCleanupThreads</a>              (void);
+int    <a href="#xmlDllMain">xmlDllMain</a>                    (void * hinstDLL, <br>                                   unsigned long fdwReason, <br>                                   void * lpvReserved);
+void   <a href="#xmlFreeMutex">xmlFreeMutex</a>                        (<a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> tok);
 void   <a href="#xmlFreeRMutex">xmlFreeRMutex</a>                      (<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a> tok);
+<a href="libxml2-globals.html#xmlGlobalStatePtr">xmlGlobalStatePtr</a> <a href="#xmlGetGlobalState">xmlGetGlobalState</a>      (void);
 int    <a href="#xmlGetThreadId">xmlGetThreadId</a>                    (void);
-void   <a href="#xmlMutexUnlock">xmlMutexUnlock</a>                    (<a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> tok);
-void   <a href="#xmlCleanupThreads">xmlCleanupThreads</a>              (void);
+void   <a href="#xmlInitThreads">xmlInitThreads</a>                    (void);
+int    <a href="#xmlIsMainThread">xmlIsMainThread</a>                  (void);
 void   <a href="#xmlLockLibrary">xmlLockLibrary</a>                    (void);
-<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a>   <a href="#xmlNewRMutex">xmlNewRMutex</a>                (void);
 void   <a href="#xmlMutexLock">xmlMutexLock</a>                        (<a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> tok);
-int    <a href="#xmlIsMainThread">xmlIsMainThread</a>                  (void);
-void   <a href="#xmlRMutexUnlock">xmlRMutexUnlock</a>                  (<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a> tok);
-<a href="libxml2-globals.html#xmlGlobalStatePtr">xmlGlobalStatePtr</a> <a href="#xmlGetGlobalState">xmlGetGlobalState</a>      (void);
+void   <a href="#xmlMutexUnlock">xmlMutexUnlock</a>                    (<a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> tok);
 <a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a>     <a href="#xmlNewMutex">xmlNewMutex</a>          (void);
-int    <a href="#xmlDllMain">xmlDllMain</a>                    (void * hinstDLL, <br/>                                  unsigned long fdwReason, <br/>                                  void * lpvReserved);
-void   <a href="#xmlFreeMutex">xmlFreeMutex</a>                        (<a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> tok);
-void   <a href="#xmlUnlockLibrary">xmlUnlockLibrary</a>                (void);
-void   <a href="#xmlInitThreads">xmlInitThreads</a>                    (void);
+<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a>   <a href="#xmlNewRMutex">xmlNewRMutex</a>                (void);
 void   <a href="#xmlRMutexLock">xmlRMutexLock</a>                      (<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a> tok);
+void   <a href="#xmlRMutexUnlock">xmlRMutexUnlock</a>                  (<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a> tok);
+void   <a href="#xmlUnlockLibrary">xmlUnlockLibrary</a>                (void);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlMutex">Structure </a>xmlMutex</h3><pre class="programlisting">struct _xmlMutex {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMutex">Structure </a>xmlMutex</h3>
+<pre class="programlisting">struct _xmlMutex {
 The content of this structure is not made public by the API.
 } xmlMutex;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMutexPtr">Typedef </a>xmlMutexPtr</h3><pre class="programlisting"><a href="libxml2-threads.html#xmlMutex">xmlMutex</a> * xmlMutexPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMutexPtr">Typedef </a>xmlMutexPtr</h3>
+<pre class="programlisting"><a href="libxml2-threads.html#xmlMutex">xmlMutex</a> * xmlMutexPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRMutex">Structure </a>xmlRMutex</h3><pre class="programlisting">struct _xmlRMutex {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRMutex">Structure </a>xmlRMutex</h3>
+<pre class="programlisting">struct _xmlRMutex {
 The content of this structure is not made public by the API.
 } xmlRMutex;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRMutexPtr">Typedef </a>xmlRMutexPtr</h3><pre class="programlisting"><a href="libxml2-threads.html#xmlRMutex">xmlRMutex</a> * xmlRMutexPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCleanupThreads"/>xmlCleanupThreads ()</h3><pre class="programlisting">void     xmlCleanupThreads               (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. xmlCleanupThreads() is used to to cleanup all the thread related data of the libxml2 library once processing has ended. WARNING: if your application is multithreaded or has plugin support calling this may crash the application if another thread or a plugin is still using libxml2. It's sometimes very hard to guess if libxml2 is in use in the application, some libraries or plugins may use it without notice. In case of doubt abstain from calling this function or do it just before calling exit() to avoid leak reports from valgrind !</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDllMain"/>xmlDllMain ()</h3><pre class="programlisting">int    xmlDllMain                      (void * hinstDLL, <br/>                                  unsigned long fdwReason, <br/>                                  void * lpvReserved)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>hinstDLL</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>fdwReason</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>lpvReserved</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td/></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeMutex"/>xmlFreeMutex ()</h3><pre class="programlisting">void       xmlFreeMutex                    (<a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> tok)<br/>
-</pre><p>xmlFreeMutex() is used to reclaim resources associated with a libxml2 token struct.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>tok</tt></i>:</span></td><td>the simple mutex</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeRMutex"/>xmlFreeRMutex ()</h3><pre class="programlisting">void     xmlFreeRMutex                   (<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a> tok)<br/>
-</pre><p>xmlRFreeMutex() is used to reclaim resources associated with a reentrant mutex.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>tok</tt></i>:</span></td><td>the reentrant mutex</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetGlobalState"/>xmlGetGlobalState ()</h3><pre class="programlisting"><a href="libxml2-globals.html#xmlGlobalStatePtr">xmlGlobalStatePtr</a>   xmlGetGlobalState       (void)<br/>
-</pre><p>xmlGetGlobalState() is called to retrieve the global state for a thread.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the thread global state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetThreadId"/>xmlGetThreadId ()</h3><pre class="programlisting">int    xmlGetThreadId                  (void)<br/>
-</pre><p>xmlGetThreadId() find the current thread ID number Note that this is likely to be broken on some platforms using pthreads as the specification doesn't mandate pthread_t to be an integer type</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the current thread ID number</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInitThreads"/>xmlInitThreads ()</h3><pre class="programlisting">void   xmlInitThreads                  (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. xmlInitThreads() is used to to initialize all the thread related data of the libxml2 library.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsMainThread"/>xmlIsMainThread ()</h3><pre class="programlisting">int  xmlIsMainThread                 (void)<br/>
-</pre><p>xmlIsMainThread() check whether the current thread is the main thread.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the current thread is the main thread, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLockLibrary"/>xmlLockLibrary ()</h3><pre class="programlisting">void   xmlLockLibrary                  (void)<br/>
-</pre><p>xmlLockLibrary() is used to take out a re-entrant lock on the libxml2 library.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMutexLock"/>xmlMutexLock ()</h3><pre class="programlisting">void       xmlMutexLock                    (<a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> tok)<br/>
-</pre><p>xmlMutexLock() is used to lock a libxml2 token.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>tok</tt></i>:</span></td><td>the simple mutex</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMutexUnlock"/>xmlMutexUnlock ()</h3><pre class="programlisting">void   xmlMutexUnlock                  (<a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> tok)<br/>
-</pre><p>xmlMutexUnlock() is used to unlock a libxml2 token.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>tok</tt></i>:</span></td><td>the simple mutex</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewMutex"/>xmlNewMutex ()</h3><pre class="programlisting"><a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a>   xmlNewMutex             (void)<br/>
-</pre><p>xmlNewMutex() is used to allocate a libxml2 token struct for use in synchronizing access to data.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new simple mutex pointer or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewRMutex"/>xmlNewRMutex ()</h3><pre class="programlisting"><a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a>       xmlNewRMutex            (void)<br/>
-</pre><p>xmlRNewMutex() is used to allocate a reentrant mutex for use in synchronizing access to data. token_r is a re-entrant lock and thus useful for synchronizing access to data structures that may be manipulated in a recursive fashion.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new reentrant mutex pointer or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRMutexLock"/>xmlRMutexLock ()</h3><pre class="programlisting">void     xmlRMutexLock                   (<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a> tok)<br/>
-</pre><p>xmlRMutexLock() is used to lock a libxml2 token_r.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>tok</tt></i>:</span></td><td>the reentrant mutex</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRMutexUnlock"/>xmlRMutexUnlock ()</h3><pre class="programlisting">void xmlRMutexUnlock                 (<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a> tok)<br/>
-</pre><p>xmlRMutexUnlock() is used to unlock a libxml2 token_r.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>tok</tt></i>:</span></td><td>the reentrant mutex</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUnlockLibrary"/>xmlUnlockLibrary ()</h3><pre class="programlisting">void       xmlUnlockLibrary                (void)<br/>
-</pre><p>xmlUnlockLibrary() is used to release a re-entrant lock on the libxml2 library.</p>
-</div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRMutexPtr">Typedef </a>xmlRMutexPtr</h3>
+<pre class="programlisting"><a href="libxml2-threads.html#xmlRMutex">xmlRMutex</a> * xmlRMutexPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCleanupThreads"></a>xmlCleanupThreads ()</h3>
+<pre class="programlisting">void       xmlCleanupThreads               (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. xmlCleanupThreads() is used to to cleanup all the thread related data of the libxml2 library once processing has ended. WARNING: if your application is multithreaded or has plugin support calling this may crash the application if another thread or a plugin is still using libxml2. It's sometimes very hard to guess if libxml2 is in use in the application, some libraries or plugins may use it without notice. In case of doubt abstain from calling this function or do it just before calling exit() to avoid leak reports from valgrind !</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDllMain"></a>xmlDllMain ()</h3>
+<pre class="programlisting">int        xmlDllMain                      (void * hinstDLL, <br>                                   unsigned long fdwReason, <br>                                   void * lpvReserved)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>hinstDLL</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>fdwReason</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>lpvReserved</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeMutex"></a>xmlFreeMutex ()</h3>
+<pre class="programlisting">void       xmlFreeMutex                    (<a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> tok)<br>
+</pre>
+<p>xmlFreeMutex() is used to reclaim resources associated with a libxml2 token struct.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>tok</tt></i>:</span></td>
+<td>the simple mutex</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeRMutex"></a>xmlFreeRMutex ()</h3>
+<pre class="programlisting">void       xmlFreeRMutex                   (<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a> tok)<br>
+</pre>
+<p>xmlRFreeMutex() is used to reclaim resources associated with a reentrant mutex.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>tok</tt></i>:</span></td>
+<td>the reentrant mutex</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetGlobalState"></a>xmlGetGlobalState ()</h3>
+<pre class="programlisting"><a href="libxml2-globals.html#xmlGlobalStatePtr">xmlGlobalStatePtr</a>     xmlGetGlobalState       (void)<br>
+</pre>
+<p>xmlGetGlobalState() is called to retrieve the global state for a thread.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the thread global state or NULL in case of error</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetThreadId"></a>xmlGetThreadId ()</h3>
+<pre class="programlisting">int        xmlGetThreadId                  (void)<br>
+</pre>
+<p>xmlGetThreadId() find the current thread ID number Note that this is likely to be broken on some platforms using pthreads as the specification doesn't mandate pthread_t to be an integer type</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the current thread ID number</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInitThreads"></a>xmlInitThreads ()</h3>
+<pre class="programlisting">void       xmlInitThreads                  (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. xmlInitThreads() is used to to initialize all the thread related data of the libxml2 library.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsMainThread"></a>xmlIsMainThread ()</h3>
+<pre class="programlisting">int        xmlIsMainThread                 (void)<br>
+</pre>
+<p>xmlIsMainThread() check whether the current thread is the main thread.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the current thread is the main thread, 0 otherwise</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLockLibrary"></a>xmlLockLibrary ()</h3>
+<pre class="programlisting">void       xmlLockLibrary                  (void)<br>
+</pre>
+<p>xmlLockLibrary() is used to take out a re-entrant lock on the libxml2 library.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMutexLock"></a>xmlMutexLock ()</h3>
+<pre class="programlisting">void       xmlMutexLock                    (<a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> tok)<br>
+</pre>
+<p>xmlMutexLock() is used to lock a libxml2 token.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>tok</tt></i>:</span></td>
+<td>the simple mutex</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMutexUnlock"></a>xmlMutexUnlock ()</h3>
+<pre class="programlisting">void       xmlMutexUnlock                  (<a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> tok)<br>
+</pre>
+<p>xmlMutexUnlock() is used to unlock a libxml2 token.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>tok</tt></i>:</span></td>
+<td>the simple mutex</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewMutex"></a>xmlNewMutex ()</h3>
+<pre class="programlisting"><a href="libxml2-threads.html#xmlMutexPtr">xmlMutexPtr</a> xmlNewMutex             (void)<br>
+</pre>
+<p>xmlNewMutex() is used to allocate a libxml2 token struct for use in synchronizing access to data.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new simple mutex pointer or NULL in case of error</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewRMutex"></a>xmlNewRMutex ()</h3>
+<pre class="programlisting"><a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a>       xmlNewRMutex            (void)<br>
+</pre>
+<p>xmlRNewMutex() is used to allocate a reentrant mutex for use in synchronizing access to data. token_r is a re-entrant lock and thus useful for synchronizing access to data structures that may be manipulated in a recursive fashion.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new reentrant mutex pointer or NULL in case of error</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRMutexLock"></a>xmlRMutexLock ()</h3>
+<pre class="programlisting">void       xmlRMutexLock                   (<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a> tok)<br>
+</pre>
+<p>xmlRMutexLock() is used to lock a libxml2 token_r.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>tok</tt></i>:</span></td>
+<td>the reentrant mutex</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRMutexUnlock"></a>xmlRMutexUnlock ()</h3>
+<pre class="programlisting">void       xmlRMutexUnlock                 (<a href="libxml2-threads.html#xmlRMutexPtr">xmlRMutexPtr</a> tok)<br>
+</pre>
+<p>xmlRMutexUnlock() is used to unlock a libxml2 token_r.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>tok</tt></i>:</span></td>
+<td>the reentrant mutex</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUnlockLibrary"></a>xmlUnlockLibrary ()</h3>
+<pre class="programlisting">void       xmlUnlockLibrary                (void)<br>
+</pre>
+<p>xmlUnlockLibrary() is used to release a re-entrant lock on the libxml2 library.</p>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index e88dcb7..615abd7 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>tree: interfaces for tree manipulation</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-threads.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-uri.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">tree</span>
-    </h2>
-    <p>tree - interfaces for tree manipulation</p>
-    <p>this module describes the structures found in an tree resulting from an XML or HTML parsing, as well as the API provided for various processing on that tree </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#XML_LOCAL_NAMESPACE">XML_LOCAL_NAMESPACE</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>tree: interfaces for tree manipulation</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-threads.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-uri.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">tree</span></h2>
+<p>tree - interfaces for tree manipulation</p>
+<p>this module describes the structures found in an tree resulting from an XML or HTML parsing, as well as the API provided for various processing on that tree </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#BASE_BUFFER_SIZE">BASE_BUFFER_SIZE</a>;
+#define <a href="#LIBXML2_NEW_BUFFER">LIBXML2_NEW_BUFFER</a>;
 #define <a href="#XML_DOCB_DOCUMENT_NODE">XML_DOCB_DOCUMENT_NODE</a>;
-#define <a href="#BASE_BUFFER_SIZE">BASE_BUFFER_SIZE</a>;
-#define <a href="#XML_XML_ID">XML_XML_ID</a>;
-#define <a href="#xmlRootNode">xmlRootNode</a>;
-#define <a href="#XML_GET_LINE">XML_GET_LINE</a>;
 #define <a href="#XML_GET_CONTENT">XML_GET_CONTENT</a>;
-#define <a href="#xmlChildrenNode">xmlChildrenNode</a>;
+#define <a href="#XML_GET_LINE">XML_GET_LINE</a>;
+#define <a href="#XML_LOCAL_NAMESPACE">XML_LOCAL_NAMESPACE</a>;
+#define <a href="#XML_XML_ID">XML_XML_ID</a>;
 #define <a href="#XML_XML_NAMESPACE">XML_XML_NAMESPACE</a>;
-#define <a href="#LIBXML2_NEW_BUFFER">LIBXML2_NEW_BUFFER</a>;
-typedef struct _xmlNs <a href="#xmlNs">xmlNs</a>;
-typedef struct _xmlElementContent <a href="#xmlElementContent">xmlElementContent</a>;
-typedef <a href="libxml2-tree.html#xmlEnumeration">xmlEnumeration</a> * <a href="#xmlEnumerationPtr">xmlEnumerationPtr</a>;
+#define <a href="#xmlChildrenNode">xmlChildrenNode</a>;
+#define <a href="#xmlRootNode">xmlRootNode</a>;
+typedef struct _xmlAttr <a href="#xmlAttr">xmlAttr</a>;
+typedef <a href="libxml2-tree.html#xmlAttr">xmlAttr</a> * <a href="#xmlAttrPtr">xmlAttrPtr</a>;
+typedef struct _xmlAttribute <a href="#xmlAttribute">xmlAttribute</a>;
+typedef enum <a href="#xmlAttributeDefault">xmlAttributeDefault</a>;
+typedef <a href="libxml2-tree.html#xmlAttribute">xmlAttribute</a> * <a href="#xmlAttributePtr">xmlAttributePtr</a>;
+typedef enum <a href="#xmlAttributeType">xmlAttributeType</a>;
+typedef struct _xmlBuf <a href="#xmlBuf">xmlBuf</a>;
+typedef <a href="libxml2-tree.html#xmlBuf">xmlBuf</a> * <a href="#xmlBufPtr">xmlBufPtr</a>;
 typedef struct _xmlBuffer <a href="#xmlBuffer">xmlBuffer</a>;
-typedef <a href="libxml2-tree.html#xmlParserInput">xmlParserInput</a> * <a href="#xmlParserInputPtr">xmlParserInputPtr</a>;
-typedef <a href="libxml2-tree.html#xmlSAXLocator">xmlSAXLocator</a> * <a href="#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a>;
-typedef struct _xmlParserInput <a href="#xmlParserInput">xmlParserInput</a>;
-typedef struct _xmlElement <a href="#xmlElement">xmlElement</a>;
-typedef <a href="libxml2-tree.html#xmlElementType">xmlElementType</a> <a href="#xmlNsType">xmlNsType</a>;
 typedef enum <a href="#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a>;
-typedef struct _xmlNode <a href="#xmlNode">xmlNode</a>;
-typedef <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * <a href="#xmlDocPtr">xmlDocPtr</a>;
 typedef <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> * <a href="#xmlBufferPtr">xmlBufferPtr</a>;
-typedef <a href="libxml2-tree.html#xmlDOMWrapCtxt">xmlDOMWrapCtxt</a> * <a href="#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a>;
-typedef <a href="libxml2-tree.html#xmlRef">xmlRef</a> * <a href="#xmlRefPtr">xmlRefPtr</a>;
-typedef struct _xmlParserInputBuffer <a href="#xmlParserInputBuffer">xmlParserInputBuffer</a>;
-typedef struct _xmlRef <a href="#xmlRef">xmlRef</a>;
 typedef struct _xmlDOMWrapCtxt <a href="#xmlDOMWrapCtxt">xmlDOMWrapCtxt</a>;
-typedef <a href="libxml2-tree.html#xmlNode">xmlNode</a> * <a href="#xmlNodePtr">xmlNodePtr</a>;
-typedef struct _xmlParserCtxt <a href="#xmlParserCtxt">xmlParserCtxt</a>;
+typedef <a href="libxml2-tree.html#xmlDOMWrapCtxt">xmlDOMWrapCtxt</a> * <a href="#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a>;
+typedef struct _xmlDoc <a href="#xmlDoc">xmlDoc</a>;
+typedef enum <a href="#xmlDocProperties">xmlDocProperties</a>;
+typedef <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * <a href="#xmlDocPtr">xmlDocPtr</a>;
+typedef struct _xmlDtd <a href="#xmlDtd">xmlDtd</a>;
 typedef <a href="libxml2-tree.html#xmlDtd">xmlDtd</a> * <a href="#xmlDtdPtr">xmlDtdPtr</a>;
-typedef enum <a href="#xmlAttributeDefault">xmlAttributeDefault</a>;
-typedef struct _xmlBuf <a href="#xmlBuf">xmlBuf</a>;
-typedef struct _xmlNotation <a href="#xmlNotation">xmlNotation</a>;
+typedef struct _xmlElement <a href="#xmlElement">xmlElement</a>;
+typedef struct _xmlElementContent <a href="#xmlElementContent">xmlElementContent</a>;
+typedef enum <a href="#xmlElementContentOccur">xmlElementContentOccur</a>;
+typedef <a href="libxml2-tree.html#xmlElementContent">xmlElementContent</a> * <a href="#xmlElementContentPtr">xmlElementContentPtr</a>;
+typedef enum <a href="#xmlElementContentType">xmlElementContentType</a>;
+typedef <a href="libxml2-tree.html#xmlElement">xmlElement</a> * <a href="#xmlElementPtr">xmlElementPtr</a>;
 typedef enum <a href="#xmlElementType">xmlElementType</a>;
-typedef struct _xmlEntity <a href="#xmlEntity">xmlEntity</a>;
-typedef struct _xmlAttr <a href="#xmlAttr">xmlAttr</a>;
-typedef <a href="libxml2-tree.html#xmlAttribute">xmlAttribute</a> * <a href="#xmlAttributePtr">xmlAttributePtr</a>;
 typedef enum <a href="#xmlElementTypeVal">xmlElementTypeVal</a>;
-typedef <a href="libxml2-tree.html#xmlNotation">xmlNotation</a> * <a href="#xmlNotationPtr">xmlNotationPtr</a>;
-typedef <a href="libxml2-tree.html#xmlElement">xmlElement</a> * <a href="#xmlElementPtr">xmlElementPtr</a>;
-typedef <a href="libxml2-tree.html#xmlBuf">xmlBuf</a> * <a href="#xmlBufPtr">xmlBufPtr</a>;
-typedef enum <a href="#xmlElementContentOccur">xmlElementContentOccur</a>;
-typedef <a href="libxml2-tree.html#xmlAttr">xmlAttr</a> * <a href="#xmlAttrPtr">xmlAttrPtr</a>;
-typedef struct _xmlDoc <a href="#xmlDoc">xmlDoc</a>;
-typedef struct _xmlID <a href="#xmlID">xmlID</a>;
-typedef <a href="libxml2-tree.html#xmlParserCtxt">xmlParserCtxt</a> * <a href="#xmlParserCtxtPtr">xmlParserCtxtPtr</a>;
+typedef struct _xmlEntity <a href="#xmlEntity">xmlEntity</a>;
 typedef <a href="libxml2-tree.html#xmlEntity">xmlEntity</a> * <a href="#xmlEntityPtr">xmlEntityPtr</a>;
 typedef struct _xmlEnumeration <a href="#xmlEnumeration">xmlEnumeration</a>;
-typedef enum <a href="#xmlAttributeType">xmlAttributeType</a>;
+typedef <a href="libxml2-tree.html#xmlEnumeration">xmlEnumeration</a> * <a href="#xmlEnumerationPtr">xmlEnumerationPtr</a>;
+typedef struct _xmlID <a href="#xmlID">xmlID</a>;
+typedef <a href="libxml2-tree.html#xmlID">xmlID</a> * <a href="#xmlIDPtr">xmlIDPtr</a>;
+typedef struct _xmlNode <a href="#xmlNode">xmlNode</a>;
+typedef <a href="libxml2-tree.html#xmlNode">xmlNode</a> * <a href="#xmlNodePtr">xmlNodePtr</a>;
+typedef struct _xmlNotation <a href="#xmlNotation">xmlNotation</a>;
+typedef <a href="libxml2-tree.html#xmlNotation">xmlNotation</a> * <a href="#xmlNotationPtr">xmlNotationPtr</a>;
+typedef struct _xmlNs <a href="#xmlNs">xmlNs</a>;
 typedef <a href="libxml2-tree.html#xmlNs">xmlNs</a> * <a href="#xmlNsPtr">xmlNsPtr</a>;
-typedef <a href="libxml2-tree.html#xmlParserInputBuffer">xmlParserInputBuffer</a> * <a href="#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>;
-typedef struct _xmlSAXHandler <a href="#xmlSAXHandler">xmlSAXHandler</a>;
+typedef <a href="libxml2-tree.html#xmlElementType">xmlElementType</a> <a href="#xmlNsType">xmlNsType</a>;
 typedef struct _xmlOutputBuffer <a href="#xmlOutputBuffer">xmlOutputBuffer</a>;
-typedef struct _xmlSAXLocator <a href="#xmlSAXLocator">xmlSAXLocator</a>;
-typedef <a href="libxml2-tree.html#xmlElementContent">xmlElementContent</a> * <a href="#xmlElementContentPtr">xmlElementContentPtr</a>;
-typedef enum <a href="#xmlElementContentType">xmlElementContentType</a>;
-typedef enum <a href="#xmlDocProperties">xmlDocProperties</a>;
-typedef <a href="libxml2-tree.html#xmlID">xmlID</a> * <a href="#xmlIDPtr">xmlIDPtr</a>;
-typedef struct _xmlDtd <a href="#xmlDtd">xmlDtd</a>;
-typedef struct _xmlAttribute <a href="#xmlAttribute">xmlAttribute</a>;
 typedef <a href="libxml2-tree.html#xmlOutputBuffer">xmlOutputBuffer</a> * <a href="#xmlOutputBufferPtr">xmlOutputBufferPtr</a>;
+typedef struct _xmlParserCtxt <a href="#xmlParserCtxt">xmlParserCtxt</a>;
+typedef <a href="libxml2-tree.html#xmlParserCtxt">xmlParserCtxt</a> * <a href="#xmlParserCtxtPtr">xmlParserCtxtPtr</a>;
+typedef struct _xmlParserInput <a href="#xmlParserInput">xmlParserInput</a>;
+typedef struct _xmlParserInputBuffer <a href="#xmlParserInputBuffer">xmlParserInputBuffer</a>;
+typedef <a href="libxml2-tree.html#xmlParserInputBuffer">xmlParserInputBuffer</a> * <a href="#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>;
+typedef <a href="libxml2-tree.html#xmlParserInput">xmlParserInput</a> * <a href="#xmlParserInputPtr">xmlParserInputPtr</a>;
+typedef struct _xmlRef <a href="#xmlRef">xmlRef</a>;
+typedef <a href="libxml2-tree.html#xmlRef">xmlRef</a> * <a href="#xmlRefPtr">xmlRefPtr</a>;
+typedef struct _xmlSAXHandler <a href="#xmlSAXHandler">xmlSAXHandler</a>;
 typedef <a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * <a href="#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a>;
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlDocCopyNode">xmlDocCopyNode</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  int extended);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocRawNode">xmlNewDocRawNode</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+typedef struct _xmlSAXLocator <a href="#xmlSAXLocator">xmlSAXLocator</a>;
+typedef <a href="libxml2-tree.html#xmlSAXLocator">xmlSAXLocator</a> * <a href="#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a>;
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlAddChild">xmlAddChild</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlAddChildList">xmlAddChildList</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlAddNextSibling">xmlAddNextSibling</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlAddPrevSibling">xmlAddPrevSibling</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlAddSibling">xmlAddSibling</a>              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
+void   <a href="#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a>    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlBufContent">xmlBufContent</a>              (const <a href="libxml2-tree.html#xmlBuf">xmlBuf</a> * buf);
-<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlNewNsPropEatName">xmlNewNsPropEatName</a>  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlStringGetNodeList">xmlStringGetNodeList</a>        (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewCDataBlock">xmlNewCDataBlock</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len);
-void   <a href="#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a>            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNodeGetBase">xmlNodeGetBase</a>            (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
-void   <a href="#xmlBufferEmpty">xmlBufferEmpty</a>                    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlBuildQName">xmlBuildQName</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ncname, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * memory, <br/>                                    int len);
-int    <a href="#xmlValidateNMToken">xmlValidateNMToken</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int space);
-int    <a href="#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a>                (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding, <br/>                                    int format);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlAddSibling">xmlAddSibling</a>              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
-<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>      <a href="#xmlBufferCreate">xmlBufferCreate</a>          (void);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocFragment">xmlNewDocFragment</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlDocGetRootElement">xmlDocGetRootElement</a>        (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlGetProp">xmlGetProp</a>            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlValidateName">xmlValidateName</a>                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int space);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlBufEnd">xmlBufEnd</a>              (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf);
-int    <a href="#xmlValidateQName">xmlValidateQName</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int space);
-<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlHasNsProp">xmlHasNsProp</a>                (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlAddPrevSibling">xmlAddPrevSibling</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
-int    <a href="#xmlBufferAddHead">xmlBufferAddHead</a>                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         int len);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewPI">xmlNewPI</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-void   <a href="#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> out_doc, <br/>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr, <br/>                                      int * doc_txt_len, <br/>                                        const char * txt_encoding, <br/>                                        int format);
-<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlSetProp">xmlSetProp</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-unsigned long  <a href="#xmlChildElementCount">xmlChildElementCount</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent);
-void   <a href="#xmlElemDump">xmlElemDump</a>                  (FILE * f, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-int    <a href="#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a>          (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding, <br/>                                    int format);
-<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlGetIntSubset">xmlGetIntSubset</a>          (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc);
-int    <a href="#xmlNodeBufGetContent">xmlNodeBufGetContent</a>                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br/>                                         const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNextElementSibling">xmlNextElementSibling</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-void   <a href="#xmlBufferWriteChar">xmlBufferWriteChar</a>            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const char * string);
+int    <a href="#xmlBufGetNodeContent">xmlBufGetNodeContent</a>                (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br>                                   const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
+size_t <a href="#xmlBufNodeDump">xmlBufNodeDump</a>                    (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br>                                   <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         int level, <br>                                         int format);
+size_t <a href="#xmlBufShrink">xmlBufShrink</a>                        (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br>                                   size_t len);
+size_t <a href="#xmlBufUse">xmlBufUse</a>                      (const <a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf);
+int    <a href="#xmlBufferAdd">xmlBufferAdd</a>                        (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  int len);
+int    <a href="#xmlBufferAddHead">xmlBufferAddHead</a>                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  int len);
+int    <a href="#xmlBufferCCat">xmlBufferCCat</a>                      (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const char * str);
+int    <a href="#xmlBufferCat">xmlBufferCat</a>                        (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlBufferContent">xmlBufferContent</a>        (const <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> * buf);
+<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>      <a href="#xmlBufferCreate">xmlBufferCreate</a>          (void);
+<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>      <a href="#xmlBufferCreateSize">xmlBufferCreateSize</a>  (size_t size);
+<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>      <a href="#xmlBufferCreateStatic">xmlBufferCreateStatic</a>      (void * mem, <br>                                        size_t size);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlBufferDetach">xmlBufferDetach</a>          (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf);
+int    <a href="#xmlBufferDump">xmlBufferDump</a>                      (FILE * file, <br>                                       <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf);
+void   <a href="#xmlBufferEmpty">xmlBufferEmpty</a>                    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf);
 void   <a href="#xmlBufferFree">xmlBufferFree</a>                      (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf);
-int    <a href="#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a>          (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> sourceDoc, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * resNode, <br/>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> destDoc, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> destParent, <br/>                                         int deep, <br/>                                         int options);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewNode">xmlNewNode</a>            (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlSaveFileTo">xmlSaveFileTo</a>                      (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewTextLen">xmlNewTextLen</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewTextChild">xmlNewTextChild</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br/>                                     <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-void   <a href="#xmlNodeSetContent">xmlNodeSetContent</a>              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlBufferAdd">xmlBufferAdd</a>                        (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         int len);
-void   <a href="#xmlNodeDumpOutput">xmlNodeDumpOutput</a>              (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        int level, <br/>                                        int format, <br/>                                       const char * encoding);
+int    <a href="#xmlBufferGrow">xmlBufferGrow</a>                      (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     unsigned int len);
+int    <a href="#xmlBufferLength">xmlBufferLength</a>                  (const <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> * buf);
+int    <a href="#xmlBufferResize">xmlBufferResize</a>                  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     unsigned int size);
+void   <a href="#xmlBufferSetAllocationScheme">xmlBufferSetAllocationScheme</a>        (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> scheme);
+int    <a href="#xmlBufferShrink">xmlBufferShrink</a>                  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     unsigned int len);
+void   <a href="#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a>            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string);
+void   <a href="#xmlBufferWriteChar">xmlBufferWriteChar</a>            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const char * string);
+void   <a href="#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a>    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlBuildQName">xmlBuildQName</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ncname, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * memory, <br>                                     int len);
+unsigned long  <a href="#xmlChildElementCount">xmlChildElementCount</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCopyDoc">xmlCopyDoc</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   int recursive);
+<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlCopyDtd">xmlCopyDtd</a>            (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd);
 <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#xmlCopyNamespace">xmlCopyNamespace</a>        (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur);
-<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#xmlSearchNsByHref">xmlSearchNsByHref</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlAddChild">xmlAddChild</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br/>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-int    <a href="#xmlReconciliateNs">xmlReconciliateNs</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree);
-int    <a href="#xmlValidateNCName">xmlValidateNCName</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int space);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocComment">xmlNewDocComment</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlGetCompressMode">xmlGetCompressMode</a>            (void);
-int    <a href="#xmlNodeDump">xmlNodeDump</a>                  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        int level, <br/>                                        int format);
-<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>      <a href="#xmlBufferCreateSize">xmlBufferCreateSize</a>  (size_t size);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNodeListGetString">xmlNodeListGetString</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * list, <br/>                                     int inLine);
-void   <a href="#xmlSetCompressMode">xmlSetCompressMode</a>            (int mode);
-void   <a href="#xmlSetTreeDoc">xmlSetTreeDoc</a>                      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-int    <a href="#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a>          (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> sourceDoc, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> destDoc, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> destParent, <br/>                                         int options);
+<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#xmlCopyNamespaceList">xmlCopyNamespaceList</a>        (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlCopyNode">xmlCopyNode</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int extended);
 <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlCopyNodeList">xmlCopyNodeList</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlAddChildList">xmlAddChildList</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br/>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlGetNodePath">xmlGetNodePath</a>            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node);
-void   <a href="#xmlFreePropList">xmlFreePropList</a>                  (<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur);
-void   <a href="#xmlNodeAddContent">xmlNodeAddContent</a>              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlUnsetNsProp">xmlUnsetNsProp</a>                    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlFirstElementChild">xmlFirstElementChild</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlAddNextSibling">xmlAddNextSibling</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
-int    <a href="#xmlIsBlankNode">xmlIsBlankNode</a>                    (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node);
-<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#xmlNewGlobalNs">xmlNewGlobalNs</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
-int    <a href="#xmlBufferDump">xmlBufferDump</a>                      (FILE * file, <br/>                                      <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNodeGetContent">xmlNodeGetContent</a>      (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlCopyDoc">xmlCopyDoc</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  int recursive);
+<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlCopyProp">xmlCopyProp</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> target, <br>                                      <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur);
+<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlCopyPropList">xmlCopyPropList</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> target, <br>                                      <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur);
+<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlCreateIntSubset">xmlCreateIntSubset</a>    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
+typedef <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> <a href="#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a>       (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nsName, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nsPrefix);
+int    <a href="#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a>          (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> sourceDoc, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> destDoc, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> destParent, <br>                                  int options);
+int    <a href="#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a>          (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> sourceDoc, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * resNode, <br>                                   <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> destDoc, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> destParent, <br>                                  int deep, <br>                                  int options);
+void   <a href="#xmlDOMWrapFreeCtxt">xmlDOMWrapFreeCtxt</a>            (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt);
 <a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a>    <a href="#xmlDOMWrapNewCtxt">xmlDOMWrapNewCtxt</a>      (void);
-void   <a href="#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> out_doc, <br/>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr, <br/>                                      int * doc_txt_len, <br/>                                        const char * txt_encoding);
-int    <a href="#xmlBufGetNodeContent">xmlBufGetNodeContent</a>                (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br/>                                  const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlTextMerge">xmlTextMerge</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> first, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> second);
-void   <a href="#xmlDocDumpMemory">xmlDocDumpMemory</a>                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br/>                                      int * size);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocPI">xmlNewDocPI</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a>      (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        int options);
+int    <a href="#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a>                (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int options);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlDocCopyNode">xmlDocCopyNode</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   int extended);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlDocCopyNodeList">xmlDocCopyNodeList</a>    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+int    <a href="#xmlDocDump">xmlDocDump</a>                    (FILE * f, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur);
+void   <a href="#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br>                                       int * size, <br>                                        int format);
+void   <a href="#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> out_doc, <br>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr, <br>                                       int * doc_txt_len, <br>                                         const char * txt_encoding, <br>                                         int format);
+void   <a href="#xmlDocDumpMemory">xmlDocDumpMemory</a>                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br>                                       int * size);
+void   <a href="#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> out_doc, <br>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr, <br>                                       int * doc_txt_len, <br>                                         const char * txt_encoding);
+int    <a href="#xmlDocFormatDump">xmlDocFormatDump</a>                (FILE * f, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   int format);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlDocGetRootElement">xmlDocGetRootElement</a>        (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlDocSetRootElement">xmlDocSetRootElement</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> root);
+void   <a href="#xmlElemDump">xmlElemDump</a>                  (FILE * f, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlFirstElementChild">xmlFirstElementChild</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent);
+void   <a href="#xmlFreeDoc">xmlFreeDoc</a>                    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur);
+void   <a href="#xmlFreeDtd">xmlFreeDtd</a>                    (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> cur);
+void   <a href="#xmlFreeNode">xmlFreeNode</a>                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+void   <a href="#xmlFreeNodeList">xmlFreeNodeList</a>                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
 void   <a href="#xmlFreeNs">xmlFreeNs</a>                      (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur);
-int    <a href="#xmlDocDump">xmlDocDump</a>                    (FILE * f, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur);
+void   <a href="#xmlFreeNsList">xmlFreeNsList</a>                      (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur);
 void   <a href="#xmlFreeProp">xmlFreeProp</a>                  (<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlGetNoNsProp">xmlGetNoNsProp</a>            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlSplitQName2">xmlSplitQName2</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix);
-<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlNewProp">xmlNewProp</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-int    <a href="#xmlTextConcat">xmlTextConcat</a>                      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len);
-int    <a href="#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a>          (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
-int    <a href="#xmlBufferShrink">xmlBufferShrink</a>                  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    unsigned int len);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlPreviousElementSibling">xmlPreviousElementSibling</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-void   <a href="#xmlNodeSetContentLen">xmlNodeSetContentLen</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len);
-void   <a href="#xmlNodeAddContentLen">xmlNodeAddContentLen</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len);
-void   <a href="#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a>    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string);
-<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlCopyProp">xmlCopyProp</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> target, <br/>                                     <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlReplaceNode">xmlReplaceNode</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> old, <br/>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-void   <a href="#xmlSetDocCompressMode">xmlSetDocCompressMode</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  int mode);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlCopyNode">xmlCopyNode</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int extended);
-void   <a href="#xmlUnlinkNode">xmlUnlinkNode</a>                      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlSplitQName3">xmlSplitQName3</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int * len);
-typedef <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> <a href="#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a>       (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br/>                                                 <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nsName, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nsPrefix);
-size_t <a href="#xmlBufUse">xmlBufUse</a>                      (const <a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlDocSetRootElement">xmlDocSetRootElement</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> root);
+void   <a href="#xmlFreePropList">xmlFreePropList</a>                  (<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur);
+<a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a>    <a href="#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a>        (void);
+int    <a href="#xmlGetCompressMode">xmlGetCompressMode</a>            (void);
+int    <a href="#xmlGetDocCompressMode">xmlGetDocCompressMode</a>              (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc);
+<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlGetIntSubset">xmlGetIntSubset</a>          (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlGetLastChild">xmlGetLastChild</a>          (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * parent);
 long   <a href="#xmlGetLineNo">xmlGetLineNo</a>                        (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlBufferContent">xmlBufferContent</a>        (const <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> * buf);
-int    <a href="#xmlRemoveProp">xmlRemoveProp</a>                      (<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlGetNoNsProp">xmlGetNoNsProp</a>            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlGetNodePath">xmlGetNodePath</a>            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node);
+<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> *    <a href="#xmlGetNsList">xmlGetNsList</a>                (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlGetNsProp">xmlGetNsProp</a>                (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlGetProp">xmlGetProp</a>            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlHasNsProp">xmlHasNsProp</a>                (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace);
+<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlHasProp">xmlHasProp</a>            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlIsBlankNode">xmlIsBlankNode</a>                    (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node);
+int    <a href="#xmlIsXHTML">xmlIsXHTML</a>                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemID, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicID);
 <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlLastElementChild">xmlLastElementChild</a>  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNodeGetLang">xmlNodeGetLang</a>            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
-int    <a href="#xmlGetDocCompressMode">xmlGetDocCompressMode</a>              (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc);
-size_t <a href="#xmlBufNodeDump">xmlBufNodeDump</a>                    (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br/>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        int level, <br/>                                        int format);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlGetNsProp">xmlGetNsProp</a>                (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace);
-<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlNewDocProp">xmlNewDocProp</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-void   <a href="#xmlFreeNode">xmlFreeNode</a>                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlNewNsProp">xmlNewNsProp</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-void   <a href="#xmlDOMWrapFreeCtxt">xmlDOMWrapFreeCtxt</a>            (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlBufferDetach">xmlBufferDetach</a>          (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf);
-void   <a href="#xmlBufferSetAllocationScheme">xmlBufferSetAllocationScheme</a>        (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> scheme);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewChild">xmlNewChild</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br/>                                     <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#xmlSearchNs">xmlSearchNs</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a>  (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int len);
-int    <a href="#xmlSaveFormatFile">xmlSaveFormatFile</a>              (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  int format);
-<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlCopyPropList">xmlCopyPropList</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> target, <br/>                                     <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur);
-int    <a href="#xmlDocFormatDump">xmlDocFormatDump</a>                (FILE * f, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  int format);
-void   <a href="#xmlNodeSetSpacePreserve">xmlNodeSetSpacePreserve</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        int val);
-<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlHasProp">xmlHasProp</a>            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlBufferCat">xmlBufferCat</a>                        (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
-<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlCreateIntSubset">xmlCreateIntSubset</a>    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlNewDoc">xmlNewDoc</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * version);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewCharRef">xmlNewCharRef</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#xmlCopyNamespaceList">xmlCopyNamespaceList</a>        (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewNodeEatName">xmlNewNodeEatName</a>      (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlBufferResize">xmlBufferResize</a>                  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    unsigned int size);
-void   <a href="#xmlNodeSetBase">xmlNodeSetBase</a>                    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * uri);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewCDataBlock">xmlNewCDataBlock</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewCharRef">xmlNewCharRef</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewChild">xmlNewChild</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br>                                      <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
 <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewComment">xmlNewComment</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlBufferLength">xmlBufferLength</a>                  (const <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> * buf);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlNewDoc">xmlNewDoc</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * version);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocComment">xmlNewDocComment</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocFragment">xmlNewDocFragment</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocNode">xmlNewDocNode</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocPI">xmlNewDocPI</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlNewDocProp">xmlNewDocProp</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocRawNode">xmlNewDocRawNode</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocText">xmlNewDocText</a>              (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocTextLen">xmlNewDocTextLen</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len);
+<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlNewDtd">xmlNewDtd</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
+<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#xmlNewGlobalNs">xmlNewGlobalNs</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewNode">xmlNewNode</a>            (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewNodeEatName">xmlNewNodeEatName</a>      (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#xmlNewNs">xmlNewNs</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
+<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlNewNsProp">xmlNewNsProp</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlNewNsPropEatName">xmlNewNsPropEatName</a>  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewPI">xmlNewPI</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlNewProp">xmlNewProp</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewReference">xmlNewReference</a>          (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
 <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewText">xmlNewText</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlUnsetProp">xmlUnsetProp</a>                        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-<a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a>    <a href="#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a>        (void);
-int    <a href="#xmlSaveFile">xmlSaveFile</a>                  (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlDocCopyNodeList">xmlDocCopyNodeList</a>    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-void   <a href="#xmlSetNs">xmlSetNs</a>                        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns);
-<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#xmlNewNs">xmlNewNs</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
-int    <a href="#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a>                (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int options);
-void   <a href="#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a>    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string);
-<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlCopyDtd">xmlCopyDtd</a>            (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocText">xmlNewDocText</a>              (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNodeListGetRawString">xmlNodeListGetRawString</a>  (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * list, <br/>                                     int inLine);
-<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>      <a href="#xmlBufferCreateStatic">xmlBufferCreateStatic</a>      (void * mem, <br/>                                       size_t size);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewReference">xmlNewReference</a>          (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a>      (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       int options);
-int    <a href="#xmlBufferCCat">xmlBufferCCat</a>                      (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const char * str);
-<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> *    <a href="#xmlGetNsList">xmlGetNsList</a>                (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node);
-int    <a href="#xmlBufferGrow">xmlBufferGrow</a>                      (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    unsigned int len);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewTextChild">xmlNewTextChild</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br>                                      <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewTextLen">xmlNewTextLen</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNextElementSibling">xmlNextElementSibling</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+void   <a href="#xmlNodeAddContent">xmlNodeAddContent</a>              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+void   <a href="#xmlNodeAddContentLen">xmlNodeAddContentLen</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len);
+int    <a href="#xmlNodeBufGetContent">xmlNodeBufGetContent</a>                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br>                                  const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
+int    <a href="#xmlNodeDump">xmlNodeDump</a>                  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         int level, <br>                                         int format);
+void   <a href="#xmlNodeDumpOutput">xmlNodeDumpOutput</a>              (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         int level, <br>                                         int format, <br>                                        const char * encoding);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNodeGetBase">xmlNodeGetBase</a>            (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNodeGetContent">xmlNodeGetContent</a>      (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNodeGetLang">xmlNodeGetLang</a>            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
+int    <a href="#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a>          (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur);
 int    <a href="#xmlNodeIsText">xmlNodeIsText</a>                      (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNodeListGetRawString">xmlNodeListGetRawString</a>  (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * list, <br>                                      int inLine);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNodeListGetString">xmlNodeListGetString</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * list, <br>                                      int inLine);
+void   <a href="#xmlNodeSetBase">xmlNodeSetBase</a>                    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * uri);
+void   <a href="#xmlNodeSetContent">xmlNodeSetContent</a>              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+void   <a href="#xmlNodeSetContentLen">xmlNodeSetContentLen</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len);
+void   <a href="#xmlNodeSetLang">xmlNodeSetLang</a>                    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * lang);
+void   <a href="#xmlNodeSetName">xmlNodeSetName</a>                    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+void   <a href="#xmlNodeSetSpacePreserve">xmlNodeSetSpacePreserve</a>          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         int val);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlPreviousElementSibling">xmlPreviousElementSibling</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+int    <a href="#xmlReconciliateNs">xmlReconciliateNs</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree);
+int    <a href="#xmlRemoveProp">xmlRemoveProp</a>                      (<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlReplaceNode">xmlReplaceNode</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> old, <br>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+int    <a href="#xmlSaveFile">xmlSaveFile</a>                  (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur);
+int    <a href="#xmlSaveFileEnc">xmlSaveFileEnc</a>                    (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding);
+int    <a href="#xmlSaveFileTo">xmlSaveFileTo</a>                      (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding);
+int    <a href="#xmlSaveFormatFile">xmlSaveFormatFile</a>              (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   int format);
+int    <a href="#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a>                (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding, <br>                                     int format);
+int    <a href="#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a>          (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding, <br>                                     int format);
+<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#xmlSearchNs">xmlSearchNs</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace);
+<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      <a href="#xmlSearchNsByHref">xmlSearchNsByHref</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href);
 void   <a href="#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a>        (<a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> scheme);
-int    <a href="#xmlIsXHTML">xmlIsXHTML</a>                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemID, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicID);
-void   <a href="#xmlNodeSetLang">xmlNodeSetLang</a>                    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * lang);
-void   <a href="#xmlFreeDtd">xmlFreeDtd</a>                    (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> cur);
-void   <a href="#xmlFreeNodeList">xmlFreeNodeList</a>                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-void   <a href="#xmlFreeDoc">xmlFreeDoc</a>                    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur);
-size_t <a href="#xmlBufShrink">xmlBufShrink</a>                        (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br/>                                  size_t len);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocNode">xmlNewDocNode</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlSaveFileEnc">xmlSaveFileEnc</a>                    (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding);
-<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlSetNsProp">xmlSetNsProp</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-void   <a href="#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br/>                                      int * size, <br/>                                       int format);
-void   <a href="#xmlSetListDoc">xmlSetListDoc</a>                      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> list, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-void   <a href="#xmlNodeSetName">xmlNodeSetName</a>                    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlNewDocTextLen">xmlNewDocTextLen</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len);
-<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    <a href="#xmlNewDtd">xmlNewDtd</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
-void   <a href="#xmlFreeNsList">xmlFreeNsList</a>                      (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlGetLastChild">xmlGetLastChild</a>          (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * parent);
+void   <a href="#xmlSetCompressMode">xmlSetCompressMode</a>            (int mode);
+void   <a href="#xmlSetDocCompressMode">xmlSetDocCompressMode</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   int mode);
+void   <a href="#xmlSetListDoc">xmlSetListDoc</a>                      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> list, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+void   <a href="#xmlSetNs">xmlSetNs</a>                        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns);
+<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlSetNsProp">xmlSetNsProp</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlSetProp">xmlSetProp</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+void   <a href="#xmlSetTreeDoc">xmlSetTreeDoc</a>                      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlSplitQName2">xmlSplitQName2</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlSplitQName3">xmlSplitQName3</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int * len);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlStringGetNodeList">xmlStringGetNodeList</a>        (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a>  (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int len);
+int    <a href="#xmlTextConcat">xmlTextConcat</a>                      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlTextMerge">xmlTextMerge</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> first, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> second);
+void   <a href="#xmlUnlinkNode">xmlUnlinkNode</a>                      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+int    <a href="#xmlUnsetNsProp">xmlUnsetNsProp</a>                    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlUnsetProp">xmlUnsetProp</a>                        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlValidateNCName">xmlValidateNCName</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int space);
+int    <a href="#xmlValidateNMToken">xmlValidateNMToken</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int space);
+int    <a href="#xmlValidateName">xmlValidateName</a>                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int space);
+int    <a href="#xmlValidateQName">xmlValidateQName</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int space);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="BASE_BUFFER_SIZE">Macro </a>BASE_BUFFER_SIZE</h3>
+<pre class="programlisting">#define <a href="#BASE_BUFFER_SIZE">BASE_BUFFER_SIZE</a>;
+</pre>
+<p>default buffer size 4000.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML2_NEW_BUFFER">Macro </a>LIBXML2_NEW_BUFFER</h3>
+<pre class="programlisting">#define <a href="#LIBXML2_NEW_BUFFER">LIBXML2_NEW_BUFFER</a>;
+</pre>
+<p>Macro used to express that the API use the new buffers for <a href="libxml2-tree.html#xmlParserInputBuffer">xmlParserInputBuffer</a> and xmlOutputBuffer. The change was introduced in 2.9.0.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_DOCB_DOCUMENT_NODE">Macro </a>XML_DOCB_DOCUMENT_NODE</h3>
+<pre class="programlisting">#define <a href="#XML_DOCB_DOCUMENT_NODE">XML_DOCB_DOCUMENT_NODE</a>;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_GET_CONTENT">Macro </a>XML_GET_CONTENT</h3>
+<pre class="programlisting">#define <a href="#XML_GET_CONTENT">XML_GET_CONTENT</a>;
+</pre>
+<p>Macro to extract the content pointer of a node.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_GET_LINE">Macro </a>XML_GET_LINE</h3>
+<pre class="programlisting">#define <a href="#XML_GET_LINE">XML_GET_LINE</a>;
+</pre>
+<p>Macro to extract the line number of an element node.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_LOCAL_NAMESPACE">Macro </a>XML_LOCAL_NAMESPACE</h3>
+<pre class="programlisting">#define <a href="#XML_LOCAL_NAMESPACE">XML_LOCAL_NAMESPACE</a>;
+</pre>
+<p>A namespace declaration node.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_XML_ID">Macro </a>XML_XML_ID</h3>
+<pre class="programlisting">#define <a href="#XML_XML_ID">XML_XML_ID</a>;
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="BASE_BUFFER_SIZE">Macro </a>BASE_BUFFER_SIZE</h3><pre class="programlisting">#define <a href="#BASE_BUFFER_SIZE">BASE_BUFFER_SIZE</a>;
-</pre><p>default buffer size 4000.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML2_NEW_BUFFER">Macro </a>LIBXML2_NEW_BUFFER</h3><pre class="programlisting">#define <a href="#LIBXML2_NEW_BUFFER">LIBXML2_NEW_BUFFER</a>;
-</pre><p>Macro used to express that the API use the new buffers for <a href="libxml2-tree.html#xmlParserInputBuffer">xmlParserInputBuffer</a> and xmlOutputBuffer. The change was introduced in 2.9.0.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_DOCB_DOCUMENT_NODE">Macro </a>XML_DOCB_DOCUMENT_NODE</h3><pre class="programlisting">#define <a href="#XML_DOCB_DOCUMENT_NODE">XML_DOCB_DOCUMENT_NODE</a>;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_GET_CONTENT">Macro </a>XML_GET_CONTENT</h3><pre class="programlisting">#define <a href="#XML_GET_CONTENT">XML_GET_CONTENT</a>;
-</pre><p>Macro to extract the content pointer of a node.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_GET_LINE">Macro </a>XML_GET_LINE</h3><pre class="programlisting">#define <a href="#XML_GET_LINE">XML_GET_LINE</a>;
-</pre><p>Macro to extract the line number of an element node.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_LOCAL_NAMESPACE">Macro </a>XML_LOCAL_NAMESPACE</h3><pre class="programlisting">#define <a href="#XML_LOCAL_NAMESPACE">XML_LOCAL_NAMESPACE</a>;
-</pre><p>A namespace declaration node.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_XML_ID">Macro </a>XML_XML_ID</h3><pre class="programlisting">#define <a href="#XML_XML_ID">XML_XML_ID</a>;
-</pre><p>This is the name for the special xml:id <a href="libxml2-SAX.html#attribute">attribute</a></p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_XML_NAMESPACE">Macro </a>XML_XML_NAMESPACE</h3><pre class="programlisting">#define <a href="#XML_XML_NAMESPACE">XML_XML_NAMESPACE</a>;
-</pre><p>This is the namespace for the special xml: prefix predefined in the XML Namespace specification.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlChildrenNode">Macro </a>xmlChildrenNode</h3><pre class="programlisting">#define <a href="#xmlChildrenNode">xmlChildrenNode</a>;
-</pre><p>Macro for compatibility naming layer with libxml1. Maps to "children."</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRootNode">Macro </a>xmlRootNode</h3><pre class="programlisting">#define <a href="#xmlRootNode">xmlRootNode</a>;
-</pre><p>Macro for compatibility naming layer with libxml1. Maps to "children".</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAttr">Structure </a>xmlAttr</h3><pre class="programlisting">struct _xmlAttr {
+<p>This is the name for the special xml:id <a href="libxml2-SAX.html#attribute">attribute</a></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_XML_NAMESPACE">Macro </a>XML_XML_NAMESPACE</h3>
+<pre class="programlisting">#define <a href="#XML_XML_NAMESPACE">XML_XML_NAMESPACE</a>;
+</pre>
+<p>This is the namespace for the special xml: prefix predefined in the XML Namespace specification.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlChildrenNode">Macro </a>xmlChildrenNode</h3>
+<pre class="programlisting">#define <a href="#xmlChildrenNode">xmlChildrenNode</a>;
+</pre>
+<p>Macro for compatibility naming layer with libxml1. Maps to "children."</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRootNode">Macro </a>xmlRootNode</h3>
+<pre class="programlisting">#define <a href="#xmlRootNode">xmlRootNode</a>;
+</pre>
+<p>Macro for compatibility naming layer with libxml1. Maps to "children".</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAttr">Structure </a>xmlAttr</h3>
+<pre class="programlisting">struct _xmlAttr {
     void *     _private        : application data
     <a href="libxml2-tree.html#xmlElementType">xmlElementType</a>      type    : XML_ATTRIBUTE_NODE, must be second !
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : the name of the property
@@ -333,14 +353,22 @@ void      <a href="#xmlFreeNsList">xmlFreeNsList</a>                      (<a href="libxml2-tree.html#xm
     <a href="libxml2-tree.html#xmlAttributeType">xmlAttributeType</a>  atype   : the <a href="libxml2-SAX.html#attribute">attribute</a> type if validating
     void *     psvi    : for type/PSVI information
 } xmlAttr;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAttrPtr">Typedef </a>xmlAttrPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttr">xmlAttr</a> * xmlAttrPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAttrPtr">Typedef </a>xmlAttrPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttr">xmlAttr</a> * xmlAttrPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAttribute">Structure </a>xmlAttribute</h3><pre class="programlisting">struct _xmlAttribute {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAttribute">Structure </a>xmlAttribute</h3>
+<pre class="programlisting">struct _xmlAttribute {
     void *     _private        : application data
     <a href="libxml2-tree.html#xmlElementType">xmlElementType</a>      type    : XML_ATTRIBUTE_DECL, must be second !
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : Attribute name
@@ -358,23 +386,35 @@ void      <a href="#xmlFreeNsList">xmlFreeNsList</a>                      (<a href="libxml2-tree.html#xm
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       prefix  : the namespace prefix if any
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       elem    : Element holding the <a href="libxml2-SAX.html#attribute">attribute</a>
 } xmlAttribute;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAttributeDefault">Enum </a>xmlAttributeDefault</h3><pre class="programlisting">enum <a href="#xmlAttributeDefault">xmlAttributeDefault</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAttributeDefault">Enum </a>xmlAttributeDefault</h3>
+<pre class="programlisting">enum <a href="#xmlAttributeDefault">xmlAttributeDefault</a> {
     <a name="XML_ATTRIBUTE_NONE">XML_ATTRIBUTE_NONE</a> = 1
     <a name="XML_ATTRIBUTE_REQUIRED">XML_ATTRIBUTE_REQUIRED</a> = 2
     <a name="XML_ATTRIBUTE_IMPLIED">XML_ATTRIBUTE_IMPLIED</a> = 3
     <a name="XML_ATTRIBUTE_FIXED">XML_ATTRIBUTE_FIXED</a> = 4
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAttributePtr">Typedef </a>xmlAttributePtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttribute">xmlAttribute</a> * xmlAttributePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAttributePtr">Typedef </a>xmlAttributePtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttribute">xmlAttribute</a> * xmlAttributePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAttributeType">Enum </a>xmlAttributeType</h3><pre class="programlisting">enum <a href="#xmlAttributeType">xmlAttributeType</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAttributeType">Enum </a>xmlAttributeType</h3>
+<pre class="programlisting">enum <a href="#xmlAttributeType">xmlAttributeType</a> {
     <a name="XML_ATTRIBUTE_CDATA">XML_ATTRIBUTE_CDATA</a> = 1
     <a name="XML_ATTRIBUTE_ID">XML_ATTRIBUTE_ID</a> = 2
     <a name="XML_ATTRIBUTE_IDREF">XML_ATTRIBUTE_IDREF</a> = 3
@@ -386,30 +426,46 @@ void      <a href="#xmlFreeNsList">xmlFreeNsList</a>                      (<a href="libxml2-tree.html#xm
     <a name="XML_ATTRIBUTE_ENUMERATION">XML_ATTRIBUTE_ENUMERATION</a> = 9
     <a name="XML_ATTRIBUTE_NOTATION">XML_ATTRIBUTE_NOTATION</a> = 10
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBuf">Structure </a>xmlBuf</h3><pre class="programlisting">struct _xmlBuf {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBuf">Structure </a>xmlBuf</h3>
+<pre class="programlisting">struct _xmlBuf {
 The content of this structure is not made public by the API.
 } xmlBuf;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufPtr">Typedef </a>xmlBufPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlBuf">xmlBuf</a> * xmlBufPtr;
-</pre><p>A pointer to a buffer structure, the actual structure internals are not public</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufPtr">Typedef </a>xmlBufPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlBuf">xmlBuf</a> * xmlBufPtr;
+</pre>
+<p>A pointer to a buffer structure, the actual structure internals are not public</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBuffer">Structure </a>xmlBuffer</h3><pre class="programlisting">struct _xmlBuffer {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBuffer">Structure </a>xmlBuffer</h3>
+<pre class="programlisting">struct _xmlBuffer {
     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     content : The buffer content UTF8
     unsigned int       use     : The buffer size used
     unsigned int       size    : The buffer size
     <a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a>        alloc   : The realloc method
     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     contentIO       : in IO mode we may have a different base
 } xmlBuffer;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferAllocationScheme">Enum </a>xmlBufferAllocationScheme</h3><pre class="programlisting">enum <a href="#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferAllocationScheme">Enum </a>xmlBufferAllocationScheme</h3>
+<pre class="programlisting">enum <a href="#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> {
     <a name="XML_BUFFER_ALLOC_DOUBLEIT">XML_BUFFER_ALLOC_DOUBLEIT</a> = 1 /* double each time one need to grow */
     <a name="XML_BUFFER_ALLOC_EXACT">XML_BUFFER_ALLOC_EXACT</a> = 2 /* grow only to the minimal size */
     <a name="XML_BUFFER_ALLOC_IMMUTABLE">XML_BUFFER_ALLOC_IMMUTABLE</a> = 3 /* immutable buffer */
@@ -417,27 +473,43 @@ The content of this structure is not made public by the API.
     <a name="XML_BUFFER_ALLOC_HYBRID">XML_BUFFER_ALLOC_HYBRID</a> = 5 /* exact up to a threshold, and doubleit thereafter */
     <a name="XML_BUFFER_ALLOC_BOUNDED">XML_BUFFER_ALLOC_BOUNDED</a> = 6 /*  limit the upper size of the buffer */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferPtr">Typedef </a>xmlBufferPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> * xmlBufferPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferPtr">Typedef </a>xmlBufferPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> * xmlBufferPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDOMWrapCtxt">Structure </a>xmlDOMWrapCtxt</h3><pre class="programlisting">struct _xmlDOMWrapCtxt {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDOMWrapCtxt">Structure </a>xmlDOMWrapCtxt</h3>
+<pre class="programlisting">struct _xmlDOMWrapCtxt {
     void *     _private        : * The type of this context, just in case we need specialized * context
     int        type    : * Internal namespace map used for various operations. *
     void *     namespaceMap    : * Use this one to acquire an <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> intended for node-&gt;ns. * (Note t
     <a href="libxml2-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a>    getNsForNodeFunc
 } xmlDOMWrapCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDOMWrapCtxtPtr">Typedef </a>xmlDOMWrapCtxtPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDOMWrapCtxt">xmlDOMWrapCtxt</a> * xmlDOMWrapCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDOMWrapCtxtPtr">Typedef </a>xmlDOMWrapCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDOMWrapCtxt">xmlDOMWrapCtxt</a> * xmlDOMWrapCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDoc">Structure </a>xmlDoc</h3><pre class="programlisting">struct _xmlDoc {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDoc">Structure </a>xmlDoc</h3>
+<pre class="programlisting">struct _xmlDoc {
     void *     _private        : application data
     <a href="libxml2-tree.html#xmlElementType">xmlElementType</a>      type    : XML_DOCUMENT_NODE, must be second !
     char *     name    : name/filename/URI of the document
@@ -463,10 +535,14 @@ The content of this structure is not made public by the API.
     int        parseFlags      : set of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a> used to parse the document
     int        properties      : set of <a href="libxml2-tree.html#xmlDocProperties">xmlDocProperties</a> for this document set at the end of parsing
 } xmlDoc;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocProperties">Enum </a>xmlDocProperties</h3><pre class="programlisting">enum <a href="#xmlDocProperties">xmlDocProperties</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocProperties">Enum </a>xmlDocProperties</h3>
+<pre class="programlisting">enum <a href="#xmlDocProperties">xmlDocProperties</a> {
     <a name="XML_DOC_WELLFORMED">XML_DOC_WELLFORMED</a> = 1 /* document is XML well formed */
     <a name="XML_DOC_NSVALID">XML_DOC_NSVALID</a> = 2 /* document is Namespace valid */
     <a name="XML_DOC_OLD10">XML_DOC_OLD10</a> = 4 /* parsed with old XML-1.0 parser */
@@ -476,14 +552,22 @@ The content of this structure is not made public by the API.
     <a name="XML_DOC_INTERNAL">XML_DOC_INTERNAL</a> = 64 /* built for internal processing */
     <a name="XML_DOC_HTML">XML_DOC_HTML</a> = 128 /*  parsed or built HTML document */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocPtr">Typedef </a>xmlDocPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * xmlDocPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocPtr">Typedef </a>xmlDocPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * xmlDocPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDtd">Structure </a>xmlDtd</h3><pre class="programlisting">struct _xmlDtd {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDtd">Structure </a>xmlDtd</h3>
+<pre class="programlisting">struct _xmlDtd {
     void *     _private        : application data
     <a href="libxml2-tree.html#xmlElementType">xmlElementType</a>      type    : XML_DTD_NODE, must be second !
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : Name of the DTD
@@ -501,14 +585,22 @@ The content of this structure is not made public by the API.
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       SystemID        : URI for a SYSTEM or PUBLIC DTD
     void *     pentities       : Hash table for param entities if any
 } xmlDtd;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDtdPtr">Typedef </a>xmlDtdPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDtd">xmlDtd</a> * xmlDtdPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDtdPtr">Typedef </a>xmlDtdPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDtd">xmlDtd</a> * xmlDtdPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlElement">Structure </a>xmlElement</h3><pre class="programlisting">struct _xmlElement {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlElement">Structure </a>xmlElement</h3>
+<pre class="programlisting">struct _xmlElement {
     void *     _private        : application data
     <a href="libxml2-tree.html#xmlElementType">xmlElementType</a>      type    : XML_ELEMENT_DECL, must be second !
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : Element name
@@ -525,10 +617,14 @@ The content of this structure is not made public by the API.
     <a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a>     contModel       : the validating regexp
     void *     contModel
 } xmlElement;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlElementContent">Structure </a>xmlElementContent</h3><pre class="programlisting">struct _xmlElementContent {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlElementContent">Structure </a>xmlElementContent</h3>
+<pre class="programlisting">struct _xmlElementContent {
     <a href="libxml2-tree.html#xmlElementContentType">xmlElementContentType</a>        type    : PCDATA, ELEMENT, SEQ or OR
     <a href="libxml2-tree.html#xmlElementContentOccur">xmlElementContentOccur</a>      ocur    : ONCE, OPT, MULT or PLUS
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : Element name
@@ -537,36 +633,56 @@ The content of this structure is not made public by the API.
     struct _xmlElementContent *        parent  : parent
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       prefix  : Namespace prefix
 } xmlElementContent;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlElementContentOccur">Enum </a>xmlElementContentOccur</h3><pre class="programlisting">enum <a href="#xmlElementContentOccur">xmlElementContentOccur</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlElementContentOccur">Enum </a>xmlElementContentOccur</h3>
+<pre class="programlisting">enum <a href="#xmlElementContentOccur">xmlElementContentOccur</a> {
     <a name="XML_ELEMENT_CONTENT_ONCE">XML_ELEMENT_CONTENT_ONCE</a> = 1
     <a name="XML_ELEMENT_CONTENT_OPT">XML_ELEMENT_CONTENT_OPT</a> = 2
     <a name="XML_ELEMENT_CONTENT_MULT">XML_ELEMENT_CONTENT_MULT</a> = 3
     <a name="XML_ELEMENT_CONTENT_PLUS">XML_ELEMENT_CONTENT_PLUS</a> = 4
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlElementContentPtr">Typedef </a>xmlElementContentPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElementContent">xmlElementContent</a> * xmlElementContentPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlElementContentPtr">Typedef </a>xmlElementContentPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElementContent">xmlElementContent</a> * xmlElementContentPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlElementContentType">Enum </a>xmlElementContentType</h3><pre class="programlisting">enum <a href="#xmlElementContentType">xmlElementContentType</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlElementContentType">Enum </a>xmlElementContentType</h3>
+<pre class="programlisting">enum <a href="#xmlElementContentType">xmlElementContentType</a> {
     <a name="XML_ELEMENT_CONTENT_PCDATA">XML_ELEMENT_CONTENT_PCDATA</a> = 1
     <a name="XML_ELEMENT_CONTENT_ELEMENT">XML_ELEMENT_CONTENT_ELEMENT</a> = 2
     <a name="XML_ELEMENT_CONTENT_SEQ">XML_ELEMENT_CONTENT_SEQ</a> = 3
     <a name="XML_ELEMENT_CONTENT_OR">XML_ELEMENT_CONTENT_OR</a> = 4
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlElementPtr">Typedef </a>xmlElementPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElement">xmlElement</a> * xmlElementPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlElementPtr">Typedef </a>xmlElementPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElement">xmlElement</a> * xmlElementPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlElementType">Enum </a>xmlElementType</h3><pre class="programlisting">enum <a href="#xmlElementType">xmlElementType</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlElementType">Enum </a>xmlElementType</h3>
+<pre class="programlisting">enum <a href="#xmlElementType">xmlElementType</a> {
     <a name="XML_ELEMENT_NODE">XML_ELEMENT_NODE</a> = 1
     <a name="XML_ATTRIBUTE_NODE">XML_ATTRIBUTE_NODE</a> = 2
     <a name="XML_TEXT_NODE">XML_TEXT_NODE</a> = 3
@@ -588,20 +704,28 @@ The content of this structure is not made public by the API.
     <a name="XML_XINCLUDE_START">XML_XINCLUDE_START</a> = 19
     <a name="XML_XINCLUDE_END">XML_XINCLUDE_END</a> = 20 /*  XML_DOCB_DOCUMENT_NODE= 21 removed */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlElementTypeVal">Enum </a>xmlElementTypeVal</h3><pre class="programlisting">enum <a href="#xmlElementTypeVal">xmlElementTypeVal</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlElementTypeVal">Enum </a>xmlElementTypeVal</h3>
+<pre class="programlisting">enum <a href="#xmlElementTypeVal">xmlElementTypeVal</a> {
     <a name="XML_ELEMENT_TYPE_UNDEFINED">XML_ELEMENT_TYPE_UNDEFINED</a> = 0
     <a name="XML_ELEMENT_TYPE_EMPTY">XML_ELEMENT_TYPE_EMPTY</a> = 1
     <a name="XML_ELEMENT_TYPE_ANY">XML_ELEMENT_TYPE_ANY</a> = 2
     <a name="XML_ELEMENT_TYPE_MIXED">XML_ELEMENT_TYPE_MIXED</a> = 3
     <a name="XML_ELEMENT_TYPE_ELEMENT">XML_ELEMENT_TYPE_ELEMENT</a> = 4
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlEntity">Structure </a>xmlEntity</h3><pre class="programlisting">struct _xmlEntity {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlEntity">Structure </a>xmlEntity</h3>
+<pre class="programlisting">struct _xmlEntity {
     void *     _private        : application data
     <a href="libxml2-tree.html#xmlElementType">xmlElementType</a>      type    : XML_ENTITY_DECL, must be second !
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : Entity name
@@ -622,25 +746,41 @@ The content of this structure is not made public by the API.
     int        owner   : does the entity own the childrens
     int        checked : was the entity content checked this is also used to count entities *
 } xmlEntity;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlEntityPtr">Typedef </a>xmlEntityPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEntity">xmlEntity</a> * xmlEntityPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlEntityPtr">Typedef </a>xmlEntityPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEntity">xmlEntity</a> * xmlEntityPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlEnumeration">Structure </a>xmlEnumeration</h3><pre class="programlisting">struct _xmlEnumeration {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlEnumeration">Structure </a>xmlEnumeration</h3>
+<pre class="programlisting">struct _xmlEnumeration {
     struct _xmlEnumeration *   next    : next one
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : Enumeration name
 } xmlEnumeration;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlEnumerationPtr">Typedef </a>xmlEnumerationPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEnumeration">xmlEnumeration</a> * xmlEnumerationPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlEnumerationPtr">Typedef </a>xmlEnumerationPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEnumeration">xmlEnumeration</a> * xmlEnumerationPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlID">Structure </a>xmlID</h3><pre class="programlisting">struct _xmlID {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlID">Structure </a>xmlID</h3>
+<pre class="programlisting">struct _xmlID {
     struct _xmlID *    next    : next ID
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       value   : The ID name
     <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      attr    : The <a href="libxml2-SAX.html#attribute">attribute</a> holding it
@@ -648,14 +788,22 @@ The content of this structure is not made public by the API.
     int        lineno  : The line number if attr is not available
     struct _xmlDoc *   doc     : The document holding the ID
 } xmlID;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIDPtr">Typedef </a>xmlIDPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlID">xmlID</a> * xmlIDPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIDPtr">Typedef </a>xmlIDPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlID">xmlID</a> * xmlIDPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNode">Structure </a>xmlNode</h3><pre class="programlisting">struct _xmlNode {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNode">Structure </a>xmlNode</h3>
+<pre class="programlisting">struct _xmlNode {
     void *     _private        : application data
     <a href="libxml2-tree.html#xmlElementType">xmlElementType</a>      type    : type number, must be second !
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : the name of the node, or the entity
@@ -673,26 +821,42 @@ The content of this structure is not made public by the API.
     unsigned short     line    : line number
     unsigned short     extra   : extra data for XPath/XSLT
 } xmlNode;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodePtr">Typedef </a>xmlNodePtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNode">xmlNode</a> * xmlNodePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodePtr">Typedef </a>xmlNodePtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNode">xmlNode</a> * xmlNodePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNotation">Structure </a>xmlNotation</h3><pre class="programlisting">struct _xmlNotation {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNotation">Structure </a>xmlNotation</h3>
+<pre class="programlisting">struct _xmlNotation {
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : Notation name
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       PublicID        : Public identifier, if any
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       SystemID        : System identifier, if any
 } xmlNotation;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNotationPtr">Typedef </a>xmlNotationPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNotation">xmlNotation</a> * xmlNotationPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNotationPtr">Typedef </a>xmlNotationPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNotation">xmlNotation</a> * xmlNotationPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNs">Structure </a>xmlNs</h3><pre class="programlisting">struct _xmlNs {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNs">Structure </a>xmlNs</h3>
+<pre class="programlisting">struct _xmlNs {
     struct _xmlNs *    next    : next Ns link for this node
     <a href="libxml2-tree.html#xmlNsType">xmlNsType</a>        type    : global or local
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       href    : URL for the namespace
@@ -700,18 +864,30 @@ The content of this structure is not made public by the API.
     void *     _private        : application data
     struct _xmlDoc *   context : normally an <a href="libxml2-tree.html#xmlDoc">xmlDoc</a>
 } xmlNs;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNsPtr">Typedef </a>xmlNsPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNs">xmlNs</a> * xmlNsPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNsPtr">Typedef </a>xmlNsPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNs">xmlNs</a> * xmlNsPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNsType">Typedef </a>xmlNsType</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElementType">xmlElementType</a> xmlNsType;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNsType">Typedef </a>xmlNsType</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElementType">xmlElementType</a> xmlNsType;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBuffer">Structure </a>xmlOutputBuffer</h3><pre class="programlisting">struct _xmlOutputBuffer {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBuffer">Structure </a>xmlOutputBuffer</h3>
+<pre class="programlisting">struct _xmlOutputBuffer {
     void *     context
     <a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a>     writecallback
     <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a>     closecallback
@@ -721,14 +897,22 @@ The content of this structure is not made public by the API.
     int        written : total number of byte written
     int        error
 } xmlOutputBuffer;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferPtr">Typedef </a>xmlOutputBufferPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBuffer">xmlOutputBuffer</a> * xmlOutputBufferPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferPtr">Typedef </a>xmlOutputBufferPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBuffer">xmlOutputBuffer</a> * xmlOutputBufferPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserCtxt">Structure </a>xmlParserCtxt</h3><pre class="programlisting">struct _xmlParserCtxt {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserCtxt">Structure </a>xmlParserCtxt</h3>
+<pre class="programlisting">struct _xmlParserCtxt {
     struct _xmlSAXHandler *    sax     : The SAX handler
     void *     userData        : For SAX interface only, used by DOM build
     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        myDoc   : the document being built
@@ -819,14 +1003,22 @@ The content of this structure is not made public by the API.
     int        input_id        : we need to label inputs
     unsigned long      sizeentcopy     : volume of entity copy
 } xmlParserCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserCtxtPtr">Typedef </a>xmlParserCtxtPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxt">xmlParserCtxt</a> * xmlParserCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserCtxtPtr">Typedef </a>xmlParserCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxt">xmlParserCtxt</a> * xmlParserCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInput">Structure </a>xmlParserInput</h3><pre class="programlisting">struct _xmlParserInput {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInput">Structure </a>xmlParserInput</h3>
+<pre class="programlisting">struct _xmlParserInput {
     <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    buf     : UTF-8 encoded buffer
     const char *       filename        : The file analyzed, if any
     const char *       directory       : the directory/base of the file
@@ -843,10 +1035,14 @@ The content of this structure is not made public by the API.
     int        standalone      : Was that entity marked standalone
     int        id      : an unique identifier for the entity
 } xmlParserInput;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBuffer">Structure </a>xmlParserInputBuffer</h3><pre class="programlisting">struct _xmlParserInputBuffer {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBuffer">Structure </a>xmlParserInputBuffer</h3>
+<pre class="programlisting">struct _xmlParserInputBuffer {
     void *     context
     <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> readcallback
     <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a>       closecallback
@@ -857,32 +1053,52 @@ The content of this structure is not made public by the API.
     int        error
     unsigned long      rawconsumed     : amount consumed from raw
 } xmlParserInputBuffer;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferPtr">Typedef </a>xmlParserInputBufferPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBuffer">xmlParserInputBuffer</a> * xmlParserInputBufferPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferPtr">Typedef </a>xmlParserInputBufferPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBuffer">xmlParserInputBuffer</a> * xmlParserInputBufferPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputPtr">Typedef </a>xmlParserInputPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInput">xmlParserInput</a> * xmlParserInputPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputPtr">Typedef </a>xmlParserInputPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInput">xmlParserInput</a> * xmlParserInputPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRef">Structure </a>xmlRef</h3><pre class="programlisting">struct _xmlRef {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRef">Structure </a>xmlRef</h3>
+<pre class="programlisting">struct _xmlRef {
     struct _xmlRef *   next    : next Ref
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       value   : The Ref name
     <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      attr    : The <a href="libxml2-SAX.html#attribute">attribute</a> holding it
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : The <a href="libxml2-SAX.html#attribute">attribute</a> if attr is not available
     int        lineno  : The line number if attr is not available
 } xmlRef;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRefPtr">Typedef </a>xmlRefPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlRef">xmlRef</a> * xmlRefPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRefPtr">Typedef </a>xmlRefPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlRef">xmlRef</a> * xmlRefPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXHandler">Structure </a>xmlSAXHandler</h3><pre class="programlisting">struct _xmlSAXHandler {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXHandler">Structure </a>xmlSAXHandler</h3>
+<pre class="programlisting">struct _xmlSAXHandler {
     <a href="libxml2-parser.html#internalSubsetSAXFunc">internalSubsetSAXFunc</a>      internalSubset
     <a href="libxml2-parser.html#isStandaloneSAXFunc">isStandaloneSAXFunc</a>  isStandalone
     <a href="libxml2-parser.html#hasInternalSubsetSAXFunc">hasInternalSubsetSAXFunc</a>        hasInternalSubset
@@ -916,687 +1132,4136 @@ The content of this structure is not made public by the API.
     <a href="libxml2-parser.html#endElementNsSAX2Func">endElementNsSAX2Func</a>        endElementNs
     <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a>  serror
 } xmlSAXHandler;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXHandlerPtr">Typedef </a>xmlSAXHandlerPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * xmlSAXHandlerPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXHandlerPtr">Typedef </a>xmlSAXHandlerPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlSAXHandler">xmlSAXHandler</a> * xmlSAXHandlerPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXLocator">Structure </a>xmlSAXLocator</h3><pre class="programlisting">struct _xmlSAXLocator {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXLocator">Structure </a>xmlSAXLocator</h3>
+<pre class="programlisting">struct _xmlSAXLocator {
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *(*getPublicId) getPublicId
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *(*getSystemId) getSystemId
     int(*getLineNumber)        getLineNumber
     int(*getColumnNumber)      getColumnNumber
 } xmlSAXLocator;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSAXLocatorPtr">Typedef </a>xmlSAXLocatorPtr</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlSAXLocator">xmlSAXLocator</a> * xmlSAXLocatorPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDOMWrapAcquireNsFunction"/>Function type xmlDOMWrapAcquireNsFunction</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> xmlDOMWrapAcquireNsFunction     (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br/>                                                 <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nsName, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nsPrefix)<br/>
-</pre><p>A function called to acquire namespaces (xmlNs) from the wrapper.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a DOM wrapper context</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the context node (element or attribute)</td></tr><tr><td><span class="term"><i><tt>nsName</tt></i>:</span></td><td>the requested namespace name</td></tr><tr><td><span class="term"><i><tt>nsPrefix</tt></i>:</span></td><td>the requested namespace prefix</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> or NULL in case of an error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddChild"/>xmlAddChild ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlAddChild             (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br/>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Add a new node to @parent, at the end of the child (or property) list merging adjacent TEXT nodes (in which case @cur is freed) If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an <a href="libxml2-SAX.html#attribute">attribute</a> with equal name, it is first destroyed. All tree manipulation functions can safely move nodes within a document. But when moving nodes from one document to another, references to namespaces in element or <a href="libxml2-SAX.html#attribute">attribute</a> nodes are NOT fixed. In this case, you MUST call <a href="libxml2-tree.html#xmlReconciliateNs">xmlReconciliateNs</a> after the move operation to avoid memory errors.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>the parent node</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the child node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the child or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddChildList"/>xmlAddChildList ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlAddChildList         (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br/>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Add a list of node at the end of the child list of the parent merging adjacent TEXT nodes (@cur may be freed) See the note regarding namespaces in xmlAddChild.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>the parent node</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the first node in the list</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the last child or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddNextSibling"/>xmlAddNextSibling ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlAddNextSibling       (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br/>
-</pre><p>Add a new node @elem as the next sibling of @cur If the new node was already inserted in a document it is first unlinked from its existing context. As a result of text merging @elem may be freed. If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an <a href="libxml2-SAX.html#attribute">attribute</a> with equal name, it is first destroyed. See the note regarding namespaces in xmlAddChild.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the child node</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the new node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new node or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddPrevSibling"/>xmlAddPrevSibling ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlAddPrevSibling       (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br/>
-</pre><p>Add a new node @elem as the previous sibling of @cur merging adjacent TEXT nodes (@elem may be freed) If the new node was already inserted in a document it is first unlinked from its existing context. If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an <a href="libxml2-SAX.html#attribute">attribute</a> with equal name, it is first destroyed. See the note regarding namespaces in xmlAddChild.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the child node</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the new node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new node or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddSibling"/>xmlAddSibling ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlAddSibling           (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br/>
-</pre><p>Add a new element @elem to the list of siblings of @cur merging adjacent TEXT nodes (@elem may be freed) If the new element was already inserted in a document it is first unlinked from its existing context. See the note regarding namespaces in xmlAddChild.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the child node</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the new node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new element or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAttrSerializeTxtContent"/>xmlAttrSerializeTxtContent ()</h3><pre class="programlisting">void   xmlAttrSerializeTxtContent      (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string)<br/>
-</pre><p>Serialize text <a href="libxml2-SAX.html#attribute">attribute</a> values to an xml simple buffer</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> node</td></tr><tr><td><span class="term"><i><tt>string</tt></i>:</span></td><td>the text content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufContent"/>xmlBufContent ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlBufContent           (const <a href="libxml2-tree.html#xmlBuf">xmlBuf</a> * buf)<br/>
-</pre><p>Function to extract the content of a buffer</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the internal content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufEnd"/>xmlBufEnd ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlBufEnd               (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf)<br/>
-</pre><p>Function to extract the end of the content of a buffer</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the end of the internal content or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufGetNodeContent"/>xmlBufGetNodeContent ()</h3><pre class="programlisting">int        xmlBufGetNodeContent            (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br/>                                  const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br/>
-</pre><p>Read the value of a node @cur, this can be either the text carried directly by this node if it's a TEXT node or the aggregate string of the values carried by this node child's (TEXT and ENTITY_REF). Entity references are substituted. Fills up the buffer @buf with this value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>a buffer <a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a></td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being read</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufNodeDump"/>xmlBufNodeDump ()</h3><pre class="programlisting">size_t xmlBufNodeDump                  (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br/>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        int level, <br/>                                        int format)<br/>
-</pre><p>Dump an XML node, recursive behaviour,children are printed too. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>level</tt></i>:</span></td><td>the imbrication level for indenting</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>is formatting allowed</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written to the buffer, in case of error 0 is returned or @buf stores the error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufShrink"/>xmlBufShrink ()</h3><pre class="programlisting">size_t     xmlBufShrink                    (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br/>                                  size_t len)<br/>
-</pre><p>Remove the beginning of an XML buffer. NOTE that this routine behaviour differs from xmlBufferShrink() as it will return 0 on error instead of -1 due to size_t being used as the return type.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer to dump</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> to remove</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte removed or 0 in case of failure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufUse"/>xmlBufUse ()</h3><pre class="programlisting">size_t   xmlBufUse                       (const <a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf)<br/>
-</pre><p>Function to get the length of a buffer</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the length of data in the internal content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferAdd"/>xmlBufferAdd ()</h3><pre class="programlisting">int        xmlBufferAdd                    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         int len)<br/>
-</pre><p>Add a string range to an XML buffer. if len == -1, the length of str is recomputed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer to dump</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the #xmlChar string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of #xmlChar to add</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 successful, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferAddHead"/>xmlBufferAddHead ()</h3><pre class="programlisting">int        xmlBufferAddHead                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         int len)<br/>
-</pre><p>Add a string range to the beginning of an XML buffer. if len == -1, the length of @str is recomputed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the #xmlChar string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of #xmlChar to add</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 successful, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferCCat"/>xmlBufferCCat ()</h3><pre class="programlisting">int      xmlBufferCCat                   (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const char * str)<br/>
-</pre><p>Append a zero terminated C string to an XML buffer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer to dump</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the C char string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 successful, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferCat"/>xmlBufferCat ()</h3><pre class="programlisting">int        xmlBufferCat                    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>Append a zero terminated string to an XML buffer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer to add to</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the #xmlChar string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 successful, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferContent"/>xmlBufferContent ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlBufferContent        (const <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> * buf)<br/>
-</pre><p>Function to extract the content of a buffer</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the internal content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferCreate"/>xmlBufferCreate ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>    xmlBufferCreate         (void)<br/>
-</pre><p>routine to create an XML buffer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new structure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferCreateSize"/>xmlBufferCreateSize ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>    xmlBufferCreateSize     (size_t size)<br/>
-</pre><p>routine to create an XML buffer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>initial size of buffer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new structure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferCreateStatic"/>xmlBufferCreateStatic ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>        xmlBufferCreateStatic   (void * mem, <br/>                                       size_t size)<br/>
-</pre><p>routine to create an XML buffer from an immutable memory area. The area won't be modified nor copied, and is expected to be present until the end of the buffer lifetime.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>mem</tt></i>:</span></td><td>the memory area</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size in byte</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new structure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferDetach"/>xmlBufferDetach ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlBufferDetach         (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf)<br/>
-</pre><p>Remove the string contained in a buffer and gie it back to the caller. The buffer is reset to an empty content. This doesn't work with immutable buffers as they can't be reset.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the previous string contained by the buffer.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferDump"/>xmlBufferDump ()</h3><pre class="programlisting">int      xmlBufferDump                   (FILE * file, <br/>                                      <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf)<br/>
-</pre><p>Dumps an XML buffer to a FILE *.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>file</tt></i>:</span></td><td>the file output</td></tr><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer to dump</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of #xmlChar written</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferEmpty"/>xmlBufferEmpty ()</h3><pre class="programlisting">void   xmlBufferEmpty                  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf)<br/>
-</pre><p>empty a buffer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferFree"/>xmlBufferFree ()</h3><pre class="programlisting">void     xmlBufferFree                   (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf)<br/>
-</pre><p>Frees an XML buffer. It frees both the content and the structure which encapsulate it.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer to free</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferGrow"/>xmlBufferGrow ()</h3><pre class="programlisting">int      xmlBufferGrow                   (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    unsigned int len)<br/>
-</pre><p>Grow the available space of an XML buffer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the minimum free size to allocate</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new available space or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferLength"/>xmlBufferLength ()</h3><pre class="programlisting">int  xmlBufferLength                 (const <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> * buf)<br/>
-</pre><p>Function to get the length of a buffer</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the length of data in the internal content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferResize"/>xmlBufferResize ()</h3><pre class="programlisting">int  xmlBufferResize                 (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    unsigned int size)<br/>
-</pre><p>Resize a buffer to accommodate minimum size of @size.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer to resize</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the desired size</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of problems, 1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferSetAllocationScheme"/>xmlBufferSetAllocationScheme ()</h3><pre class="programlisting">void       xmlBufferSetAllocationScheme    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> scheme)<br/>
-</pre><p>Sets the allocation scheme for this buffer</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer to tune</td></tr><tr><td><span class="term"><i><tt>scheme</tt></i>:</span></td><td>allocation scheme to use</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferShrink"/>xmlBufferShrink ()</h3><pre class="programlisting">int  xmlBufferShrink                 (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    unsigned int len)<br/>
-</pre><p>Remove the beginning of an XML buffer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the buffer to dump</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> to remove</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of #xmlChar removed, or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferWriteCHAR"/>xmlBufferWriteCHAR ()</h3><pre class="programlisting">void   xmlBufferWriteCHAR              (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string)<br/>
-</pre><p>routine which manages and grows an output buffer. This one adds xmlChars at the end of the buffer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer</td></tr><tr><td><span class="term"><i><tt>string</tt></i>:</span></td><td>the string to add</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferWriteChar"/>xmlBufferWriteChar ()</h3><pre class="programlisting">void   xmlBufferWriteChar              (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const char * string)<br/>
-</pre><p>routine which manage and grows an output buffer. This one add C chars at the end of the array.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>string</tt></i>:</span></td><td>the string to add</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBufferWriteQuotedString"/>xmlBufferWriteQuotedString ()</h3><pre class="programlisting">void   xmlBufferWriteQuotedString      (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string)<br/>
-</pre><p>routine which manage and grows an output buffer. This one writes a quoted or double quoted #xmlChar string, checking first if it holds quote or double-quotes internally</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>string</tt></i>:</span></td><td>the string to add</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBuildQName"/>xmlBuildQName ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlBuildQName           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ncname, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * memory, <br/>                                    int len)<br/>
-</pre><p>Builds the QName @prefix:@ncname in @memory if there is enough space and prefix is not NULL nor empty, otherwise allocate a new string. If prefix is NULL or empty it returns ncname.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ncname</tt></i>:</span></td><td>the Name</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the prefix</td></tr><tr><td><span class="term"><i><tt>memory</tt></i>:</span></td><td>preallocated memory</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>preallocated memory length</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new string which must be freed by the caller if different from @memory and @ncname or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlChildElementCount"/>xmlChildElementCount ()</h3><pre class="programlisting">unsigned long      xmlChildElementCount    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent)<br/>
-</pre><p>Finds the current number of child nodes of that element which are element nodes. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back <a href="libxml2-SAX.html#reference">reference</a> from entities content to entities references.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>the parent node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the count of element child or 0 if not available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyDoc"/>xmlCopyDoc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    xmlCopyDoc              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  int recursive)<br/>
-</pre><p>Do a copy of the document info. If recursive, the content tree will be copied too as well as DTD, namespaces and entities.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>recursive</tt></i>:</span></td><td>if not zero do a recursive copy.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new #xmlDocPtr, or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyDtd"/>xmlCopyDtd ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    xmlCopyDtd              (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd)<br/>
-</pre><p>Do a copy of the dtd.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>the dtd</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new #xmlDtdPtr, or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyNamespace"/>xmlCopyNamespace ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  xmlCopyNamespace        (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur)<br/>
-</pre><p>Do a copy of the namespace.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the namespace</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new #xmlNsPtr, or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyNamespaceList"/>xmlCopyNamespaceList ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  xmlCopyNamespaceList    (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur)<br/>
-</pre><p>Do a copy of an namespace list.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the first namespace</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new #xmlNsPtr, or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyNode"/>xmlCopyNode ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlCopyNode             (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int extended)<br/>
-</pre><p>Do a copy of the node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>extended</tt></i>:</span></td><td>if 1 do a recursive copy (properties, namespaces and children when applicable) if 2 copy properties and namespaces (when applicable)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new #xmlNodePtr, or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyNodeList"/>xmlCopyNodeList ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlCopyNodeList         (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Do a recursive copy of the node list. Use xmlDocCopyNodeList() if possible to ensure string interning.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the first node in the list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new #xmlNodePtr, or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyProp"/>xmlCopyProp ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>        xmlCopyProp             (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> target, <br/>                                     <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur)<br/>
-</pre><p>Do a copy of the attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>target</tt></i>:</span></td><td>the element where the <a href="libxml2-SAX.html#attribute">attribute</a> will be grafted</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new #xmlAttrPtr, or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyPropList"/>xmlCopyPropList ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>        xmlCopyPropList         (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> target, <br/>                                     <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur)<br/>
-</pre><p>Do a copy of an <a href="libxml2-SAX.html#attribute">attribute</a> list.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>target</tt></i>:</span></td><td>the element where the attributes will be grafted</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the first <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new #xmlAttrPtr, or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCreateIntSubset"/>xmlCreateIntSubset ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>    xmlCreateIntSubset      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>Create the internal subset of a document</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document pointer</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the DTD name</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the external (PUBLIC) ID</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the system ID</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new DTD structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDOMWrapAdoptNode"/>xmlDOMWrapAdoptNode ()</h3><pre class="programlisting">int  xmlDOMWrapAdoptNode             (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> sourceDoc, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> destDoc, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> destParent, <br/>                                         int options)<br/>
-</pre><p>References of out-of scope ns-decls are remapped to point to @destDoc: 1) If @destParent is given, then nsDef entries on element-nodes are used 2) If *no* @destParent is given, then @destDoc-&gt;oldNs entries are used This is the case when you have an unlinked node and just want to move it to the context of If @destParent is given, it ensures that the tree is namespace wellformed by creating additional ns-decls where needed. Note that, since prefixes of already existent ns-decls can be shadowed by this process, it could break QNames in <a href="libxml2-SAX.html#attribute">attribute</a> values or element content. NOTE: This function was not intensively tested.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the optional context for custom processing</td></tr><tr><td><span class="term"><i><tt>sourceDoc</tt></i>:</span></td><td>the optional sourceDoc</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node to start with</td></tr><tr><td><span class="term"><i><tt>destDoc</tt></i>:</span></td><td>the destination doc</td></tr><tr><td><span class="term"><i><tt>destParent</tt></i>:</span></td><td>the optional new parent of @node in @destDoc</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>option flags</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the operation succeeded, 1 if a node of unsupported type was given, 2 if a node of not yet supported type was given and -1 on API/internal errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDOMWrapCloneNode"/>xmlDOMWrapCloneNode ()</h3><pre class="programlisting">int  xmlDOMWrapCloneNode             (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> sourceDoc, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * resNode, <br/>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> destDoc, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> destParent, <br/>                                         int deep, <br/>                                         int options)<br/>
-</pre><p>References of out-of scope ns-decls are remapped to point to @destDoc: 1) If @destParent is given, then nsDef entries on element-nodes are used 2) If *no* @destParent is given, then @destDoc-&gt;oldNs entries are used. This is the case when you don't know already where the cloned branch will be added to. If @destParent is given, it ensures that the tree is namespace wellformed by creating additional ns-decls where needed. Note that, since prefixes of already existent ns-decls can be shadowed by this process, it could break QNames in <a href="libxml2-SAX.html#attribute">attribute</a> values or element content. TODO: 1) What to do with XInclude? Currently this returns an error for XInclude.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the optional context for custom processing</td></tr><tr><td><span class="term"><i><tt>sourceDoc</tt></i>:</span></td><td>the optional sourceDoc</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node to start with</td></tr><tr><td><span class="term"><i><tt>resNode</tt></i>:</span></td><td>the clone of the given @node</td></tr><tr><td><span class="term"><i><tt>destDoc</tt></i>:</span></td><td>the destination doc</td></tr><tr><td><span class="term"><i><tt>destParent</tt></i>:</span></td><td>the optional new parent of @node in @destDoc</td></tr><tr><td><span class="term"><i><tt>deep</tt></i>:</span></td><td>descend into child if set</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>option flags</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the operation succeeded, 1 if a node of unsupported (or not yet supported) type was given, -1 on API/internal errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDOMWrapFreeCtxt"/>xmlDOMWrapFreeCtxt ()</h3><pre class="programlisting">void   xmlDOMWrapFreeCtxt              (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt)<br/>
-</pre><p>Frees the DOM-wrapper context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the DOM-wrapper context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDOMWrapNewCtxt"/>xmlDOMWrapNewCtxt ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a>      xmlDOMWrapNewCtxt       (void)<br/>
-</pre><p>Allocates and initializes a new DOM-wrapper context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> or NULL in case of an internal error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDOMWrapReconcileNamespaces"/>xmlDOMWrapReconcileNamespaces ()</h3><pre class="programlisting">int      xmlDOMWrapReconcileNamespaces   (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       int options)<br/>
-</pre><p>Ensures that ns-references point to ns-decls hold on element-nodes. Ensures that the tree is namespace wellformed by creating additional ns-decls where needed. Note that, since prefixes of already existent ns-decls can be shadowed by this process, it could break QNames in <a href="libxml2-SAX.html#attribute">attribute</a> values or element content. NOTE: This function was not intensively tested.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>DOM wrapper context, unused at the moment</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the element-node</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>option flags</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if succeeded, -1 otherwise and on API/internal errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDOMWrapRemoveNode"/>xmlDOMWrapRemoveNode ()</h3><pre class="programlisting">int        xmlDOMWrapRemoveNode            (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int options)<br/>
-</pre><p>Unlinks the given node from its owner. This will substitute ns-references to node-&gt;nsDef for ns-references to doc-&gt;oldNs, thus ensuring the removed branch to be autark wrt ns-references. NOTE: This function was not intensively tested.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a DOM wrapper context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the doc</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node to be removed.</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>set of options, unused at the moment</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 on success, 1 if the node is not supported, -1 on API and internal errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocCopyNode"/>xmlDocCopyNode ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  xmlDocCopyNode          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  int extended)<br/>
-</pre><p>Do a copy of the node to a given document.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>extended</tt></i>:</span></td><td>if 1 do a recursive copy (properties, namespaces and children when applicable) if 2 copy properties and namespaces (when applicable)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new #xmlNodePtr, or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocCopyNodeList"/>xmlDocCopyNodeList ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  xmlDocCopyNodeList      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Do a recursive copy of the node list.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the target document</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the first node in the list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new #xmlNodePtr, or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocDump"/>xmlDocDump ()</h3><pre class="programlisting">int    xmlDocDump                      (FILE * f, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur)<br/>
-</pre><p>Dump an XML document to an open FILE.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the FILE*</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocDumpFormatMemory"/>xmlDocDumpFormatMemory ()</h3><pre class="programlisting">void   xmlDocDumpFormatMemory          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br/>                                      int * size, <br/>                                       int format)<br/>
-</pre><p>Dump an XML document in memory and return the #xmlChar * and it's size. It's up to the caller to free the memory with xmlFree(). Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>mem</tt></i>:</span></td><td>OUT: the memory pointer</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>OUT: the memory length</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>should formatting spaces been added</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocDumpFormatMemoryEnc"/>xmlDocDumpFormatMemoryEnc ()</h3><pre class="programlisting">void     xmlDocDumpFormatMemoryEnc       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> out_doc, <br/>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr, <br/>                                      int * doc_txt_len, <br/>                                        const char * txt_encoding, <br/>                                        int format)<br/>
-</pre><p>Dump the current DOM tree into memory using the character encoding specified by the caller. Note it is up to the caller of this function to free the allocated memory with xmlFree(). Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out_doc</tt></i>:</span></td><td>Document to generate XML text from</td></tr><tr><td><span class="term"><i><tt>doc_txt_ptr</tt></i>:</span></td><td>Memory pointer for allocated XML text</td></tr><tr><td><span class="term"><i><tt>doc_txt_len</tt></i>:</span></td><td>Length of the generated XML text</td></tr><tr><td><span class="term"><i><tt>txt_encoding</tt></i>:</span></td><td>Character encoding to use when generating XML text</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>should formatting spaces been added</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocDumpMemory"/>xmlDocDumpMemory ()</h3><pre class="programlisting">void       xmlDocDumpMemory                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br/>                                      int * size)<br/>
-</pre><p>Dump an XML document in memory and return the #xmlChar * and it's size in bytes. It's up to the caller to free the memory with xmlFree(). The resulting byte array is zero terminated, though the last 0 is not included in the returned size.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>mem</tt></i>:</span></td><td>OUT: the memory pointer</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>OUT: the memory length</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocDumpMemoryEnc"/>xmlDocDumpMemoryEnc ()</h3><pre class="programlisting">void xmlDocDumpMemoryEnc             (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> out_doc, <br/>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr, <br/>                                      int * doc_txt_len, <br/>                                        const char * txt_encoding)<br/>
-</pre><p>Dump the current DOM tree into memory using the character encoding specified by the caller. Note it is up to the caller of this function to free the allocated memory with xmlFree().</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out_doc</tt></i>:</span></td><td>Document to generate XML text from</td></tr><tr><td><span class="term"><i><tt>doc_txt_ptr</tt></i>:</span></td><td>Memory pointer for allocated XML text</td></tr><tr><td><span class="term"><i><tt>doc_txt_len</tt></i>:</span></td><td>Length of the generated XML text</td></tr><tr><td><span class="term"><i><tt>txt_encoding</tt></i>:</span></td><td>Character encoding to use when generating XML text</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocFormatDump"/>xmlDocFormatDump ()</h3><pre class="programlisting">int        xmlDocFormatDump                (FILE * f, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  int format)<br/>
-</pre><p>Dump an XML document to an open FILE.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the FILE*</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>should formatting spaces been added</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written or -1 in case of failure. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocGetRootElement"/>xmlDocGetRootElement ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlDocGetRootElement    (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc)<br/>
-</pre><p>Get the root element of the document (doc-&gt;children is a list containing possibly comments, PIs, etc ...).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the #xmlNodePtr for the root or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDocSetRootElement"/>xmlDocSetRootElement ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlDocSetRootElement    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> root)<br/>
-</pre><p>Set the root element of the document (doc-&gt;children is a list containing possibly comments, PIs, etc ...).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>root</tt></i>:</span></td><td>the new document root element, if root is NULL no action is taken, to remove a node from a document use xmlUnlinkNode(root) instead.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the old root element if any was found, NULL if root was NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlElemDump"/>xmlElemDump ()</h3><pre class="programlisting">void xmlElemDump                     (FILE * f, <br/>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Dump an XML/HTML node, recursive behaviour, children are printed too.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFirstElementChild"/>xmlFirstElementChild ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlFirstElementChild    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent)<br/>
-</pre><p>Finds the first child node of that element which is a Element node Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back <a href="libxml2-SAX.html#reference">reference</a> from entities content to entities references.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>the parent node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the first element child or NULL if not available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeDoc"/>xmlFreeDoc ()</h3><pre class="programlisting">void   xmlFreeDoc                      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur)<br/>
-</pre><p>Free up all the structures used by a document, tree included.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>pointer to the document</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeDtd"/>xmlFreeDtd ()</h3><pre class="programlisting">void   xmlFreeDtd                      (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> cur)<br/>
-</pre><p>Free a DTD structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the DTD structure to free up</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeNode"/>xmlFreeNode ()</h3><pre class="programlisting">void xmlFreeNode                     (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Free a node, this is a recursive behaviour, all the children are freed too. This doesn't unlink the child from the list, use xmlUnlinkNode() first.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeNodeList"/>xmlFreeNodeList ()</h3><pre class="programlisting">void xmlFreeNodeList                 (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Free a node and all its siblings, this is a recursive behaviour, all the children are freed too.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the first node in the list</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeNs"/>xmlFreeNs ()</h3><pre class="programlisting">void     xmlFreeNs                       (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur)<br/>
-</pre><p>Free up the structures associated to a namespace</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the namespace pointer</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeNsList"/>xmlFreeNsList ()</h3><pre class="programlisting">void     xmlFreeNsList                   (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur)<br/>
-</pre><p>Free up all the structures associated to the chained namespaces.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the first namespace pointer</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeProp"/>xmlFreeProp ()</h3><pre class="programlisting">void xmlFreeProp                     (<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur)<br/>
-</pre><p>Free one attribute, all the content is freed too</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>an <a href="libxml2-SAX.html#attribute">attribute</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreePropList"/>xmlFreePropList ()</h3><pre class="programlisting">void xmlFreePropList                 (<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur)<br/>
-</pre><p>Free a property and all its siblings, all the children are freed too.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the first property in the list</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetBufferAllocationScheme"/>xmlGetBufferAllocationScheme ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a>        xmlGetBufferAllocationScheme    (void)<br/>
-</pre><p>Types are <a href="libxml2-tree.html#XML_BUFFER_ALLOC_EXACT">XML_BUFFER_ALLOC_EXACT</a> - use exact sizes, keeps memory usage down <a href="libxml2-tree.html#XML_BUFFER_ALLOC_DOUBLEIT">XML_BUFFER_ALLOC_DOUBLEIT</a> - double buffer when extra needed, improves performance <a href="libxml2-tree.html#XML_BUFFER_ALLOC_HYBRID">XML_BUFFER_ALLOC_HYBRID</a> - use exact sizes on small strings to keep memory usage tight in normal usage, and doubleit on large strings to avoid pathological performance.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the current allocation scheme</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetCompressMode"/>xmlGetCompressMode ()</h3><pre class="programlisting">int    xmlGetCompressMode              (void)<br/>
-</pre><p>get the default compression mode used, ZLIB based.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 (uncompressed) to 9 (max compression)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetDocCompressMode"/>xmlGetDocCompressMode ()</h3><pre class="programlisting">int      xmlGetDocCompressMode           (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc)<br/>
-</pre><p>get the compression ratio for a document, ZLIB based</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 (uncompressed) to 9 (max compression)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetIntSubset"/>xmlGetIntSubset ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>  xmlGetIntSubset         (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc)<br/>
-</pre><p>Get the internal subset of a document</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document pointer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the DTD structure or NULL if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetLastChild"/>xmlGetLastChild ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlGetLastChild         (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * parent)<br/>
-</pre><p>Search the last child of a node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>the parent node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the last child or NULL if none.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetLineNo"/>xmlGetLineNo ()</h3><pre class="programlisting">long       xmlGetLineNo                    (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node)<br/>
-</pre><p>Get line number of @node. Try to override the limitation of lines being store in 16 bits ints if <a href="libxml2-parser.html#XML_PARSE_BIG_LINES">XML_PARSE_BIG_LINES</a> parser option was used</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>valid node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the line number if successful, -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetNoNsProp"/>xmlGetNoNsProp ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlGetNoNsProp          (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Search and get the value of an <a href="libxml2-SAX.html#attribute">attribute</a> associated to a node This does the entity substitution. This function looks in DTD <a href="libxml2-SAX.html#attribute">attribute</a> declaration for #FIXED or default declaration values unless DTD use has been turned off. This function is similar to <a href="libxml2-tree.html#xmlGetProp">xmlGetProp</a> except it will accept only an <a href="libxml2-SAX.html#attribute">attribute</a> in no namespace.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> value or NULL if not found. It's up to the caller to free the memory with xmlFree().</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetNodePath"/>xmlGetNodePath ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlGetNodePath          (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node)<br/>
-</pre><p>Build a structure based Path for the given node</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new path or NULL in case of error. The caller must free the returned string</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetNsList"/>xmlGetNsList ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> *        xmlGetNsList            (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node)<br/>
-</pre><p>Search all the namespace applying to a given element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an NULL terminated array of all the #xmlNsPtr found that need to be freed by the caller or NULL if no namespace if defined</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetNsProp"/>xmlGetNsProp ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlGetNsProp            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace)<br/>
-</pre><p>Search and get the value of an <a href="libxml2-SAX.html#attribute">attribute</a> associated to a node This <a href="libxml2-SAX.html#attribute">attribute</a> has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD <a href="libxml2-SAX.html#attribute">attribute</a> declaration for #FIXED or default declaration values unless DTD use has been turned off.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>nameSpace</tt></i>:</span></td><td>the URI of the namespace</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> value or NULL if not found. It's up to the caller to free the memory with xmlFree().</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetProp"/>xmlGetProp ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlGetProp              (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Search and get the value of an <a href="libxml2-SAX.html#attribute">attribute</a> associated to a node This does the entity substitution. This function looks in DTD <a href="libxml2-SAX.html#attribute">attribute</a> declaration for #FIXED or default declaration values unless DTD use has been turned off. NOTE: this function acts independently of namespaces associated to the attribute. Use xmlGetNsProp() or xmlGetNoNsProp() for namespace aware processing.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> value or NULL if not found. It's up to the caller to free the memory with xmlFree().</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHasNsProp"/>xmlHasNsProp ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlHasNsProp            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace)<br/>
-</pre><p>Search for an <a href="libxml2-SAX.html#attribute">attribute</a> associated to a node This <a href="libxml2-SAX.html#attribute">attribute</a> has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD <a href="libxml2-SAX.html#attribute">attribute</a> declaration for #FIXED or default declaration values unless DTD use has been turned off. Note that a namespace of NULL indicates to use the default namespace.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>nameSpace</tt></i>:</span></td><td>the URI of the namespace</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> or the <a href="libxml2-SAX.html#attribute">attribute</a> declaration or NULL if neither was found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlHasProp"/>xmlHasProp ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  xmlHasProp              (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Search an <a href="libxml2-SAX.html#attribute">attribute</a> associated to a node This function also looks in DTD <a href="libxml2-SAX.html#attribute">attribute</a> declaration for #FIXED or default declaration values unless DTD use has been turned off.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> or the <a href="libxml2-SAX.html#attribute">attribute</a> declaration or NULL if neither was found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsBlankNode"/>xmlIsBlankNode ()</h3><pre class="programlisting">int    xmlIsBlankNode                  (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node)<br/>
-</pre><p>Checks whether this node is an empty or whitespace only (and possibly ignorable) text-node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 yes, 0 no</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsXHTML"/>xmlIsXHTML ()</h3><pre class="programlisting">int    xmlIsXHTML                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemID, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicID)<br/>
-</pre><p>Try to find if the document correspond to an XHTML DTD</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>systemID</tt></i>:</span></td><td>the system identifier</td></tr><tr><td><span class="term"><i><tt>publicID</tt></i>:</span></td><td>the public identifier</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true, 0 if not and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLastElementChild"/>xmlLastElementChild ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlLastElementChild     (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent)<br/>
-</pre><p>Finds the last child node of that element which is a Element node Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back <a href="libxml2-SAX.html#reference">reference</a> from entities content to entities references.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>the parent node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the last element child or NULL if not available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewCDataBlock"/>xmlNewCDataBlock ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewCDataBlock        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len)<br/>
-</pre><p>Creation of a new node containing a CDATA block.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the CDATA block content content</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length of the block</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewCharRef"/>xmlNewCharRef ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlNewCharRef           (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Creation of a new character <a href="libxml2-SAX.html#reference">reference</a> node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the char ref string, starting with # or "&amp;# ... ;"</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewChild"/>xmlNewChild ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlNewChild             (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br/>                                     <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Creation of a new child element, added at the end of @parent children list. @ns and @content parameters are optional (NULL). If @ns is NULL, the newly created element inherits the namespace of @parent. If @content is non NULL, a child list containing the TEXTs and ENTITY_REFs node will be created. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references. XML special chars must be escaped first by using xmlEncodeEntitiesReentrant(), or xmlNewTextChild() should be used.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>the parent node</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a namespace if any</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the child</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the XML content of the child if any.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewComment"/>xmlNewComment ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlNewComment           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Use of this function is DISCOURAGED in favor of xmlNewDocComment. Creation of a new node containing a comment.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#comment">comment</a> content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDoc"/>xmlNewDoc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>      xmlNewDoc               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * version)<br/>
-</pre><p>Creates a new XML document</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>version</tt></i>:</span></td><td><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string giving the version of XML "1.0"</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new document</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDocComment"/>xmlNewDocComment ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocComment        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Creation of a new node containing a <a href="libxml2-SAX.html#comment">comment</a> within a document.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#comment">comment</a> content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDocFragment"/>xmlNewDocFragment ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlNewDocFragment       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Creation of a new Fragment node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document owning the fragment</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDocNode"/>xmlNewDocNode ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlNewDocNode           (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Creation of a new node element within a document. @ns and @content are optional (NULL). NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't need entities support.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>namespace if any</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the node name</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the XML text content if any</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDocNodeEatName"/>xmlNewDocNodeEatName ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocNodeEatName    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Creation of a new node element within a document. @ns and @content are optional (NULL). NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't need entities support.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>namespace if any</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the node name</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the XML text content if any</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDocPI"/>xmlNewDocPI ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlNewDocPI             (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Creation of a processing instruction element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the target document</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the processing instruction name</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the PI content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDocProp"/>xmlNewDocProp ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>    xmlNewDocProp           (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Create a new property carried by a document. NOTE: @value is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewProp() if you don't need entities support.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value of the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDocRawNode"/>xmlNewDocRawNode ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocRawNode        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Creation of a new node element within a document. @ns and @content are optional (NULL).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>namespace if any</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the node name</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the text content if any</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDocText"/>xmlNewDocText ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlNewDocText           (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Creation of a new text node within a document.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the text content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDocTextLen"/>xmlNewDocTextLen ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocTextLen        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len)<br/>
-</pre><p>Creation of a new text node with an extra content length parameter. The text node pertain to a given document.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the text content</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the text len.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDtd"/>xmlNewDtd ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>      xmlNewDtd               (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>Creation of a new DTD for the external subset. To create an internal subset, use xmlCreateIntSubset().</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document pointer</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the DTD name</td></tr><tr><td><span class="term"><i><tt>ExternalID</tt></i>:</span></td><td>the external ID</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the system ID</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new DTD structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewGlobalNs"/>xmlNewGlobalNs ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>      xmlNewGlobalNs          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br/>
-</pre><p>Creation of a Namespace, the old way using PI and without scoping DEPRECATED !!!</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document carrying the namespace</td></tr><tr><td><span class="term"><i><tt>href</tt></i>:</span></td><td>the URI associated</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the prefix for the namespace</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL this functionality had been removed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewNode"/>xmlNewNode ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  xmlNewNode              (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Creation of a new node element. @ns is optional (NULL). Use of this function is DISCOURAGED in favor of xmlNewDocNode.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>namespace if any</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the node name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object. Uses xmlStrdup() to make copy of @name.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewNodeEatName"/>xmlNewNodeEatName ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlNewNodeEatName       (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Creation of a new node element. @ns is optional (NULL). Use of this function is DISCOURAGED in favor of xmlNewDocNodeEatName.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>namespace if any</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the node name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object, with pointer @name as new node's name. Use xmlNewNode() if a copy of @name string is is needed as new node's name.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewNs"/>xmlNewNs ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  xmlNewNs                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br/>
-</pre><p>Creation of a new Namespace. This function will refuse to create a namespace with a similar prefix than an existing one present on this node. Note that for a default namespace, @prefix should be NULL. We use href==NULL in the case of an element creation where the namespace was not defined.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the element carrying the namespace</td></tr><tr><td><span class="term"><i><tt>href</tt></i>:</span></td><td>the URI associated</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the prefix for the namespace</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new namespace pointer or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewNsProp"/>xmlNewNsProp ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlNewNsProp            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Create a new property tagged with a namespace and carried by a node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the holding node</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>the namespace</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value of the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewNsPropEatName"/>xmlNewNsPropEatName ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>        xmlNewNsPropEatName     (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Create a new property tagged with a namespace and carried by a node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the holding node</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>the namespace</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value of the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewPI"/>xmlNewPI ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewPI                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Creation of a processing instruction element. Use of this function is DISCOURAGED in favor of xmlNewDocPI.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the processing instruction name</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the PI content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewProp"/>xmlNewProp ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  xmlNewProp              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Create a new property carried by a node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the holding node</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value of the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewReference"/>xmlNewReference ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlNewReference         (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Creation of a new <a href="libxml2-SAX.html#reference">reference</a> node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#reference">reference</a> name, or the <a href="libxml2-SAX.html#reference">reference</a> string with &amp; and ;</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewText"/>xmlNewText ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  xmlNewText              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Creation of a new text node. Use of this function is DISCOURAGED in favor of xmlNewDocText.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the text content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewTextChild"/>xmlNewTextChild ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlNewTextChild         (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br/>                                     <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Creation of a new child element, added at the end of @parent children list. @ns and @content parameters are optional (NULL). If @ns is NULL, the newly created element inherits the namespace of @parent. If @content is non NULL, a child TEXT node will be created containing the string @content. NOTE: Use xmlNewChild() if @content will contain entities that need to be preserved. Use this function, xmlNewTextChild(), if you need to ensure that reserved XML chars that might appear in @content, such as the ampersand, greater-than or less-than signs, are automatically replaced by their XML escaped entity representations.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>parent</tt></i>:</span></td><td>the parent node</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a namespace if any</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the child</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the text content of the child if any.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewTextLen"/>xmlNewTextLen ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlNewTextLen           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len)<br/>
-</pre><p>Use of this function is DISCOURAGED in favor of xmlNewDocTextLen. Creation of a new text node with an extra parameter for the content's length</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the text content</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the text len.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new node object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNextElementSibling"/>xmlNextElementSibling ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlNextElementSibling   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Finds the first closest next sibling of the node which is an element node. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back <a href="libxml2-SAX.html#reference">reference</a> from entities content to entities references.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element sibling or NULL if not available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeAddContent"/>xmlNodeAddContent ()</h3><pre class="programlisting">void     xmlNodeAddContent               (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Append the extra substring to the node content. NOTE: In contrast to xmlNodeSetContent(), @content is supposed to be raw text, so unescaped XML special chars are allowed, entity references are not supported.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being modified</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>extra content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeAddContentLen"/>xmlNodeAddContentLen ()</h3><pre class="programlisting">void       xmlNodeAddContentLen            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len)<br/>
-</pre><p>Append the extra substring to the node content. NOTE: In contrast to xmlNodeSetContentLen(), @content is supposed to be raw text, so unescaped XML special chars are allowed, entity references are not supported.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being modified</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>extra content</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the size of @content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeBufGetContent"/>xmlNodeBufGetContent ()</h3><pre class="programlisting">int        xmlNodeBufGetContent            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br/>                                         const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br/>
-</pre><p>Read the value of a node @cur, this can be either the text carried directly by this node if it's a TEXT node or the aggregate string of the values carried by this node child's (TEXT and ENTITY_REF). Entity references are substituted. Fills up the buffer @buffer with this value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a buffer</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being read</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeDump"/>xmlNodeDump ()</h3><pre class="programlisting">int  xmlNodeDump                     (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        int level, <br/>                                        int format)<br/>
-</pre><p>Dump an XML node, recursive behaviour,children are printed too. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called. Since this is using <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> structures it is limited to 2GB and somehow deprecated, use xmlNodeDumpOutput() instead.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>level</tt></i>:</span></td><td>the imbrication level for indenting</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>is formatting allowed</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written to the buffer or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeDumpOutput"/>xmlNodeDumpOutput ()</h3><pre class="programlisting">void     xmlNodeDumpOutput               (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        int level, <br/>                                        int format, <br/>                                       const char * encoding)<br/>
-</pre><p>Dump an XML node, recursive behaviour, children are printed too. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>level</tt></i>:</span></td><td>the imbrication level for indenting</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>is formatting allowed</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>an optional encoding string</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeGetBase"/>xmlNodeGetBase ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlNodeGetBase          (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br/>
-</pre><p>Searches for the BASE URL. The code should work on both XML and HTML document even if base mechanisms are completely different. It returns the base as defined in RFC 2396 sections 5.1.1. Base URI within Document Content and 5.1.2. Base URI from the Encapsulating Entity However it does not return the document base (5.1.3), use doc-&gt;URL in this case</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document the node pertains to</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being checked</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the base URL, or NULL if not found It's up to the caller to free the memory with xmlFree().</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeGetContent"/>xmlNodeGetContent ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlNodeGetContent       (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br/>
-</pre><p>Read the value of a node, this can be either the text carried directly by this node if it's a TEXT node or the aggregate string of the values carried by this node child's (TEXT and ENTITY_REF). Entity references are substituted.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being read</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new #xmlChar * or NULL if no content is available. It's up to the caller to free the memory with xmlFree().</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeGetLang"/>xmlNodeGetLang ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlNodeGetLang          (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br/>
-</pre><p>Searches the language of a node, i.e. the values of the xml:lang <a href="libxml2-SAX.html#attribute">attribute</a> or the one carried by the nearest ancestor.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being checked</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the lang value, or NULL if not found It's up to the caller to free the memory with xmlFree().</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeGetSpacePreserve"/>xmlNodeGetSpacePreserve ()</h3><pre class="programlisting">int  xmlNodeGetSpacePreserve         (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br/>
-</pre><p>Searches the space preserving behaviour of a node, i.e. the values of the xml:space <a href="libxml2-SAX.html#attribute">attribute</a> or the one carried by the nearest ancestor.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being checked</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 if xml:space is not inherited, 0 if "default", 1 if "preserve"</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeIsText"/>xmlNodeIsText ()</h3><pre class="programlisting">int      xmlNodeIsText                   (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node)<br/>
-</pre><p>Is this node a Text node ?</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 yes, 0 no</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeListGetRawString"/>xmlNodeListGetRawString ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlNodeListGetRawString (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * list, <br/>                                     int inLine)<br/>
-</pre><p>Builds the string equivalent to the text contained in the Node list made of TEXTs and ENTITY_REFs, contrary to xmlNodeListGetString() this function doesn't do any character encoding handling.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>list</tt></i>:</span></td><td>a Node list</td></tr><tr><td><span class="term"><i><tt>inLine</tt></i>:</span></td><td>should we replace entity contents or show their external form</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the string copy, the caller must free it with xmlFree().</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeListGetString"/>xmlNodeListGetString ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlNodeListGetString    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * list, <br/>                                     int inLine)<br/>
-</pre><p>Build the string equivalent to the text contained in the Node list made of TEXTs and ENTITY_REFs</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>list</tt></i>:</span></td><td>a Node list</td></tr><tr><td><span class="term"><i><tt>inLine</tt></i>:</span></td><td>should we replace entity contents or show their external form</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the string copy, the caller must free it with xmlFree().</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeSetBase"/>xmlNodeSetBase ()</h3><pre class="programlisting">void   xmlNodeSetBase                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * uri)<br/>
-</pre><p>Set (or reset) the base URI of a node, i.e. the value of the xml:base attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being changed</td></tr><tr><td><span class="term"><i><tt>uri</tt></i>:</span></td><td>the new base URI</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeSetContent"/>xmlNodeSetContent ()</h3><pre class="programlisting">void     xmlNodeSetContent               (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Replace the content of a node. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant() resp. xmlEncodeSpecialChars().</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being modified</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the new value of the content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeSetContentLen"/>xmlNodeSetContentLen ()</h3><pre class="programlisting">void       xmlNodeSetContentLen            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len)<br/>
-</pre><p>Replace the content of a node. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant() resp. xmlEncodeSpecialChars().</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being modified</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the new value of the content</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the size of @content</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeSetLang"/>xmlNodeSetLang ()</h3><pre class="programlisting">void   xmlNodeSetLang                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * lang)<br/>
-</pre><p>Set the language of a node, i.e. the values of the xml:lang attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being changed</td></tr><tr><td><span class="term"><i><tt>lang</tt></i>:</span></td><td>the language description</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeSetName"/>xmlNodeSetName ()</h3><pre class="programlisting">void   xmlNodeSetName                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Set (or reset) the name of a node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being changed</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the new tag name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeSetSpacePreserve"/>xmlNodeSetSpacePreserve ()</h3><pre class="programlisting">void xmlNodeSetSpacePreserve         (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br/>                                        int val)<br/>
-</pre><p>Set (or reset) the space preserving behaviour of a node, i.e. the value of the xml:space attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node being changed</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the xml:space value ("0": default, 1: "preserve")</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPreviousElementSibling"/>xmlPreviousElementSibling ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlPreviousElementSibling       (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Finds the first closest previous sibling of the node which is an element node. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back <a href="libxml2-SAX.html#reference">reference</a> from entities content to entities references.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the previous element sibling or NULL if not available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReconciliateNs"/>xmlReconciliateNs ()</h3><pre class="programlisting">int      xmlReconciliateNs               (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree)<br/>
-</pre><p>This function checks that all the namespaces declared within the given tree are properly declared. This is needed for example after Copy or Cut and then paste operations. The subtree may still hold pointers to namespace declarations outside the subtree or invalid/masked. As much as possible the function try to reuse the existing namespaces found in the new environment. If not possible the new namespaces are redeclared on @tree at the top of the given subtree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>a node defining the subtree to reconciliate</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of namespace declarations created or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRemoveProp"/>xmlRemoveProp ()</h3><pre class="programlisting">int      xmlRemoveProp                   (<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur)<br/>
-</pre><p>Unlink and free one attribute, all the content is freed too Note this doesn't work for namespace definition attributes</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>an <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if success and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReplaceNode"/>xmlReplaceNode ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  xmlReplaceNode          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> old, <br/>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Unlink the old node from its current context, prune the new one at the same place. If @cur was already inserted in a document it is first unlinked from its existing context. See the note regarding namespaces in xmlAddChild.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>old</tt></i>:</span></td><td>the old node</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the @old node</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveFile"/>xmlSaveFile ()</h3><pre class="programlisting">int  xmlSaveFile                     (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur)<br/>
-</pre><p>Dump an XML document to a file. Will use compression if compiled in and enabled. If @filename is "-" the stdout file is used.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename (or URL)</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveFileEnc"/>xmlSaveFileEnc ()</h3><pre class="programlisting">int    xmlSaveFileEnc                  (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding)<br/>
-</pre><p>Dump an XML document, converting it to the given encoding</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename (or URL)</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the name of an encoding (or NULL)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveFileTo"/>xmlSaveFileTo ()</h3><pre class="programlisting">int      xmlSaveFileTo                   (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding)<br/>
-</pre><p>Dump an XML document to an I/O buffer. Warning ! This call xmlOutputBufferClose() on buf which is not available after this call.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>an output I/O buffer</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding if any assuming the I/O layer handles the transcoding</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveFormatFile"/>xmlSaveFormatFile ()</h3><pre class="programlisting">int      xmlSaveFormatFile               (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  int format)<br/>
-</pre><p>Dump an XML document to a file. Will use compression if compiled in and enabled. If @filename is "-" the stdout file is used. If @format is set then the document will be indented on output. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename (or URL)</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>should formatting spaces been added</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveFormatFileEnc"/>xmlSaveFormatFileEnc ()</h3><pre class="programlisting">int        xmlSaveFormatFileEnc            (const char * filename, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding, <br/>                                    int format)<br/>
-</pre><p>Dump an XML document to a file or an URL.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename or URL to output</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document being saved</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the name of the encoding to use or NULL.</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>should formatting spaces be added.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written or -1 in case of error. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveFormatFileTo"/>xmlSaveFormatFileTo ()</h3><pre class="programlisting">int  xmlSaveFormatFileTo             (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br/>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br/>                                  const char * encoding, <br/>                                    int format)<br/>
-</pre><p>Dump an XML document to an I/O buffer. Warning ! This call xmlOutputBufferClose() on buf which is not available after this call.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>an output I/O buffer</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding if any assuming the I/O layer handles the transcoding</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>should formatting spaces been added</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written or -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSearchNs"/>xmlSearchNs ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>    xmlSearchNs             (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace)<br/>
-</pre><p>Search a Ns registered under a given name space for a document. recurse on the parents until it finds the defined namespace or return NULL otherwise. @nameSpace can be NULL, this is a search for the default namespace. We don't allow to cross entities boundaries. If you don't declare the namespace within those you will be in troubles !!! A warning is generated to cover this case.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>nameSpace</tt></i>:</span></td><td>the namespace prefix</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the namespace pointer or NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSearchNsByHref"/>xmlSearchNsByHref ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>        xmlSearchNsByHref       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href)<br/>
-</pre><p>Search a Ns aliasing a given URI. Recurse on the parents until it finds the defined namespace or return NULL otherwise.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the current node</td></tr><tr><td><span class="term"><i><tt>href</tt></i>:</span></td><td>the namespace value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the namespace pointer or NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetBufferAllocationScheme"/>xmlSetBufferAllocationScheme ()</h3><pre class="programlisting">void       xmlSetBufferAllocationScheme    (<a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> scheme)<br/>
-</pre><p>Set the buffer allocation method. Types are <a href="libxml2-tree.html#XML_BUFFER_ALLOC_EXACT">XML_BUFFER_ALLOC_EXACT</a> - use exact sizes, keeps memory usage down <a href="libxml2-tree.html#XML_BUFFER_ALLOC_DOUBLEIT">XML_BUFFER_ALLOC_DOUBLEIT</a> - double buffer when extra needed, improves performance</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>scheme</tt></i>:</span></td><td>allocation method to use</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetCompressMode"/>xmlSetCompressMode ()</h3><pre class="programlisting">void   xmlSetCompressMode              (int mode)<br/>
-</pre><p>set the default compression mode used, ZLIB based Correct values: 0 (uncompressed) to 9 (max compression)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>mode</tt></i>:</span></td><td>the compression ratio</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetDocCompressMode"/>xmlSetDocCompressMode ()</h3><pre class="programlisting">void     xmlSetDocCompressMode           (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  int mode)<br/>
-</pre><p>set the compression ratio for a document, ZLIB based Correct values: 0 (uncompressed) to 9 (max compression)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>mode</tt></i>:</span></td><td>the compression ratio</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetListDoc"/>xmlSetListDoc ()</h3><pre class="programlisting">void     xmlSetListDoc                   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> list, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>update all nodes in the list to point to the right document</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>list</tt></i>:</span></td><td>the first element</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetNs"/>xmlSetNs ()</h3><pre class="programlisting">void       xmlSetNs                        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns)<br/>
-</pre><p>Associate a namespace to a node, a posteriori.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node in the document</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a namespace pointer</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetNsProp"/>xmlSetNsProp ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlSetNsProp            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Set (or reset) an <a href="libxml2-SAX.html#attribute">attribute</a> carried by a node. The ns structure must be in scope, this is not checked</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>the namespace definition</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> pointer.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetProp"/>xmlSetProp ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  xmlSetProp              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Set (or reset) an <a href="libxml2-SAX.html#attribute">attribute</a> carried by a node. If @name has a prefix, then the corresponding namespace-binding will be used, if in scope; it is an error it there's no such ns-binding for the prefix in scope.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name (a QName)</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> pointer.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetTreeDoc"/>xmlSetTreeDoc ()</h3><pre class="programlisting">void     xmlSetTreeDoc                   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br/>                                       <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>update all nodes under the tree to point to the right document</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>the top element</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSplitQName2"/>xmlSplitQName2 ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlSplitQName2          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix)<br/>
-</pre><p>parse an XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the full QName</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> **</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if the name doesn't have a prefix. Otherwise, returns the local part, and prefix is updated to get the Prefix. Both the return value and the prefix must be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSplitQName3"/>xmlSplitQName3 ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlSplitQName3          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int * len)<br/>
-</pre><p>parse an XML qualified name string,i</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the full QName</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>an int *</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if it is not a Qualified Name, otherwise, update len with the length in byte of the prefix and return a pointer to the start of the name without the prefix</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStringGetNodeList"/>xmlStringGetNodeList ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlStringGetNodeList    (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Parse the value string and build the node list associated. Should produce a flat tree with only TEXTs and ENTITY_REFs.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value of the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the first child</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStringLenGetNodeList"/>xmlStringLenGetNodeList ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlStringLenGetNodeList (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int len)<br/>
-</pre><p>Parse the value string and build the node list associated. Should produce a flat tree with only TEXTs and ENTITY_REFs.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value of the text</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length of the string value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the first child</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextConcat"/>xmlTextConcat ()</h3><pre class="programlisting">int      xmlTextConcat                   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len)<br/>
-</pre><p>Concat the given string at the end of the existing node content</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the content</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>@content length</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextMerge"/>xmlTextMerge ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlTextMerge            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> first, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> second)<br/>
-</pre><p>Merge two text nodes into one</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>first</tt></i>:</span></td><td>the first text node</td></tr><tr><td><span class="term"><i><tt>second</tt></i>:</span></td><td>the second text node being merged</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the first text node augmented</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUnlinkNode"/>xmlUnlinkNode ()</h3><pre class="programlisting">void     xmlUnlinkNode                   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Unlink a node from it's current context, the node is not freed If one need to free the node, use xmlFreeNode() routine after the unlink to discard it. Note that namespace nodes can't be unlinked as they do not have pointer to their parent.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUnsetNsProp"/>xmlUnsetNsProp ()</h3><pre class="programlisting">int    xmlUnsetNsProp                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Remove an <a href="libxml2-SAX.html#attribute">attribute</a> carried by a node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>the namespace definition</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if successful, -1 if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUnsetProp"/>xmlUnsetProp ()</h3><pre class="programlisting">int        xmlUnsetProp                    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Remove an <a href="libxml2-SAX.html#attribute">attribute</a> carried by a node. This handles only attributes in no namespace.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if successful, -1 if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateNCName"/>xmlValidateNCName ()</h3><pre class="programlisting">int      xmlValidateNCName               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int space)<br/>
-</pre><p>Check that a value conforms to the lexical space of NCName</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value to check</td></tr><tr><td><span class="term"><i><tt>space</tt></i>:</span></td><td>allow spaces in front and end of the string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateNMToken"/>xmlValidateNMToken ()</h3><pre class="programlisting">int    xmlValidateNMToken              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int space)<br/>
-</pre><p>Check that a value conforms to the lexical space of NMToken</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value to check</td></tr><tr><td><span class="term"><i><tt>space</tt></i>:</span></td><td>allow spaces in front and end of the string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateName"/>xmlValidateName ()</h3><pre class="programlisting">int  xmlValidateName                 (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int space)<br/>
-</pre><p>Check that a value conforms to the lexical space of Name</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value to check</td></tr><tr><td><span class="term"><i><tt>space</tt></i>:</span></td><td>allow spaces in front and end of the string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateQName"/>xmlValidateQName ()</h3><pre class="programlisting">int        xmlValidateQName                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       int space)<br/>
-</pre><p>Check that a value conforms to the lexical space of QName</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value to check</td></tr><tr><td><span class="term"><i><tt>space</tt></i>:</span></td><td>allow spaces in front and end of the string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSAXLocatorPtr">Typedef </a>xmlSAXLocatorPtr</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlSAXLocator">xmlSAXLocator</a> * xmlSAXLocatorPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDOMWrapAcquireNsFunction"></a>Function type xmlDOMWrapAcquireNsFunction</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  xmlDOMWrapAcquireNsFunction     (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nsName, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nsPrefix)<br>
+</pre>
+<p>A function called to acquire namespaces (xmlNs) from the wrapper.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a DOM wrapper context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the context node (element or attribute)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nsName</tt></i>:</span></td>
+<td>the requested namespace name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nsPrefix</tt></i>:</span></td>
+<td>the requested namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> or NULL in case of an error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddChild"></a>xmlAddChild ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlAddChild             (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Add a new node to @parent, at the end of the child (or property) list merging adjacent TEXT nodes (in which case @cur is freed) If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an <a href="libxml2-SAX.html#attribute">attribute</a> with equal name, it is first destroyed. All tree manipulation functions can safely move nodes within a document. But when moving nodes from one document to another, references to namespaces in element or <a href="libxml2-SAX.html#attribute">attribute</a> nodes are NOT fixed. In this case, you MUST call <a href="libxml2-tree.html#xmlReconciliateNs">xmlReconciliateNs</a> after the move operation to avoid memory errors.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>the parent node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the child node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the child or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddChildList"></a>xmlAddChildList ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlAddChildList         (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Add a list of node at the end of the child list of the parent merging adjacent TEXT nodes (@cur may be freed) See the note regarding namespaces in xmlAddChild.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>the parent node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the first node in the list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the last child or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddNextSibling"></a>xmlAddNextSibling ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlAddNextSibling       (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br>
+</pre>
+<p>Add a new node @elem as the next sibling of @cur If the new node was already inserted in a document it is first unlinked from its existing context. As a result of text merging @elem may be freed. If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an <a href="libxml2-SAX.html#attribute">attribute</a> with equal name, it is first destroyed. See the note regarding namespaces in xmlAddChild.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the child node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the new node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new node or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddPrevSibling"></a>xmlAddPrevSibling ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlAddPrevSibling       (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br>
+</pre>
+<p>Add a new node @elem as the previous sibling of @cur merging adjacent TEXT nodes (@elem may be freed) If the new node was already inserted in a document it is first unlinked from its existing context. If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an <a href="libxml2-SAX.html#attribute">attribute</a> with equal name, it is first destroyed. See the note regarding namespaces in xmlAddChild.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the child node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the new node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new node or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddSibling"></a>xmlAddSibling ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlAddSibling           (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br>
+</pre>
+<p>Add a new element @elem to the list of siblings of @cur merging adjacent TEXT nodes (@elem may be freed) If the new element was already inserted in a document it is first unlinked from its existing context. See the note regarding namespaces in xmlAddChild.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the child node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the new node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new element or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAttrSerializeTxtContent"></a>xmlAttrSerializeTxtContent ()</h3>
+<pre class="programlisting">void       xmlAttrSerializeTxtContent      (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string)<br>
+</pre>
+<p>Serialize text <a href="libxml2-SAX.html#attribute">attribute</a> values to an xml simple buffer</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>string</tt></i>:</span></td>
+<td>the text content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufContent"></a>xmlBufContent ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlBufContent           (const <a href="libxml2-tree.html#xmlBuf">xmlBuf</a> * buf)<br>
+</pre>
+<p>Function to extract the content of a buffer</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the internal content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufEnd"></a>xmlBufEnd ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlBufEnd               (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf)<br>
+</pre>
+<p>Function to extract the end of the content of a buffer</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the end of the internal content or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufGetNodeContent"></a>xmlBufGetNodeContent ()</h3>
+<pre class="programlisting">int        xmlBufGetNodeContent            (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br>                                   const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br>
+</pre>
+<p>Read the value of a node @cur, this can be either the text carried directly by this node if it's a TEXT node or the aggregate string of the values carried by this node child's (TEXT and ENTITY_REF). Entity references are substituted. Fills up the buffer @buf with this value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>a buffer <a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being read</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufNodeDump"></a>xmlBufNodeDump ()</h3>
+<pre class="programlisting">size_t     xmlBufNodeDump                  (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br>                                   <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         int level, <br>                                         int format)<br>
+</pre>
+<p>Dump an XML node, recursive behaviour,children are printed too. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>level</tt></i>:</span></td>
+<td>the imbrication level for indenting</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>is formatting allowed</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written to the buffer, in case of error 0 is returned or @buf stores the error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufShrink"></a>xmlBufShrink ()</h3>
+<pre class="programlisting">size_t     xmlBufShrink                    (<a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf, <br>                                   size_t len)<br>
+</pre>
+<p>Remove the beginning of an XML buffer. NOTE that this routine behaviour differs from xmlBufferShrink() as it will return 0 on error instead of -1 due to size_t being used as the return type.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer to dump</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> to remove</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte removed or 0 in case of failure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufUse"></a>xmlBufUse ()</h3>
+<pre class="programlisting">size_t     xmlBufUse                       (const <a href="libxml2-tree.html#xmlBufPtr">xmlBufPtr</a> buf)<br>
+</pre>
+<p>Function to get the length of a buffer</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the length of data in the internal content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferAdd"></a>xmlBufferAdd ()</h3>
+<pre class="programlisting">int        xmlBufferAdd                    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  int len)<br>
+</pre>
+<p>Add a string range to an XML buffer. if len == -1, the length of str is recomputed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer to dump</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the #xmlChar string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of #xmlChar to add</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 successful, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferAddHead"></a>xmlBufferAddHead ()</h3>
+<pre class="programlisting">int        xmlBufferAddHead                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  int len)<br>
+</pre>
+<p>Add a string range to the beginning of an XML buffer. if len == -1, the length of @str is recomputed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the #xmlChar string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of #xmlChar to add</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 successful, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferCCat"></a>xmlBufferCCat ()</h3>
+<pre class="programlisting">int        xmlBufferCCat                   (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const char * str)<br>
+</pre>
+<p>Append a zero terminated C string to an XML buffer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer to dump</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the C char string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 successful, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferCat"></a>xmlBufferCat ()</h3>
+<pre class="programlisting">int        xmlBufferCat                    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>Append a zero terminated string to an XML buffer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer to add to</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the #xmlChar string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 successful, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferContent"></a>xmlBufferContent ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlBufferContent        (const <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> * buf)<br>
+</pre>
+<p>Function to extract the content of a buffer</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the internal content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferCreate"></a>xmlBufferCreate ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>  xmlBufferCreate         (void)<br>
+</pre>
+<p>routine to create an XML buffer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new structure.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferCreateSize"></a>xmlBufferCreateSize ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>  xmlBufferCreateSize     (size_t size)<br>
+</pre>
+<p>routine to create an XML buffer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>initial size of buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new structure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferCreateStatic"></a>xmlBufferCreateStatic ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>  xmlBufferCreateStatic   (void * mem, <br>                                        size_t size)<br>
+</pre>
+<p>routine to create an XML buffer from an immutable memory area. The area won't be modified nor copied, and is expected to be present until the end of the buffer lifetime.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>mem</tt></i>:</span></td>
+<td>the memory area</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size in byte</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new structure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferDetach"></a>xmlBufferDetach ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlBufferDetach         (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf)<br>
+</pre>
+<p>Remove the string contained in a buffer and gie it back to the caller. The buffer is reset to an empty content. This doesn't work with immutable buffers as they can't be reset.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the previous string contained by the buffer.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferDump"></a>xmlBufferDump ()</h3>
+<pre class="programlisting">int        xmlBufferDump                   (FILE * file, <br>                                       <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf)<br>
+</pre>
+<p>Dumps an XML buffer to a FILE *.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>file</tt></i>:</span></td>
+<td>the file output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer to dump</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of #xmlChar written</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferEmpty"></a>xmlBufferEmpty ()</h3>
+<pre class="programlisting">void       xmlBufferEmpty                  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf)<br>
+</pre>
+<p>empty a buffer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferFree"></a>xmlBufferFree ()</h3>
+<pre class="programlisting">void       xmlBufferFree                   (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf)<br>
+</pre>
+<p>Frees an XML buffer. It frees both the content and the structure which encapsulate it.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer to free</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferGrow"></a>xmlBufferGrow ()</h3>
+<pre class="programlisting">int        xmlBufferGrow                   (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     unsigned int len)<br>
+</pre>
+<p>Grow the available space of an XML buffer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the minimum free size to allocate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new available space or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferLength"></a>xmlBufferLength ()</h3>
+<pre class="programlisting">int        xmlBufferLength                 (const <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> * buf)<br>
+</pre>
+<p>Function to get the length of a buffer</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the length of data in the internal content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferResize"></a>xmlBufferResize ()</h3>
+<pre class="programlisting">int        xmlBufferResize                 (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     unsigned int size)<br>
+</pre>
+<p>Resize a buffer to accommodate minimum size of @size.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer to resize</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the desired size</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of problems, 1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferSetAllocationScheme"></a>xmlBufferSetAllocationScheme ()</h3>
+<pre class="programlisting">void       xmlBufferSetAllocationScheme    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> scheme)<br>
+</pre>
+<p>Sets the allocation scheme for this buffer</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer to tune</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>scheme</tt></i>:</span></td>
+<td>allocation scheme to use</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferShrink"></a>xmlBufferShrink ()</h3>
+<pre class="programlisting">int        xmlBufferShrink                 (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     unsigned int len)<br>
+</pre>
+<p>Remove the beginning of an XML buffer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the buffer to dump</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> to remove</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of #xmlChar removed, or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferWriteCHAR"></a>xmlBufferWriteCHAR ()</h3>
+<pre class="programlisting">void       xmlBufferWriteCHAR              (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string)<br>
+</pre>
+<p>routine which manages and grows an output buffer. This one adds xmlChars at the end of the buffer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>string</tt></i>:</span></td>
+<td>the string to add</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferWriteChar"></a>xmlBufferWriteChar ()</h3>
+<pre class="programlisting">void       xmlBufferWriteChar              (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const char * string)<br>
+</pre>
+<p>routine which manage and grows an output buffer. This one add C chars at the end of the array.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>string</tt></i>:</span></td>
+<td>the string to add</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBufferWriteQuotedString"></a>xmlBufferWriteQuotedString ()</h3>
+<pre class="programlisting">void       xmlBufferWriteQuotedString      (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * string)<br>
+</pre>
+<p>routine which manage and grows an output buffer. This one writes a quoted or double quoted #xmlChar string, checking first if it holds quote or double-quotes internally</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>string</tt></i>:</span></td>
+<td>the string to add</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBuildQName"></a>xmlBuildQName ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlBuildQName           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ncname, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * memory, <br>                                     int len)<br>
+</pre>
+<p>Builds the QName @prefix:@ncname in @memory if there is enough space and prefix is not NULL nor empty, otherwise allocate a new string. If prefix is NULL or empty it returns ncname.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ncname</tt></i>:</span></td>
+<td>the Name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>memory</tt></i>:</span></td>
+<td>preallocated memory</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>preallocated memory length</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new string which must be freed by the caller if different from @memory and @ncname or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlChildElementCount"></a>xmlChildElementCount ()</h3>
+<pre class="programlisting">unsigned long      xmlChildElementCount    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent)<br>
+</pre>
+<p>Finds the current number of child nodes of that element which are element nodes. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back <a href="libxml2-SAX.html#reference">reference</a> from entities content to entities references.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>the parent node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the count of element child or 0 if not available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyDoc"></a>xmlCopyDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlCopyDoc              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   int recursive)<br>
+</pre>
+<p>Do a copy of the document info. If recursive, the content tree will be copied too as well as DTD, namespaces and entities.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>recursive</tt></i>:</span></td>
+<td>if not zero do a recursive copy.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new #xmlDocPtr, or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyDtd"></a>xmlCopyDtd ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>        xmlCopyDtd              (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd)<br>
+</pre>
+<p>Do a copy of the dtd.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>the dtd</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new #xmlDtdPtr, or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyNamespace"></a>xmlCopyNamespace ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  xmlCopyNamespace        (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur)<br>
+</pre>
+<p>Do a copy of the namespace.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the namespace</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new #xmlNsPtr, or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyNamespaceList"></a>xmlCopyNamespaceList ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  xmlCopyNamespaceList    (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur)<br>
+</pre>
+<p>Do a copy of an namespace list.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the first namespace</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new #xmlNsPtr, or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyNode"></a>xmlCopyNode ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlCopyNode             (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int extended)<br>
+</pre>
+<p>Do a copy of the node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>extended</tt></i>:</span></td>
+<td>if 1 do a recursive copy (properties, namespaces and children when applicable) if 2 copy properties and namespaces (when applicable)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new #xmlNodePtr, or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyNodeList"></a>xmlCopyNodeList ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlCopyNodeList         (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Do a recursive copy of the node list. Use xmlDocCopyNodeList() if possible to ensure string interning.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the first node in the list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new #xmlNodePtr, or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyProp"></a>xmlCopyProp ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlCopyProp             (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> target, <br>                                      <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur)<br>
+</pre>
+<p>Do a copy of the attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>target</tt></i>:</span></td>
+<td>the element where the <a href="libxml2-SAX.html#attribute">attribute</a> will be grafted</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new #xmlAttrPtr, or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyPropList"></a>xmlCopyPropList ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlCopyPropList         (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> target, <br>                                      <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur)<br>
+</pre>
+<p>Do a copy of an <a href="libxml2-SAX.html#attribute">attribute</a> list.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>target</tt></i>:</span></td>
+<td>the element where the attributes will be grafted</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the first <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new #xmlAttrPtr, or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCreateIntSubset"></a>xmlCreateIntSubset ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>        xmlCreateIntSubset      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>Create the internal subset of a document</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the DTD name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the external (PUBLIC) ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the system ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new DTD structure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDOMWrapAdoptNode"></a>xmlDOMWrapAdoptNode ()</h3>
+<pre class="programlisting">int        xmlDOMWrapAdoptNode             (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> sourceDoc, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> destDoc, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> destParent, <br>                                  int options)<br>
+</pre>
+<p>References of out-of scope ns-decls are remapped to point to @destDoc: 1) If @destParent is given, then nsDef entries on element-nodes are used 2) If *no* @destParent is given, then @destDoc-&gt;oldNs entries are used This is the case when you have an unlinked node and just want to move it to the context of If @destParent is given, it ensures that the tree is namespace wellformed by creating additional ns-decls where needed. Note that, since prefixes of already existent ns-decls can be shadowed by this process, it could break QNames in <a href="libxml2-SAX.html#attribute">attribute</a> values or element content. NOTE: This function was not intensively tested.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the optional context for custom processing</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sourceDoc</tt></i>:</span></td>
+<td>the optional sourceDoc</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node to start with</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>destDoc</tt></i>:</span></td>
+<td>the destination doc</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>destParent</tt></i>:</span></td>
+<td>the optional new parent of @node in @destDoc</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>option flags</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the operation succeeded, 1 if a node of unsupported type was given, 2 if a node of not yet supported type was given and -1 on API/internal errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDOMWrapCloneNode"></a>xmlDOMWrapCloneNode ()</h3>
+<pre class="programlisting">int        xmlDOMWrapCloneNode             (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> sourceDoc, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> * resNode, <br>                                   <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> destDoc, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> destParent, <br>                                  int deep, <br>                                  int options)<br>
+</pre>
+<p>References of out-of scope ns-decls are remapped to point to @destDoc: 1) If @destParent is given, then nsDef entries on element-nodes are used 2) If *no* @destParent is given, then @destDoc-&gt;oldNs entries are used. This is the case when you don't know already where the cloned branch will be added to. If @destParent is given, it ensures that the tree is namespace wellformed by creating additional ns-decls where needed. Note that, since prefixes of already existent ns-decls can be shadowed by this process, it could break QNames in <a href="libxml2-SAX.html#attribute">attribute</a> values or element content. TODO: 1) What to do with XInclude? Currently this returns an error for XInclude.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the optional context for custom processing</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sourceDoc</tt></i>:</span></td>
+<td>the optional sourceDoc</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node to start with</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>resNode</tt></i>:</span></td>
+<td>the clone of the given @node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>destDoc</tt></i>:</span></td>
+<td>the destination doc</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>destParent</tt></i>:</span></td>
+<td>the optional new parent of @node in @destDoc</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>deep</tt></i>:</span></td>
+<td>descend into child if set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>option flags</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the operation succeeded, 1 if a node of unsupported (or not yet supported) type was given, -1 on API/internal errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDOMWrapFreeCtxt"></a>xmlDOMWrapFreeCtxt ()</h3>
+<pre class="programlisting">void       xmlDOMWrapFreeCtxt              (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Frees the DOM-wrapper context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the DOM-wrapper context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDOMWrapNewCtxt"></a>xmlDOMWrapNewCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a>        xmlDOMWrapNewCtxt       (void)<br>
+</pre>
+<p>Allocates and initializes a new DOM-wrapper context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> or NULL in case of an internal error.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDOMWrapReconcileNamespaces"></a>xmlDOMWrapReconcileNamespaces ()</h3>
+<pre class="programlisting">int        xmlDOMWrapReconcileNamespaces   (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        int options)<br>
+</pre>
+<p>Ensures that ns-references point to ns-decls hold on element-nodes. Ensures that the tree is namespace wellformed by creating additional ns-decls where needed. Note that, since prefixes of already existent ns-decls can be shadowed by this process, it could break QNames in <a href="libxml2-SAX.html#attribute">attribute</a> values or element content. NOTE: This function was not intensively tested.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>DOM wrapper context, unused at the moment</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the element-node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>option flags</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if succeeded, -1 otherwise and on API/internal errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDOMWrapRemoveNode"></a>xmlDOMWrapRemoveNode ()</h3>
+<pre class="programlisting">int        xmlDOMWrapRemoveNode            (<a href="libxml2-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int options)<br>
+</pre>
+<p>Unlinks the given node from its owner. This will substitute ns-references to node-&gt;nsDef for ns-references to doc-&gt;oldNs, thus ensuring the removed branch to be autark wrt ns-references. NOTE: This function was not intensively tested.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a DOM wrapper context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the doc</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node to be removed.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>set of options, unused at the moment</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 on success, 1 if the node is not supported, -1 on API and internal errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocCopyNode"></a>xmlDocCopyNode ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlDocCopyNode          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   int extended)<br>
+</pre>
+<p>Do a copy of the node to a given document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>extended</tt></i>:</span></td>
+<td>if 1 do a recursive copy (properties, namespaces and children when applicable) if 2 copy properties and namespaces (when applicable)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new #xmlNodePtr, or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocCopyNodeList"></a>xmlDocCopyNodeList ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlDocCopyNodeList      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Do a recursive copy of the node list.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the target document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the first node in the list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new #xmlNodePtr, or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocDump"></a>xmlDocDump ()</h3>
+<pre class="programlisting">int        xmlDocDump                      (FILE * f, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur)<br>
+</pre>
+<p>Dump an XML document to an open FILE.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the FILE*</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocDumpFormatMemory"></a>xmlDocDumpFormatMemory ()</h3>
+<pre class="programlisting">void       xmlDocDumpFormatMemory          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br>                                       int * size, <br>                                        int format)<br>
+</pre>
+<p>Dump an XML document in memory and return the #xmlChar * and it's size. It's up to the caller to free the memory with xmlFree(). Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mem</tt></i>:</span></td>
+<td>OUT: the memory pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>OUT: the memory length</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>should formatting spaces been added</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocDumpFormatMemoryEnc"></a>xmlDocDumpFormatMemoryEnc ()</h3>
+<pre class="programlisting">void       xmlDocDumpFormatMemoryEnc       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> out_doc, <br>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr, <br>                                       int * doc_txt_len, <br>                                         const char * txt_encoding, <br>                                         int format)<br>
+</pre>
+<p>Dump the current DOM tree into memory using the character encoding specified by the caller. Note it is up to the caller of this function to free the allocated memory with xmlFree(). Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out_doc</tt></i>:</span></td>
+<td>Document to generate XML text from</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc_txt_ptr</tt></i>:</span></td>
+<td>Memory pointer for allocated XML text</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc_txt_len</tt></i>:</span></td>
+<td>Length of the generated XML text</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>txt_encoding</tt></i>:</span></td>
+<td>Character encoding to use when generating XML text</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>should formatting spaces been added</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocDumpMemory"></a>xmlDocDumpMemory ()</h3>
+<pre class="programlisting">void       xmlDocDumpMemory                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** mem, <br>                                       int * size)<br>
+</pre>
+<p>Dump an XML document in memory and return the #xmlChar * and it's size in bytes. It's up to the caller to free the memory with xmlFree(). The resulting byte array is zero terminated, though the last 0 is not included in the returned size.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mem</tt></i>:</span></td>
+<td>OUT: the memory pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>OUT: the memory length</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocDumpMemoryEnc"></a>xmlDocDumpMemoryEnc ()</h3>
+<pre class="programlisting">void       xmlDocDumpMemoryEnc             (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> out_doc, <br>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** doc_txt_ptr, <br>                                       int * doc_txt_len, <br>                                         const char * txt_encoding)<br>
+</pre>
+<p>Dump the current DOM tree into memory using the character encoding specified by the caller. Note it is up to the caller of this function to free the allocated memory with xmlFree().</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out_doc</tt></i>:</span></td>
+<td>Document to generate XML text from</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc_txt_ptr</tt></i>:</span></td>
+<td>Memory pointer for allocated XML text</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc_txt_len</tt></i>:</span></td>
+<td>Length of the generated XML text</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>txt_encoding</tt></i>:</span></td>
+<td>Character encoding to use when generating XML text</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocFormatDump"></a>xmlDocFormatDump ()</h3>
+<pre class="programlisting">int        xmlDocFormatDump                (FILE * f, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   int format)<br>
+</pre>
+<p>Dump an XML document to an open FILE.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the FILE*</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>should formatting spaces been added</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written or -1 in case of failure. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocGetRootElement"></a>xmlDocGetRootElement ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlDocGetRootElement    (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc)<br>
+</pre>
+<p>Get the root element of the document (doc-&gt;children is a list containing possibly comments, PIs, etc ...).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the #xmlNodePtr for the root or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDocSetRootElement"></a>xmlDocSetRootElement ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlDocSetRootElement    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> root)<br>
+</pre>
+<p>Set the root element of the document (doc-&gt;children is a list containing possibly comments, PIs, etc ...).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>root</tt></i>:</span></td>
+<td>the new document root element, if root is NULL no action is taken, to remove a node from a document use xmlUnlinkNode(root) instead.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the old root element if any was found, NULL if root was NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlElemDump"></a>xmlElemDump ()</h3>
+<pre class="programlisting">void       xmlElemDump                     (FILE * f, <br>                                  <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Dump an XML/HTML node, recursive behaviour, children are printed too.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFirstElementChild"></a>xmlFirstElementChild ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlFirstElementChild    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent)<br>
+</pre>
+<p>Finds the first child node of that element which is a Element node Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back <a href="libxml2-SAX.html#reference">reference</a> from entities content to entities references.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>the parent node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the first element child or NULL if not available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeDoc"></a>xmlFreeDoc ()</h3>
+<pre class="programlisting">void       xmlFreeDoc                      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur)<br>
+</pre>
+<p>Free up all the structures used by a document, tree included.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>pointer to the document</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeDtd"></a>xmlFreeDtd ()</h3>
+<pre class="programlisting">void       xmlFreeDtd                      (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> cur)<br>
+</pre>
+<p>Free a DTD structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the DTD structure to free up</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeNode"></a>xmlFreeNode ()</h3>
+<pre class="programlisting">void       xmlFreeNode                     (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Free a node, this is a recursive behaviour, all the children are freed too. This doesn't unlink the child from the list, use xmlUnlinkNode() first.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeNodeList"></a>xmlFreeNodeList ()</h3>
+<pre class="programlisting">void       xmlFreeNodeList                 (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Free a node and all its siblings, this is a recursive behaviour, all the children are freed too.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the first node in the list</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeNs"></a>xmlFreeNs ()</h3>
+<pre class="programlisting">void       xmlFreeNs                       (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur)<br>
+</pre>
+<p>Free up the structures associated to a namespace</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the namespace pointer</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeNsList"></a>xmlFreeNsList ()</h3>
+<pre class="programlisting">void       xmlFreeNsList                   (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> cur)<br>
+</pre>
+<p>Free up all the structures associated to the chained namespaces.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the first namespace pointer</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeProp"></a>xmlFreeProp ()</h3>
+<pre class="programlisting">void       xmlFreeProp                     (<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur)<br>
+</pre>
+<p>Free one attribute, all the content is freed too</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>an <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreePropList"></a>xmlFreePropList ()</h3>
+<pre class="programlisting">void       xmlFreePropList                 (<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur)<br>
+</pre>
+<p>Free a property and all its siblings, all the children are freed too.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the first property in the list</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetBufferAllocationScheme"></a>xmlGetBufferAllocationScheme ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a>        xmlGetBufferAllocationScheme    (void)<br>
+</pre>
+<p>Types are <a href="libxml2-tree.html#XML_BUFFER_ALLOC_EXACT">XML_BUFFER_ALLOC_EXACT</a> - use exact sizes, keeps memory usage down <a href="libxml2-tree.html#XML_BUFFER_ALLOC_DOUBLEIT">XML_BUFFER_ALLOC_DOUBLEIT</a> - double buffer when extra needed, improves performance <a href="libxml2-tree.html#XML_BUFFER_ALLOC_HYBRID">XML_BUFFER_ALLOC_HYBRID</a> - use exact sizes on small strings to keep memory usage tight in normal usage, and doubleit on large strings to avoid pathological performance.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the current allocation scheme</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetCompressMode"></a>xmlGetCompressMode ()</h3>
+<pre class="programlisting">int        xmlGetCompressMode              (void)<br>
+</pre>
+<p>get the default compression mode used, ZLIB based.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 (uncompressed) to 9 (max compression)</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetDocCompressMode"></a>xmlGetDocCompressMode ()</h3>
+<pre class="programlisting">int        xmlGetDocCompressMode           (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc)<br>
+</pre>
+<p>get the compression ratio for a document, ZLIB based</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 (uncompressed) to 9 (max compression)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetIntSubset"></a>xmlGetIntSubset ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>        xmlGetIntSubset         (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc)<br>
+</pre>
+<p>Get the internal subset of a document</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the DTD structure or NULL if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetLastChild"></a>xmlGetLastChild ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlGetLastChild         (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * parent)<br>
+</pre>
+<p>Search the last child of a node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>the parent node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the last child or NULL if none.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetLineNo"></a>xmlGetLineNo ()</h3>
+<pre class="programlisting">long       xmlGetLineNo                    (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node)<br>
+</pre>
+<p>Get line number of @node. Try to override the limitation of lines being store in 16 bits ints if <a href="libxml2-parser.html#XML_PARSE_BIG_LINES">XML_PARSE_BIG_LINES</a> parser option was used</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>valid node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the line number if successful, -1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetNoNsProp"></a>xmlGetNoNsProp ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlGetNoNsProp          (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Search and get the value of an <a href="libxml2-SAX.html#attribute">attribute</a> associated to a node This does the entity substitution. This function looks in DTD <a href="libxml2-SAX.html#attribute">attribute</a> declaration for #FIXED or default declaration values unless DTD use has been turned off. This function is similar to <a href="libxml2-tree.html#xmlGetProp">xmlGetProp</a> except it will accept only an <a href="libxml2-SAX.html#attribute">attribute</a> in no namespace.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> value or NULL if not found. It's up to the caller to free the memory with xmlFree().</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetNodePath"></a>xmlGetNodePath ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlGetNodePath          (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node)<br>
+</pre>
+<p>Build a structure based Path for the given node</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new path or NULL in case of error. The caller must free the returned string</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetNsList"></a>xmlGetNsList ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> *        xmlGetNsList            (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node)<br>
+</pre>
+<p>Search all the namespace applying to a given element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an NULL terminated array of all the #xmlNsPtr found that need to be freed by the caller or NULL if no namespace if defined</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetNsProp"></a>xmlGetNsProp ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlGetNsProp            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace)<br>
+</pre>
+<p>Search and get the value of an <a href="libxml2-SAX.html#attribute">attribute</a> associated to a node This <a href="libxml2-SAX.html#attribute">attribute</a> has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD <a href="libxml2-SAX.html#attribute">attribute</a> declaration for #FIXED or default declaration values unless DTD use has been turned off.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nameSpace</tt></i>:</span></td>
+<td>the URI of the namespace</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> value or NULL if not found. It's up to the caller to free the memory with xmlFree().</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetProp"></a>xmlGetProp ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlGetProp              (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Search and get the value of an <a href="libxml2-SAX.html#attribute">attribute</a> associated to a node This does the entity substitution. This function looks in DTD <a href="libxml2-SAX.html#attribute">attribute</a> declaration for #FIXED or default declaration values unless DTD use has been turned off. NOTE: this function acts independently of namespaces associated to the attribute. Use xmlGetNsProp() or xmlGetNoNsProp() for namespace aware processing.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> value or NULL if not found. It's up to the caller to free the memory with xmlFree().</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHasNsProp"></a>xmlHasNsProp ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlHasNsProp            (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace)<br>
+</pre>
+<p>Search for an <a href="libxml2-SAX.html#attribute">attribute</a> associated to a node This <a href="libxml2-SAX.html#attribute">attribute</a> has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD <a href="libxml2-SAX.html#attribute">attribute</a> declaration for #FIXED or default declaration values unless DTD use has been turned off. Note that a namespace of NULL indicates to use the default namespace.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nameSpace</tt></i>:</span></td>
+<td>the URI of the namespace</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> or the <a href="libxml2-SAX.html#attribute">attribute</a> declaration or NULL if neither was found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlHasProp"></a>xmlHasProp ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlHasProp              (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Search an <a href="libxml2-SAX.html#attribute">attribute</a> associated to a node This function also looks in DTD <a href="libxml2-SAX.html#attribute">attribute</a> declaration for #FIXED or default declaration values unless DTD use has been turned off.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> or the <a href="libxml2-SAX.html#attribute">attribute</a> declaration or NULL if neither was found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsBlankNode"></a>xmlIsBlankNode ()</h3>
+<pre class="programlisting">int        xmlIsBlankNode                  (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node)<br>
+</pre>
+<p>Checks whether this node is an empty or whitespace only (and possibly ignorable) text-node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 yes, 0 no</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsXHTML"></a>xmlIsXHTML ()</h3>
+<pre class="programlisting">int        xmlIsXHTML                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * systemID, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * publicID)<br>
+</pre>
+<p>Try to find if the document correspond to an XHTML DTD</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>systemID</tt></i>:</span></td>
+<td>the system identifier</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>publicID</tt></i>:</span></td>
+<td>the public identifier</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true, 0 if not and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLastElementChild"></a>xmlLastElementChild ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlLastElementChild     (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent)<br>
+</pre>
+<p>Finds the last child node of that element which is a Element node Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back <a href="libxml2-SAX.html#reference">reference</a> from entities content to entities references.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>the parent node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the last element child or NULL if not available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewCDataBlock"></a>xmlNewCDataBlock ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewCDataBlock        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len)<br>
+</pre>
+<p>Creation of a new node containing a CDATA block.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the CDATA block content content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length of the block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewCharRef"></a>xmlNewCharRef ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewCharRef           (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Creation of a new character <a href="libxml2-SAX.html#reference">reference</a> node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the char ref string, starting with # or "&amp;# ... ;"</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewChild"></a>xmlNewChild ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewChild             (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br>                                      <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Creation of a new child element, added at the end of @parent children list. @ns and @content parameters are optional (NULL). If @ns is NULL, the newly created element inherits the namespace of @parent. If @content is non NULL, a child list containing the TEXTs and ENTITY_REFs node will be created. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references. XML special chars must be escaped first by using xmlEncodeEntitiesReentrant(), or xmlNewTextChild() should be used.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>the parent node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a namespace if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the child</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the XML content of the child if any.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewComment"></a>xmlNewComment ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewComment           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Use of this function is DISCOURAGED in favor of xmlNewDocComment. Creation of a new node containing a comment.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#comment">comment</a> content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDoc"></a>xmlNewDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlNewDoc               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * version)<br>
+</pre>
+<p>Creates a new XML document</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>version</tt></i>:</span></td>
+<td>
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string giving the version of XML "1.0"</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new document</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDocComment"></a>xmlNewDocComment ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocComment        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Creation of a new node containing a <a href="libxml2-SAX.html#comment">comment</a> within a document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#comment">comment</a> content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDocFragment"></a>xmlNewDocFragment ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocFragment       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Creation of a new Fragment node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document owning the fragment</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDocNode"></a>xmlNewDocNode ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocNode           (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Creation of a new node element within a document. @ns and @content are optional (NULL). NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't need entities support.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>namespace if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the node name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the XML text content if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDocNodeEatName"></a>xmlNewDocNodeEatName ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocNodeEatName    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Creation of a new node element within a document. @ns and @content are optional (NULL). NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't need entities support.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>namespace if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the node name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the XML text content if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDocPI"></a>xmlNewDocPI ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocPI             (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Creation of a processing instruction element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the target document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the processing instruction name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the PI content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDocProp"></a>xmlNewDocProp ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlNewDocProp           (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Create a new property carried by a document. NOTE: @value is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewProp() if you don't need entities support.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value of the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDocRawNode"></a>xmlNewDocRawNode ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocRawNode        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Creation of a new node element within a document. @ns and @content are optional (NULL).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>namespace if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the node name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the text content if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDocText"></a>xmlNewDocText ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocText           (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Creation of a new text node within a document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the text content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDocTextLen"></a>xmlNewDocTextLen ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewDocTextLen        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len)<br>
+</pre>
+<p>Creation of a new text node with an extra content length parameter. The text node pertain to a given document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the text content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the text len.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDtd"></a>xmlNewDtd ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a>        xmlNewDtd               (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ExternalID, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>Creation of a new DTD for the external subset. To create an internal subset, use xmlCreateIntSubset().</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the DTD name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ExternalID</tt></i>:</span></td>
+<td>the external ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the system ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new DTD structure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewGlobalNs"></a>xmlNewGlobalNs ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  xmlNewGlobalNs          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br>
+</pre>
+<p>Creation of a Namespace, the old way using PI and without scoping DEPRECATED !!!</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document carrying the namespace</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>href</tt></i>:</span></td>
+<td>the URI associated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the prefix for the namespace</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL this functionality had been removed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewNode"></a>xmlNewNode ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewNode              (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Creation of a new node element. @ns is optional (NULL). Use of this function is DISCOURAGED in favor of xmlNewDocNode.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>namespace if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the node name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object. Uses xmlStrdup() to make copy of @name.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewNodeEatName"></a>xmlNewNodeEatName ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewNodeEatName       (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Creation of a new node element. @ns is optional (NULL). Use of this function is DISCOURAGED in favor of xmlNewDocNodeEatName.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>namespace if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the node name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object, with pointer @name as new node's name. Use xmlNewNode() if a copy of @name string is is needed as new node's name.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewNs"></a>xmlNewNs ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  xmlNewNs                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br>
+</pre>
+<p>Creation of a new Namespace. This function will refuse to create a namespace with a similar prefix than an existing one present on this node. Note that for a default namespace, @prefix should be NULL. We use href==NULL in the case of an element creation where the namespace was not defined.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the element carrying the namespace</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>href</tt></i>:</span></td>
+<td>the URI associated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the prefix for the namespace</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new namespace pointer or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewNsProp"></a>xmlNewNsProp ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlNewNsProp            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Create a new property tagged with a namespace and carried by a node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the holding node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>the namespace</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value of the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewNsPropEatName"></a>xmlNewNsPropEatName ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlNewNsPropEatName     (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Create a new property tagged with a namespace and carried by a node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the holding node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>the namespace</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value of the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewPI"></a>xmlNewPI ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewPI                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Creation of a processing instruction element. Use of this function is DISCOURAGED in favor of xmlNewDocPI.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the processing instruction name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the PI content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewProp"></a>xmlNewProp ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlNewProp              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Create a new property carried by a node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the holding node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value of the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewReference"></a>xmlNewReference ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewReference         (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Creation of a new <a href="libxml2-SAX.html#reference">reference</a> node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#reference">reference</a> name, or the <a href="libxml2-SAX.html#reference">reference</a> string with &amp; and ;</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewText"></a>xmlNewText ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewText              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Creation of a new text node. Use of this function is DISCOURAGED in favor of xmlNewDocText.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the text content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewTextChild"></a>xmlNewTextChild ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewTextChild         (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> parent, <br>                                      <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Creation of a new child element, added at the end of @parent children list. @ns and @content parameters are optional (NULL). If @ns is NULL, the newly created element inherits the namespace of @parent. If @content is non NULL, a child TEXT node will be created containing the string @content. NOTE: Use xmlNewChild() if @content will contain entities that need to be preserved. Use this function, xmlNewTextChild(), if you need to ensure that reserved XML chars that might appear in @content, such as the ampersand, greater-than or less-than signs, are automatically replaced by their XML escaped entity representations.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>parent</tt></i>:</span></td>
+<td>the parent node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a namespace if any</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the child</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the text content of the child if any.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewTextLen"></a>xmlNewTextLen ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNewTextLen           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len)<br>
+</pre>
+<p>Use of this function is DISCOURAGED in favor of xmlNewDocTextLen. Creation of a new text node with an extra parameter for the content's length</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the text content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the text len.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new node object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNextElementSibling"></a>xmlNextElementSibling ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlNextElementSibling   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Finds the first closest next sibling of the node which is an element node. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back <a href="libxml2-SAX.html#reference">reference</a> from entities content to entities references.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element sibling or NULL if not available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeAddContent"></a>xmlNodeAddContent ()</h3>
+<pre class="programlisting">void       xmlNodeAddContent               (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Append the extra substring to the node content. NOTE: In contrast to xmlNodeSetContent(), @content is supposed to be raw text, so unescaped XML special chars are allowed, entity references are not supported.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being modified</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>extra content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeAddContentLen"></a>xmlNodeAddContentLen ()</h3>
+<pre class="programlisting">void       xmlNodeAddContentLen            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len)<br>
+</pre>
+<p>Append the extra substring to the node content. NOTE: In contrast to xmlNodeSetContentLen(), @content is supposed to be raw text, so unescaped XML special chars are allowed, entity references are not supported.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being modified</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>extra content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the size of @content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeBufGetContent"></a>xmlNodeBufGetContent ()</h3>
+<pre class="programlisting">int        xmlNodeBufGetContent            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br>                                  const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br>
+</pre>
+<p>Read the value of a node @cur, this can be either the text carried directly by this node if it's a TEXT node or the aggregate string of the values carried by this node child's (TEXT and ENTITY_REF). Entity references are substituted. Fills up the buffer @buffer with this value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being read</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeDump"></a>xmlNodeDump ()</h3>
+<pre class="programlisting">int        xmlNodeDump                     (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         int level, <br>                                         int format)<br>
+</pre>
+<p>Dump an XML node, recursive behaviour,children are printed too. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called. Since this is using <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a> structures it is limited to 2GB and somehow deprecated, use xmlNodeDumpOutput() instead.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>level</tt></i>:</span></td>
+<td>the imbrication level for indenting</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>is formatting allowed</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written to the buffer or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeDumpOutput"></a>xmlNodeDumpOutput ()</h3>
+<pre class="programlisting">void       xmlNodeDumpOutput               (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         int level, <br>                                         int format, <br>                                        const char * encoding)<br>
+</pre>
+<p>Dump an XML node, recursive behaviour, children are printed too. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>level</tt></i>:</span></td>
+<td>the imbrication level for indenting</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>is formatting allowed</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>an optional encoding string</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeGetBase"></a>xmlNodeGetBase ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlNodeGetBase          (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br>
+</pre>
+<p>Searches for the BASE URL. The code should work on both XML and HTML document even if base mechanisms are completely different. It returns the base as defined in RFC 2396 sections 5.1.1. Base URI within Document Content and 5.1.2. Base URI from the Encapsulating Entity However it does not return the document base (5.1.3), use doc-&gt;URL in this case</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document the node pertains to</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being checked</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the base URL, or NULL if not found It's up to the caller to free the memory with xmlFree().</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeGetContent"></a>xmlNodeGetContent ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlNodeGetContent       (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br>
+</pre>
+<p>Read the value of a node, this can be either the text carried directly by this node if it's a TEXT node or the aggregate string of the values carried by this node child's (TEXT and ENTITY_REF). Entity references are substituted.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being read</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new #xmlChar * or NULL if no content is available. It's up to the caller to free the memory with xmlFree().</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeGetLang"></a>xmlNodeGetLang ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlNodeGetLang          (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br>
+</pre>
+<p>Searches the language of a node, i.e. the values of the xml:lang <a href="libxml2-SAX.html#attribute">attribute</a> or the one carried by the nearest ancestor.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being checked</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the lang value, or NULL if not found It's up to the caller to free the memory with xmlFree().</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeGetSpacePreserve"></a>xmlNodeGetSpacePreserve ()</h3>
+<pre class="programlisting">int        xmlNodeGetSpacePreserve         (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * cur)<br>
+</pre>
+<p>Searches the space preserving behaviour of a node, i.e. the values of the xml:space <a href="libxml2-SAX.html#attribute">attribute</a> or the one carried by the nearest ancestor.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being checked</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 if xml:space is not inherited, 0 if "default", 1 if "preserve"</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeIsText"></a>xmlNodeIsText ()</h3>
+<pre class="programlisting">int        xmlNodeIsText                   (const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * node)<br>
+</pre>
+<p>Is this node a Text node ?</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 yes, 0 no</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeListGetRawString"></a>xmlNodeListGetRawString ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlNodeListGetRawString (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * list, <br>                                      int inLine)<br>
+</pre>
+<p>Builds the string equivalent to the text contained in the Node list made of TEXTs and ENTITY_REFs, contrary to xmlNodeListGetString() this function doesn't do any character encoding handling.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>list</tt></i>:</span></td>
+<td>a Node list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inLine</tt></i>:</span></td>
+<td>should we replace entity contents or show their external form</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the string copy, the caller must free it with xmlFree().</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeListGetString"></a>xmlNodeListGetString ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlNodeListGetString    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-tree.html#xmlNode">xmlNode</a> * list, <br>                                      int inLine)<br>
+</pre>
+<p>Build the string equivalent to the text contained in the Node list made of TEXTs and ENTITY_REFs</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>list</tt></i>:</span></td>
+<td>a Node list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inLine</tt></i>:</span></td>
+<td>should we replace entity contents or show their external form</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the string copy, the caller must free it with xmlFree().</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeSetBase"></a>xmlNodeSetBase ()</h3>
+<pre class="programlisting">void       xmlNodeSetBase                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * uri)<br>
+</pre>
+<p>Set (or reset) the base URI of a node, i.e. the value of the xml:base attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being changed</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>uri</tt></i>:</span></td>
+<td>the new base URI</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeSetContent"></a>xmlNodeSetContent ()</h3>
+<pre class="programlisting">void       xmlNodeSetContent               (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Replace the content of a node. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant() resp. xmlEncodeSpecialChars().</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being modified</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the new value of the content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeSetContentLen"></a>xmlNodeSetContentLen ()</h3>
+<pre class="programlisting">void       xmlNodeSetContentLen            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len)<br>
+</pre>
+<p>Replace the content of a node. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant() resp. xmlEncodeSpecialChars().</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being modified</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the new value of the content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the size of @content</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeSetLang"></a>xmlNodeSetLang ()</h3>
+<pre class="programlisting">void       xmlNodeSetLang                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * lang)<br>
+</pre>
+<p>Set the language of a node, i.e. the values of the xml:lang attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being changed</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>lang</tt></i>:</span></td>
+<td>the language description</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeSetName"></a>xmlNodeSetName ()</h3>
+<pre class="programlisting">void       xmlNodeSetName                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Set (or reset) the name of a node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being changed</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the new tag name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeSetSpacePreserve"></a>xmlNodeSetSpacePreserve ()</h3>
+<pre class="programlisting">void       xmlNodeSetSpacePreserve         (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur, <br>                                         int val)<br>
+</pre>
+<p>Set (or reset) the space preserving behaviour of a node, i.e. the value of the xml:space attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node being changed</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the xml:space value ("0": default, 1: "preserve")</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPreviousElementSibling"></a>xmlPreviousElementSibling ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlPreviousElementSibling       (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Finds the first closest previous sibling of the node which is an element node. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back <a href="libxml2-SAX.html#reference">reference</a> from entities content to entities references.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the previous element sibling or NULL if not available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReconciliateNs"></a>xmlReconciliateNs ()</h3>
+<pre class="programlisting">int        xmlReconciliateNs               (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree)<br>
+</pre>
+<p>This function checks that all the namespaces declared within the given tree are properly declared. This is needed for example after Copy or Cut and then paste operations. The subtree may still hold pointers to namespace declarations outside the subtree or invalid/masked. As much as possible the function try to reuse the existing namespaces found in the new environment. If not possible the new namespaces are redeclared on @tree at the top of the given subtree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>a node defining the subtree to reconciliate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of namespace declarations created or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRemoveProp"></a>xmlRemoveProp ()</h3>
+<pre class="programlisting">int        xmlRemoveProp                   (<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> cur)<br>
+</pre>
+<p>Unlink and free one attribute, all the content is freed too Note this doesn't work for namespace definition attributes</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>an <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if success and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReplaceNode"></a>xmlReplaceNode ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlReplaceNode          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> old, <br>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Unlink the old node from its current context, prune the new one at the same place. If @cur was already inserted in a document it is first unlinked from its existing context. See the note regarding namespaces in xmlAddChild.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>old</tt></i>:</span></td>
+<td>the old node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the @old node</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveFile"></a>xmlSaveFile ()</h3>
+<pre class="programlisting">int        xmlSaveFile                     (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur)<br>
+</pre>
+<p>Dump an XML document to a file. Will use compression if compiled in and enabled. If @filename is "-" the stdout file is used.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename (or URL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveFileEnc"></a>xmlSaveFileEnc ()</h3>
+<pre class="programlisting">int        xmlSaveFileEnc                  (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding)<br>
+</pre>
+<p>Dump an XML document, converting it to the given encoding</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename (or URL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the name of an encoding (or NULL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveFileTo"></a>xmlSaveFileTo ()</h3>
+<pre class="programlisting">int        xmlSaveFileTo                   (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding)<br>
+</pre>
+<p>Dump an XML document to an I/O buffer. Warning ! This call xmlOutputBufferClose() on buf which is not available after this call.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>an output I/O buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding if any assuming the I/O layer handles the transcoding</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveFormatFile"></a>xmlSaveFormatFile ()</h3>
+<pre class="programlisting">int        xmlSaveFormatFile               (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   int format)<br>
+</pre>
+<p>Dump an XML document to a file. Will use compression if compiled in and enabled. If @filename is "-" the stdout file is used. If @format is set then the document will be indented on output. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename (or URL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>should formatting spaces been added</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveFormatFileEnc"></a>xmlSaveFormatFileEnc ()</h3>
+<pre class="programlisting">int        xmlSaveFormatFileEnc            (const char * filename, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding, <br>                                     int format)<br>
+</pre>
+<p>Dump an XML document to a file or an URL.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename or URL to output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document being saved</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the name of the encoding to use or NULL.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>should formatting spaces be added.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written or -1 in case of error. Note that @format = 1 provide node indenting only if <a href="libxml2-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a> = 1 or xmlKeepBlanksDefault(0) was called</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveFormatFileTo"></a>xmlSaveFormatFileTo ()</h3>
+<pre class="programlisting">int        xmlSaveFormatFileTo             (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> buf, <br>                                         <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> cur, <br>                                   const char * encoding, <br>                                     int format)<br>
+</pre>
+<p>Dump an XML document to an I/O buffer. Warning ! This call xmlOutputBufferClose() on buf which is not available after this call.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>an output I/O buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding if any assuming the I/O layer handles the transcoding</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>should formatting spaces been added</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written or -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSearchNs"></a>xmlSearchNs ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  xmlSearchNs             (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * nameSpace)<br>
+</pre>
+<p>Search a Ns registered under a given name space for a document. recurse on the parents until it finds the defined namespace or return NULL otherwise. @nameSpace can be NULL, this is a search for the default namespace. We don't allow to cross entities boundaries. If you don't declare the namespace within those you will be in troubles !!! A warning is generated to cover this case.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nameSpace</tt></i>:</span></td>
+<td>the namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the namespace pointer or NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSearchNsByHref"></a>xmlSearchNsByHref ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a>  xmlSearchNsByHref       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * href)<br>
+</pre>
+<p>Search a Ns aliasing a given URI. Recurse on the parents until it finds the defined namespace or return NULL otherwise.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the current node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>href</tt></i>:</span></td>
+<td>the namespace value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the namespace pointer or NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetBufferAllocationScheme"></a>xmlSetBufferAllocationScheme ()</h3>
+<pre class="programlisting">void       xmlSetBufferAllocationScheme    (<a href="libxml2-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a> scheme)<br>
+</pre>
+<p>Set the buffer allocation method. Types are <a href="libxml2-tree.html#XML_BUFFER_ALLOC_EXACT">XML_BUFFER_ALLOC_EXACT</a> - use exact sizes, keeps memory usage down <a href="libxml2-tree.html#XML_BUFFER_ALLOC_DOUBLEIT">XML_BUFFER_ALLOC_DOUBLEIT</a> - double buffer when extra needed, improves performance</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>scheme</tt></i>:</span></td>
+<td>allocation method to use</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetCompressMode"></a>xmlSetCompressMode ()</h3>
+<pre class="programlisting">void       xmlSetCompressMode              (int mode)<br>
+</pre>
+<p>set the default compression mode used, ZLIB based Correct values: 0 (uncompressed) to 9 (max compression)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>mode</tt></i>:</span></td>
+<td>the compression ratio</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetDocCompressMode"></a>xmlSetDocCompressMode ()</h3>
+<pre class="programlisting">void       xmlSetDocCompressMode           (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   int mode)<br>
+</pre>
+<p>set the compression ratio for a document, ZLIB based Correct values: 0 (uncompressed) to 9 (max compression)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mode</tt></i>:</span></td>
+<td>the compression ratio</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetListDoc"></a>xmlSetListDoc ()</h3>
+<pre class="programlisting">void       xmlSetListDoc                   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> list, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>update all nodes in the list to point to the right document</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>list</tt></i>:</span></td>
+<td>the first element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetNs"></a>xmlSetNs ()</h3>
+<pre class="programlisting">void       xmlSetNs                        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns)<br>
+</pre>
+<p>Associate a namespace to a node, a posteriori.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node in the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a namespace pointer</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetNsProp"></a>xmlSetNsProp ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlSetNsProp            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Set (or reset) an <a href="libxml2-SAX.html#attribute">attribute</a> carried by a node. The ns structure must be in scope, this is not checked</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>the namespace definition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> pointer.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetProp"></a>xmlSetProp ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlSetProp              (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Set (or reset) an <a href="libxml2-SAX.html#attribute">attribute</a> carried by a node. If @name has a prefix, then the corresponding namespace-binding will be used, if in scope; it is an error it there's no such ns-binding for the prefix in scope.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name (a QName)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> pointer.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetTreeDoc"></a>xmlSetTreeDoc ()</h3>
+<pre class="programlisting">void       xmlSetTreeDoc                   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br>                                        <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>update all nodes under the tree to point to the right document</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>the top element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSplitQName2"></a>xmlSplitQName2 ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlSplitQName2          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** prefix)<br>
+</pre>
+<p>parse an XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the full QName</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>a <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> **</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if the name doesn't have a prefix. Otherwise, returns the local part, and prefix is updated to get the Prefix. Both the return value and the prefix must be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSplitQName3"></a>xmlSplitQName3 ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlSplitQName3          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int * len)<br>
+</pre>
+<p>parse an XML qualified name string,i</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the full QName</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>an int *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if it is not a Qualified Name, otherwise, update len with the length in byte of the prefix and return a pointer to the start of the name without the prefix</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStringGetNodeList"></a>xmlStringGetNodeList ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlStringGetNodeList    (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Parse the value string and build the node list associated. Should produce a flat tree with only TEXTs and ENTITY_REFs.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value of the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the first child</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStringLenGetNodeList"></a>xmlStringLenGetNodeList ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlStringLenGetNodeList (const <a href="libxml2-tree.html#xmlDoc">xmlDoc</a> * doc, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int len)<br>
+</pre>
+<p>Parse the value string and build the node list associated. Should produce a flat tree with only TEXTs and ENTITY_REFs.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value of the text</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length of the string value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the first child</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextConcat"></a>xmlTextConcat ()</h3>
+<pre class="programlisting">int        xmlTextConcat                   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len)<br>
+</pre>
+<p>Concat the given string at the end of the existing node content</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>@content length</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextMerge"></a>xmlTextMerge ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlTextMerge            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> first, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> second)<br>
+</pre>
+<p>Merge two text nodes into one</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>first</tt></i>:</span></td>
+<td>the first text node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>second</tt></i>:</span></td>
+<td>the second text node being merged</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the first text node augmented</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUnlinkNode"></a>xmlUnlinkNode ()</h3>
+<pre class="programlisting">void       xmlUnlinkNode                   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Unlink a node from it's current context, the node is not freed If one need to free the node, use xmlFreeNode() routine after the unlink to discard it. Note that namespace nodes can't be unlinked as they do not have pointer to their parent.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUnsetNsProp"></a>xmlUnsetNsProp ()</h3>
+<pre class="programlisting">int        xmlUnsetNsProp                  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Remove an <a href="libxml2-SAX.html#attribute">attribute</a> carried by a node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>the namespace definition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if successful, -1 if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUnsetProp"></a>xmlUnsetProp ()</h3>
+<pre class="programlisting">int        xmlUnsetProp                    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Remove an <a href="libxml2-SAX.html#attribute">attribute</a> carried by a node. This handles only attributes in no namespace.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if successful, -1 if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateNCName"></a>xmlValidateNCName ()</h3>
+<pre class="programlisting">int        xmlValidateNCName               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int space)<br>
+</pre>
+<p>Check that a value conforms to the lexical space of NCName</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>space</tt></i>:</span></td>
+<td>allow spaces in front and end of the string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateNMToken"></a>xmlValidateNMToken ()</h3>
+<pre class="programlisting">int        xmlValidateNMToken              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int space)<br>
+</pre>
+<p>Check that a value conforms to the lexical space of NMToken</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>space</tt></i>:</span></td>
+<td>allow spaces in front and end of the string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateName"></a>xmlValidateName ()</h3>
+<pre class="programlisting">int        xmlValidateName                 (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int space)<br>
+</pre>
+<p>Check that a value conforms to the lexical space of Name</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>space</tt></i>:</span></td>
+<td>allow spaces in front and end of the string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateQName"></a>xmlValidateQName ()</h3>
+<pre class="programlisting">int        xmlValidateQName                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        int space)<br>
+</pre>
+<p>Check that a value conforms to the lexical space of QName</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>space</tt></i>:</span></td>
+<td>allow spaces in front and end of the string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index d049ba9..755e78d 100644 (file)
@@ -1,74 +1,54 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>uri: library of generic URI related routines</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-tree.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-valid.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">uri</span>
-    </h2>
-    <p>uri - library of generic URI related routines</p>
-    <p>library of generic URI related routines Implements RFC 2396 </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef struct _xmlURI <a href="#xmlURI">xmlURI</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>uri: library of generic URI related routines</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-tree.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-valid.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">uri</span></h2>
+<p>uri - library of generic URI related routines</p>
+<p>library of generic URI related routines Implements RFC 2396 </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlURI <a href="#xmlURI">xmlURI</a>;
 typedef <a href="libxml2-uri.html#xmlURI">xmlURI</a> * <a href="#xmlURIPtr">xmlURIPtr</a>;
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlBuildRelativeURI">xmlBuildRelativeURI</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlBuildURI">xmlBuildURI</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCanonicPath">xmlCanonicPath</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * path);
+<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a>     <a href="#xmlCreateURI">xmlCreateURI</a>                (void);
+void   <a href="#xmlFreeURI">xmlFreeURI</a>                    (<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri);
 int    <a href="#xmlNormalizeURIPath">xmlNormalizeURIPath</a>          (char * path);
-void   <a href="#xmlPrintURI">xmlPrintURI</a>                  (FILE * stream, <br/>                                    <a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri);
-<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a>     <a href="#xmlParseURIRaw">xmlParseURIRaw</a>            (const char * str, <br/>                                         int raw);
-char * <a href="#xmlURIUnescapeString">xmlURIUnescapeString</a>                (const char * str, <br/>                                         int len, <br/>                                  char * target);
 <a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a>     <a href="#xmlParseURI">xmlParseURI</a>          (const char * str);
-<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a>     <a href="#xmlCreateURI">xmlCreateURI</a>                (void);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlURIEscapeStr">xmlURIEscapeStr</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * list);
+<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a>     <a href="#xmlParseURIRaw">xmlParseURIRaw</a>            (const char * str, <br>                                  int raw);
+int    <a href="#xmlParseURIReference">xmlParseURIReference</a>                (<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri, <br>                                    const char * str);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlPathToURI">xmlPathToURI</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * path);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCanonicPath">xmlCanonicPath</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * path);
-void   <a href="#xmlFreeURI">xmlFreeURI</a>                    (<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri);
-int    <a href="#xmlParseURIReference">xmlParseURIReference</a>                (<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri, <br/>                                   const char * str);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlBuildRelativeURI">xmlBuildRelativeURI</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base);
+void   <a href="#xmlPrintURI">xmlPrintURI</a>                  (FILE * stream, <br>                                     <a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlSaveUri">xmlSaveUri</a>            (<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlURIEscape">xmlURIEscape</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlBuildURI">xmlBuildURI</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlURI">Structure </a>xmlURI</h3><pre class="programlisting">struct _xmlURI {
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlURIEscapeStr">xmlURIEscapeStr</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * list);
+char * <a href="#xmlURIUnescapeString">xmlURIUnescapeString</a>                (const char * str, <br>                                  int len, <br>                                   char * target);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlURI">Structure </a>xmlURI</h3>
+<pre class="programlisting">struct _xmlURI {
     char *     scheme  : the URI scheme
     char *     opaque  : opaque part
     char *     authority       : the authority part
@@ -81,74 +61,353 @@ int        <a href="#xmlParseURIReference">xmlParseURIReference</a>                (<a href="libxml2-
     int        cleanup : parsing potentially unclean URI
     char *     query_raw       : the query string (as it appears in the URI)
 } xmlURI;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlURIPtr">Typedef </a>xmlURIPtr</h3><pre class="programlisting"><a href="libxml2-uri.html#xmlURI">xmlURI</a> * xmlURIPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBuildRelativeURI"/>xmlBuildRelativeURI ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlBuildRelativeURI     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base)<br/>
-</pre><p>Expresses the URI of the <a href="libxml2-SAX.html#reference">reference</a> in terms relative to the base. Some examples of this operation include: base = "http://site1.com/docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif pic1.gif http://site2.com/docs/pic1.gif http://site2.com/docs/pic1.gif base = "docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif http://site1.com/docs/pic1.gif Note: if the URI <a href="libxml2-SAX.html#reference">reference</a> is really weird or complicated, it may be worthwhile to first convert it into a "nice" one by calling <a href="libxml2-uri.html#xmlBuildURI">xmlBuildURI</a> (using 'base') before calling this routine, since this routine (for reasonable efficiency) assumes URI has already been through some validation.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the URI <a href="libxml2-SAX.html#reference">reference</a> under consideration</td></tr><tr><td><span class="term"><i><tt>base</tt></i>:</span></td><td>the base value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new URI string (to be freed by the caller) or NULL in case error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlBuildURI"/>xmlBuildURI ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlBuildURI             (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base)<br/>
-</pre><p>Computes he final URI of the <a href="libxml2-SAX.html#reference">reference</a> done by checking that the given URI is valid, and building the final URI using the base URI. This is processed according to section 5.2 of the RFC 2396 5.2. Resolving Relative References to Absolute Form</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the URI instance found in the document</td></tr><tr><td><span class="term"><i><tt>base</tt></i>:</span></td><td>the base value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new URI string (to be freed by the caller) or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCanonicPath"/>xmlCanonicPath ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlCanonicPath          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * path)<br/>
-</pre><p>Constructs a canonic path from the specified path.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>path</tt></i>:</span></td><td>the resource locator in a filesystem notation</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new canonic path, or a duplicate of the path parameter if the construction fails. The caller is responsible for freeing the memory occupied by the returned string. If there is insufficient memory available, or the argument is NULL, the function returns NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCreateURI"/>xmlCreateURI ()</h3><pre class="programlisting"><a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> xmlCreateURI            (void)<br/>
-</pre><p>Simply creates an empty <a href="libxml2-uri.html#xmlURI">xmlURI</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new structure or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeURI"/>xmlFreeURI ()</h3><pre class="programlisting">void   xmlFreeURI                      (<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri)<br/>
-</pre><p>Free up the <a href="libxml2-uri.html#xmlURI">xmlURI</a> struct</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>uri</tt></i>:</span></td><td>pointer to an <a href="libxml2-uri.html#xmlURI">xmlURI</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNormalizeURIPath"/>xmlNormalizeURIPath ()</h3><pre class="programlisting">int  xmlNormalizeURIPath             (char * path)<br/>
-</pre><p>Applies the 5 normalization steps to a path string--that is, RFC 2396 Section 5.2, steps 6.c through 6.g. Normalization occurs directly on the string, no new allocation is done</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>path</tt></i>:</span></td><td>pointer to the path string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or an error code</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseURI"/>xmlParseURI ()</h3><pre class="programlisting"><a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a>   xmlParseURI             (const char * str)<br/>
-</pre><p>Parse an URI based on RFC 3986 URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the URI string to analyze</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a newly built <a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseURIRaw"/>xmlParseURIRaw ()</h3><pre class="programlisting"><a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a>     xmlParseURIRaw          (const char * str, <br/>                                         int raw)<br/>
-</pre><p>Parse an URI but allows to keep intact the original fragments. URI-reference = URI / relative-ref</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the URI string to analyze</td></tr><tr><td><span class="term"><i><tt>raw</tt></i>:</span></td><td>if 1 unescaping of URI pieces are disabled</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a newly built <a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParseURIReference"/>xmlParseURIReference ()</h3><pre class="programlisting">int        xmlParseURIReference            (<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri, <br/>                                   const char * str)<br/>
-</pre><p>Parse an URI <a href="libxml2-SAX.html#reference">reference</a> string based on RFC 3986 and fills in the appropriate fields of the @uri structure URI-reference = URI / relative-ref</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>uri</tt></i>:</span></td><td>pointer to an URI structure</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the string to analyze</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or the error code</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPathToURI"/>xmlPathToURI ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlPathToURI            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * path)<br/>
-</pre><p>Constructs an URI expressing the existing path</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>path</tt></i>:</span></td><td>the resource locator in a filesystem notation</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new URI, or a duplicate of the path parameter if the construction fails. The caller is responsible for freeing the memory occupied by the returned string. If there is insufficient memory available, or the argument is NULL, the function returns NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPrintURI"/>xmlPrintURI ()</h3><pre class="programlisting">void xmlPrintURI                     (FILE * stream, <br/>                                    <a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri)<br/>
-</pre><p>Prints the URI in the stream @stream.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>stream</tt></i>:</span></td><td>a FILE* for the output</td></tr><tr><td><span class="term"><i><tt>uri</tt></i>:</span></td><td>pointer to an <a href="libxml2-uri.html#xmlURI">xmlURI</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveUri"/>xmlSaveUri ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlSaveUri              (<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri)<br/>
-</pre><p>Save the URI as an escaped string</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>uri</tt></i>:</span></td><td>pointer to an <a href="libxml2-uri.html#xmlURI">xmlURI</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new string (to be deallocated by caller)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlURIEscape"/>xmlURIEscape ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlURIEscape            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>Escaping routine, does not do validity checks ! It will try to escape the chars needing this, but this is heuristic based it's impossible to be sure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the string of the URI to escape</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an copy of the string, but escaped 25 May 2001 Uses <a href="libxml2-uri.html#xmlParseURI">xmlParseURI</a> and <a href="libxml2-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a> to try to escape correctly according to RFC2396. - Carl Douglas</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlURIEscapeStr"/>xmlURIEscapeStr ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlURIEscapeStr         (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * list)<br/>
-</pre><p>This routine escapes a string to hex, ignoring reserved <a href="libxml2-SAX.html#characters">characters</a> (a-z) and the <a href="libxml2-SAX.html#characters">characters</a> in the exception list.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>string to escape</td></tr><tr><td><span class="term"><i><tt>list</tt></i>:</span></td><td>exception list string of chars not to escape</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new escaped string or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlURIUnescapeString"/>xmlURIUnescapeString ()</h3><pre class="programlisting">char *     xmlURIUnescapeString            (const char * str, <br/>                                         int len, <br/>                                  char * target)<br/>
-</pre><p>Unescaping routine, but does not check that the string is an URI. The output is a direct unsigned char translation of %XX values (no encoding) Note that the length of the result can only be smaller or same size as the input string.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the string to unescape</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length in bytes to unescape (or &lt;= 0 to indicate full string)</td></tr><tr><td><span class="term"><i><tt>target</tt></i>:</span></td><td>optional destination buffer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a copy of the string, but unescaped, will return NULL only in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlURIPtr">Typedef </a>xmlURIPtr</h3>
+<pre class="programlisting"><a href="libxml2-uri.html#xmlURI">xmlURI</a> * xmlURIPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBuildRelativeURI"></a>xmlBuildRelativeURI ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlBuildRelativeURI     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base)<br>
+</pre>
+<p>Expresses the URI of the <a href="libxml2-SAX.html#reference">reference</a> in terms relative to the base. Some examples of this operation include: base = "http://site1.com/docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif pic1.gif http://site2.com/docs/pic1.gif http://site2.com/docs/pic1.gif base = "docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif http://site1.com/docs/pic1.gif Note: if the URI <a href="libxml2-SAX.html#reference">reference</a> is really weird or complicated, it may be worthwhile to first convert it into a "nice" one by calling <a href="libxml2-uri.html#xmlBuildURI">xmlBuildURI</a> (using 'base') before calling this routine, since this routine (for reasonable efficiency) assumes URI has already been through some validation.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the URI <a href="libxml2-SAX.html#reference">reference</a> under consideration</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>base</tt></i>:</span></td>
+<td>the base value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new URI string (to be freed by the caller) or NULL in case error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlBuildURI"></a>xmlBuildURI ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlBuildURI             (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * URI, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * base)<br>
+</pre>
+<p>Computes he final URI of the <a href="libxml2-SAX.html#reference">reference</a> done by checking that the given URI is valid, and building the final URI using the base URI. This is processed according to section 5.2 of the RFC 2396 5.2. Resolving Relative References to Absolute Form</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the URI instance found in the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>base</tt></i>:</span></td>
+<td>the base value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new URI string (to be freed by the caller) or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCanonicPath"></a>xmlCanonicPath ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlCanonicPath          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * path)<br>
+</pre>
+<p>Constructs a canonic path from the specified path.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>path</tt></i>:</span></td>
+<td>the resource locator in a filesystem notation</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new canonic path, or a duplicate of the path parameter if the construction fails. The caller is responsible for freeing the memory occupied by the returned string. If there is insufficient memory available, or the argument is NULL, the function returns NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCreateURI"></a>xmlCreateURI ()</h3>
+<pre class="programlisting"><a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> xmlCreateURI            (void)<br>
+</pre>
+<p>Simply creates an empty <a href="libxml2-uri.html#xmlURI">xmlURI</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new structure or NULL in case of error</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeURI"></a>xmlFreeURI ()</h3>
+<pre class="programlisting">void       xmlFreeURI                      (<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri)<br>
+</pre>
+<p>Free up the <a href="libxml2-uri.html#xmlURI">xmlURI</a> struct</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>uri</tt></i>:</span></td>
+<td>pointer to an <a href="libxml2-uri.html#xmlURI">xmlURI</a>
+</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNormalizeURIPath"></a>xmlNormalizeURIPath ()</h3>
+<pre class="programlisting">int        xmlNormalizeURIPath             (char * path)<br>
+</pre>
+<p>Applies the 5 normalization steps to a path string--that is, RFC 2396 Section 5.2, steps 6.c through 6.g. Normalization occurs directly on the string, no new allocation is done</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>path</tt></i>:</span></td>
+<td>pointer to the path string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or an error code</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseURI"></a>xmlParseURI ()</h3>
+<pre class="programlisting"><a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> xmlParseURI             (const char * str)<br>
+</pre>
+<p>Parse an URI based on RFC 3986 URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the URI string to analyze</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a newly built <a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseURIRaw"></a>xmlParseURIRaw ()</h3>
+<pre class="programlisting"><a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> xmlParseURIRaw          (const char * str, <br>                                  int raw)<br>
+</pre>
+<p>Parse an URI but allows to keep intact the original fragments. URI-reference = URI / relative-ref</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the URI string to analyze</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>raw</tt></i>:</span></td>
+<td>if 1 unescaping of URI pieces are disabled</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a newly built <a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParseURIReference"></a>xmlParseURIReference ()</h3>
+<pre class="programlisting">int        xmlParseURIReference            (<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri, <br>                                    const char * str)<br>
+</pre>
+<p>Parse an URI <a href="libxml2-SAX.html#reference">reference</a> string based on RFC 3986 and fills in the appropriate fields of the @uri structure URI-reference = URI / relative-ref</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>uri</tt></i>:</span></td>
+<td>pointer to an URI structure</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the string to analyze</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or the error code</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPathToURI"></a>xmlPathToURI ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlPathToURI            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * path)<br>
+</pre>
+<p>Constructs an URI expressing the existing path</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>path</tt></i>:</span></td>
+<td>the resource locator in a filesystem notation</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new URI, or a duplicate of the path parameter if the construction fails. The caller is responsible for freeing the memory occupied by the returned string. If there is insufficient memory available, or the argument is NULL, the function returns NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPrintURI"></a>xmlPrintURI ()</h3>
+<pre class="programlisting">void       xmlPrintURI                     (FILE * stream, <br>                                     <a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri)<br>
+</pre>
+<p>Prints the URI in the stream @stream.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>stream</tt></i>:</span></td>
+<td>a FILE* for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>uri</tt></i>:</span></td>
+<td>pointer to an <a href="libxml2-uri.html#xmlURI">xmlURI</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveUri"></a>xmlSaveUri ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlSaveUri              (<a href="libxml2-uri.html#xmlURIPtr">xmlURIPtr</a> uri)<br>
+</pre>
+<p>Save the URI as an escaped string</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>uri</tt></i>:</span></td>
+<td>pointer to an <a href="libxml2-uri.html#xmlURI">xmlURI</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new string (to be deallocated by caller)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlURIEscape"></a>xmlURIEscape ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlURIEscape            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>Escaping routine, does not do validity checks ! It will try to escape the chars needing this, but this is heuristic based it's impossible to be sure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the string of the URI to escape</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an copy of the string, but escaped 25 May 2001 Uses <a href="libxml2-uri.html#xmlParseURI">xmlParseURI</a> and <a href="libxml2-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a> to try to escape correctly according to RFC2396. - Carl Douglas</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlURIEscapeStr"></a>xmlURIEscapeStr ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlURIEscapeStr         (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * list)<br>
+</pre>
+<p>This routine escapes a string to hex, ignoring reserved <a href="libxml2-SAX.html#characters">characters</a> (a-z) and the <a href="libxml2-SAX.html#characters">characters</a> in the exception list.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>string to escape</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>list</tt></i>:</span></td>
+<td>exception list string of chars not to escape</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new escaped string or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlURIUnescapeString"></a>xmlURIUnescapeString ()</h3>
+<pre class="programlisting">char *     xmlURIUnescapeString            (const char * str, <br>                                  int len, <br>                                   char * target)<br>
+</pre>
+<p>Unescaping routine, but does not check that the string is an URI. The output is a direct unsigned char translation of %XX values (no encoding) Note that the length of the result can only be smaller or same size as the input string.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the string to unescape</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length in bytes to unescape (or &lt;= 0 to indicate full string)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>target</tt></i>:</span></td>
+<td>optional destination buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a copy of the string, but unescaped, will return NULL only in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 6830729..3ea0bb8 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>valid: The DTD validation</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-uri.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xinclude.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">valid</span>
-    </h2>
-    <p>valid - The DTD validation</p>
-    <p>API for the DTD handling and the validity checking </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#XML_VCTXT_DTD_VALIDATED">XML_VCTXT_DTD_VALIDATED</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>valid: The DTD validation</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-uri.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xinclude.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">valid</span></h2>
+<p>valid - The DTD validation</p>
+<p>API for the DTD handling and the validity checking </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#XML_VCTXT_DTD_VALIDATED">XML_VCTXT_DTD_VALIDATED</a>;
 #define <a href="#XML_VCTXT_USE_PCTXT">XML_VCTXT_USE_PCTXT</a>;
+typedef struct _xmlHashTable <a href="#xmlAttributeTable">xmlAttributeTable</a>;
+typedef <a href="libxml2-valid.html#xmlAttributeTable">xmlAttributeTable</a> * <a href="#xmlAttributeTablePtr">xmlAttributeTablePtr</a>;
 typedef struct _xmlHashTable <a href="#xmlElementTable">xmlElementTable</a>;
-typedef <a href="libxml2-valid.html#xmlValidState">xmlValidState</a> * <a href="#xmlValidStatePtr">xmlValidStatePtr</a>;
-typedef <a href="libxml2-valid.html#xmlIDTable">xmlIDTable</a> * <a href="#xmlIDTablePtr">xmlIDTablePtr</a>;
-typedef <a href="libxml2-valid.html#xmlNotationTable">xmlNotationTable</a> * <a href="#xmlNotationTablePtr">xmlNotationTablePtr</a>;
-typedef struct _xmlValidCtxt <a href="#xmlValidCtxt">xmlValidCtxt</a>;
 typedef <a href="libxml2-valid.html#xmlElementTable">xmlElementTable</a> * <a href="#xmlElementTablePtr">xmlElementTablePtr</a>;
-typedef <a href="libxml2-valid.html#xmlRefTable">xmlRefTable</a> * <a href="#xmlRefTablePtr">xmlRefTablePtr</a>;
+typedef struct _xmlHashTable <a href="#xmlIDTable">xmlIDTable</a>;
+typedef <a href="libxml2-valid.html#xmlIDTable">xmlIDTable</a> * <a href="#xmlIDTablePtr">xmlIDTablePtr</a>;
 typedef struct _xmlHashTable <a href="#xmlNotationTable">xmlNotationTable</a>;
+typedef <a href="libxml2-valid.html#xmlNotationTable">xmlNotationTable</a> * <a href="#xmlNotationTablePtr">xmlNotationTablePtr</a>;
 typedef struct _xmlHashTable <a href="#xmlRefTable">xmlRefTable</a>;
-typedef struct _xmlValidState <a href="#xmlValidState">xmlValidState</a>;
-typedef struct _xmlHashTable <a href="#xmlAttributeTable">xmlAttributeTable</a>;
-typedef <a href="libxml2-valid.html#xmlAttributeTable">xmlAttributeTable</a> * <a href="#xmlAttributeTablePtr">xmlAttributeTablePtr</a>;
-typedef struct _xmlHashTable <a href="#xmlIDTable">xmlIDTable</a>;
+typedef <a href="libxml2-valid.html#xmlRefTable">xmlRefTable</a> * <a href="#xmlRefTablePtr">xmlRefTablePtr</a>;
+typedef struct _xmlValidCtxt <a href="#xmlValidCtxt">xmlValidCtxt</a>;
 typedef <a href="libxml2-valid.html#xmlValidCtxt">xmlValidCtxt</a> * <a href="#xmlValidCtxtPtr">xmlValidCtxtPtr</a>;
-void   <a href="#xmlFreeNotationTable">xmlFreeNotationTable</a>                (<a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table);
-int    <a href="#xmlValidateNameValue">xmlValidateNameValue</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-void   <a href="#xmlSnprintfElementContent">xmlSnprintfElementContent</a>      (char * buf, <br/>                                       int size, <br/>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content, <br/>                                        int englob);
-<a href="libxml2-tree.html#xmlRefPtr">xmlRefPtr</a>    <a href="#xmlAddRef">xmlAddRef</a>              (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
-void   <a href="#xmlDumpAttributeDecl">xmlDumpAttributeDecl</a>                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> attr);
-int    <a href="#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a>        (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-int    <a href="#xmlValidateDtdFinal">xmlValidateDtdFinal</a>          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-void   <a href="#xmlDumpAttributeTable">xmlDumpAttributeTable</a>              (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> table);
+typedef struct _xmlValidState <a href="#xmlValidState">xmlValidState</a>;
+typedef <a href="libxml2-valid.html#xmlValidState">xmlValidState</a> * <a href="#xmlValidStatePtr">xmlValidStatePtr</a>;
+<a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>        <a href="#xmlAddAttributeDecl">xmlAddAttributeDecl</a>  (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns, <br>                                   <a href="libxml2-tree.html#xmlAttributeType">xmlAttributeType</a> type, <br>                                    <a href="libxml2-tree.html#xmlAttributeDefault">xmlAttributeDefault</a> def, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br>                                         <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree);
+<a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>    <a href="#xmlAddElementDecl">xmlAddElementDecl</a>      (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-tree.html#xmlElementTypeVal">xmlElementTypeVal</a> type, <br>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content);
+<a href="libxml2-tree.html#xmlIDPtr">xmlIDPtr</a>      <a href="#xmlAddID">xmlAddID</a>                (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
+<a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a>  <a href="#xmlAddNotationDecl">xmlAddNotationDecl</a>    (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * PublicID, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
+<a href="libxml2-tree.html#xmlRefPtr">xmlRefPtr</a>    <a href="#xmlAddRef">xmlAddRef</a>              (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
+<a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a>     <a href="#xmlCopyAttributeTable">xmlCopyAttributeTable</a>      (<a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> table);
+<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlCopyDocElementContent">xmlCopyDocElementContent</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                                   <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur);
+<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlCopyElementContent">xmlCopyElementContent</a>      (<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur);
+<a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> <a href="#xmlCopyElementTable">xmlCopyElementTable</a>  (<a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> table);
+<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>    <a href="#xmlCopyEnumeration">xmlCopyEnumeration</a>    (<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> cur);
+<a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a>       <a href="#xmlCopyNotationTable">xmlCopyNotationTable</a>        (<a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table);
 <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>    <a href="#xmlCreateEnumeration">xmlCreateEnumeration</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlValidateOneAttribute">xmlValidateOneAttribute</a>          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-int    <a href="#xmlValidGetValidElements">xmlValidGetValidElements</a>        (<a href="libxml2-tree.html#xmlNode">xmlNode</a> * prev, <br/>                                   <a href="libxml2-tree.html#xmlNode">xmlNode</a> * next, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** names, <br/>                                      int max);
-int    <a href="#xmlIsMixedElement">xmlIsMixedElement</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void   <a href="#xmlDumpNotationDecl">xmlDumpNotationDecl</a>          (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a> nota);
-int    <a href="#xmlIsID">xmlIsID</a>                  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
-<a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>        <a href="#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a>    (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
-<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlNewDocElementContent">xmlNewDocElementContent</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                <a href="libxml2-tree.html#xmlElementContentType">xmlElementContentType</a> type);
+void   <a href="#xmlDumpAttributeDecl">xmlDumpAttributeDecl</a>                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> attr);
+void   <a href="#xmlDumpAttributeTable">xmlDumpAttributeTable</a>              (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> table);
+void   <a href="#xmlDumpElementDecl">xmlDumpElementDecl</a>            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem);
+void   <a href="#xmlDumpElementTable">xmlDumpElementTable</a>          (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> table);
+void   <a href="#xmlDumpNotationDecl">xmlDumpNotationDecl</a>          (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a> nota);
+void   <a href="#xmlDumpNotationTable">xmlDumpNotationTable</a>                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table);
 void   <a href="#xmlFreeAttributeTable">xmlFreeAttributeTable</a>              (<a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> table);
-typedef void <a href="#xmlValidityErrorFunc">xmlValidityErrorFunc</a>          (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-int    <a href="#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a>        (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> attr);
-<a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>    <a href="#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a>      (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
-<a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a>       <a href="#xmlCopyNotationTable">xmlCopyNotationTable</a>        (<a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table);
-int    <a href="#xmlValidateDocument">xmlValidateDocument</a>          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-int    <a href="#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a>        (<a href="libxml2-tree.html#xmlElementContent">xmlElementContent</a> * ctree, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** names, <br/>                                      int * len, <br/>                                        int max);
-<a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a>  <a href="#xmlAddNotationDecl">xmlAddNotationDecl</a>    (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * PublicID, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID);
-int    <a href="#xmlValidateElementDecl">xmlValidateElementDecl</a>            (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem);
-<a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>        <a href="#xmlAddAttributeDecl">xmlAddAttributeDecl</a>  (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns, <br/>                                  <a href="libxml2-tree.html#xmlAttributeType">xmlAttributeType</a> type, <br/>                                   <a href="libxml2-tree.html#xmlAttributeDefault">xmlAttributeDefault</a> def, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br/>                                        <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree);
-<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlGetID">xmlGetID</a>                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID);
-<a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> <a href="#xmlCopyElementTable">xmlCopyElementTable</a>  (<a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> table);
-<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a>  <a href="#xmlGetRefs">xmlGetRefs</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID);
-void   <a href="#xmlSprintfElementContent">xmlSprintfElementContent</a>        (char * buf, <br/>                                       <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content, <br/>                                        int englob);
-int    <a href="#xmlValidateOneElement">xmlValidateOneElement</a>              (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
-int    <a href="#xmlValidateNmtokenValue">xmlValidateNmtokenValue</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-void   <a href="#xmlDumpElementTable">xmlDumpElementTable</a>          (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> table);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a>  (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-void   <a href="#xmlDumpElementDecl">xmlDumpElementDecl</a>            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem);
+void   <a href="#xmlFreeDocElementContent">xmlFreeDocElementContent</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur);
 void   <a href="#xmlFreeElementContent">xmlFreeElementContent</a>              (<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur);
-int    <a href="#xmlValidateOneNamespace">xmlValidateOneNamespace</a>          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-int    <a href="#xmlValidatePushElement">xmlValidatePushElement</a>            (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * qname);
-int    <a href="#xmlIsRef">xmlIsRef</a>                        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
-<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlCopyDocElementContent">xmlCopyDocElementContent</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur);
-<a href="libxml2-tree.html#xmlIDPtr">xmlIDPtr</a>      <a href="#xmlAddID">xmlAddID</a>                (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
-void   <a href="#xmlFreeRefTable">xmlFreeRefTable</a>                  (<a href="libxml2-valid.html#xmlRefTablePtr">xmlRefTablePtr</a> table);
-int    <a href="#xmlValidateNamesValue">xmlValidateNamesValue</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-int    <a href="#xmlRemoveID">xmlRemoveID</a>                  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
 void   <a href="#xmlFreeElementTable">xmlFreeElementTable</a>          (<a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> table);
+void   <a href="#xmlFreeEnumeration">xmlFreeEnumeration</a>            (<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> cur);
 void   <a href="#xmlFreeIDTable">xmlFreeIDTable</a>                    (<a href="libxml2-valid.html#xmlIDTablePtr">xmlIDTablePtr</a> table);
+void   <a href="#xmlFreeNotationTable">xmlFreeNotationTable</a>                (<a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table);
+void   <a href="#xmlFreeRefTable">xmlFreeRefTable</a>                  (<a href="libxml2-valid.html#xmlRefTablePtr">xmlRefTablePtr</a> table);
 void   <a href="#xmlFreeValidCtxt">xmlFreeValidCtxt</a>                (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> cur);
-<a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a>     <a href="#xmlCopyAttributeTable">xmlCopyAttributeTable</a>      (<a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> table);
-<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlCopyElementContent">xmlCopyElementContent</a>      (<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur);
-int    <a href="#xmlValidateAttributeValue">xmlValidateAttributeValue</a>      (<a href="libxml2-tree.html#xmlAttributeType">xmlAttributeType</a> type, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-int    <a href="#xmlRemoveRef">xmlRemoveRef</a>                        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
-typedef void <a href="#xmlValidityWarningFunc">xmlValidityWarningFunc</a>              (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-int    <a href="#xmlValidatePopElement">xmlValidatePopElement</a>              (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * qname);
-void   <a href="#xmlFreeEnumeration">xmlFreeEnumeration</a>            (<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> cur);
-<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>    <a href="#xmlCopyEnumeration">xmlCopyEnumeration</a>    (<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> cur);
-<a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>        <a href="#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a>      (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlValidateDtd">xmlValidateDtd</a>                    (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd);
+<a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>        <a href="#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a>      (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>    <a href="#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a>        (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a>  <a href="#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a>      (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>        <a href="#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a>    (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
+<a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>    <a href="#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a>      (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
+<a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>  <a href="#xmlGetID">xmlGetID</a>                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID);
+<a href="libxml2-list.html#xmlListPtr">xmlListPtr</a>  <a href="#xmlGetRefs">xmlGetRefs</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID);
+int    <a href="#xmlIsID">xmlIsID</a>                  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
+int    <a href="#xmlIsMixedElement">xmlIsMixedElement</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlIsRef">xmlIsRef</a>                        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
+<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlNewDocElementContent">xmlNewDocElementContent</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 <a href="libxml2-tree.html#xmlElementContentType">xmlElementContentType</a> type);
+<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlNewElementContent">xmlNewElementContent</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 <a href="libxml2-tree.html#xmlElementContentType">xmlElementContentType</a> type);
 <a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a>       <a href="#xmlNewValidCtxt">xmlNewValidCtxt</a>          (void);
-void   <a href="#xmlDumpNotationTable">xmlDumpNotationTable</a>                (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table);
-<a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>    <a href="#xmlAddElementDecl">xmlAddElementDecl</a>      (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-tree.html#xmlElementTypeVal">xmlElementTypeVal</a> type, <br/>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-int    <a href="#xmlValidBuildContentModel">xmlValidBuildContentModel</a>      (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem);
-int    <a href="#xmlValidateElement">xmlValidateElement</a>            (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
-int    <a href="#xmlValidateNotationUse">xmlValidateNotationUse</a>            (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName);
-int    <a href="#xmlValidateRoot">xmlValidateRoot</a>                  (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-int    <a href="#xmlValidateNotationDecl">xmlValidateNotationDecl</a>          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a> nota);
-<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>      <a href="#xmlNewElementContent">xmlNewElementContent</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                <a href="libxml2-tree.html#xmlElementContentType">xmlElementContentType</a> type);
-<a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>    <a href="#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a>        (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-<a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a>  <a href="#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a>      (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlValidatePushCData">xmlValidatePushCData</a>                (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data, <br/>                                        int len);
+int    <a href="#xmlRemoveID">xmlRemoveID</a>                  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
+int    <a href="#xmlRemoveRef">xmlRemoveRef</a>                        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr);
+void   <a href="#xmlSnprintfElementContent">xmlSnprintfElementContent</a>      (char * buf, <br>                                        int size, <br>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content, <br>                                         int englob);
+void   <a href="#xmlSprintfElementContent">xmlSprintfElementContent</a>        (char * buf, <br>                                        <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content, <br>                                         int englob);
+int    <a href="#xmlValidBuildContentModel">xmlValidBuildContentModel</a>      (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a>  (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+int    <a href="#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a>        (<a href="libxml2-tree.html#xmlElementContent">xmlElementContent</a> * ctree, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** names, <br>                                       int * len, <br>                                         int max);
+int    <a href="#xmlValidGetValidElements">xmlValidGetValidElements</a>        (<a href="libxml2-tree.html#xmlNode">xmlNode</a> * prev, <br>                                    <a href="libxml2-tree.html#xmlNode">xmlNode</a> * next, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** names, <br>                                       int max);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+int    <a href="#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a>        (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> attr);
+int    <a href="#xmlValidateAttributeValue">xmlValidateAttributeValue</a>      (<a href="libxml2-tree.html#xmlAttributeType">xmlAttributeType</a> type, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+int    <a href="#xmlValidateDocument">xmlValidateDocument</a>          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+int    <a href="#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a>        (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+int    <a href="#xmlValidateDtd">xmlValidateDtd</a>                    (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd);
+int    <a href="#xmlValidateDtdFinal">xmlValidateDtdFinal</a>          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+int    <a href="#xmlValidateElement">xmlValidateElement</a>            (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
+int    <a href="#xmlValidateElementDecl">xmlValidateElementDecl</a>            (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem);
+int    <a href="#xmlValidateNameValue">xmlValidateNameValue</a>                (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+int    <a href="#xmlValidateNamesValue">xmlValidateNamesValue</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+int    <a href="#xmlValidateNmtokenValue">xmlValidateNmtokenValue</a>          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
 int    <a href="#xmlValidateNmtokensValue">xmlValidateNmtokensValue</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-void   <a href="#xmlFreeDocElementContent">xmlFreeDocElementContent</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="XML_VCTXT_DTD_VALIDATED">Macro </a>XML_VCTXT_DTD_VALIDATED</h3><pre class="programlisting">#define <a href="#XML_VCTXT_DTD_VALIDATED">XML_VCTXT_DTD_VALIDATED</a>;
-</pre><p>Set after <a href="libxml2-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a> was called.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_VCTXT_USE_PCTXT">Macro </a>XML_VCTXT_USE_PCTXT</h3><pre class="programlisting">#define <a href="#XML_VCTXT_USE_PCTXT">XML_VCTXT_USE_PCTXT</a>;
-</pre><p>Set if the validation context is part of a parser context.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAttributeTable">Structure </a>xmlAttributeTable</h3><pre class="programlisting">struct _xmlHashTable {
+int    <a href="#xmlValidateNotationDecl">xmlValidateNotationDecl</a>          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a> nota);
+int    <a href="#xmlValidateNotationUse">xmlValidateNotationUse</a>            (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName);
+int    <a href="#xmlValidateOneAttribute">xmlValidateOneAttribute</a>          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+int    <a href="#xmlValidateOneElement">xmlValidateOneElement</a>              (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
+int    <a href="#xmlValidateOneNamespace">xmlValidateOneNamespace</a>          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+int    <a href="#xmlValidatePopElement">xmlValidatePopElement</a>              (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * qname);
+int    <a href="#xmlValidatePushCData">xmlValidatePushCData</a>                (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data, <br>                                         int len);
+int    <a href="#xmlValidatePushElement">xmlValidatePushElement</a>            (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * qname);
+int    <a href="#xmlValidateRoot">xmlValidateRoot</a>                  (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+typedef void <a href="#xmlValidityErrorFunc">xmlValidityErrorFunc</a>          (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+typedef void <a href="#xmlValidityWarningFunc">xmlValidityWarningFunc</a>              (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_VCTXT_DTD_VALIDATED">Macro </a>XML_VCTXT_DTD_VALIDATED</h3>
+<pre class="programlisting">#define <a href="#XML_VCTXT_DTD_VALIDATED">XML_VCTXT_DTD_VALIDATED</a>;
+</pre>
+<p>Set after <a href="libxml2-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a> was called.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_VCTXT_USE_PCTXT">Macro </a>XML_VCTXT_USE_PCTXT</h3>
+<pre class="programlisting">#define <a href="#XML_VCTXT_USE_PCTXT">XML_VCTXT_USE_PCTXT</a>;
+</pre>
+<p>Set if the validation context is part of a parser context.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAttributeTable">Structure </a>xmlAttributeTable</h3>
+<pre class="programlisting">struct _xmlHashTable {
 The content of this structure is not made public by the API.
 } xmlAttributeTable;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAttributeTablePtr">Typedef </a>xmlAttributeTablePtr</h3><pre class="programlisting"><a href="libxml2-valid.html#xmlAttributeTable">xmlAttributeTable</a> * xmlAttributeTablePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAttributeTablePtr">Typedef </a>xmlAttributeTablePtr</h3>
+<pre class="programlisting"><a href="libxml2-valid.html#xmlAttributeTable">xmlAttributeTable</a> * xmlAttributeTablePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlElementTable">Structure </a>xmlElementTable</h3><pre class="programlisting">struct _xmlHashTable {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlElementTable">Structure </a>xmlElementTable</h3>
+<pre class="programlisting">struct _xmlHashTable {
 The content of this structure is not made public by the API.
 } xmlElementTable;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlElementTablePtr">Typedef </a>xmlElementTablePtr</h3><pre class="programlisting"><a href="libxml2-valid.html#xmlElementTable">xmlElementTable</a> * xmlElementTablePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlElementTablePtr">Typedef </a>xmlElementTablePtr</h3>
+<pre class="programlisting"><a href="libxml2-valid.html#xmlElementTable">xmlElementTable</a> * xmlElementTablePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIDTable">Structure </a>xmlIDTable</h3><pre class="programlisting">struct _xmlHashTable {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIDTable">Structure </a>xmlIDTable</h3>
+<pre class="programlisting">struct _xmlHashTable {
 The content of this structure is not made public by the API.
 } xmlIDTable;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIDTablePtr">Typedef </a>xmlIDTablePtr</h3><pre class="programlisting"><a href="libxml2-valid.html#xmlIDTable">xmlIDTable</a> * xmlIDTablePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIDTablePtr">Typedef </a>xmlIDTablePtr</h3>
+<pre class="programlisting"><a href="libxml2-valid.html#xmlIDTable">xmlIDTable</a> * xmlIDTablePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNotationTable">Structure </a>xmlNotationTable</h3><pre class="programlisting">struct _xmlHashTable {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNotationTable">Structure </a>xmlNotationTable</h3>
+<pre class="programlisting">struct _xmlHashTable {
 The content of this structure is not made public by the API.
 } xmlNotationTable;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNotationTablePtr">Typedef </a>xmlNotationTablePtr</h3><pre class="programlisting"><a href="libxml2-valid.html#xmlNotationTable">xmlNotationTable</a> * xmlNotationTablePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNotationTablePtr">Typedef </a>xmlNotationTablePtr</h3>
+<pre class="programlisting"><a href="libxml2-valid.html#xmlNotationTable">xmlNotationTable</a> * xmlNotationTablePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRefTable">Structure </a>xmlRefTable</h3><pre class="programlisting">struct _xmlHashTable {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRefTable">Structure </a>xmlRefTable</h3>
+<pre class="programlisting">struct _xmlHashTable {
 The content of this structure is not made public by the API.
 } xmlRefTable;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRefTablePtr">Typedef </a>xmlRefTablePtr</h3><pre class="programlisting"><a href="libxml2-valid.html#xmlRefTable">xmlRefTable</a> * xmlRefTablePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRefTablePtr">Typedef </a>xmlRefTablePtr</h3>
+<pre class="programlisting"><a href="libxml2-valid.html#xmlRefTable">xmlRefTable</a> * xmlRefTablePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidCtxt">Structure </a>xmlValidCtxt</h3><pre class="programlisting">struct _xmlValidCtxt {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidCtxt">Structure </a>xmlValidCtxt</h3>
+<pre class="programlisting">struct _xmlValidCtxt {
     void *     userData        : user specific data block
     <a href="libxml2-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a> error   : the callback in case of errors
     <a href="libxml2-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a>     warning : the callback in case of warning Node analysis stack used when validat
@@ -217,312 +245,1899 @@ The content of this structure is not made public by the API.
     void *     am
     void *     state
 } xmlValidCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidCtxtPtr">Typedef </a>xmlValidCtxtPtr</h3><pre class="programlisting"><a href="libxml2-valid.html#xmlValidCtxt">xmlValidCtxt</a> * xmlValidCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidCtxtPtr">Typedef </a>xmlValidCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-valid.html#xmlValidCtxt">xmlValidCtxt</a> * xmlValidCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidState">Structure </a>xmlValidState</h3><pre class="programlisting">struct _xmlValidState {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidState">Structure </a>xmlValidState</h3>
+<pre class="programlisting">struct _xmlValidState {
 The content of this structure is not made public by the API.
 } xmlValidState;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidStatePtr">Typedef </a>xmlValidStatePtr</h3><pre class="programlisting"><a href="libxml2-valid.html#xmlValidState">xmlValidState</a> * xmlValidStatePtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidityErrorFunc"/>Function type xmlValidityErrorFunc</h3><pre class="programlisting">void    xmlValidityErrorFunc            (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Callback called when a validity error is found. This is a message oriented function similar to an *printf function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>usually an <a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> to a validity error context, but comes from ctxt-&gt;userData (which normally contains such a pointer); ctxt-&gt;userData can be changed by the user.</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the string to format *printf like vararg</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>remaining arguments to the format</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidityWarningFunc"/>Function type xmlValidityWarningFunc</h3><pre class="programlisting">void        xmlValidityWarningFunc          (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Callback called when a validity warning is found. This is a message oriented function similar to an *printf function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>usually an <a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> to a validity error context, but comes from ctxt-&gt;userData (which normally contains such a pointer); ctxt-&gt;userData can be changed by the user.</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the string to format *printf like vararg</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>remaining arguments to the format</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddAttributeDecl"/>xmlAddAttributeDecl ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>      xmlAddAttributeDecl     (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns, <br/>                                  <a href="libxml2-tree.html#xmlAttributeType">xmlAttributeType</a> type, <br/>                                   <a href="libxml2-tree.html#xmlAttributeDefault">xmlAttributeDefault</a> def, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br/>                                        <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree)<br/>
-</pre><p>Register a new <a href="libxml2-SAX.html#attribute">attribute</a> declaration Note that @tree becomes the ownership of the DTD</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>pointer to the DTD</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the element name</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> namespace prefix</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> type</td></tr><tr><td><span class="term"><i><tt>def</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> default type</td></tr><tr><td><span class="term"><i><tt>defaultValue</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> default value</td></tr><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>if it's an enumeration, the associated list</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not new, otherwise the <a href="libxml2-SAX.html#attribute">attribute</a> decl</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddElementDecl"/>xmlAddElementDecl ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>      xmlAddElementDecl       (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-tree.html#xmlElementTypeVal">xmlElementTypeVal</a> type, <br/>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content)<br/>
-</pre><p>Register a new element declaration</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>pointer to the DTD</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the element type</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the element content tree or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not, otherwise the entity</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddID"/>xmlAddID ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlIDPtr">xmlIDPtr</a>  xmlAddID                (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br/>
-</pre><p>Register a new id declaration</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>pointer to the document</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value name</td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> holding the ID</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not, otherwise the new <a href="libxml2-tree.html#xmlIDPtr">xmlIDPtr</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddNotationDecl"/>xmlAddNotationDecl ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a>  xmlAddNotationDecl      (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * PublicID, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br/>
-</pre><p>Register a new notation declaration</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>pointer to the DTD</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the entity name</td></tr><tr><td><span class="term"><i><tt>PublicID</tt></i>:</span></td><td>the public identifier or NULL</td></tr><tr><td><span class="term"><i><tt>SystemID</tt></i>:</span></td><td>the system identifier or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not, otherwise the entity</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAddRef"/>xmlAddRef ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlRefPtr">xmlRefPtr</a>      xmlAddRef               (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br/>
-</pre><p>DEPRECATED, do not use. This function will be removed from the public API. Register a new ref declaration</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>pointer to the document</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value name</td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> holding the Ref</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not, otherwise the new <a href="libxml2-tree.html#xmlRefPtr">xmlRefPtr</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyAttributeTable"/>xmlCopyAttributeTable ()</h3><pre class="programlisting"><a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a>       xmlCopyAttributeTable   (<a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> table)<br/>
-</pre><p>Build a copy of an <a href="libxml2-SAX.html#attribute">attribute</a> table.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An <a href="libxml2-SAX.html#attribute">attribute</a> table</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyDocElementContent"/>xmlCopyDocElementContent ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>  xmlCopyDocElementContent        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur)<br/>
-</pre><p>Build a copy of an element content description.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document owning the element declaration</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>An element content pointer.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyElementContent"/>xmlCopyElementContent ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>        xmlCopyElementContent   (<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur)<br/>
-</pre><p>Build a copy of an element content description. Deprecated, use <a href="libxml2-valid.html#xmlCopyDocElementContent">xmlCopyDocElementContent</a> instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>An element content pointer.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyElementTable"/>xmlCopyElementTable ()</h3><pre class="programlisting"><a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a>       xmlCopyElementTable     (<a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> table)<br/>
-</pre><p>Build a copy of an element table.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An element table</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyEnumeration"/>xmlCopyEnumeration ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>    xmlCopyEnumeration      (<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> cur)<br/>
-</pre><p>Copy an enumeration <a href="libxml2-SAX.html#attribute">attribute</a> node (recursive).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the tree to copy.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> just created or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyNotationTable"/>xmlCopyNotationTable ()</h3><pre class="programlisting"><a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a>   xmlCopyNotationTable    (<a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table)<br/>
-</pre><p>Build a copy of a notation table.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>A notation table</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCreateEnumeration"/>xmlCreateEnumeration ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>        xmlCreateEnumeration    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>create and initialize an enumeration <a href="libxml2-SAX.html#attribute">attribute</a> node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the enumeration name or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> just created or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDumpAttributeDecl"/>xmlDumpAttributeDecl ()</h3><pre class="programlisting">void       xmlDumpAttributeDecl            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> attr)<br/>
-</pre><p>This will dump the content of the <a href="libxml2-SAX.html#attribute">attribute</a> declaration as an XML DTD definition</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>An <a href="libxml2-SAX.html#attribute">attribute</a> declaration</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDumpAttributeTable"/>xmlDumpAttributeTable ()</h3><pre class="programlisting">void     xmlDumpAttributeTable           (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> table)<br/>
-</pre><p>This will dump the content of the <a href="libxml2-SAX.html#attribute">attribute</a> table as an XML DTD definition</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An <a href="libxml2-SAX.html#attribute">attribute</a> table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDumpElementDecl"/>xmlDumpElementDecl ()</h3><pre class="programlisting">void   xmlDumpElementDecl              (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem)<br/>
-</pre><p>This will dump the content of the element declaration as an XML DTD definition</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>An element table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDumpElementTable"/>xmlDumpElementTable ()</h3><pre class="programlisting">void xmlDumpElementTable             (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> table)<br/>
-</pre><p>This will dump the content of the element table as an XML DTD definition</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An element table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDumpNotationDecl"/>xmlDumpNotationDecl ()</h3><pre class="programlisting">void xmlDumpNotationDecl             (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a> nota)<br/>
-</pre><p>This will dump the content the notation declaration as an XML DTD definition</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>nota</tt></i>:</span></td><td>A notation declaration</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlDumpNotationTable"/>xmlDumpNotationTable ()</h3><pre class="programlisting">void       xmlDumpNotationTable            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table)<br/>
-</pre><p>This will dump the content of the notation table as an XML DTD definition</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the XML buffer output</td></tr><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>A notation table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeAttributeTable"/>xmlFreeAttributeTable ()</h3><pre class="programlisting">void     xmlFreeAttributeTable           (<a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> table)<br/>
-</pre><p>Deallocate the memory used by an entities hash table.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An <a href="libxml2-SAX.html#attribute">attribute</a> table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeDocElementContent"/>xmlFreeDocElementContent ()</h3><pre class="programlisting">void       xmlFreeDocElementContent        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur)<br/>
-</pre><p>Free an element content structure. The whole subtree is removed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document owning the element declaration</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the element content tree to free</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeElementContent"/>xmlFreeElementContent ()</h3><pre class="programlisting">void     xmlFreeElementContent           (<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur)<br/>
-</pre><p>Free an element content structure. The whole subtree is removed. Deprecated, use <a href="libxml2-valid.html#xmlFreeDocElementContent">xmlFreeDocElementContent</a> instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the element content tree to free</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeElementTable"/>xmlFreeElementTable ()</h3><pre class="programlisting">void xmlFreeElementTable             (<a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> table)<br/>
-</pre><p>Deallocate the memory used by an element hash table.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An element table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeEnumeration"/>xmlFreeEnumeration ()</h3><pre class="programlisting">void   xmlFreeEnumeration              (<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> cur)<br/>
-</pre><p>free an enumeration <a href="libxml2-SAX.html#attribute">attribute</a> node (recursive).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the tree to free.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeIDTable"/>xmlFreeIDTable ()</h3><pre class="programlisting">void   xmlFreeIDTable                  (<a href="libxml2-valid.html#xmlIDTablePtr">xmlIDTablePtr</a> table)<br/>
-</pre><p>Deallocate the memory used by an ID hash table.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An id table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeNotationTable"/>xmlFreeNotationTable ()</h3><pre class="programlisting">void       xmlFreeNotationTable            (<a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table)<br/>
-</pre><p>Deallocate the memory used by an entities hash table.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An notation table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeRefTable"/>xmlFreeRefTable ()</h3><pre class="programlisting">void xmlFreeRefTable                 (<a href="libxml2-valid.html#xmlRefTablePtr">xmlRefTablePtr</a> table)<br/>
-</pre><p>DEPRECATED, do not use. This function will be removed from the public API. Deallocate the memory used by an Ref hash table.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>table</tt></i>:</span></td><td>An ref table</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeValidCtxt"/>xmlFreeValidCtxt ()</h3><pre class="programlisting">void       xmlFreeValidCtxt                (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> cur)<br/>
-</pre><p>Free a validation context structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the validation context to free</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetDtdAttrDesc"/>xmlGetDtdAttrDesc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>  xmlGetDtdAttrDesc       (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Search the DTD for the description of this <a href="libxml2-SAX.html#attribute">attribute</a> on this element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>a pointer to the DtD to search</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the element name</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> if found or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetDtdElementDesc"/>xmlGetDtdElementDesc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>        xmlGetDtdElementDesc    (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Search the DTD for the description of this element</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>a pointer to the DtD to search</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the element name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> if found or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetDtdNotationDesc"/>xmlGetDtdNotationDesc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a>    xmlGetDtdNotationDesc   (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Search the DTD for the description of this notation</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>a pointer to the DtD to search</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the notation name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a> if found or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetDtdQAttrDesc"/>xmlGetDtdQAttrDesc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>        xmlGetDtdQAttrDesc      (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br/>
-</pre><p>Search the DTD for the description of this qualified <a href="libxml2-SAX.html#attribute">attribute</a> on this element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>a pointer to the DtD to search</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the element name</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> namespace prefix</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> if found or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetDtdQElementDesc"/>xmlGetDtdQElementDesc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>      xmlGetDtdQElementDesc   (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br/>
-</pre><p>Search the DTD for the description of this element</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>a pointer to the DtD to search</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the element name</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the element namespace prefix</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> if found or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetID"/>xmlGetID ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlGetID                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID)<br/>
-</pre><p>Search the <a href="libxml2-SAX.html#attribute">attribute</a> declaring the given ID</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>pointer to the document</td></tr><tr><td><span class="term"><i><tt>ID</tt></i>:</span></td><td>the ID value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not found, otherwise the <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> defining the ID</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetRefs"/>xmlGetRefs ()</h3><pre class="programlisting"><a href="libxml2-list.html#xmlListPtr">xmlListPtr</a>  xmlGetRefs              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID)<br/>
-</pre><p>DEPRECATED, do not use. This function will be removed from the public API. Find the set of references for the supplied ID.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>pointer to the document</td></tr><tr><td><span class="term"><i><tt>ID</tt></i>:</span></td><td>the ID value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not found, otherwise node set for the ID.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsID"/>xmlIsID ()</h3><pre class="programlisting">int  xmlIsID                 (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br/>
-</pre><p>Determine whether an <a href="libxml2-SAX.html#attribute">attribute</a> is of type ID. In case we have DTD(s) then this is done if DTD loading has been requested. In the case of HTML documents parsed with the HTML parser, then ID detection is done systematically.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the element carrying the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or 1 depending on the lookup result</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsMixedElement"/>xmlIsMixedElement ()</h3><pre class="programlisting">int      xmlIsMixedElement               (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Search in the DtDs whether an element accept Mixed content (or ANY) basically if it is supposed to accept text childs</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the element name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if no, 1 if yes, and -1 if no element description is available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIsRef"/>xmlIsRef ()</h3><pre class="programlisting">int        xmlIsRef                        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br/>
-</pre><p>DEPRECATED, do not use. This function will be removed from the public API. Determine whether an <a href="libxml2-SAX.html#attribute">attribute</a> is of type Ref. In case we have DTD(s) then this is simple, otherwise we use an heuristic: name Ref (upper or lowercase).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the element carrying the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or 1 depending on the lookup result</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewDocElementContent"/>xmlNewDocElementContent ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>    xmlNewDocElementContent (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                <a href="libxml2-tree.html#xmlElementContentType">xmlElementContentType</a> type)<br/>
-</pre><p>Allocate an element content structure for the document.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the subelement name or NULL</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the type of element content decl</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not, otherwise the new element content structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewElementContent"/>xmlNewElementContent ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>  xmlNewElementContent    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                <a href="libxml2-tree.html#xmlElementContentType">xmlElementContentType</a> type)<br/>
-</pre><p>Allocate an element content structure. Deprecated in favor of <a href="libxml2-valid.html#xmlNewDocElementContent">xmlNewDocElementContent</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the subelement name or NULL</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the type of element content decl</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not, otherwise the new element content structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewValidCtxt"/>xmlNewValidCtxt ()</h3><pre class="programlisting"><a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a>     xmlNewValidCtxt         (void)<br/>
-</pre><p>Allocate a validation context structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if not, otherwise the new validation context structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRemoveID"/>xmlRemoveID ()</h3><pre class="programlisting">int  xmlRemoveID                     (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br/>
-</pre><p>Remove the given <a href="libxml2-SAX.html#attribute">attribute</a> from the ID table maintained internally.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 if the lookup failed and 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRemoveRef"/>xmlRemoveRef ()</h3><pre class="programlisting">int        xmlRemoveRef                    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br/>
-</pre><p>DEPRECATED, do not use. This function will be removed from the public API. Remove the given <a href="libxml2-SAX.html#attribute">attribute</a> from the Ref table maintained internally.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 if the lookup failed and 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSnprintfElementContent"/>xmlSnprintfElementContent ()</h3><pre class="programlisting">void     xmlSnprintfElementContent       (char * buf, <br/>                                       int size, <br/>                                         <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content, <br/>                                        int englob)<br/>
-</pre><p>This will dump the content of the element content definition Intended just for the debug routine</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>an output buffer</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the buffer size</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>An element table</td></tr><tr><td><span class="term"><i><tt>englob</tt></i>:</span></td><td>1 if one must print the englobing parenthesis, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSprintfElementContent"/>xmlSprintfElementContent ()</h3><pre class="programlisting">void       xmlSprintfElementContent        (char * buf, <br/>                                       <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content, <br/>                                        int englob)<br/>
-</pre><p>Deprecated, unsafe, use <a href="libxml2-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>an output buffer</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>An element table</td></tr><tr><td><span class="term"><i><tt>englob</tt></i>:</span></td><td>1 if one must print the englobing parenthesis, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidBuildContentModel"/>xmlValidBuildContentModel ()</h3><pre class="programlisting">int      xmlValidBuildContentModel       (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem)<br/>
-</pre><p>(Re)Build the automata associated to the content model of this element</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a validation context</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element declaration node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 in case of success, 0 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidCtxtNormalizeAttributeValue"/>xmlValidCtxtNormalizeAttributeValue ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlValidCtxtNormalizeAttributeValue     (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Does the validation related extra step of the normalization of <a href="libxml2-SAX.html#attribute">attribute</a> values: If the declared value is not CDATA, then the XML processor must further process the normalized <a href="libxml2-SAX.html#attribute">attribute</a> value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) <a href="libxml2-SAX.html#characters">characters</a> by single space (#x20) character. Also check VC: Standalone Document Declaration in P32, and update ctxt-&gt;valid accordingly</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context or NULL</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the parent</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new normalized string if normalization is needed, NULL otherwise the caller must free the returned value.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidGetPotentialChildren"/>xmlValidGetPotentialChildren ()</h3><pre class="programlisting">int        xmlValidGetPotentialChildren    (<a href="libxml2-tree.html#xmlElementContent">xmlElementContent</a> * ctree, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** names, <br/>                                      int * len, <br/>                                        int max)<br/>
-</pre><p>Build/extend a list of potential children allowed by the content tree</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctree</tt></i>:</span></td><td>an element content tree</td></tr><tr><td><span class="term"><i><tt>names</tt></i>:</span></td><td>an array to store the list of child names</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>a pointer to the number of element in the list</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of element in the list, or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidGetValidElements"/>xmlValidGetValidElements ()</h3><pre class="programlisting">int        xmlValidGetValidElements        (<a href="libxml2-tree.html#xmlNode">xmlNode</a> * prev, <br/>                                   <a href="libxml2-tree.html#xmlNode">xmlNode</a> * next, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** names, <br/>                                      int max)<br/>
-</pre><p>This function returns the list of authorized children to insert within an existing tree while respecting the validity constraints forced by the Dtd. The insertion point is defined using @prev and @next in the following ways: to insert before 'node': xmlValidGetValidElements(node-&gt;prev, node, ... to insert next 'node': xmlValidGetValidElements(node, node-&gt;next, ... to replace 'node': xmlValidGetValidElements(node-&gt;prev, node-&gt;next, ... to prepend a child to 'node': xmlValidGetValidElements(NULL, node-&gt;childs, to append a child to 'node': xmlValidGetValidElements(node-&gt;last, NULL, ... pointers to the element names are inserted at the beginning of the array and do not need to be freed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>prev</tt></i>:</span></td><td>an element to insert after</td></tr><tr><td><span class="term"><i><tt>next</tt></i>:</span></td><td>an element to insert next</td></tr><tr><td><span class="term"><i><tt>names</tt></i>:</span></td><td>an array to store the list of child names</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of element in the list, or -1 in case of error. If the function returns the value @max the caller is invited to grow the receiving array and retry.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidNormalizeAttributeValue"/>xmlValidNormalizeAttributeValue ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlValidNormalizeAttributeValue (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Does the validation related extra step of the normalization of <a href="libxml2-SAX.html#attribute">attribute</a> values: If the declared value is not CDATA, then the XML processor must further process the normalized <a href="libxml2-SAX.html#attribute">attribute</a> value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) <a href="libxml2-SAX.html#characters">characters</a> by single space (#x20) character.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>the parent</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new normalized string if normalization is needed, NULL otherwise the caller must free the returned value.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateAttributeDecl"/>xmlValidateAttributeDecl ()</h3><pre class="programlisting">int        xmlValidateAttributeDecl        (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> attr)<br/>
-</pre><p>Try to validate a single <a href="libxml2-SAX.html#attribute">attribute</a> definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Default Legal ] - [ VC: Enumeration ] - [ VC: ID Attribute Default ] The ID/IDREF uniqueness and matching are done separately</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>an <a href="libxml2-SAX.html#attribute">attribute</a> definition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateAttributeValue"/>xmlValidateAttributeValue ()</h3><pre class="programlisting">int      xmlValidateAttributeValue       (<a href="libxml2-tree.html#xmlAttributeType">xmlAttributeType</a> type, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Validate that the given <a href="libxml2-SAX.html#attribute">attribute</a> value match the proper production [ VC: ID ] Values of type ID must match the Name production.... [ VC: IDREF ] Values of type IDREF must match the Name production, and values of type IDREFS must match Names ... [ VC: Entity Name ] Values of type ENTITY must match the Name production, values of type ENTITIES must match Names ... [ VC: Name Token ] Values of type NMTOKEN must match the Nmtoken production; values of type NMTOKENS must match Nmtokens.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>an <a href="libxml2-SAX.html#attribute">attribute</a> type</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>an <a href="libxml2-SAX.html#attribute">attribute</a> value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateDocument"/>xmlValidateDocument ()</h3><pre class="programlisting">int  xmlValidateDocument             (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Try to validate the document instance basically it does the all the checks described by the XML Rec i.e. validates the internal and external subset (if present) and validate the document tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateDocumentFinal"/>xmlValidateDocumentFinal ()</h3><pre class="programlisting">int        xmlValidateDocumentFinal        (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Does the final step for the document validation once all the incremental validation steps have been completed basically it does the following checks described by the XML Rec Check all the IDREF/IDREFS attributes definition for validity</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateDtd"/>xmlValidateDtd ()</h3><pre class="programlisting">int    xmlValidateDtd                  (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd)<br/>
-</pre><p>Try to validate the document against the dtd instance Basically it does check all the definitions in the DtD. Note the the internal subset (if present) is de-coupled (i.e. not used), which could give problems if ID or IDREF is present.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>dtd</tt></i>:</span></td><td>a dtd instance</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateDtdFinal"/>xmlValidateDtdFinal ()</h3><pre class="programlisting">int  xmlValidateDtdFinal             (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Does the final step for the dtds validation once all the subsets have been parsed basically it does the following checks described by the XML Rec - check that ENTITY and ENTITIES type attributes default or possible values matches one of the defined entities. - check that NOTATION type attributes default or possible values matches one of the defined notations.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 if invalid and -1 if not well-formed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateElement"/>xmlValidateElement ()</h3><pre class="programlisting">int    xmlValidateElement              (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br/>
-</pre><p>Try to validate the subtree under an element</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element instance</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateElementDecl"/>xmlValidateElementDecl ()</h3><pre class="programlisting">int    xmlValidateElementDecl          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem)<br/>
-</pre><p>Try to validate a single element definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: One ID per Element Type ] - [ VC: No Duplicate Types ] - [ VC: Unique Element Type Declaration ]</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element definition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateNameValue"/>xmlValidateNameValue ()</h3><pre class="programlisting">int        xmlValidateNameValue            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Validate that the given value match Name production</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>an Name value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateNamesValue"/>xmlValidateNamesValue ()</h3><pre class="programlisting">int      xmlValidateNamesValue           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Validate that the given value match Names production</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>an Names value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateNmtokenValue"/>xmlValidateNmtokenValue ()</h3><pre class="programlisting">int  xmlValidateNmtokenValue         (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Validate that the given value match Nmtoken production [ VC: Name Token ]</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>an Nmtoken value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateNmtokensValue"/>xmlValidateNmtokensValue ()</h3><pre class="programlisting">int        xmlValidateNmtokensValue        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Validate that the given value match Nmtokens production [ VC: Name Token ]</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>an Nmtokens value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateNotationDecl"/>xmlValidateNotationDecl ()</h3><pre class="programlisting">int  xmlValidateNotationDecl         (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a> nota)<br/>
-</pre><p>Try to validate a single notation definition basically it does the following checks as described by the XML-1.0 recommendation: - it seems that no validity constraint exists on notation declarations But this function get called anyway ...</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>nota</tt></i>:</span></td><td>a notation definition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateNotationUse"/>xmlValidateNotationUse ()</h3><pre class="programlisting">int    xmlValidateNotationUse          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName)<br/>
-</pre><p>Validate that the given name match a notation declaration. - [ VC: Notation Declared ]</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document</td></tr><tr><td><span class="term"><i><tt>notationName</tt></i>:</span></td><td>the notation name to check</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateOneAttribute"/>xmlValidateOneAttribute ()</h3><pre class="programlisting">int  xmlValidateOneAttribute         (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Try to validate a single <a href="libxml2-SAX.html#attribute">attribute</a> for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element instance</td></tr><tr><td><span class="term"><i><tt>attr</tt></i>:</span></td><td>an <a href="libxml2-SAX.html#attribute">attribute</a> instance</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> value (without entities processing)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateOneElement"/>xmlValidateOneElement ()</h3><pre class="programlisting">int      xmlValidateOneElement           (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br/>
-</pre><p>Try to validate a single element and it's attributes, basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Element Valid ] - [ VC: Required Attribute ] Then call xmlValidateOneAttribute() for each <a href="libxml2-SAX.html#attribute">attribute</a> present. The ID/IDREF checkings are done separately</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element instance</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateOneNamespace"/>xmlValidateOneNamespace ()</h3><pre class="programlisting">int  xmlValidateOneNamespace         (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Try to validate a single namespace declaration for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element instance</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the namespace prefix</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>an namespace declaration instance</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the <a href="libxml2-SAX.html#attribute">attribute</a> value (without entities processing)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidatePopElement"/>xmlValidatePopElement ()</h3><pre class="programlisting">int      xmlValidatePopElement           (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * qname)<br/>
-</pre><p>Pop the element end from the validation stack.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element instance</td></tr><tr><td><span class="term"><i><tt>qname</tt></i>:</span></td><td>the qualified name as appearing in the serialization</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if no validation problem was found or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidatePushCData"/>xmlValidatePushCData ()</h3><pre class="programlisting">int        xmlValidatePushCData            (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data, <br/>                                        int len)<br/>
-</pre><p>check the CData parsed for validation in the current stack</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>some character data read</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length of the data</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if no validation problem was found or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidatePushElement"/>xmlValidatePushElement ()</h3><pre class="programlisting">int    xmlValidatePushElement          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * qname)<br/>
-</pre><p>Push a new element start on the validation stack.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element instance</td></tr><tr><td><span class="term"><i><tt>qname</tt></i>:</span></td><td>the qualified name as appearing in the serialization</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if no validation problem was found or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlValidateRoot"/>xmlValidateRoot ()</h3><pre class="programlisting">int  xmlValidateRoot                 (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Try to validate a the root element basically it does the following check as described by the XML-1.0 recommendation: - [ VC: Root Element Type ] it doesn't try to recurse or apply other check to the element</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document instance</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid or 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidStatePtr">Typedef </a>xmlValidStatePtr</h3>
+<pre class="programlisting"><a href="libxml2-valid.html#xmlValidState">xmlValidState</a> * xmlValidStatePtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidityErrorFunc"></a>Function type xmlValidityErrorFunc</h3>
+<pre class="programlisting">void       xmlValidityErrorFunc            (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Callback called when a validity error is found. This is a message oriented function similar to an *printf function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>usually an <a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> to a validity error context, but comes from ctxt-&gt;userData (which normally contains such a pointer); ctxt-&gt;userData can be changed by the user.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the string to format *printf like vararg</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>remaining arguments to the format</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidityWarningFunc"></a>Function type xmlValidityWarningFunc</h3>
+<pre class="programlisting">void       xmlValidityWarningFunc          (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Callback called when a validity warning is found. This is a message oriented function similar to an *printf function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>usually an <a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> to a validity error context, but comes from ctxt-&gt;userData (which normally contains such a pointer); ctxt-&gt;userData can be changed by the user.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the string to format *printf like vararg</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>remaining arguments to the format</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddAttributeDecl"></a>xmlAddAttributeDecl ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>    xmlAddAttributeDecl     (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns, <br>                                   <a href="libxml2-tree.html#xmlAttributeType">xmlAttributeType</a> type, <br>                                    <a href="libxml2-tree.html#xmlAttributeDefault">xmlAttributeDefault</a> def, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * defaultValue, <br>                                         <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> tree)<br>
+</pre>
+<p>Register a new <a href="libxml2-SAX.html#attribute">attribute</a> declaration Note that @tree becomes the ownership of the DTD</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>pointer to the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>def</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> default type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>defaultValue</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> default value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>if it's an enumeration, the associated list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not new, otherwise the <a href="libxml2-SAX.html#attribute">attribute</a> decl</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddElementDecl"></a>xmlAddElementDecl ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>        xmlAddElementDecl       (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-tree.html#xmlElementTypeVal">xmlElementTypeVal</a> type, <br>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content)<br>
+</pre>
+<p>Register a new element declaration</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>pointer to the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the element type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the element content tree or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not, otherwise the entity</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddID"></a>xmlAddID ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlIDPtr">xmlIDPtr</a>  xmlAddID                (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br>
+</pre>
+<p>Register a new id declaration</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>pointer to the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> holding the ID</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not, otherwise the new <a href="libxml2-tree.html#xmlIDPtr">xmlIDPtr</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddNotationDecl"></a>xmlAddNotationDecl ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a>      xmlAddNotationDecl      (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * PublicID, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * SystemID)<br>
+</pre>
+<p>Register a new notation declaration</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>pointer to the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the entity name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>PublicID</tt></i>:</span></td>
+<td>the public identifier or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>SystemID</tt></i>:</span></td>
+<td>the system identifier or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not, otherwise the entity</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAddRef"></a>xmlAddRef ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlRefPtr">xmlRefPtr</a>        xmlAddRef               (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br>
+</pre>
+<p>DEPRECATED, do not use. This function will be removed from the public API. Register a new ref declaration</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>pointer to the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> holding the Ref</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not, otherwise the new <a href="libxml2-tree.html#xmlRefPtr">xmlRefPtr</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyAttributeTable"></a>xmlCopyAttributeTable ()</h3>
+<pre class="programlisting"><a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> xmlCopyAttributeTable   (<a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> table)<br>
+</pre>
+<p>Build a copy of an <a href="libxml2-SAX.html#attribute">attribute</a> table.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An <a href="libxml2-SAX.html#attribute">attribute</a> table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyDocElementContent"></a>xmlCopyDocElementContent ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>  xmlCopyDocElementContent        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                                   <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur)<br>
+</pre>
+<p>Build a copy of an element content description.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document owning the element declaration</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>An element content pointer.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyElementContent"></a>xmlCopyElementContent ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>  xmlCopyElementContent   (<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur)<br>
+</pre>
+<p>Build a copy of an element content description. Deprecated, use <a href="libxml2-valid.html#xmlCopyDocElementContent">xmlCopyDocElementContent</a> instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>An element content pointer.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyElementTable"></a>xmlCopyElementTable ()</h3>
+<pre class="programlisting"><a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a>     xmlCopyElementTable     (<a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> table)<br>
+</pre>
+<p>Build a copy of an element table.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An element table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyEnumeration"></a>xmlCopyEnumeration ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>        xmlCopyEnumeration      (<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> cur)<br>
+</pre>
+<p>Copy an enumeration <a href="libxml2-SAX.html#attribute">attribute</a> node (recursive).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the tree to copy.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> just created or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyNotationTable"></a>xmlCopyNotationTable ()</h3>
+<pre class="programlisting"><a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a>   xmlCopyNotationTable    (<a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table)<br>
+</pre>
+<p>Build a copy of a notation table.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>A notation table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCreateEnumeration"></a>xmlCreateEnumeration ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a>        xmlCreateEnumeration    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>create and initialize an enumeration <a href="libxml2-SAX.html#attribute">attribute</a> node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the enumeration name or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> just created or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDumpAttributeDecl"></a>xmlDumpAttributeDecl ()</h3>
+<pre class="programlisting">void       xmlDumpAttributeDecl            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> attr)<br>
+</pre>
+<p>This will dump the content of the <a href="libxml2-SAX.html#attribute">attribute</a> declaration as an XML DTD definition</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>An <a href="libxml2-SAX.html#attribute">attribute</a> declaration</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDumpAttributeTable"></a>xmlDumpAttributeTable ()</h3>
+<pre class="programlisting">void       xmlDumpAttributeTable           (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> table)<br>
+</pre>
+<p>This will dump the content of the <a href="libxml2-SAX.html#attribute">attribute</a> table as an XML DTD definition</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An <a href="libxml2-SAX.html#attribute">attribute</a> table</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDumpElementDecl"></a>xmlDumpElementDecl ()</h3>
+<pre class="programlisting">void       xmlDumpElementDecl              (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem)<br>
+</pre>
+<p>This will dump the content of the element declaration as an XML DTD definition</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>An element table</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDumpElementTable"></a>xmlDumpElementTable ()</h3>
+<pre class="programlisting">void       xmlDumpElementTable             (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> table)<br>
+</pre>
+<p>This will dump the content of the element table as an XML DTD definition</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An element table</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDumpNotationDecl"></a>xmlDumpNotationDecl ()</h3>
+<pre class="programlisting">void       xmlDumpNotationDecl             (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a> nota)<br>
+</pre>
+<p>This will dump the content the notation declaration as an XML DTD definition</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nota</tt></i>:</span></td>
+<td>A notation declaration</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlDumpNotationTable"></a>xmlDumpNotationTable ()</h3>
+<pre class="programlisting">void       xmlDumpNotationTable            (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table)<br>
+</pre>
+<p>This will dump the content of the notation table as an XML DTD definition</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the XML buffer output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>A notation table</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeAttributeTable"></a>xmlFreeAttributeTable ()</h3>
+<pre class="programlisting">void       xmlFreeAttributeTable           (<a href="libxml2-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a> table)<br>
+</pre>
+<p>Deallocate the memory used by an entities hash table.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An <a href="libxml2-SAX.html#attribute">attribute</a> table</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeDocElementContent"></a>xmlFreeDocElementContent ()</h3>
+<pre class="programlisting">void       xmlFreeDocElementContent        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur)<br>
+</pre>
+<p>Free an element content structure. The whole subtree is removed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document owning the element declaration</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the element content tree to free</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeElementContent"></a>xmlFreeElementContent ()</h3>
+<pre class="programlisting">void       xmlFreeElementContent           (<a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> cur)<br>
+</pre>
+<p>Free an element content structure. The whole subtree is removed. Deprecated, use <a href="libxml2-valid.html#xmlFreeDocElementContent">xmlFreeDocElementContent</a> instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the element content tree to free</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeElementTable"></a>xmlFreeElementTable ()</h3>
+<pre class="programlisting">void       xmlFreeElementTable             (<a href="libxml2-valid.html#xmlElementTablePtr">xmlElementTablePtr</a> table)<br>
+</pre>
+<p>Deallocate the memory used by an element hash table.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An element table</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeEnumeration"></a>xmlFreeEnumeration ()</h3>
+<pre class="programlisting">void       xmlFreeEnumeration              (<a href="libxml2-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> cur)<br>
+</pre>
+<p>free an enumeration <a href="libxml2-SAX.html#attribute">attribute</a> node (recursive).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the tree to free.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeIDTable"></a>xmlFreeIDTable ()</h3>
+<pre class="programlisting">void       xmlFreeIDTable                  (<a href="libxml2-valid.html#xmlIDTablePtr">xmlIDTablePtr</a> table)<br>
+</pre>
+<p>Deallocate the memory used by an ID hash table.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An id table</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeNotationTable"></a>xmlFreeNotationTable ()</h3>
+<pre class="programlisting">void       xmlFreeNotationTable            (<a href="libxml2-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a> table)<br>
+</pre>
+<p>Deallocate the memory used by an entities hash table.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An notation table</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeRefTable"></a>xmlFreeRefTable ()</h3>
+<pre class="programlisting">void       xmlFreeRefTable                 (<a href="libxml2-valid.html#xmlRefTablePtr">xmlRefTablePtr</a> table)<br>
+</pre>
+<p>DEPRECATED, do not use. This function will be removed from the public API. Deallocate the memory used by an Ref hash table.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>table</tt></i>:</span></td>
+<td>An ref table</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeValidCtxt"></a>xmlFreeValidCtxt ()</h3>
+<pre class="programlisting">void       xmlFreeValidCtxt                (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> cur)<br>
+</pre>
+<p>Free a validation context structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the validation context to free</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetDtdAttrDesc"></a>xmlGetDtdAttrDesc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>    xmlGetDtdAttrDesc       (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Search the DTD for the description of this <a href="libxml2-SAX.html#attribute">attribute</a> on this element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>a pointer to the DtD to search</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> if found or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetDtdElementDesc"></a>xmlGetDtdElementDesc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>        xmlGetDtdElementDesc    (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Search the DTD for the description of this element</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>a pointer to the DtD to search</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> if found or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetDtdNotationDesc"></a>xmlGetDtdNotationDesc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a>      xmlGetDtdNotationDesc   (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Search the DTD for the description of this notation</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>a pointer to the DtD to search</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the notation name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a> if found or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetDtdQAttrDesc"></a>xmlGetDtdQAttrDesc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a>    xmlGetDtdQAttrDesc      (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * elem, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br>
+</pre>
+<p>Search the DTD for the description of this qualified <a href="libxml2-SAX.html#attribute">attribute</a> on this element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>a pointer to the DtD to search</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> if found or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetDtdQElementDesc"></a>xmlGetDtdQElementDesc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a>        xmlGetDtdQElementDesc   (<a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br>
+</pre>
+<p>Search the DTD for the description of this element</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>a pointer to the DtD to search</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the element namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> if found or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetID"></a>xmlGetID ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a>      xmlGetID                (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID)<br>
+</pre>
+<p>Search the <a href="libxml2-SAX.html#attribute">attribute</a> declaring the given ID</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>pointer to the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ID</tt></i>:</span></td>
+<td>the ID value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not found, otherwise the <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> defining the ID</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetRefs"></a>xmlGetRefs ()</h3>
+<pre class="programlisting"><a href="libxml2-list.html#xmlListPtr">xmlListPtr</a>      xmlGetRefs              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ID)<br>
+</pre>
+<p>DEPRECATED, do not use. This function will be removed from the public API. Find the set of references for the supplied ID.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>pointer to the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ID</tt></i>:</span></td>
+<td>the ID value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not found, otherwise node set for the ID.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsID"></a>xmlIsID ()</h3>
+<pre class="programlisting">int        xmlIsID                 (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br>
+</pre>
+<p>Determine whether an <a href="libxml2-SAX.html#attribute">attribute</a> is of type ID. In case we have DTD(s) then this is done if DTD loading has been requested. In the case of HTML documents parsed with the HTML parser, then ID detection is done systematically.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the element carrying the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or 1 depending on the lookup result</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsMixedElement"></a>xmlIsMixedElement ()</h3>
+<pre class="programlisting">int        xmlIsMixedElement               (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Search in the DtDs whether an element accept Mixed content (or ANY) basically if it is supposed to accept text childs</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if no, 1 if yes, and -1 if no element description is available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIsRef"></a>xmlIsRef ()</h3>
+<pre class="programlisting">int        xmlIsRef                        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br>
+</pre>
+<p>DEPRECATED, do not use. This function will be removed from the public API. Determine whether an <a href="libxml2-SAX.html#attribute">attribute</a> is of type Ref. In case we have DTD(s) then this is simple, otherwise we use an heuristic: name Ref (upper or lowercase).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the element carrying the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or 1 depending on the lookup result</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewDocElementContent"></a>xmlNewDocElementContent ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>  xmlNewDocElementContent (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 <a href="libxml2-tree.html#xmlElementContentType">xmlElementContentType</a> type)<br>
+</pre>
+<p>Allocate an element content structure for the document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the subelement name or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the type of element content decl</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not, otherwise the new element content structure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewElementContent"></a>xmlNewElementContent ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a>  xmlNewElementContent    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 <a href="libxml2-tree.html#xmlElementContentType">xmlElementContentType</a> type)<br>
+</pre>
+<p>Allocate an element content structure. Deprecated in favor of <a href="libxml2-valid.html#xmlNewDocElementContent">xmlNewDocElementContent</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the subelement name or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the type of element content decl</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not, otherwise the new element content structure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewValidCtxt"></a>xmlNewValidCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a>   xmlNewValidCtxt         (void)<br>
+</pre>
+<p>Allocate a validation context structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if not, otherwise the new validation context structure</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRemoveID"></a>xmlRemoveID ()</h3>
+<pre class="programlisting">int        xmlRemoveID                     (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br>
+</pre>
+<p>Remove the given <a href="libxml2-SAX.html#attribute">attribute</a> from the ID table maintained internally.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 if the lookup failed and 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRemoveRef"></a>xmlRemoveRef ()</h3>
+<pre class="programlisting">int        xmlRemoveRef                    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr)<br>
+</pre>
+<p>DEPRECATED, do not use. This function will be removed from the public API. Remove the given <a href="libxml2-SAX.html#attribute">attribute</a> from the Ref table maintained internally.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 if the lookup failed and 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSnprintfElementContent"></a>xmlSnprintfElementContent ()</h3>
+<pre class="programlisting">void       xmlSnprintfElementContent       (char * buf, <br>                                        int size, <br>                                  <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content, <br>                                         int englob)<br>
+</pre>
+<p>This will dump the content of the element content definition Intended just for the debug routine</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>an output buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the buffer size</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>An element table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>englob</tt></i>:</span></td>
+<td>1 if one must print the englobing parenthesis, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSprintfElementContent"></a>xmlSprintfElementContent ()</h3>
+<pre class="programlisting">void       xmlSprintfElementContent        (char * buf, <br>                                        <a href="libxml2-tree.html#xmlElementContentPtr">xmlElementContentPtr</a> content, <br>                                         int englob)<br>
+</pre>
+<p>Deprecated, unsafe, use <a href="libxml2-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>an output buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>An element table</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>englob</tt></i>:</span></td>
+<td>1 if one must print the englobing parenthesis, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidBuildContentModel"></a>xmlValidBuildContentModel ()</h3>
+<pre class="programlisting">int        xmlValidBuildContentModel       (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem)<br>
+</pre>
+<p>(Re)Build the automata associated to the content model of this element</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element declaration node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 in case of success, 0 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidCtxtNormalizeAttributeValue"></a>xmlValidCtxtNormalizeAttributeValue ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlValidCtxtNormalizeAttributeValue     (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Does the validation related extra step of the normalization of <a href="libxml2-SAX.html#attribute">attribute</a> values: If the declared value is not CDATA, then the XML processor must further process the normalized <a href="libxml2-SAX.html#attribute">attribute</a> value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) <a href="libxml2-SAX.html#characters">characters</a> by single space (#x20) character. Also check VC: Standalone Document Declaration in P32, and update ctxt-&gt;valid accordingly</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the parent</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new normalized string if normalization is needed, NULL otherwise the caller must free the returned value.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidGetPotentialChildren"></a>xmlValidGetPotentialChildren ()</h3>
+<pre class="programlisting">int        xmlValidGetPotentialChildren    (<a href="libxml2-tree.html#xmlElementContent">xmlElementContent</a> * ctree, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** names, <br>                                       int * len, <br>                                         int max)<br>
+</pre>
+<p>Build/extend a list of potential children allowed by the content tree</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctree</tt></i>:</span></td>
+<td>an element content tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>names</tt></i>:</span></td>
+<td>an array to store the list of child names</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>a pointer to the number of element in the list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>max</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of element in the list, or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidGetValidElements"></a>xmlValidGetValidElements ()</h3>
+<pre class="programlisting">int        xmlValidGetValidElements        (<a href="libxml2-tree.html#xmlNode">xmlNode</a> * prev, <br>                                    <a href="libxml2-tree.html#xmlNode">xmlNode</a> * next, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** names, <br>                                       int max)<br>
+</pre>
+<p>This function returns the list of authorized children to insert within an existing tree while respecting the validity constraints forced by the Dtd. The insertion point is defined using @prev and @next in the following ways: to insert before 'node': xmlValidGetValidElements(node-&gt;prev, node, ... to insert next 'node': xmlValidGetValidElements(node, node-&gt;next, ... to replace 'node': xmlValidGetValidElements(node-&gt;prev, node-&gt;next, ... to prepend a child to 'node': xmlValidGetValidElements(NULL, node-&gt;childs, to append a child to 'node': xmlValidGetValidElements(node-&gt;last, NULL, ... pointers to the element names are inserted at the beginning of the array and do not need to be freed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>prev</tt></i>:</span></td>
+<td>an element to insert after</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>next</tt></i>:</span></td>
+<td>an element to insert next</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>names</tt></i>:</span></td>
+<td>an array to store the list of child names</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>max</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of element in the list, or -1 in case of error. If the function returns the value @max the caller is invited to grow the receiving array and retry.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidNormalizeAttributeValue"></a>xmlValidNormalizeAttributeValue ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlValidNormalizeAttributeValue (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Does the validation related extra step of the normalization of <a href="libxml2-SAX.html#attribute">attribute</a> values: If the declared value is not CDATA, then the XML processor must further process the normalized <a href="libxml2-SAX.html#attribute">attribute</a> value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) <a href="libxml2-SAX.html#characters">characters</a> by single space (#x20) character.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>the parent</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new normalized string if normalization is needed, NULL otherwise the caller must free the returned value.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateAttributeDecl"></a>xmlValidateAttributeDecl ()</h3>
+<pre class="programlisting">int        xmlValidateAttributeDecl        (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlAttributePtr">xmlAttributePtr</a> attr)<br>
+</pre>
+<p>Try to validate a single <a href="libxml2-SAX.html#attribute">attribute</a> definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Default Legal ] - [ VC: Enumeration ] - [ VC: ID Attribute Default ] The ID/IDREF uniqueness and matching are done separately</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>an <a href="libxml2-SAX.html#attribute">attribute</a> definition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateAttributeValue"></a>xmlValidateAttributeValue ()</h3>
+<pre class="programlisting">int        xmlValidateAttributeValue       (<a href="libxml2-tree.html#xmlAttributeType">xmlAttributeType</a> type, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Validate that the given <a href="libxml2-SAX.html#attribute">attribute</a> value match the proper production [ VC: ID ] Values of type ID must match the Name production.... [ VC: IDREF ] Values of type IDREF must match the Name production, and values of type IDREFS must match Names ... [ VC: Entity Name ] Values of type ENTITY must match the Name production, values of type ENTITIES must match Names ... [ VC: Name Token ] Values of type NMTOKEN must match the Nmtoken production; values of type NMTOKENS must match Nmtokens.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>an <a href="libxml2-SAX.html#attribute">attribute</a> type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>an <a href="libxml2-SAX.html#attribute">attribute</a> value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateDocument"></a>xmlValidateDocument ()</h3>
+<pre class="programlisting">int        xmlValidateDocument             (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Try to validate the document instance basically it does the all the checks described by the XML Rec i.e. validates the internal and external subset (if present) and validate the document tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateDocumentFinal"></a>xmlValidateDocumentFinal ()</h3>
+<pre class="programlisting">int        xmlValidateDocumentFinal        (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Does the final step for the document validation once all the incremental validation steps have been completed basically it does the following checks described by the XML Rec Check all the IDREF/IDREFS attributes definition for validity</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateDtd"></a>xmlValidateDtd ()</h3>
+<pre class="programlisting">int        xmlValidateDtd                  (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlDtdPtr">xmlDtdPtr</a> dtd)<br>
+</pre>
+<p>Try to validate the document against the dtd instance Basically it does check all the definitions in the DtD. Note the the internal subset (if present) is de-coupled (i.e. not used), which could give problems if ID or IDREF is present.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>dtd</tt></i>:</span></td>
+<td>a dtd instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateDtdFinal"></a>xmlValidateDtdFinal ()</h3>
+<pre class="programlisting">int        xmlValidateDtdFinal             (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Does the final step for the dtds validation once all the subsets have been parsed basically it does the following checks described by the XML Rec - check that ENTITY and ENTITIES type attributes default or possible values matches one of the defined entities. - check that NOTATION type attributes default or possible values matches one of the defined notations.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 if invalid and -1 if not well-formed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateElement"></a>xmlValidateElement ()</h3>
+<pre class="programlisting">int        xmlValidateElement              (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br>
+</pre>
+<p>Try to validate the subtree under an element</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateElementDecl"></a>xmlValidateElementDecl ()</h3>
+<pre class="programlisting">int        xmlValidateElementDecl          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlElementPtr">xmlElementPtr</a> elem)<br>
+</pre>
+<p>Try to validate a single element definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: One ID per Element Type ] - [ VC: No Duplicate Types ] - [ VC: Unique Element Type Declaration ]</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element definition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateNameValue"></a>xmlValidateNameValue ()</h3>
+<pre class="programlisting">int        xmlValidateNameValue            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Validate that the given value match Name production</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>an Name value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateNamesValue"></a>xmlValidateNamesValue ()</h3>
+<pre class="programlisting">int        xmlValidateNamesValue           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Validate that the given value match Names production</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>an Names value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateNmtokenValue"></a>xmlValidateNmtokenValue ()</h3>
+<pre class="programlisting">int        xmlValidateNmtokenValue         (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Validate that the given value match Nmtoken production [ VC: Name Token ]</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>an Nmtoken value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateNmtokensValue"></a>xmlValidateNmtokensValue ()</h3>
+<pre class="programlisting">int        xmlValidateNmtokensValue        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Validate that the given value match Nmtokens production [ VC: Name Token ]</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>an Nmtokens value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateNotationDecl"></a>xmlValidateNotationDecl ()</h3>
+<pre class="programlisting">int        xmlValidateNotationDecl         (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNotationPtr">xmlNotationPtr</a> nota)<br>
+</pre>
+<p>Try to validate a single notation definition basically it does the following checks as described by the XML-1.0 recommendation: - it seems that no validity constraint exists on notation declarations But this function get called anyway ...</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nota</tt></i>:</span></td>
+<td>a notation definition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateNotationUse"></a>xmlValidateNotationUse ()</h3>
+<pre class="programlisting">int        xmlValidateNotationUse          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * notationName)<br>
+</pre>
+<p>Validate that the given name match a notation declaration. - [ VC: Notation Declared ]</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>notationName</tt></i>:</span></td>
+<td>the notation name to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateOneAttribute"></a>xmlValidateOneAttribute ()</h3>
+<pre class="programlisting">int        xmlValidateOneAttribute         (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        <a href="libxml2-tree.html#xmlAttrPtr">xmlAttrPtr</a> attr, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Try to validate a single <a href="libxml2-SAX.html#attribute">attribute</a> for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>attr</tt></i>:</span></td>
+<td>an <a href="libxml2-SAX.html#attribute">attribute</a> instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> value (without entities processing)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateOneElement"></a>xmlValidateOneElement ()</h3>
+<pre class="programlisting">int        xmlValidateOneElement           (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br>
+</pre>
+<p>Try to validate a single element and it's attributes, basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Element Valid ] - [ VC: Required Attribute ] Then call xmlValidateOneAttribute() for each <a href="libxml2-SAX.html#attribute">attribute</a> present. The ID/IDREF checkings are done separately</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateOneNamespace"></a>xmlValidateOneNamespace ()</h3>
+<pre class="programlisting">int        xmlValidateOneNamespace         (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Try to validate a single namespace declaration for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>an namespace declaration instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the <a href="libxml2-SAX.html#attribute">attribute</a> value (without entities processing)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidatePopElement"></a>xmlValidatePopElement ()</h3>
+<pre class="programlisting">int        xmlValidatePopElement           (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * qname)<br>
+</pre>
+<p>Pop the element end from the validation stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>qname</tt></i>:</span></td>
+<td>the qualified name as appearing in the serialization</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if no validation problem was found or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidatePushCData"></a>xmlValidatePushCData ()</h3>
+<pre class="programlisting">int        xmlValidatePushCData            (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * data, <br>                                         int len)<br>
+</pre>
+<p>check the CData parsed for validation in the current stack</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>some character data read</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length of the data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if no validation problem was found or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidatePushElement"></a>xmlValidatePushElement ()</h3>
+<pre class="programlisting">int        xmlValidatePushElement          (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * qname)<br>
+</pre>
+<p>Push a new element start on the validation stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>qname</tt></i>:</span></td>
+<td>the qualified name as appearing in the serialization</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if no validation problem was found or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlValidateRoot"></a>xmlValidateRoot ()</h3>
+<pre class="programlisting">int        xmlValidateRoot                 (<a href="libxml2-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Try to validate a the root element basically it does the following check as described by the XML-1.0 recommendation: - [ VC: Root Element Type ] it doesn't try to recurse or apply other check to the element</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid or 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 140fb40..6b95826 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xinclude: implementation of XInclude</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-valid.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xlink.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xinclude</span>
-    </h2>
-    <p>xinclude - implementation of XInclude</p>
-    <p>API to handle XInclude processing, implements the World Wide Web Consortium Last Call Working Draft 10 November 2003</p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#XINCLUDE_PARSE_TEXT">XINCLUDE_PARSE_TEXT</a>;
-#define <a href="#XINCLUDE_PARSE_XPOINTER">XINCLUDE_PARSE_XPOINTER</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xinclude: implementation of XInclude</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-valid.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xlink.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xinclude</span></h2>
+<p>xinclude - implementation of XInclude</p>
+<p>API to handle XInclude processing, implements the World Wide Web Consortium Last Call Working Draft 10 November 2003</p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#XINCLUDE_FALLBACK">XINCLUDE_FALLBACK</a>;
 #define <a href="#XINCLUDE_HREF">XINCLUDE_HREF</a>;
-#define <a href="#XINCLUDE_FALLBACK">XINCLUDE_FALLBACK</a>;
+#define <a href="#XINCLUDE_NODE">XINCLUDE_NODE</a>;
 #define <a href="#XINCLUDE_NS">XINCLUDE_NS</a>;
+#define <a href="#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a>;
 #define <a href="#XINCLUDE_PARSE">XINCLUDE_PARSE</a>;
-#define <a href="#XINCLUDE_NODE">XINCLUDE_NODE</a>;
-#define <a href="#XINCLUDE_PARSE_XML">XINCLUDE_PARSE_XML</a>;
 #define <a href="#XINCLUDE_PARSE_ENCODING">XINCLUDE_PARSE_ENCODING</a>;
-#define <a href="#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a>;
+#define <a href="#XINCLUDE_PARSE_TEXT">XINCLUDE_PARSE_TEXT</a>;
+#define <a href="#XINCLUDE_PARSE_XML">XINCLUDE_PARSE_XML</a>;
+#define <a href="#XINCLUDE_PARSE_XPOINTER">XINCLUDE_PARSE_XPOINTER</a>;
 typedef struct _xmlXIncludeCtxt <a href="#xmlXIncludeCtxt">xmlXIncludeCtxt</a>;
 typedef <a href="libxml2-xinclude.html#xmlXIncludeCtxt">xmlXIncludeCtxt</a> * <a href="#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a>;
-int    <a href="#xmlXIncludeProcessTreeFlagsData">xmlXIncludeProcessTreeFlagsData</a>  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br/>                                       int flags, <br/>                                        void * data);
-int    <a href="#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  int flags, <br/>                                        void * data);
-int    <a href="#xmlXIncludeProcessFlags">xmlXIncludeProcessFlags</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  int flags);
-int    <a href="#xmlXIncludeProcessTree">xmlXIncludeProcessTree</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree);
-int    <a href="#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a>            (<a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
 void   <a href="#xmlXIncludeFreeContext">xmlXIncludeFreeContext</a>            (<a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a> ctxt);
-int    <a href="#xmlXIncludeSetFlags">xmlXIncludeSetFlags</a>          (<a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a> ctxt, <br/>                                   int flags);
-int    <a href="#xmlXIncludeProcess">xmlXIncludeProcess</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
 <a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a>      <a href="#xmlXIncludeNewContext">xmlXIncludeNewContext</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-int    <a href="#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a>  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br/>                                       int flags);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="XINCLUDE_FALLBACK">Macro </a>XINCLUDE_FALLBACK</h3><pre class="programlisting">#define <a href="#XINCLUDE_FALLBACK">XINCLUDE_FALLBACK</a>;
-</pre><p>Macro defining "fallback"</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XINCLUDE_HREF">Macro </a>XINCLUDE_HREF</h3><pre class="programlisting">#define <a href="#XINCLUDE_HREF">XINCLUDE_HREF</a>;
-</pre><p>Macro defining "href"</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XINCLUDE_NODE">Macro </a>XINCLUDE_NODE</h3><pre class="programlisting">#define <a href="#XINCLUDE_NODE">XINCLUDE_NODE</a>;
-</pre><p>Macro defining "include"</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XINCLUDE_NS">Macro </a>XINCLUDE_NS</h3><pre class="programlisting">#define <a href="#XINCLUDE_NS">XINCLUDE_NS</a>;
-</pre><p>Macro defining the Xinclude namespace: http://www.w3.org/2003/XInclude</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XINCLUDE_OLD_NS">Macro </a>XINCLUDE_OLD_NS</h3><pre class="programlisting">#define <a href="#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a>;
-</pre><p>Macro defining the draft Xinclude namespace: http://www.w3.org/2001/XInclude</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XINCLUDE_PARSE">Macro </a>XINCLUDE_PARSE</h3><pre class="programlisting">#define <a href="#XINCLUDE_PARSE">XINCLUDE_PARSE</a>;
-</pre><p>Macro defining "parse"</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XINCLUDE_PARSE_ENCODING">Macro </a>XINCLUDE_PARSE_ENCODING</h3><pre class="programlisting">#define <a href="#XINCLUDE_PARSE_ENCODING">XINCLUDE_PARSE_ENCODING</a>;
-</pre><p>Macro defining "encoding"</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XINCLUDE_PARSE_TEXT">Macro </a>XINCLUDE_PARSE_TEXT</h3><pre class="programlisting">#define <a href="#XINCLUDE_PARSE_TEXT">XINCLUDE_PARSE_TEXT</a>;
-</pre><p>Macro defining "text"</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XINCLUDE_PARSE_XML">Macro </a>XINCLUDE_PARSE_XML</h3><pre class="programlisting">#define <a href="#XINCLUDE_PARSE_XML">XINCLUDE_PARSE_XML</a>;
-</pre><p>Macro defining "xml"</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XINCLUDE_PARSE_XPOINTER">Macro </a>XINCLUDE_PARSE_XPOINTER</h3><pre class="programlisting">#define <a href="#XINCLUDE_PARSE_XPOINTER">XINCLUDE_PARSE_XPOINTER</a>;
-</pre><p>Macro defining "xpointer"</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeCtxt">Structure </a>xmlXIncludeCtxt</h3><pre class="programlisting">struct _xmlXIncludeCtxt {
+int    <a href="#xmlXIncludeProcess">xmlXIncludeProcess</a>            (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+int    <a href="#xmlXIncludeProcessFlags">xmlXIncludeProcessFlags</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   int flags);
+int    <a href="#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   int flags, <br>                                         void * data);
+int    <a href="#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a>            (<a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+int    <a href="#xmlXIncludeProcessTree">xmlXIncludeProcessTree</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree);
+int    <a href="#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a>  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br>                                        int flags);
+int    <a href="#xmlXIncludeProcessTreeFlagsData">xmlXIncludeProcessTreeFlagsData</a>  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br>                                        int flags, <br>                                         void * data);
+int    <a href="#xmlXIncludeSetFlags">xmlXIncludeSetFlags</a>          (<a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a> ctxt, <br>                                    int flags);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="XINCLUDE_FALLBACK">Macro </a>XINCLUDE_FALLBACK</h3>
+<pre class="programlisting">#define <a href="#XINCLUDE_FALLBACK">XINCLUDE_FALLBACK</a>;
+</pre>
+<p>Macro defining "fallback"</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XINCLUDE_HREF">Macro </a>XINCLUDE_HREF</h3>
+<pre class="programlisting">#define <a href="#XINCLUDE_HREF">XINCLUDE_HREF</a>;
+</pre>
+<p>Macro defining "href"</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XINCLUDE_NODE">Macro </a>XINCLUDE_NODE</h3>
+<pre class="programlisting">#define <a href="#XINCLUDE_NODE">XINCLUDE_NODE</a>;
+</pre>
+<p>Macro defining "include"</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XINCLUDE_NS">Macro </a>XINCLUDE_NS</h3>
+<pre class="programlisting">#define <a href="#XINCLUDE_NS">XINCLUDE_NS</a>;
+</pre>
+<p>Macro defining the Xinclude namespace: http://www.w3.org/2003/XInclude</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XINCLUDE_OLD_NS">Macro </a>XINCLUDE_OLD_NS</h3>
+<pre class="programlisting">#define <a href="#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a>;
+</pre>
+<p>Macro defining the draft Xinclude namespace: http://www.w3.org/2001/XInclude</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XINCLUDE_PARSE">Macro </a>XINCLUDE_PARSE</h3>
+<pre class="programlisting">#define <a href="#XINCLUDE_PARSE">XINCLUDE_PARSE</a>;
+</pre>
+<p>Macro defining "parse"</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XINCLUDE_PARSE_ENCODING">Macro </a>XINCLUDE_PARSE_ENCODING</h3>
+<pre class="programlisting">#define <a href="#XINCLUDE_PARSE_ENCODING">XINCLUDE_PARSE_ENCODING</a>;
+</pre>
+<p>Macro defining "encoding"</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XINCLUDE_PARSE_TEXT">Macro </a>XINCLUDE_PARSE_TEXT</h3>
+<pre class="programlisting">#define <a href="#XINCLUDE_PARSE_TEXT">XINCLUDE_PARSE_TEXT</a>;
+</pre>
+<p>Macro defining "text"</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XINCLUDE_PARSE_XML">Macro </a>XINCLUDE_PARSE_XML</h3>
+<pre class="programlisting">#define <a href="#XINCLUDE_PARSE_XML">XINCLUDE_PARSE_XML</a>;
+</pre>
+<p>Macro defining "xml"</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XINCLUDE_PARSE_XPOINTER">Macro </a>XINCLUDE_PARSE_XPOINTER</h3>
+<pre class="programlisting">#define <a href="#XINCLUDE_PARSE_XPOINTER">XINCLUDE_PARSE_XPOINTER</a>;
+</pre>
+<p>Macro defining "xpointer"</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeCtxt">Structure </a>xmlXIncludeCtxt</h3>
+<pre class="programlisting">struct _xmlXIncludeCtxt {
 The content of this structure is not made public by the API.
 } xmlXIncludeCtxt;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeCtxtPtr">Typedef </a>xmlXIncludeCtxtPtr</h3><pre class="programlisting"><a href="libxml2-xinclude.html#xmlXIncludeCtxt">xmlXIncludeCtxt</a> * xmlXIncludeCtxtPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeFreeContext"/>xmlXIncludeFreeContext ()</h3><pre class="programlisting">void   xmlXIncludeFreeContext          (<a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a> ctxt)<br/>
-</pre><p>Free an XInclude context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XInclude context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeNewContext"/>xmlXIncludeNewContext ()</h3><pre class="programlisting"><a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a>        xmlXIncludeNewContext   (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Creates a new XInclude context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>an XML Document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new set</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeProcess"/>xmlXIncludeProcess ()</h3><pre class="programlisting">int    xmlXIncludeProcess              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Implement the XInclude substitution on the XML document @doc</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>an XML document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeProcessFlags"/>xmlXIncludeProcessFlags ()</h3><pre class="programlisting">int  xmlXIncludeProcessFlags         (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  int flags)<br/>
-</pre><p>Implement the XInclude substitution on the XML document @doc</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>an XML document</td></tr><tr><td><span class="term"><i><tt>flags</tt></i>:</span></td><td>a set of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a> used for parsing XML includes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeProcessFlagsData"/>xmlXIncludeProcessFlagsData ()</h3><pre class="programlisting">int  xmlXIncludeProcessFlagsData     (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  int flags, <br/>                                        void * data)<br/>
-</pre><p>Implement the XInclude substitution on the XML document @doc</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>an XML document</td></tr><tr><td><span class="term"><i><tt>flags</tt></i>:</span></td><td>a set of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a> used for parsing XML includes</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>application data that will be passed to the parser context in the _private field of the parser context(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeProcessNode"/>xmlXIncludeProcessNode ()</h3><pre class="programlisting">int    xmlXIncludeProcessNode          (<a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Implement the XInclude substitution for the given subtree reusing the information and data coming from the given context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an existing XInclude context</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node in an XML document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeProcessTree"/>xmlXIncludeProcessTree ()</h3><pre class="programlisting">int    xmlXIncludeProcessTree          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree)<br/>
-</pre><p>Implement the XInclude substitution for the given subtree</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>a node in an XML document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeProcessTreeFlags"/>xmlXIncludeProcessTreeFlags ()</h3><pre class="programlisting">int  xmlXIncludeProcessTreeFlags     (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br/>                                       int flags)<br/>
-</pre><p>Implement the XInclude substitution for the given subtree</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>a node in an XML document</td></tr><tr><td><span class="term"><i><tt>flags</tt></i>:</span></td><td>a set of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a> used for parsing XML includes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeProcessTreeFlagsData"/>xmlXIncludeProcessTreeFlagsData ()</h3><pre class="programlisting">int  xmlXIncludeProcessTreeFlagsData (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br/>                                       int flags, <br/>                                        void * data)<br/>
-</pre><p>Implement the XInclude substitution on the XML node @tree</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>tree</tt></i>:</span></td><td>an XML node</td></tr><tr><td><span class="term"><i><tt>flags</tt></i>:</span></td><td>a set of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a> used for parsing XML includes</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>application data that will be passed to the parser context in the _private field of the parser context(s)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXIncludeSetFlags"/>xmlXIncludeSetFlags ()</h3><pre class="programlisting">int  xmlXIncludeSetFlags             (<a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a> ctxt, <br/>                                   int flags)<br/>
-</pre><p>Set the flags used for further processing of XML resources.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XInclude processing context</td></tr><tr><td><span class="term"><i><tt>flags</tt></i>:</span></td><td>a set of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a> used for parsing XML includes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeCtxtPtr">Typedef </a>xmlXIncludeCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-xinclude.html#xmlXIncludeCtxt">xmlXIncludeCtxt</a> * xmlXIncludeCtxtPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeFreeContext"></a>xmlXIncludeFreeContext ()</h3>
+<pre class="programlisting">void       xmlXIncludeFreeContext          (<a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Free an XInclude context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XInclude context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeNewContext"></a>xmlXIncludeNewContext ()</h3>
+<pre class="programlisting"><a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a>  xmlXIncludeNewContext   (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Creates a new XInclude context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>an XML Document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new set</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeProcess"></a>xmlXIncludeProcess ()</h3>
+<pre class="programlisting">int        xmlXIncludeProcess              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Implement the XInclude substitution on the XML document @doc</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>an XML document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeProcessFlags"></a>xmlXIncludeProcessFlags ()</h3>
+<pre class="programlisting">int        xmlXIncludeProcessFlags         (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   int flags)<br>
+</pre>
+<p>Implement the XInclude substitution on the XML document @doc</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>an XML document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>flags</tt></i>:</span></td>
+<td>a set of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a> used for parsing XML includes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeProcessFlagsData"></a>xmlXIncludeProcessFlagsData ()</h3>
+<pre class="programlisting">int        xmlXIncludeProcessFlagsData     (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   int flags, <br>                                         void * data)<br>
+</pre>
+<p>Implement the XInclude substitution on the XML document @doc</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>an XML document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>flags</tt></i>:</span></td>
+<td>a set of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a> used for parsing XML includes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>application data that will be passed to the parser context in the _private field of the parser context(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeProcessNode"></a>xmlXIncludeProcessNode ()</h3>
+<pre class="programlisting">int        xmlXIncludeProcessNode          (<a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Implement the XInclude substitution for the given subtree reusing the information and data coming from the given context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an existing XInclude context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node in an XML document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeProcessTree"></a>xmlXIncludeProcessTree ()</h3>
+<pre class="programlisting">int        xmlXIncludeProcessTree          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree)<br>
+</pre>
+<p>Implement the XInclude substitution for the given subtree</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>a node in an XML document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeProcessTreeFlags"></a>xmlXIncludeProcessTreeFlags ()</h3>
+<pre class="programlisting">int        xmlXIncludeProcessTreeFlags     (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br>                                        int flags)<br>
+</pre>
+<p>Implement the XInclude substitution for the given subtree</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>a node in an XML document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>flags</tt></i>:</span></td>
+<td>a set of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a> used for parsing XML includes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeProcessTreeFlagsData"></a>xmlXIncludeProcessTreeFlagsData ()</h3>
+<pre class="programlisting">int        xmlXIncludeProcessTreeFlagsData (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> tree, <br>                                        int flags, <br>                                         void * data)<br>
+</pre>
+<p>Implement the XInclude substitution on the XML node @tree</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>tree</tt></i>:</span></td>
+<td>an XML node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>flags</tt></i>:</span></td>
+<td>a set of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a> used for parsing XML includes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>application data that will be passed to the parser context in the _private field of the parser context(s)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if no substitution were done, -1 if some processing failed or the number of substitutions done.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXIncludeSetFlags"></a>xmlXIncludeSetFlags ()</h3>
+<pre class="programlisting">int        xmlXIncludeSetFlags             (<a href="libxml2-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a> ctxt, <br>                                    int flags)<br>
+</pre>
+<p>Set the flags used for further processing of XML resources.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XInclude processing context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>flags</tt></i>:</span></td>
+<td>a set of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a> used for parsing XML includes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index abe6965..4162a9a 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xlink: unfinished XLink detection module</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xinclude.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlIO.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xlink</span>
-    </h2>
-    <p>xlink - unfinished XLink detection module</p>
-    <p>unfinished XLink detection module </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xlinkTitle">xlinkTitle</a>;
-typedef enum <a href="#xlinkShow">xlinkShow</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xlink: unfinished XLink detection module</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xinclude.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlIO.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xlink</span></h2>
+<p>xlink - unfinished XLink detection module</p>
+<p>unfinished XLink detection module </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef enum <a href="#xlinkActuate">xlinkActuate</a>;
 typedef <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xlinkHRef">xlinkHRef</a>;
-typedef enum <a href="#xlinkActuate">xlinkActuate</a>;
 typedef struct _xlinkHandler <a href="#xlinkHandler">xlinkHandler</a>;
-typedef <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xlinkRole">xlinkRole</a>;
 typedef <a href="libxml2-xlink.html#xlinkHandler">xlinkHandler</a> * <a href="#xlinkHandlerPtr">xlinkHandlerPtr</a>;
+typedef <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xlinkRole">xlinkRole</a>;
+typedef enum <a href="#xlinkShow">xlinkShow</a>;
+typedef <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xlinkTitle">xlinkTitle</a>;
 typedef enum <a href="#xlinkType">xlinkType</a>;
+typedef void <a href="#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a>                (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int nbLocators, <br>                                    const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> * hrefs, <br>                                        const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * roles, <br>                                        int nbArcs, <br>                                        const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * from, <br>                                         const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * to, <br>                                   <a href="libxml2-xlink.html#xlinkShow">xlinkShow</a> * show, <br>                                       <a href="libxml2-xlink.html#xlinkActuate">xlinkActuate</a> * actuate, <br>                                      int nbTitles, <br>                                      const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> * titles, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langs);
+typedef void <a href="#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a>  (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int nbLocators, <br>                                    const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> * hrefs, <br>                                        const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * roles, <br>                                        int nbTitles, <br>                                      const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> * titles, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langs);
+<a href="libxml2-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a>       <a href="#xlinkGetDefaultDetect">xlinkGetDefaultDetect</a>      (void);
+<a href="libxml2-xlink.html#xlinkHandlerPtr">xlinkHandlerPtr</a>       <a href="#xlinkGetDefaultHandler">xlinkGetDefaultHandler</a>    (void);
+<a href="libxml2-xlink.html#xlinkType">xlinkType</a>   <a href="#xlinkIsLink">xlinkIsLink</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+typedef void <a href="#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a>            (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
 void   <a href="#xlinkSetDefaultDetect">xlinkSetDefaultDetect</a>              (<a href="libxml2-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a> func);
 void   <a href="#xlinkSetDefaultHandler">xlinkSetDefaultHandler</a>            (<a href="libxml2-xlink.html#xlinkHandlerPtr">xlinkHandlerPtr</a> handler);
-typedef void <a href="#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a>                (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int nbLocators, <br/>                                   const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> * hrefs, <br/>                                       const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * roles, <br/>                                       int nbArcs, <br/>                                       const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * from, <br/>                                        const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * to, <br/>                                  <a href="libxml2-xlink.html#xlinkShow">xlinkShow</a> * show, <br/>                                      <a href="libxml2-xlink.html#xlinkActuate">xlinkActuate</a> * actuate, <br/>                                     int nbTitles, <br/>                                     const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> * titles, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langs);
-typedef void <a href="#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a>  (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int nbLocators, <br/>                                   const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> * hrefs, <br/>                                       const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * roles, <br/>                                       int nbTitles, <br/>                                     const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> * titles, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langs);
-typedef void <a href="#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a>            (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> href, <br/>                                  const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> role, <br/>                                  const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> title);
-typedef void <a href="#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a>            (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-<a href="libxml2-xlink.html#xlinkHandlerPtr">xlinkHandlerPtr</a>       <a href="#xlinkGetDefaultHandler">xlinkGetDefaultHandler</a>    (void);
-<a href="libxml2-xlink.html#xlinkType">xlinkType</a>   <a href="#xlinkIsLink">xlinkIsLink</a>          (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-<a href="libxml2-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a>       <a href="#xlinkGetDefaultDetect">xlinkGetDefaultDetect</a>      (void);
+typedef void <a href="#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a>            (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> href, <br>                                   const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> role, <br>                                   const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> title);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xlinkActuate">Enum </a>xlinkActuate</h3><pre class="programlisting">enum <a href="#xlinkActuate">xlinkActuate</a> {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkActuate">Enum </a>xlinkActuate</h3>
+<pre class="programlisting">enum <a href="#xlinkActuate">xlinkActuate</a> {
     <a name="XLINK_ACTUATE_NONE">XLINK_ACTUATE_NONE</a> = 0
     <a name="XLINK_ACTUATE_AUTO">XLINK_ACTUATE_AUTO</a> = 1
     <a name="XLINK_ACTUATE_ONREQUEST">XLINK_ACTUATE_ONREQUEST</a> = 2
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkHRef">Typedef </a>xlinkHRef</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xlinkHRef;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkHRef">Typedef </a>xlinkHRef</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xlinkHRef;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkHandler">Structure </a>xlinkHandler</h3><pre class="programlisting">struct _xlinkHandler {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkHandler">Structure </a>xlinkHandler</h3>
+<pre class="programlisting">struct _xlinkHandler {
     <a href="libxml2-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a>   simple
     <a href="libxml2-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a>       extended
     <a href="libxml2-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a> set
 } xlinkHandler;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkHandlerPtr">Typedef </a>xlinkHandlerPtr</h3><pre class="programlisting"><a href="libxml2-xlink.html#xlinkHandler">xlinkHandler</a> * xlinkHandlerPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkHandlerPtr">Typedef </a>xlinkHandlerPtr</h3>
+<pre class="programlisting"><a href="libxml2-xlink.html#xlinkHandler">xlinkHandler</a> * xlinkHandlerPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkRole">Typedef </a>xlinkRole</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xlinkRole;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkRole">Typedef </a>xlinkRole</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xlinkRole;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkShow">Enum </a>xlinkShow</h3><pre class="programlisting">enum <a href="#xlinkShow">xlinkShow</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkShow">Enum </a>xlinkShow</h3>
+<pre class="programlisting">enum <a href="#xlinkShow">xlinkShow</a> {
     <a name="XLINK_SHOW_NONE">XLINK_SHOW_NONE</a> = 0
     <a name="XLINK_SHOW_NEW">XLINK_SHOW_NEW</a> = 1
     <a name="XLINK_SHOW_EMBED">XLINK_SHOW_EMBED</a> = 2
     <a name="XLINK_SHOW_REPLACE">XLINK_SHOW_REPLACE</a> = 3
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkTitle">Typedef </a>xlinkTitle</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xlinkTitle;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkTitle">Typedef </a>xlinkTitle</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xlinkTitle;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkType">Enum </a>xlinkType</h3><pre class="programlisting">enum <a href="#xlinkType">xlinkType</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkType">Enum </a>xlinkType</h3>
+<pre class="programlisting">enum <a href="#xlinkType">xlinkType</a> {
     <a name="XLINK_TYPE_NONE">XLINK_TYPE_NONE</a> = 0
     <a name="XLINK_TYPE_SIMPLE">XLINK_TYPE_SIMPLE</a> = 1
     <a name="XLINK_TYPE_EXTENDED">XLINK_TYPE_EXTENDED</a> = 2
     <a name="XLINK_TYPE_EXTENDED_SET">XLINK_TYPE_EXTENDED_SET</a> = 3
 };
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkExtendedLinkFunk"/>Function type xlinkExtendedLinkFunk</h3><pre class="programlisting">void  xlinkExtendedLinkFunk           (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int nbLocators, <br/>                                   const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> * hrefs, <br/>                                       const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * roles, <br/>                                       int nbArcs, <br/>                                       const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * from, <br/>                                        const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * to, <br/>                                  <a href="libxml2-xlink.html#xlinkShow">xlinkShow</a> * show, <br/>                                      <a href="libxml2-xlink.html#xlinkActuate">xlinkActuate</a> * actuate, <br/>                                     int nbTitles, <br/>                                     const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> * titles, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langs)<br/>
-</pre><p>This is the prototype for a extended link detection callback.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>user data pointer</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node carrying the link</td></tr><tr><td><span class="term"><i><tt>nbLocators</tt></i>:</span></td><td>the number of locators detected on the link</td></tr><tr><td><span class="term"><i><tt>hrefs</tt></i>:</span></td><td>pointer to the array of locator hrefs</td></tr><tr><td><span class="term"><i><tt>roles</tt></i>:</span></td><td>pointer to the array of locator roles</td></tr><tr><td><span class="term"><i><tt>nbArcs</tt></i>:</span></td><td>the number of arcs detected on the link</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>pointer to the array of source roles found on the arcs</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>pointer to the array of target roles found on the arcs</td></tr><tr><td><span class="term"><i><tt>show</tt></i>:</span></td><td>array of values for the show attributes found on the arcs</td></tr><tr><td><span class="term"><i><tt>actuate</tt></i>:</span></td><td>array of values for the actuate attributes found on the arcs</td></tr><tr><td><span class="term"><i><tt>nbTitles</tt></i>:</span></td><td>the number of titles detected on the link</td></tr><tr><td><span class="term"><i><tt>titles</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>langs</tt></i>:</span></td><td>array of xml:lang values for the titles</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkExtendedLinkSetFunk"/>Function type xlinkExtendedLinkSetFunk</h3><pre class="programlisting">void    xlinkExtendedLinkSetFunk        (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       int nbLocators, <br/>                                   const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> * hrefs, <br/>                                       const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * roles, <br/>                                       int nbTitles, <br/>                                     const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> * titles, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langs)<br/>
-</pre><p>This is the prototype for a extended link set detection callback.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>user data pointer</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node carrying the link</td></tr><tr><td><span class="term"><i><tt>nbLocators</tt></i>:</span></td><td>the number of locators detected on the link</td></tr><tr><td><span class="term"><i><tt>hrefs</tt></i>:</span></td><td>pointer to the array of locator hrefs</td></tr><tr><td><span class="term"><i><tt>roles</tt></i>:</span></td><td>pointer to the array of locator roles</td></tr><tr><td><span class="term"><i><tt>nbTitles</tt></i>:</span></td><td>the number of titles detected on the link</td></tr><tr><td><span class="term"><i><tt>titles</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>langs</tt></i>:</span></td><td>array of xml:lang values for the titles</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkNodeDetectFunc"/>Function type xlinkNodeDetectFunc</h3><pre class="programlisting">void      xlinkNodeDetectFunc             (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>This is the prototype for the link detection routine. It calls the default link detection callbacks upon link detection.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>user data pointer</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node to check</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkSimpleLinkFunk"/>Function type xlinkSimpleLinkFunk</h3><pre class="programlisting">void      xlinkSimpleLinkFunk             (void * ctx, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> href, <br/>                                  const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> role, <br/>                                  const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> title)<br/>
-</pre><p>This is the prototype for a simple link detection callback.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>user data pointer</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node carrying the link</td></tr><tr><td><span class="term"><i><tt>href</tt></i>:</span></td><td>the target of the link</td></tr><tr><td><span class="term"><i><tt>role</tt></i>:</span></td><td>the role string</td></tr><tr><td><span class="term"><i><tt>title</tt></i>:</span></td><td>the link title</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkGetDefaultDetect"/>xlinkGetDefaultDetect ()</h3><pre class="programlisting"><a href="libxml2-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a> xlinkGetDefaultDetect   (void)<br/>
-</pre><p>Get the default xlink detection routine</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the current function or NULL;</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkGetDefaultHandler"/>xlinkGetDefaultHandler ()</h3><pre class="programlisting"><a href="libxml2-xlink.html#xlinkHandlerPtr">xlinkHandlerPtr</a>       xlinkGetDefaultHandler  (void)<br/>
-</pre><p>Get the default xlink handler.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the current <a href="libxml2-xlink.html#xlinkHandlerPtr">xlinkHandlerPtr</a> value.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkIsLink"/>xlinkIsLink ()</h3><pre class="programlisting"><a href="libxml2-xlink.html#xlinkType">xlinkType</a> xlinkIsLink             (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Check whether the given node carries the attributes needed to be a link element (or is one of the linking elements issued from the (X)HTML DtDs). This routine don't try to do full checking of the link validity but tries to detect and return the appropriate link type.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the document containing the node</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node pointer itself</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xlink.html#xlinkType">xlinkType</a> of the node (XLINK_TYPE_NONE if there is no link detected.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkSetDefaultDetect"/>xlinkSetDefaultDetect ()</h3><pre class="programlisting">void     xlinkSetDefaultDetect           (<a href="libxml2-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a> func)<br/>
-</pre><p>Set the default xlink detection routine</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>func</tt></i>:</span></td><td>pointer to the new detection routine.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xlinkSetDefaultHandler"/>xlinkSetDefaultHandler ()</h3><pre class="programlisting">void   xlinkSetDefaultHandler          (<a href="libxml2-xlink.html#xlinkHandlerPtr">xlinkHandlerPtr</a> handler)<br/>
-</pre><p>Set the default xlink handlers</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>the new value for the xlink handler block</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkExtendedLinkFunk"></a>Function type xlinkExtendedLinkFunk</h3>
+<pre class="programlisting">void       xlinkExtendedLinkFunk           (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int nbLocators, <br>                                    const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> * hrefs, <br>                                        const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * roles, <br>                                        int nbArcs, <br>                                        const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * from, <br>                                         const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * to, <br>                                   <a href="libxml2-xlink.html#xlinkShow">xlinkShow</a> * show, <br>                                       <a href="libxml2-xlink.html#xlinkActuate">xlinkActuate</a> * actuate, <br>                                      int nbTitles, <br>                                      const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> * titles, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langs)<br>
+</pre>
+<p>This is the prototype for a extended link detection callback.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>user data pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node carrying the link</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nbLocators</tt></i>:</span></td>
+<td>the number of locators detected on the link</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>hrefs</tt></i>:</span></td>
+<td>pointer to the array of locator hrefs</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>roles</tt></i>:</span></td>
+<td>pointer to the array of locator roles</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nbArcs</tt></i>:</span></td>
+<td>the number of arcs detected on the link</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>pointer to the array of source roles found on the arcs</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>pointer to the array of target roles found on the arcs</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>show</tt></i>:</span></td>
+<td>array of values for the show attributes found on the arcs</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>actuate</tt></i>:</span></td>
+<td>array of values for the actuate attributes found on the arcs</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nbTitles</tt></i>:</span></td>
+<td>the number of titles detected on the link</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>titles</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>langs</tt></i>:</span></td>
+<td>array of xml:lang values for the titles</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkExtendedLinkSetFunk"></a>Function type xlinkExtendedLinkSetFunk</h3>
+<pre class="programlisting">void       xlinkExtendedLinkSetFunk        (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        int nbLocators, <br>                                    const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> * hrefs, <br>                                        const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> * roles, <br>                                        int nbTitles, <br>                                      const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> * titles, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langs)<br>
+</pre>
+<p>This is the prototype for a extended link set detection callback.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>user data pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node carrying the link</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nbLocators</tt></i>:</span></td>
+<td>the number of locators detected on the link</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>hrefs</tt></i>:</span></td>
+<td>pointer to the array of locator hrefs</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>roles</tt></i>:</span></td>
+<td>pointer to the array of locator roles</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nbTitles</tt></i>:</span></td>
+<td>the number of titles detected on the link</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>titles</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>langs</tt></i>:</span></td>
+<td>array of xml:lang values for the titles</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkNodeDetectFunc"></a>Function type xlinkNodeDetectFunc</h3>
+<pre class="programlisting">void       xlinkNodeDetectFunc             (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>This is the prototype for the link detection routine. It calls the default link detection callbacks upon link detection.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>user data pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node to check</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkSimpleLinkFunk"></a>Function type xlinkSimpleLinkFunk</h3>
+<pre class="programlisting">void       xlinkSimpleLinkFunk             (void * ctx, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        const <a href="libxml2-xlink.html#xlinkHRef">xlinkHRef</a> href, <br>                                   const <a href="libxml2-xlink.html#xlinkRole">xlinkRole</a> role, <br>                                   const <a href="libxml2-xlink.html#xlinkTitle">xlinkTitle</a> title)<br>
+</pre>
+<p>This is the prototype for a simple link detection callback.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>user data pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node carrying the link</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>href</tt></i>:</span></td>
+<td>the target of the link</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>role</tt></i>:</span></td>
+<td>the role string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>title</tt></i>:</span></td>
+<td>the link title</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkGetDefaultDetect"></a>xlinkGetDefaultDetect ()</h3>
+<pre class="programlisting"><a href="libxml2-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a>   xlinkGetDefaultDetect   (void)<br>
+</pre>
+<p>Get the default xlink detection routine</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the current function or NULL;</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkGetDefaultHandler"></a>xlinkGetDefaultHandler ()</h3>
+<pre class="programlisting"><a href="libxml2-xlink.html#xlinkHandlerPtr">xlinkHandlerPtr</a>   xlinkGetDefaultHandler  (void)<br>
+</pre>
+<p>Get the default xlink handler.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the current <a href="libxml2-xlink.html#xlinkHandlerPtr">xlinkHandlerPtr</a> value.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkIsLink"></a>xlinkIsLink ()</h3>
+<pre class="programlisting"><a href="libxml2-xlink.html#xlinkType">xlinkType</a>       xlinkIsLink             (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Check whether the given node carries the attributes needed to be a link element (or is one of the linking elements issued from the (X)HTML DtDs). This routine don't try to do full checking of the link validity but tries to detect and return the appropriate link type.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the document containing the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node pointer itself</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xlink.html#xlinkType">xlinkType</a> of the node (XLINK_TYPE_NONE if there is no link detected.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkSetDefaultDetect"></a>xlinkSetDefaultDetect ()</h3>
+<pre class="programlisting">void       xlinkSetDefaultDetect           (<a href="libxml2-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a> func)<br>
+</pre>
+<p>Set the default xlink detection routine</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>func</tt></i>:</span></td>
+<td>pointer to the new detection routine.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xlinkSetDefaultHandler"></a>xlinkSetDefaultHandler ()</h3>
+<pre class="programlisting">void       xlinkSetDefaultHandler          (<a href="libxml2-xlink.html#xlinkHandlerPtr">xlinkHandlerPtr</a> handler)<br>
+</pre>
+<p>Set the default xlink handlers</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td>the new value for the xlink handler block</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 8597f4d..e25ee02 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlIO: interface for the I/O interfaces used by the parser</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xlink.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlautomata.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlIO</span>
-    </h2>
-    <p>xmlIO - interface for the I/O interfaces used by the parser</p>
-    <p>interface for the I/O interfaces used by the parser </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">int        <a href="#xmlIOHTTPRead">xmlIOHTTPRead</a>                      (void * context, <br/>                                   char * buffer, <br/>                                    int len);
-typedef int <a href="#xmlInputMatchCallback">xmlInputMatchCallback</a>         (char const * filename);
-void   <a href="#xmlRegisterDefaultOutputCallbacks">xmlRegisterDefaultOutputCallbacks</a>      (void);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlIO: interface for the I/O interfaces used by the parser</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xlink.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlautomata.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlIO</span></h2>
+<p>xmlIO - interface for the I/O interfaces used by the parser</p>
+<p>interface for the I/O interfaces used by the parser </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>    <a href="#xmlAllocOutputBuffer">xmlAllocOutputBuffer</a>        (<a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder);
+<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlAllocParserInputBuffer">xmlAllocParserInputBuffer</a>      (<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+int    <a href="#xmlCheckFilename">xmlCheckFilename</a>                (const char * path);
+<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlCheckHTTPInput">xmlCheckHTTPInput</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> ret);
+void   <a href="#xmlCleanupInputCallbacks">xmlCleanupInputCallbacks</a>        (void);
+void   <a href="#xmlCleanupOutputCallbacks">xmlCleanupOutputCallbacks</a>      (void);
 int    <a href="#xmlFileClose">xmlFileClose</a>                        (void * context);
-int    <a href="#xmlPopOutputCallbacks">xmlPopOutputCallbacks</a>              (void);
-typedef int <a href="#xmlOutputMatchCallback">xmlOutputMatchCallback</a>               (char const * filename);
-int    <a href="#xmlParserInputBufferPush">xmlParserInputBufferPush</a>        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br/>                                       int len, <br/>                                  const char * buf);
-int    <a href="#xmlIOFTPRead">xmlIOFTPRead</a>                        (void * context, <br/>                                   char * buffer, <br/>                                    int len);
-void   <a href="#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a>        (void);
-void * <a href="#xmlIOFTPOpen">xmlIOFTPOpen</a>                        (const char * filename);
-int    <a href="#xmlIOFTPClose">xmlIOFTPClose</a>                      (void * context);
+int    <a href="#xmlFileMatch">xmlFileMatch</a>                        (const char * filename);
 void * <a href="#xmlFileOpen">xmlFileOpen</a>                  (const char * filename);
-<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>  <a href="#xmlOutputBufferCreateFile">xmlOutputBufferCreateFile</a>      (FILE * file, <br/>                                                      <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder);
-int    <a href="#xmlCheckFilename">xmlCheckFilename</a>                (const char * path);
-typedef void * <a href="#xmlOutputOpenCallback">xmlOutputOpenCallback</a>              (char const * filename);
-<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a>    (const char * URI, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
-int    <a href="#xmlOutputBufferClose">xmlOutputBufferClose</a>                (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out);
-<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlAllocParserInputBuffer">xmlAllocParserInputBuffer</a>      (<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
-<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>  <a href="#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a>  (<a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> iowrite, <br/>                                           <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> ioclose, <br/>                                           void * ioctx, <br/>                                             <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder);
-typedef int <a href="#xmlOutputWriteCallback">xmlOutputWriteCallback</a>               (void * context, <br/>                                   const char * buffer, <br/>                                      int len);
-int    <a href="#xmlOutputBufferFlush">xmlOutputBufferFlush</a>                (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out);
-<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlCheckHTTPInput">xmlCheckHTTPInput</a>      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> ret);
-int    <a href="#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a>    (<a href="libxml2-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a> matchFunc, <br/>                                         <a href="libxml2-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a> openFunc, <br/>                                    <a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> writeFunc, <br/>                                         <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> closeFunc);
-<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateMem">xmlParserInputBufferCreateMem</a>      (const char * mem, <br/>                                                         int size, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
-int    <a href="#xmlIOFTPMatch">xmlIOFTPMatch</a>                      (const char * filename);
-int    <a href="#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a>      (<a href="libxml2-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a> matchFunc, <br/>                                   <a href="libxml2-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a> openFunc, <br/>                                      <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> readFunc, <br/>                                      <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> closeFunc);
+int    <a href="#xmlFileRead">xmlFileRead</a>                  (void * context, <br>                                    char * buffer, <br>                                     int len);
 void   <a href="#xmlFreeParserInputBuffer">xmlFreeParserInputBuffer</a>        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in);
-void   <a href="#xmlRegisterDefaultInputCallbacks">xmlRegisterDefaultInputCallbacks</a>        (void);
-int    <a href="#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a>        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br/>                                       int len);
-typedef int <a href="#xmlOutputCloseCallback">xmlOutputCloseCallback</a>               (void * context);
-<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>  <a href="#xmlAllocOutputBuffer">xmlAllocOutputBuffer</a>        (<a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder);
-<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a>        (const char * URL, <br/>                                                         const char * ID, <br/>                                                  <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
-<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>  <a href="#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a>  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder);
+int    <a href="#xmlIOFTPClose">xmlIOFTPClose</a>                      (void * context);
+int    <a href="#xmlIOFTPMatch">xmlIOFTPMatch</a>                      (const char * filename);
+void * <a href="#xmlIOFTPOpen">xmlIOFTPOpen</a>                        (const char * filename);
+int    <a href="#xmlIOFTPRead">xmlIOFTPRead</a>                        (void * context, <br>                                    char * buffer, <br>                                     int len);
+int    <a href="#xmlIOHTTPClose">xmlIOHTTPClose</a>                    (void * context);
 int    <a href="#xmlIOHTTPMatch">xmlIOHTTPMatch</a>                    (const char * filename);
 void * <a href="#xmlIOHTTPOpen">xmlIOHTTPOpen</a>                      (const char * filename);
-<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a>        (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                                     void * ioctx, <br/>                                                     <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
-<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>  <a href="#xmlOutputBufferCreateFd">xmlOutputBufferCreateFd</a>  (int fd, <br/>                                           <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder);
+void * <a href="#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a>                    (const char * post_uri, <br>                                     int compression);
+int    <a href="#xmlIOHTTPRead">xmlIOHTTPRead</a>                      (void * context, <br>                                    char * buffer, <br>                                     int len);
+typedef int <a href="#xmlInputCloseCallback">xmlInputCloseCallback</a>         (void * context);
+typedef int <a href="#xmlInputMatchCallback">xmlInputMatchCallback</a>         (char const * filename);
+typedef void * <a href="#xmlInputOpenCallback">xmlInputOpenCallback</a>                (char const * filename);
+typedef int <a href="#xmlInputReadCallback">xmlInputReadCallback</a>           (void * context, <br>                                    char * buffer, <br>                                     int len);
+<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>    <a href="#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a>        (const char * URL, <br>                                                  const char * ID, <br>                                                   <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * path);
-typedef int <a href="#xmlInputReadCallback">xmlInputReadCallback</a>           (void * context, <br/>                                   char * buffer, <br/>                                    int len);
-<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a>        (const char * mem, <br/>                                                         int size, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+int    <a href="#xmlOutputBufferClose">xmlOutputBufferClose</a>                (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out);
+<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>  <a href="#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a>  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder);
+<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>  <a href="#xmlOutputBufferCreateFd">xmlOutputBufferCreateFd</a>  (int fd, <br>                                            <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder);
+<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>  <a href="#xmlOutputBufferCreateFile">xmlOutputBufferCreateFile</a>      (FILE * file, <br>                                                       <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder);
+<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>  <a href="#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a>      (const char * URI, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder, <br>                                                   int compression);
+<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>  <a href="#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a>  (<a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> iowrite, <br>                                            <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> ioclose, <br>                                            void * ioctx, <br>                                              <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder);
+int    <a href="#xmlOutputBufferFlush">xmlOutputBufferFlush</a>                (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out);
 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlOutputBufferGetContent">xmlOutputBufferGetContent</a>      (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out);
-int    <a href="#xmlIOHTTPClose">xmlIOHTTPClose</a>                    (void * context);
-int    <a href="#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a>    (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escaping);
-<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>  <a href="#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a>      (const char * URI, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder, <br/>                                                  int compression);
 size_t <a href="#xmlOutputBufferGetSize">xmlOutputBufferGetSize</a>            (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out);
-void   <a href="#xmlCleanupOutputCallbacks">xmlCleanupOutputCallbacks</a>      (void);
-typedef void * <a href="#xmlInputOpenCallback">xmlInputOpenCallback</a>                (char const * filename);
-int    <a href="#xmlParserInputBufferRead">xmlParserInputBufferRead</a>        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br/>                                       int len);
-int    <a href="#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a>    (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br/>                                        const char * str);
-int    <a href="#xmlFileMatch">xmlFileMatch</a>                        (const char * filename);
-int    <a href="#xmlPopInputCallbacks">xmlPopInputCallbacks</a>                (void);
-int    <a href="#xmlFileRead">xmlFileRead</a>                  (void * context, <br/>                                   char * buffer, <br/>                                    int len);
-<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateFile">xmlParserInputBufferCreateFile</a>    (FILE * file, <br/>                                                      <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+int    <a href="#xmlOutputBufferWrite">xmlOutputBufferWrite</a>                (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br>                                         int len, <br>                                   const char * buf);
+int    <a href="#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a>    (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escaping);
+int    <a href="#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a>    (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br>                                         const char * str);
+typedef int <a href="#xmlOutputCloseCallback">xmlOutputCloseCallback</a>               (void * context);
+typedef int <a href="#xmlOutputMatchCallback">xmlOutputMatchCallback</a>               (char const * filename);
+typedef void * <a href="#xmlOutputOpenCallback">xmlOutputOpenCallback</a>              (char const * filename);
+typedef int <a href="#xmlOutputWriteCallback">xmlOutputWriteCallback</a>               (void * context, <br>                                    const char * buffer, <br>                                       int len);
 char * <a href="#xmlParserGetDirectory">xmlParserGetDirectory</a>              (const char * filename);
-int    <a href="#xmlOutputBufferWrite">xmlOutputBufferWrite</a>                (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br/>                                        int len, <br/>                                  const char * buf);
-void   <a href="#xmlCleanupInputCallbacks">xmlCleanupInputCallbacks</a>        (void);
-typedef int <a href="#xmlInputCloseCallback">xmlInputCloseCallback</a>         (void * context);
-void * <a href="#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a>                    (const char * post_uri, <br/>                                    int compression);
-<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateFd">xmlParserInputBufferCreateFd</a>        (int fd, <br/>                                                   <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlInputCloseCallback"/>Function type xmlInputCloseCallback</h3><pre class="programlisting">int   xmlInputCloseCallback           (void * context)<br/>
-</pre><p>Callback used in the I/O Input API to close the resource</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>context</tt></i>:</span></td><td>an Input context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInputMatchCallback"/>Function type xmlInputMatchCallback</h3><pre class="programlisting">int   xmlInputMatchCallback           (char const * filename)<br/>
-</pre><p>Callback used in the I/O Input API to detect if the current handler can provide input functionality for this resource.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename or URI</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if yes and 0 if another Input module should be used</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInputOpenCallback"/>Function type xmlInputOpenCallback</h3><pre class="programlisting">void *  xmlInputOpenCallback            (char const * filename)<br/>
-</pre><p>Callback used in the I/O Input API to open the resource</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename or URI</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an Input context or NULL in case or error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInputReadCallback"/>Function type xmlInputReadCallback</h3><pre class="programlisting">int     xmlInputReadCallback            (void * context, <br/>                                   char * buffer, <br/>                                    int len)<br/>
-</pre><p>Callback used in the I/O Input API to read the resource</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>context</tt></i>:</span></td><td>an Input context</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>the buffer to store data read</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length of the buffer in bytes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes read or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputCloseCallback"/>Function type xmlOutputCloseCallback</h3><pre class="programlisting">int xmlOutputCloseCallback          (void * context)<br/>
-</pre><p>Callback used in the I/O Output API to close the resource</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>context</tt></i>:</span></td><td>an Output context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputMatchCallback"/>Function type xmlOutputMatchCallback</h3><pre class="programlisting">int xmlOutputMatchCallback          (char const * filename)<br/>
-</pre><p>Callback used in the I/O Output API to detect if the current handler can provide output functionality for this resource.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename or URI</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if yes and 0 if another Output module should be used</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputOpenCallback"/>Function type xmlOutputOpenCallback</h3><pre class="programlisting">void *        xmlOutputOpenCallback           (char const * filename)<br/>
-</pre><p>Callback used in the I/O Output API to open the resource</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the filename or URI</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an Output context or NULL in case or error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputWriteCallback"/>Function type xmlOutputWriteCallback</h3><pre class="programlisting">int xmlOutputWriteCallback          (void * context, <br/>                                   const char * buffer, <br/>                                      int len)<br/>
-</pre><p>Callback used in the I/O Output API to write to the resource</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>context</tt></i>:</span></td><td>an Output context</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>the buffer of data to write</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length of the buffer in bytes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAllocOutputBuffer"/>xmlAllocOutputBuffer ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>      xmlAllocOutputBuffer    (<a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder)<br/>
-</pre><p>Create a buffered parser output</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>encoder</tt></i>:</span></td><td>the encoding converter or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser output or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAllocParserInputBuffer"/>xmlAllocParserInputBuffer ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>  xmlAllocParserInputBuffer       (<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Create a buffered parser input for progressive parsing</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the charset encoding if known</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser input or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCheckFilename"/>xmlCheckFilename ()</h3><pre class="programlisting">int        xmlCheckFilename                (const char * path)<br/>
-</pre><p>function checks to see if @path is a valid source (file, socket...) for XML. if stat is not available on the target machine,</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>path</tt></i>:</span></td><td>the path to check</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1. if stat fails, returns 0 (if calling stat on the filename fails, it can't be right). if stat succeeds and the file is a directory, returns 2. otherwise returns 1.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCheckHTTPInput"/>xmlCheckHTTPInput ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>      xmlCheckHTTPInput       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> ret)<br/>
-</pre><p>Check an input in case it was created from an HTTP stream, in that case it will handle encoding and update of the base URL in case of redirection. It also checks for HTTP errors in which case the input is cleanly freed up and an appropriate error is raised in context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>ret</tt></i>:</span></td><td>an XML parser input</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the input or NULL in case of HTTP error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCleanupInputCallbacks"/>xmlCleanupInputCallbacks ()</h3><pre class="programlisting">void       xmlCleanupInputCallbacks        (void)<br/>
-</pre><p>clears the entire input callback table. this includes the compiled-in I/O.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCleanupOutputCallbacks"/>xmlCleanupOutputCallbacks ()</h3><pre class="programlisting">void     xmlCleanupOutputCallbacks       (void)<br/>
-</pre><p>clears the entire output callback table. this includes the compiled-in I/O callbacks.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFileClose"/>xmlFileClose ()</h3><pre class="programlisting">int        xmlFileClose                    (void * context)<br/>
-</pre><p>Close an I/O channel</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>context</tt></i>:</span></td><td>the I/O context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFileMatch"/>xmlFileMatch ()</h3><pre class="programlisting">int        xmlFileMatch                    (const char * filename)<br/>
-</pre><p>input from FILE *</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the URI for matching</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if matches, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFileOpen"/>xmlFileOpen ()</h3><pre class="programlisting">void *       xmlFileOpen                     (const char * filename)<br/>
-</pre><p>Wrapper around xmlFileOpen_real that try it with an unescaped version of @filename, if this fails fallback to @filename</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the URI for matching</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a handler or NULL in case or failure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFileRead"/>xmlFileRead ()</h3><pre class="programlisting">int  xmlFileRead                     (void * context, <br/>                                   char * buffer, <br/>                                    int len)<br/>
-</pre><p>Read @len bytes to @buffer from the I/O channel.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>context</tt></i>:</span></td><td>the I/O context</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>where to drop data</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>number of bytes to write</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written or &lt; 0 in case of failure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeParserInputBuffer"/>xmlFreeParserInputBuffer ()</h3><pre class="programlisting">void       xmlFreeParserInputBuffer        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in)<br/>
-</pre><p>Free up the memory used by a buffered parser input</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>a buffered parser input</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIOFTPClose"/>xmlIOFTPClose ()</h3><pre class="programlisting">int      xmlIOFTPClose                   (void * context)<br/>
-</pre><p>Close an FTP I/O channel</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>context</tt></i>:</span></td><td>the I/O context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIOFTPMatch"/>xmlIOFTPMatch ()</h3><pre class="programlisting">int      xmlIOFTPMatch                   (const char * filename)<br/>
-</pre><p>check if the URI matches an FTP one</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the URI for matching</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if matches, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIOFTPOpen"/>xmlIOFTPOpen ()</h3><pre class="programlisting">void *     xmlIOFTPOpen                    (const char * filename)<br/>
-</pre><p>open an FTP I/O channel</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the URI for matching</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an I/O context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIOFTPRead"/>xmlIOFTPRead ()</h3><pre class="programlisting">int        xmlIOFTPRead                    (void * context, <br/>                                   char * buffer, <br/>                                    int len)<br/>
-</pre><p>Read @len bytes to @buffer from the I/O channel.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>context</tt></i>:</span></td><td>the I/O context</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>where to drop data</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>number of bytes to write</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIOHTTPClose"/>xmlIOHTTPClose ()</h3><pre class="programlisting">int    xmlIOHTTPClose                  (void * context)<br/>
-</pre><p>Close an HTTP I/O channel</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>context</tt></i>:</span></td><td>the I/O context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIOHTTPMatch"/>xmlIOHTTPMatch ()</h3><pre class="programlisting">int    xmlIOHTTPMatch                  (const char * filename)<br/>
-</pre><p>check if the URI matches an HTTP one</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the URI for matching</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if matches, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIOHTTPOpen"/>xmlIOHTTPOpen ()</h3><pre class="programlisting">void *   xmlIOHTTPOpen                   (const char * filename)<br/>
-</pre><p>open an HTTP I/O channel</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the URI for matching</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an I/O context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIOHTTPOpenW"/>xmlIOHTTPOpenW ()</h3><pre class="programlisting">void * xmlIOHTTPOpenW                  (const char * post_uri, <br/>                                    int compression)<br/>
-</pre><p>Open a temporary buffer to collect the document for a subsequent HTTP POST request. Non-static as is called from the output buffer creation routine.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>post_uri</tt></i>:</span></td><td>The destination URI for the document</td></tr><tr><td><span class="term"><i><tt>compression</tt></i>:</span></td><td>The compression desired for the document.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an I/O context or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlIOHTTPRead"/>xmlIOHTTPRead ()</h3><pre class="programlisting">int      xmlIOHTTPRead                   (void * context, <br/>                                   char * buffer, <br/>                                    int len)<br/>
-</pre><p>Read @len bytes to @buffer from the I/O channel.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>context</tt></i>:</span></td><td>the I/O context</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>where to drop data</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>number of bytes to write</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of bytes written</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNoNetExternalEntityLoader"/>xmlNoNetExternalEntityLoader ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlNoNetExternalEntityLoader    (const char * URL, <br/>                                                         const char * ID, <br/>                                                  <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br/>
-</pre><p>A specific entity loader disabling network accesses, though still allowing local catalog accesses for resolution.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the URL for the entity to load</td></tr><tr><td><span class="term"><i><tt>ID</tt></i>:</span></td><td>the System ID for the entity to load</td></tr><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the context in which the entity is called or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new allocated xmlParserInputPtr, or NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNormalizeWindowsPath"/>xmlNormalizeWindowsPath ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlNormalizeWindowsPath (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * path)<br/>
-</pre><p>This function is obsolete. Please see xmlURIFromPath in uri.c for a better solution.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>path</tt></i>:</span></td><td>the input file path</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a canonicalized version of the path</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferClose"/>xmlOutputBufferClose ()</h3><pre class="programlisting">int        xmlOutputBufferClose            (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out)<br/>
-</pre><p>flushes and close the output I/O channel and free up all the associated resources</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>a buffered output</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferCreateBuffer"/>xmlOutputBufferCreateBuffer ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>        xmlOutputBufferCreateBuffer     (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder)<br/>
-</pre><p>Create a buffered output for the progressive saving to a <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a></td></tr><tr><td><span class="term"><i><tt>encoder</tt></i>:</span></td><td>the encoding converter or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser output or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferCreateFd"/>xmlOutputBufferCreateFd ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>        xmlOutputBufferCreateFd (int fd, <br/>                                           <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder)<br/>
-</pre><p>Create a buffered output for the progressive saving to a file descriptor</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>fd</tt></i>:</span></td><td>a file descriptor number</td></tr><tr><td><span class="term"><i><tt>encoder</tt></i>:</span></td><td>the encoding converter or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser output or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferCreateFile"/>xmlOutputBufferCreateFile ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>    xmlOutputBufferCreateFile       (FILE * file, <br/>                                                      <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder)<br/>
-</pre><p>Create a buffered output for the progressive saving to a FILE * buffered C I/O</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>file</tt></i>:</span></td><td>a FILE*</td></tr><tr><td><span class="term"><i><tt>encoder</tt></i>:</span></td><td>the encoding converter or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser output or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferCreateFilename"/>xmlOutputBufferCreateFilename ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>    xmlOutputBufferCreateFilename   (const char * URI, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder, <br/>                                                  int compression)<br/>
-</pre><p>Create a buffered output for the progressive saving of a file If filename is "-' then we use stdout as the output. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. TODO: currently if compression is set, the library only support writing to a local file.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>a C string containing the URI or filename</td></tr><tr><td><span class="term"><i><tt>encoder</tt></i>:</span></td><td>the encoding converter or NULL</td></tr><tr><td><span class="term"><i><tt>compression</tt></i>:</span></td><td>the compression ration (0 none, 9 max).</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new output or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferCreateIO"/>xmlOutputBufferCreateIO ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>        xmlOutputBufferCreateIO (<a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> iowrite, <br/>                                           <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> ioclose, <br/>                                           void * ioctx, <br/>                                             <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder)<br/>
-</pre><p>Create a buffered output for the progressive saving to an I/O handler</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>iowrite</tt></i>:</span></td><td>an I/O write function</td></tr><tr><td><span class="term"><i><tt>ioclose</tt></i>:</span></td><td>an I/O close function</td></tr><tr><td><span class="term"><i><tt>ioctx</tt></i>:</span></td><td>an I/O handler</td></tr><tr><td><span class="term"><i><tt>encoder</tt></i>:</span></td><td>the charset encoding if known</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser output or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferFlush"/>xmlOutputBufferFlush ()</h3><pre class="programlisting">int        xmlOutputBufferFlush            (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out)<br/>
-</pre><p>flushes the output I/O channel</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>a buffered output</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferGetContent"/>xmlOutputBufferGetContent ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlOutputBufferGetContent       (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out)<br/>
-</pre><p>Gives a pointer to the data currently held in the output buffer</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the data or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferGetSize"/>xmlOutputBufferGetSize ()</h3><pre class="programlisting">size_t xmlOutputBufferGetSize          (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out)<br/>
-</pre><p>Gives the length of the data currently held in the output buffer</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case or error or no data is held, the size otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferWrite"/>xmlOutputBufferWrite ()</h3><pre class="programlisting">int        xmlOutputBufferWrite            (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br/>                                        int len, <br/>                                  const char * buf)<br/>
-</pre><p>Write the content of the array in the output I/O buffer This routine handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>a buffered parser output</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the size in bytes of the array.</td></tr><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>an char array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of chars immediately written, or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferWriteEscape"/>xmlOutputBufferWriteEscape ()</h3><pre class="programlisting">int    xmlOutputBufferWriteEscape      (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escaping)<br/>
-</pre><p>Write the content of the string in the output I/O buffer This routine escapes the <a href="libxml2-SAX.html#characters">characters</a> and then handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>a buffered parser output</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>a zero terminated UTF-8 string</td></tr><tr><td><span class="term"><i><tt>escaping</tt></i>:</span></td><td>an optional escaping function (or NULL)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of chars immediately written, or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlOutputBufferWriteString"/>xmlOutputBufferWriteString ()</h3><pre class="programlisting">int    xmlOutputBufferWriteString      (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br/>                                        const char * str)<br/>
-</pre><p>Write the content of the string in the output I/O buffer This routine handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>a buffered parser output</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>a zero terminated C string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of chars immediately written, or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserGetDirectory"/>xmlParserGetDirectory ()</h3><pre class="programlisting">char *   xmlParserGetDirectory           (const char * filename)<br/>
-</pre><p>lookup the directory for that file</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the path to a file</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new allocated string containing the directory, or NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferCreateFd"/>xmlParserInputBufferCreateFd ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlParserInputBufferCreateFd    (int fd, <br/>                                                   <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Create a buffered parser input for the progressive parsing for the input from a file descriptor</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>fd</tt></i>:</span></td><td>a file descriptor number</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the charset encoding if known</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser input or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferCreateFile"/>xmlParserInputBufferCreateFile ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        xmlParserInputBufferCreateFile  (FILE * file, <br/>                                                      <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Create a buffered parser input for the progressive parsing of a FILE * buffered C I/O</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>file</tt></i>:</span></td><td>a FILE*</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the charset encoding if known</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser input or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferCreateFilename"/>xmlParserInputBufferCreateFilename ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        xmlParserInputBufferCreateFilename      (const char * URI, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Create a buffered parser input for the progressive parsing of a file If filename is "-' then we use stdin as the input. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. Do an encoding check if enc == <a href="libxml2-encoding.html#XML_CHAR_ENCODING_NONE">XML_CHAR_ENCODING_NONE</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>a C string containing the URI or filename</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the charset encoding if known</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser input or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferCreateIO"/>xmlParserInputBufferCreateIO ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlParserInputBufferCreateIO    (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                                     void * ioctx, <br/>                                                     <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Create a buffered parser input for the progressive parsing for the input from an I/O handler</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ioread</tt></i>:</span></td><td>an I/O read function</td></tr><tr><td><span class="term"><i><tt>ioclose</tt></i>:</span></td><td>an I/O close function</td></tr><tr><td><span class="term"><i><tt>ioctx</tt></i>:</span></td><td>an I/O handler</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the charset encoding if known</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser input or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferCreateMem"/>xmlParserInputBufferCreateMem ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>  xmlParserInputBufferCreateMem   (const char * mem, <br/>                                                         int size, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Create a buffered parser input for the progressive parsing for the input from a memory area.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>mem</tt></i>:</span></td><td>the memory input</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the length of the memory block</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the charset encoding if known</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser input or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferCreateStatic"/>xmlParserInputBufferCreateStatic ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlParserInputBufferCreateStatic        (const char * mem, <br/>                                                         int size, <br/>                                                         <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br/>
-</pre><p>Create a buffered parser input for the progressive parsing for the input from an immutable memory area. This will not copy the memory area to the buffer, but the memory is expected to be available until the end of the parsing, this is useful for example when using mmap'ed file.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>mem</tt></i>:</span></td><td>the memory input</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the length of the memory block</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>the charset encoding if known</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new parser input or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferGrow"/>xmlParserInputBufferGrow ()</h3><pre class="programlisting">int        xmlParserInputBufferGrow        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br/>                                       int len)<br/>
-</pre><p>Grow up the content of the input buffer, the old data are preserved This routine handle the I18N transcoding to internal UTF-8 This routine is used when operating the parser in normal (pull) mode TODO: one should be able to remove one extra copy by copying directly onto in-&gt;buffer or in-&gt;raw</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>a buffered parser input</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>indicative value of the amount of chars to read</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of chars read and stored in the buffer, or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferPush"/>xmlParserInputBufferPush ()</h3><pre class="programlisting">int        xmlParserInputBufferPush        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br/>                                       int len, <br/>                                  const char * buf)<br/>
-</pre><p>Push the content of the arry in the input buffer This routine handle the I18N transcoding to internal UTF-8 This is used when operating the parser in progressive (push) mode.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>a buffered parser input</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the size in bytes of the array.</td></tr><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>an char array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of chars read and stored in the buffer, or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserInputBufferRead"/>xmlParserInputBufferRead ()</h3><pre class="programlisting">int        xmlParserInputBufferRead        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br/>                                       int len)<br/>
-</pre><p>Refresh the content of the input buffer, the old data are considered consumed This routine handle the I18N transcoding to internal UTF-8</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>in</tt></i>:</span></td><td>a buffered parser input</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>indicative value of the amount of chars to read</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of chars read and stored in the buffer, or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPopInputCallbacks"/>xmlPopInputCallbacks ()</h3><pre class="programlisting">int        xmlPopInputCallbacks            (void)<br/>
-</pre><p>Clear the top input callback from the input stack. this includes the compiled-in I/O.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of input callback registered or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlPopOutputCallbacks"/>xmlPopOutputCallbacks ()</h3><pre class="programlisting">int      xmlPopOutputCallbacks           (void)<br/>
-</pre><p>Remove the top output callbacks from the output stack. This includes the compiled-in I/O.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of output callback registered or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegisterDefaultInputCallbacks"/>xmlRegisterDefaultInputCallbacks ()</h3><pre class="programlisting">void       xmlRegisterDefaultInputCallbacks        (void)<br/>
-</pre><p>Registers the default compiled-in I/O handlers.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegisterDefaultOutputCallbacks"/>xmlRegisterDefaultOutputCallbacks ()</h3><pre class="programlisting">void     xmlRegisterDefaultOutputCallbacks       (void)<br/>
-</pre><p>Registers the default compiled-in I/O handlers.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegisterHTTPPostCallbacks"/>xmlRegisterHTTPPostCallbacks ()</h3><pre class="programlisting">void       xmlRegisterHTTPPostCallbacks    (void)<br/>
-</pre><p>By default, libxml submits HTTP output requests using the "PUT" method. Calling this method changes the HTTP output method to use the "POST" method instead.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegisterInputCallbacks"/>xmlRegisterInputCallbacks ()</h3><pre class="programlisting">int      xmlRegisterInputCallbacks       (<a href="libxml2-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a> matchFunc, <br/>                                   <a href="libxml2-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a> openFunc, <br/>                                      <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> readFunc, <br/>                                      <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> closeFunc)<br/>
-</pre><p>Register a new set of I/O callback for handling parser input.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>matchFunc</tt></i>:</span></td><td>the <a href="libxml2-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a></td></tr><tr><td><span class="term"><i><tt>openFunc</tt></i>:</span></td><td>the <a href="libxml2-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a></td></tr><tr><td><span class="term"><i><tt>readFunc</tt></i>:</span></td><td>the <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a></td></tr><tr><td><span class="term"><i><tt>closeFunc</tt></i>:</span></td><td>the <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the registered handler number or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegisterOutputCallbacks"/>xmlRegisterOutputCallbacks ()</h3><pre class="programlisting">int    xmlRegisterOutputCallbacks      (<a href="libxml2-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a> matchFunc, <br/>                                         <a href="libxml2-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a> openFunc, <br/>                                    <a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> writeFunc, <br/>                                         <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> closeFunc)<br/>
-</pre><p>Register a new set of I/O callback for handling output.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>matchFunc</tt></i>:</span></td><td>the <a href="libxml2-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a></td></tr><tr><td><span class="term"><i><tt>openFunc</tt></i>:</span></td><td>the <a href="libxml2-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a></td></tr><tr><td><span class="term"><i><tt>writeFunc</tt></i>:</span></td><td>the <a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a></td></tr><tr><td><span class="term"><i><tt>closeFunc</tt></i>:</span></td><td>the <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the registered handler number or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateFd">xmlParserInputBufferCreateFd</a>        (int fd, <br>                                                    <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateFile">xmlParserInputBufferCreateFile</a>    (FILE * file, <br>                                                       <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a>    (const char * URI, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a>        (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                                      void * ioctx, <br>                                                      <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateMem">xmlParserInputBufferCreateMem</a>      (const char * mem, <br>                                                  int size, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a>        (const char * mem, <br>                                                  int size, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc);
+int    <a href="#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a>        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br>                                        int len);
+int    <a href="#xmlParserInputBufferPush">xmlParserInputBufferPush</a>        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br>                                        int len, <br>                                   const char * buf);
+int    <a href="#xmlParserInputBufferRead">xmlParserInputBufferRead</a>        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br>                                        int len);
+int    <a href="#xmlPopInputCallbacks">xmlPopInputCallbacks</a>                (void);
+int    <a href="#xmlPopOutputCallbacks">xmlPopOutputCallbacks</a>              (void);
+void   <a href="#xmlRegisterDefaultInputCallbacks">xmlRegisterDefaultInputCallbacks</a>        (void);
+void   <a href="#xmlRegisterDefaultOutputCallbacks">xmlRegisterDefaultOutputCallbacks</a>      (void);
+void   <a href="#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a>        (void);
+int    <a href="#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a>      (<a href="libxml2-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a> matchFunc, <br>                                    <a href="libxml2-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a> openFunc, <br>                                       <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> readFunc, <br>                                       <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> closeFunc);
+int    <a href="#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a>    (<a href="libxml2-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a> matchFunc, <br>                                  <a href="libxml2-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a> openFunc, <br>                                     <a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> writeFunc, <br>                                  <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> closeFunc);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInputCloseCallback"></a>Function type xmlInputCloseCallback</h3>
+<pre class="programlisting">int        xmlInputCloseCallback           (void * context)<br>
+</pre>
+<p>Callback used in the I/O Input API to close the resource</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>context</tt></i>:</span></td>
+<td>an Input context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInputMatchCallback"></a>Function type xmlInputMatchCallback</h3>
+<pre class="programlisting">int        xmlInputMatchCallback           (char const * filename)<br>
+</pre>
+<p>Callback used in the I/O Input API to detect if the current handler can provide input functionality for this resource.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename or URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if yes and 0 if another Input module should be used</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInputOpenCallback"></a>Function type xmlInputOpenCallback</h3>
+<pre class="programlisting">void *     xmlInputOpenCallback            (char const * filename)<br>
+</pre>
+<p>Callback used in the I/O Input API to open the resource</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename or URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an Input context or NULL in case or error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInputReadCallback"></a>Function type xmlInputReadCallback</h3>
+<pre class="programlisting">int        xmlInputReadCallback            (void * context, <br>                                    char * buffer, <br>                                     int len)<br>
+</pre>
+<p>Callback used in the I/O Input API to read the resource</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>context</tt></i>:</span></td>
+<td>an Input context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>the buffer to store data read</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length of the buffer in bytes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes read or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputCloseCallback"></a>Function type xmlOutputCloseCallback</h3>
+<pre class="programlisting">int        xmlOutputCloseCallback          (void * context)<br>
+</pre>
+<p>Callback used in the I/O Output API to close the resource</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>context</tt></i>:</span></td>
+<td>an Output context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputMatchCallback"></a>Function type xmlOutputMatchCallback</h3>
+<pre class="programlisting">int        xmlOutputMatchCallback          (char const * filename)<br>
+</pre>
+<p>Callback used in the I/O Output API to detect if the current handler can provide output functionality for this resource.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename or URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if yes and 0 if another Output module should be used</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputOpenCallback"></a>Function type xmlOutputOpenCallback</h3>
+<pre class="programlisting">void *     xmlOutputOpenCallback           (char const * filename)<br>
+</pre>
+<p>Callback used in the I/O Output API to open the resource</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the filename or URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an Output context or NULL in case or error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputWriteCallback"></a>Function type xmlOutputWriteCallback</h3>
+<pre class="programlisting">int        xmlOutputWriteCallback          (void * context, <br>                                    const char * buffer, <br>                                       int len)<br>
+</pre>
+<p>Callback used in the I/O Output API to write to the resource</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>context</tt></i>:</span></td>
+<td>an Output context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>the buffer of data to write</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length of the buffer in bytes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAllocOutputBuffer"></a>xmlAllocOutputBuffer ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>      xmlAllocOutputBuffer    (<a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder)<br>
+</pre>
+<p>Create a buffered parser output</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>encoder</tt></i>:</span></td>
+<td>the encoding converter or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser output or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAllocParserInputBuffer"></a>xmlAllocParserInputBuffer ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlAllocParserInputBuffer       (<a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Create a buffered parser input for progressive parsing</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the charset encoding if known</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser input or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCheckFilename"></a>xmlCheckFilename ()</h3>
+<pre class="programlisting">int        xmlCheckFilename                (const char * path)<br>
+</pre>
+<p>function checks to see if @path is a valid source (file, socket...) for XML. if stat is not available on the target machine,</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>path</tt></i>:</span></td>
+<td>the path to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1. if stat fails, returns 0 (if calling stat on the filename fails, it can't be right). if stat succeeds and the file is a directory, returns 2. otherwise returns 1.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCheckHTTPInput"></a>xmlCheckHTTPInput ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlCheckHTTPInput       (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> ret)<br>
+</pre>
+<p>Check an input in case it was created from an HTTP stream, in that case it will handle encoding and update of the base URL in case of redirection. It also checks for HTTP errors in which case the input is cleanly freed up and an appropriate error is raised in context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ret</tt></i>:</span></td>
+<td>an XML parser input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the input or NULL in case of HTTP error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCleanupInputCallbacks"></a>xmlCleanupInputCallbacks ()</h3>
+<pre class="programlisting">void       xmlCleanupInputCallbacks        (void)<br>
+</pre>
+<p>clears the entire input callback table. this includes the compiled-in I/O.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCleanupOutputCallbacks"></a>xmlCleanupOutputCallbacks ()</h3>
+<pre class="programlisting">void       xmlCleanupOutputCallbacks       (void)<br>
+</pre>
+<p>clears the entire output callback table. this includes the compiled-in I/O callbacks.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFileClose"></a>xmlFileClose ()</h3>
+<pre class="programlisting">int        xmlFileClose                    (void * context)<br>
+</pre>
+<p>Close an I/O channel</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>context</tt></i>:</span></td>
+<td>the I/O context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFileMatch"></a>xmlFileMatch ()</h3>
+<pre class="programlisting">int        xmlFileMatch                    (const char * filename)<br>
+</pre>
+<p>input from FILE *</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the URI for matching</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if matches, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFileOpen"></a>xmlFileOpen ()</h3>
+<pre class="programlisting">void *     xmlFileOpen                     (const char * filename)<br>
+</pre>
+<p>Wrapper around xmlFileOpen_real that try it with an unescaped version of @filename, if this fails fallback to @filename</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the URI for matching</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a handler or NULL in case or failure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFileRead"></a>xmlFileRead ()</h3>
+<pre class="programlisting">int        xmlFileRead                     (void * context, <br>                                    char * buffer, <br>                                     int len)<br>
+</pre>
+<p>Read @len bytes to @buffer from the I/O channel.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>context</tt></i>:</span></td>
+<td>the I/O context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>where to drop data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>number of bytes to write</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written or &lt; 0 in case of failure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeParserInputBuffer"></a>xmlFreeParserInputBuffer ()</h3>
+<pre class="programlisting">void       xmlFreeParserInputBuffer        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in)<br>
+</pre>
+<p>Free up the memory used by a buffered parser input</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>a buffered parser input</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIOFTPClose"></a>xmlIOFTPClose ()</h3>
+<pre class="programlisting">int        xmlIOFTPClose                   (void * context)<br>
+</pre>
+<p>Close an FTP I/O channel</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>context</tt></i>:</span></td>
+<td>the I/O context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIOFTPMatch"></a>xmlIOFTPMatch ()</h3>
+<pre class="programlisting">int        xmlIOFTPMatch                   (const char * filename)<br>
+</pre>
+<p>check if the URI matches an FTP one</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the URI for matching</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if matches, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIOFTPOpen"></a>xmlIOFTPOpen ()</h3>
+<pre class="programlisting">void *     xmlIOFTPOpen                    (const char * filename)<br>
+</pre>
+<p>open an FTP I/O channel</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the URI for matching</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an I/O context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIOFTPRead"></a>xmlIOFTPRead ()</h3>
+<pre class="programlisting">int        xmlIOFTPRead                    (void * context, <br>                                    char * buffer, <br>                                     int len)<br>
+</pre>
+<p>Read @len bytes to @buffer from the I/O channel.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>context</tt></i>:</span></td>
+<td>the I/O context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>where to drop data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>number of bytes to write</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIOHTTPClose"></a>xmlIOHTTPClose ()</h3>
+<pre class="programlisting">int        xmlIOHTTPClose                  (void * context)<br>
+</pre>
+<p>Close an HTTP I/O channel</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>context</tt></i>:</span></td>
+<td>the I/O context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIOHTTPMatch"></a>xmlIOHTTPMatch ()</h3>
+<pre class="programlisting">int        xmlIOHTTPMatch                  (const char * filename)<br>
+</pre>
+<p>check if the URI matches an HTTP one</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the URI for matching</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if matches, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIOHTTPOpen"></a>xmlIOHTTPOpen ()</h3>
+<pre class="programlisting">void *     xmlIOHTTPOpen                   (const char * filename)<br>
+</pre>
+<p>open an HTTP I/O channel</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the URI for matching</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an I/O context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIOHTTPOpenW"></a>xmlIOHTTPOpenW ()</h3>
+<pre class="programlisting">void *     xmlIOHTTPOpenW                  (const char * post_uri, <br>                                     int compression)<br>
+</pre>
+<p>Open a temporary buffer to collect the document for a subsequent HTTP POST request. Non-static as is called from the output buffer creation routine.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>post_uri</tt></i>:</span></td>
+<td>The destination URI for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>compression</tt></i>:</span></td>
+<td>The compression desired for the document.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an I/O context or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlIOHTTPRead"></a>xmlIOHTTPRead ()</h3>
+<pre class="programlisting">int        xmlIOHTTPRead                   (void * context, <br>                                    char * buffer, <br>                                     int len)<br>
+</pre>
+<p>Read @len bytes to @buffer from the I/O channel.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>context</tt></i>:</span></td>
+<td>the I/O context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>where to drop data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>number of bytes to write</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of bytes written</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNoNetExternalEntityLoader"></a>xmlNoNetExternalEntityLoader ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a>        xmlNoNetExternalEntityLoader    (const char * URL, <br>                                                  const char * ID, <br>                                                   <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>A specific entity loader disabling network accesses, though still allowing local catalog accesses for resolution.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the URL for the entity to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ID</tt></i>:</span></td>
+<td>the System ID for the entity to load</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the context in which the entity is called or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new allocated xmlParserInputPtr, or NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNormalizeWindowsPath"></a>xmlNormalizeWindowsPath ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlNormalizeWindowsPath (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * path)<br>
+</pre>
+<p>This function is obsolete. Please see xmlURIFromPath in uri.c for a better solution.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>path</tt></i>:</span></td>
+<td>the input file path</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a canonicalized version of the path</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferClose"></a>xmlOutputBufferClose ()</h3>
+<pre class="programlisting">int        xmlOutputBufferClose            (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out)<br>
+</pre>
+<p>flushes and close the output I/O channel and free up all the associated resources</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>a buffered output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferCreateBuffer"></a>xmlOutputBufferCreateBuffer ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>      xmlOutputBufferCreateBuffer     (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder)<br>
+</pre>
+<p>Create a buffered output for the progressive saving to a <a href="libxml2-tree.html#xmlBuffer">xmlBuffer</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a <a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoder</tt></i>:</span></td>
+<td>the encoding converter or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser output or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferCreateFd"></a>xmlOutputBufferCreateFd ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>      xmlOutputBufferCreateFd (int fd, <br>                                            <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder)<br>
+</pre>
+<p>Create a buffered output for the progressive saving to a file descriptor</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>fd</tt></i>:</span></td>
+<td>a file descriptor number</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoder</tt></i>:</span></td>
+<td>the encoding converter or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser output or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferCreateFile"></a>xmlOutputBufferCreateFile ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>      xmlOutputBufferCreateFile       (FILE * file, <br>                                                       <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder)<br>
+</pre>
+<p>Create a buffered output for the progressive saving to a FILE * buffered C I/O</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>file</tt></i>:</span></td>
+<td>a FILE*</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoder</tt></i>:</span></td>
+<td>the encoding converter or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser output or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferCreateFilename"></a>xmlOutputBufferCreateFilename ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>      xmlOutputBufferCreateFilename   (const char * URI, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder, <br>                                                   int compression)<br>
+</pre>
+<p>Create a buffered output for the progressive saving of a file If filename is "-' then we use stdout as the output. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. TODO: currently if compression is set, the library only support writing to a local file.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>a C string containing the URI or filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoder</tt></i>:</span></td>
+<td>the encoding converter or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>compression</tt></i>:</span></td>
+<td>the compression ration (0 none, 9 max).</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new output or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferCreateIO"></a>xmlOutputBufferCreateIO ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>      xmlOutputBufferCreateIO (<a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> iowrite, <br>                                            <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> ioclose, <br>                                            void * ioctx, <br>                                              <a href="libxml2-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a> encoder)<br>
+</pre>
+<p>Create a buffered output for the progressive saving to an I/O handler</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>iowrite</tt></i>:</span></td>
+<td>an I/O write function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioclose</tt></i>:</span></td>
+<td>an I/O close function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioctx</tt></i>:</span></td>
+<td>an I/O handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoder</tt></i>:</span></td>
+<td>the charset encoding if known</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser output or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferFlush"></a>xmlOutputBufferFlush ()</h3>
+<pre class="programlisting">int        xmlOutputBufferFlush            (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out)<br>
+</pre>
+<p>flushes the output I/O channel</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>a buffered output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferGetContent"></a>xmlOutputBufferGetContent ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlOutputBufferGetContent       (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out)<br>
+</pre>
+<p>Gives a pointer to the data currently held in the output buffer</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the data or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferGetSize"></a>xmlOutputBufferGetSize ()</h3>
+<pre class="programlisting">size_t     xmlOutputBufferGetSize          (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out)<br>
+</pre>
+<p>Gives the length of the data currently held in the output buffer</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case or error or no data is held, the size otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferWrite"></a>xmlOutputBufferWrite ()</h3>
+<pre class="programlisting">int        xmlOutputBufferWrite            (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br>                                         int len, <br>                                   const char * buf)<br>
+</pre>
+<p>Write the content of the array in the output I/O buffer This routine handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>a buffered parser output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the size in bytes of the array.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>an char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of chars immediately written, or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferWriteEscape"></a>xmlOutputBufferWriteEscape ()</h3>
+<pre class="programlisting">int        xmlOutputBufferWriteEscape      (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escaping)<br>
+</pre>
+<p>Write the content of the string in the output I/O buffer This routine escapes the <a href="libxml2-SAX.html#characters">characters</a> and then handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>a buffered parser output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>a zero terminated UTF-8 string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>escaping</tt></i>:</span></td>
+<td>an optional escaping function (or NULL)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of chars immediately written, or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlOutputBufferWriteString"></a>xmlOutputBufferWriteString ()</h3>
+<pre class="programlisting">int        xmlOutputBufferWriteString      (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out, <br>                                         const char * str)<br>
+</pre>
+<p>Write the content of the string in the output I/O buffer This routine handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>a buffered parser output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>a zero terminated C string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of chars immediately written, or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserGetDirectory"></a>xmlParserGetDirectory ()</h3>
+<pre class="programlisting">char *     xmlParserGetDirectory           (const char * filename)<br>
+</pre>
+<p>lookup the directory for that file</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the path to a file</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new allocated string containing the directory, or NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferCreateFd"></a>xmlParserInputBufferCreateFd ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlParserInputBufferCreateFd    (int fd, <br>                                                    <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Create a buffered parser input for the progressive parsing for the input from a file descriptor</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>fd</tt></i>:</span></td>
+<td>a file descriptor number</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the charset encoding if known</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser input or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferCreateFile"></a>xmlParserInputBufferCreateFile ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlParserInputBufferCreateFile  (FILE * file, <br>                                                       <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Create a buffered parser input for the progressive parsing of a FILE * buffered C I/O</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>file</tt></i>:</span></td>
+<td>a FILE*</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the charset encoding if known</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser input or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferCreateFilename"></a>xmlParserInputBufferCreateFilename ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlParserInputBufferCreateFilename      (const char * URI, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Create a buffered parser input for the progressive parsing of a file If filename is "-' then we use stdin as the input. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. Do an encoding check if enc == <a href="libxml2-encoding.html#XML_CHAR_ENCODING_NONE">XML_CHAR_ENCODING_NONE</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>a C string containing the URI or filename</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the charset encoding if known</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser input or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferCreateIO"></a>xmlParserInputBufferCreateIO ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlParserInputBufferCreateIO    (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                                      void * ioctx, <br>                                                      <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Create a buffered parser input for the progressive parsing for the input from an I/O handler</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ioread</tt></i>:</span></td>
+<td>an I/O read function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioclose</tt></i>:</span></td>
+<td>an I/O close function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioctx</tt></i>:</span></td>
+<td>an I/O handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the charset encoding if known</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser input or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferCreateMem"></a>xmlParserInputBufferCreateMem ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlParserInputBufferCreateMem   (const char * mem, <br>                                                  int size, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Create a buffered parser input for the progressive parsing for the input from a memory area.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>mem</tt></i>:</span></td>
+<td>the memory input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the length of the memory block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the charset encoding if known</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser input or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferCreateStatic"></a>xmlParserInputBufferCreateStatic ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlParserInputBufferCreateStatic        (const char * mem, <br>                                                  int size, <br>                                                  <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc)<br>
+</pre>
+<p>Create a buffered parser input for the progressive parsing for the input from an immutable memory area. This will not copy the memory area to the buffer, but the memory is expected to be available until the end of the parsing, this is useful for example when using mmap'ed file.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>mem</tt></i>:</span></td>
+<td>the memory input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the length of the memory block</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>the charset encoding if known</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new parser input or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferGrow"></a>xmlParserInputBufferGrow ()</h3>
+<pre class="programlisting">int        xmlParserInputBufferGrow        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br>                                        int len)<br>
+</pre>
+<p>Grow up the content of the input buffer, the old data are preserved This routine handle the I18N transcoding to internal UTF-8 This routine is used when operating the parser in normal (pull) mode TODO: one should be able to remove one extra copy by copying directly onto in-&gt;buffer or in-&gt;raw</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>a buffered parser input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>indicative value of the amount of chars to read</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of chars read and stored in the buffer, or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferPush"></a>xmlParserInputBufferPush ()</h3>
+<pre class="programlisting">int        xmlParserInputBufferPush        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br>                                        int len, <br>                                   const char * buf)<br>
+</pre>
+<p>Push the content of the arry in the input buffer This routine handle the I18N transcoding to internal UTF-8 This is used when operating the parser in progressive (push) mode.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>a buffered parser input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the size in bytes of the array.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>an char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of chars read and stored in the buffer, or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserInputBufferRead"></a>xmlParserInputBufferRead ()</h3>
+<pre class="programlisting">int        xmlParserInputBufferRead        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> in, <br>                                        int len)<br>
+</pre>
+<p>Refresh the content of the input buffer, the old data are considered consumed This routine handle the I18N transcoding to internal UTF-8</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>in</tt></i>:</span></td>
+<td>a buffered parser input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>indicative value of the amount of chars to read</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of chars read and stored in the buffer, or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPopInputCallbacks"></a>xmlPopInputCallbacks ()</h3>
+<pre class="programlisting">int        xmlPopInputCallbacks            (void)<br>
+</pre>
+<p>Clear the top input callback from the input stack. this includes the compiled-in I/O.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of input callback registered or -1 in case of error.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlPopOutputCallbacks"></a>xmlPopOutputCallbacks ()</h3>
+<pre class="programlisting">int        xmlPopOutputCallbacks           (void)<br>
+</pre>
+<p>Remove the top output callbacks from the output stack. This includes the compiled-in I/O.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of output callback registered or -1 in case of error.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegisterDefaultInputCallbacks"></a>xmlRegisterDefaultInputCallbacks ()</h3>
+<pre class="programlisting">void       xmlRegisterDefaultInputCallbacks        (void)<br>
+</pre>
+<p>Registers the default compiled-in I/O handlers.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegisterDefaultOutputCallbacks"></a>xmlRegisterDefaultOutputCallbacks ()</h3>
+<pre class="programlisting">void       xmlRegisterDefaultOutputCallbacks       (void)<br>
+</pre>
+<p>Registers the default compiled-in I/O handlers.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegisterHTTPPostCallbacks"></a>xmlRegisterHTTPPostCallbacks ()</h3>
+<pre class="programlisting">void       xmlRegisterHTTPPostCallbacks    (void)<br>
+</pre>
+<p>By default, libxml submits HTTP output requests using the "PUT" method. Calling this method changes the HTTP output method to use the "POST" method instead.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegisterInputCallbacks"></a>xmlRegisterInputCallbacks ()</h3>
+<pre class="programlisting">int        xmlRegisterInputCallbacks       (<a href="libxml2-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a> matchFunc, <br>                                    <a href="libxml2-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a> openFunc, <br>                                       <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> readFunc, <br>                                       <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> closeFunc)<br>
+</pre>
+<p>Register a new set of I/O callback for handling parser input.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>matchFunc</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>openFunc</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>readFunc</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>closeFunc</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the registered handler number or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegisterOutputCallbacks"></a>xmlRegisterOutputCallbacks ()</h3>
+<pre class="programlisting">int        xmlRegisterOutputCallbacks      (<a href="libxml2-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a> matchFunc, <br>                                  <a href="libxml2-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a> openFunc, <br>                                     <a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> writeFunc, <br>                                  <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> closeFunc)<br>
+</pre>
+<p>Register a new set of I/O callback for handling output.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>matchFunc</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>openFunc</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>writeFunc</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>closeFunc</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the registered handler number or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 601028b..eb274b9 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlautomata: API to build regexp automata</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlIO.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlerror.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlautomata</span>
-    </h2>
-    <p>xmlautomata - API to build regexp automata</p>
-    <p>the API to build regexp automata </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef <a href="libxml2-xmlautomata.html#xmlAutomataState">xmlAutomataState</a> * <a href="#xmlAutomataStatePtr">xmlAutomataStatePtr</a>;
-typedef struct _xmlAutomata <a href="#xmlAutomata">xmlAutomata</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlautomata: API to build regexp automata</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlIO.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlerror.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlautomata</span></h2>
+<p>xmlautomata - API to build regexp automata</p>
+<p>the API to build regexp automata </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlAutomata <a href="#xmlAutomata">xmlAutomata</a>;
 typedef <a href="libxml2-xmlautomata.html#xmlAutomata">xmlAutomata</a> * <a href="#xmlAutomataPtr">xmlAutomataPtr</a>;
 typedef struct _xmlAutomataState <a href="#xmlAutomataState">xmlAutomataState</a>;
-void   <a href="#xmlFreeAutomata">xmlFreeAutomata</a>                  (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am);
-int    <a href="#xmlAutomataNewCounter">xmlAutomataNewCounter</a>              (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                  int min, <br/>                                  int max);
+typedef <a href="libxml2-xmlautomata.html#xmlAutomataState">xmlAutomataState</a> * <a href="#xmlAutomataStatePtr">xmlAutomataStatePtr</a>;
+<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> <a href="#xmlAutomataCompile">xmlAutomataCompile</a>    (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am);
 <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataGetInitState">xmlAutomataGetInitState</a>  (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am);
-<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a>      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br/>                                                      void * data);
+int    <a href="#xmlAutomataIsDeterminist">xmlAutomataIsDeterminist</a>        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am);
+<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a>    (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                           <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                               <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                 int lax);
+<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a>        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                        int min, <br>                                                   int max, <br>                                                   void * data);
+<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a>      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br>                                                       int min, <br>                                                   int max, <br>                                                   void * data);
+<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a>    (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         int counter);
+int    <a href="#xmlAutomataNewCounter">xmlAutomataNewCounter</a>              (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                   int min, <br>                                   int max);
+<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a>    (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         int counter);
+<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a>      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                           <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                               <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to);
+<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a>    (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                           <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                               <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br>                                               void * data);
+<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a>  (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                           <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                               <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                int min, <br>                                           int max, <br>                                           void * data);
+<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a>        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br>                                                       int min, <br>                                                   int max, <br>                                                   void * data);
 <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewState">xmlAutomataNewState</a>  (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am);
-<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a>        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                                       int min, <br/>                                                  int max, <br/>                                                  void * data);
-<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a>        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br/>                                                      int min, <br/>                                                  int max, <br/>                                                  void * data);
-<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a>    (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                          <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                              <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                int lax);
-<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a>    (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        int counter);
-<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a>    (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        int counter);
-<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> <a href="#xmlAutomataCompile">xmlAutomataCompile</a>    (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am);
-<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a>    (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                          <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                              <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br/>                                              void * data);
-<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a>      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                          <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                              <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to);
-<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a>      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br/>                                                      int min, <br/>                                                  int max, <br/>                                                  void * data);
+<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewTransition">xmlAutomataNewTransition</a>        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                        void * data);
+<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a>      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br>                                                       void * data);
+int    <a href="#xmlAutomataSetFinalState">xmlAutomataSetFinalState</a>        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> state);
+void   <a href="#xmlFreeAutomata">xmlFreeAutomata</a>                  (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am);
 <a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a>   <a href="#xmlNewAutomata">xmlNewAutomata</a>            (void);
-int    <a href="#xmlAutomataSetFinalState">xmlAutomataSetFinalState</a>        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> state);
-<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a>  (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                          <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                              <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                               int min, <br/>                                          int max, <br/>                                          void * data);
-<a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewTransition">xmlAutomataNewTransition</a>        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                                       void * data);
-int    <a href="#xmlAutomataIsDeterminist">xmlAutomataIsDeterminist</a>        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomata">Structure </a>xmlAutomata</h3><pre class="programlisting">struct _xmlAutomata {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomata">Structure </a>xmlAutomata</h3>
+<pre class="programlisting">struct _xmlAutomata {
 The content of this structure is not made public by the API.
 } xmlAutomata;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataPtr">Typedef </a>xmlAutomataPtr</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomata">xmlAutomata</a> * xmlAutomataPtr;
-</pre><p>A libxml automata description, It can be compiled into a regexp</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataPtr">Typedef </a>xmlAutomataPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomata">xmlAutomata</a> * xmlAutomataPtr;
+</pre>
+<p>A libxml automata description, It can be compiled into a regexp</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataState">Structure </a>xmlAutomataState</h3><pre class="programlisting">struct _xmlAutomataState {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataState">Structure </a>xmlAutomataState</h3>
+<pre class="programlisting">struct _xmlAutomataState {
 The content of this structure is not made public by the API.
 } xmlAutomataState;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataStatePtr">Typedef </a>xmlAutomataStatePtr</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataState">xmlAutomataState</a> * xmlAutomataStatePtr;
-</pre><p>A state int the automata description,</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataCompile"/>xmlAutomataCompile ()</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> xmlAutomataCompile      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br/>
-</pre><p>Compile the automata into a Reg Exp ready for being executed. The automata should be free after this point.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the compiled regexp or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataGetInitState"/>xmlAutomataGetInitState ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>       xmlAutomataGetInitState (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br/>
-</pre><p>Initial state lookup</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the initial state of the automata</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataIsDeterminist"/>xmlAutomataIsDeterminist ()</h3><pre class="programlisting">int        xmlAutomataIsDeterminist        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br/>
-</pre><p>Checks if an automata is determinist.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true, 0 if not, and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewAllTrans"/>xmlAutomataNewAllTrans ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewAllTrans  (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                          <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                              <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                int lax)<br/>
-</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a an ALL transition from the @from state to the target state. That transition is an epsilon transition allowed only when all transitions from the @from node have been activated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>lax</tt></i>:</span></td><td>allow to transition if not all all transitions have been activated</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewCountTrans"/>xmlAutomataNewCountTrans ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewCountTrans        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                                       int min, <br/>                                                  int max, <br/>                                                  void * data)<br/>
-</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and whose number is between @min and @max</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the minimum successive occurrences of token</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the maximum successive occurrences of token</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewCountTrans2"/>xmlAutomataNewCountTrans2 ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>   xmlAutomataNewCountTrans2       (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br/>                                                      int min, <br/>                                                  int max, <br/>                                                  void * data)<br/>
-</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>token2</tt></i>:</span></td><td>the second input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the minimum successive occurrences of token</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the maximum successive occurrences of token</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewCountedTrans"/>xmlAutomataNewCountedTrans ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewCountedTrans      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        int counter)<br/>
-</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state which will increment the counter provided</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>counter</tt></i>:</span></td><td>the counter associated to that transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewCounter"/>xmlAutomataNewCounter ()</h3><pre class="programlisting">int      xmlAutomataNewCounter           (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                  int min, <br/>                                  int max)<br/>
-</pre><p>Create a new counter</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the minimal value on the counter</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the maximal value on the counter</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the counter number or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewCounterTrans"/>xmlAutomataNewCounterTrans ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewCounterTrans      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        int counter)<br/>
-</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state which will be allowed only if the counter is within the right range.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>counter</tt></i>:</span></td><td>the counter associated to that transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewEpsilon"/>xmlAutomataNewEpsilon ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>   xmlAutomataNewEpsilon   (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                          <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                              <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to)<br/>
-</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewNegTrans"/>xmlAutomataNewNegTrans ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewNegTrans  (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                          <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                              <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br/>                                              void * data)<br/>
-</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by any value except (@token,@token2) Note that if @token2 is not NULL, then (X, NULL) won't match to follow # the semantic of XSD ##other</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the first input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>token2</tt></i>:</span></td><td>the second input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data passed to the callback function if the transition is activated</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewOnceTrans"/>xmlAutomataNewOnceTrans ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>       xmlAutomataNewOnceTrans (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                          <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                              <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                               int min, <br/>                                          int max, <br/>                                          void * data)<br/>
-</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and whose number is between @min and @max, moreover that transition can only be crossed once.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the minimum successive occurrences of token</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the maximum successive occurrences of token</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewOnceTrans2"/>xmlAutomataNewOnceTrans2 ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewOnceTrans2        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br/>                                                      int min, <br/>                                                  int max, <br/>                                                  void * data)<br/>
-</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max, moreover that transition can only be crossed once.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>token2</tt></i>:</span></td><td>the second input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the minimum successive occurrences of token</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the maximum successive occurrences of token</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewState"/>xmlAutomataNewState ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>       xmlAutomataNewState     (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br/>
-</pre><p>Create a new disconnected state in the automata</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewTransition"/>xmlAutomataNewTransition ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewTransition        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                                       void * data)<br/>
-</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by the value of @token</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data passed to the callback function if the transition is activated</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataNewTransition2"/>xmlAutomataNewTransition2 ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>   xmlAutomataNewTransition2       (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br/>                                                      <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br/>                                                      void * data)<br/>
-</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by the value of @token</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the first input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>token2</tt></i>:</span></td><td>the second input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data passed to the callback function if the transition is activated</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlAutomataSetFinalState"/>xmlAutomataSetFinalState ()</h3><pre class="programlisting">int        xmlAutomataSetFinalState        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br/>                                  <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> state)<br/>
-</pre><p>Makes that state a final state</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>state</tt></i>:</span></td><td>a state in this automata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeAutomata"/>xmlFreeAutomata ()</h3><pre class="programlisting">void xmlFreeAutomata                 (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br/>
-</pre><p>Free an automata</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewAutomata"/>xmlNewAutomata ()</h3><pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a>   xmlNewAutomata          (void)<br/>
-</pre><p>Create a new automata</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new object or NULL in case of failure</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataStatePtr">Typedef </a>xmlAutomataStatePtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataState">xmlAutomataState</a> * xmlAutomataStatePtr;
+</pre>
+<p>A state int the automata description,</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataCompile"></a>xmlAutomataCompile ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a>     xmlAutomataCompile      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br>
+</pre>
+<p>Compile the automata into a Reg Exp ready for being executed. The automata should be free after this point.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the compiled regexp or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataGetInitState"></a>xmlAutomataGetInitState ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataGetInitState (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br>
+</pre>
+<p>Initial state lookup</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the initial state of the automata</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataIsDeterminist"></a>xmlAutomataIsDeterminist ()</h3>
+<pre class="programlisting">int        xmlAutomataIsDeterminist        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br>
+</pre>
+<p>Checks if an automata is determinist.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true, 0 if not, and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewAllTrans"></a>xmlAutomataNewAllTrans ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewAllTrans  (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                           <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                               <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                 int lax)<br>
+</pre>
+<p>If @to is NULL, this creates first a new target state in the automata and then adds a an ALL transition from the @from state to the target state. That transition is an epsilon transition allowed only when all transitions from the @from node have been activated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>the starting point of the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>the target point of the transition or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>lax</tt></i>:</span></td>
+<td>allow to transition if not all all transitions have been activated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the target state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewCountTrans"></a>xmlAutomataNewCountTrans ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewCountTrans        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                        int min, <br>                                                   int max, <br>                                                   void * data)<br>
+</pre>
+<p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and whose number is between @min and @max</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>the starting point of the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>the target point of the transition or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token</tt></i>:</span></td>
+<td>the input string associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>min</tt></i>:</span></td>
+<td>the minimum successive occurrences of token</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>max</tt></i>:</span></td>
+<td>the maximum successive occurrences of token</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>data associated to the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the target state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewCountTrans2"></a>xmlAutomataNewCountTrans2 ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewCountTrans2       (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br>                                                       int min, <br>                                                   int max, <br>                                                   void * data)<br>
+</pre>
+<p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>the starting point of the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>the target point of the transition or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token</tt></i>:</span></td>
+<td>the input string associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token2</tt></i>:</span></td>
+<td>the second input string associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>min</tt></i>:</span></td>
+<td>the minimum successive occurrences of token</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>max</tt></i>:</span></td>
+<td>the maximum successive occurrences of token</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>data associated to the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the target state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewCountedTrans"></a>xmlAutomataNewCountedTrans ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewCountedTrans      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         int counter)<br>
+</pre>
+<p>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state which will increment the counter provided</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>the starting point of the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>the target point of the transition or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>counter</tt></i>:</span></td>
+<td>the counter associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the target state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewCounter"></a>xmlAutomataNewCounter ()</h3>
+<pre class="programlisting">int        xmlAutomataNewCounter           (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                   int min, <br>                                   int max)<br>
+</pre>
+<p>Create a new counter</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>min</tt></i>:</span></td>
+<td>the minimal value on the counter</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>max</tt></i>:</span></td>
+<td>the maximal value on the counter</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the counter number or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewCounterTrans"></a>xmlAutomataNewCounterTrans ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewCounterTrans      (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         int counter)<br>
+</pre>
+<p>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state which will be allowed only if the counter is within the right range.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>the starting point of the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>the target point of the transition or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>counter</tt></i>:</span></td>
+<td>the counter associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the target state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewEpsilon"></a>xmlAutomataNewEpsilon ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewEpsilon   (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                           <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                               <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to)<br>
+</pre>
+<p>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>the starting point of the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>the target point of the transition or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the target state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewNegTrans"></a>xmlAutomataNewNegTrans ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewNegTrans  (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                           <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                               <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br>                                               void * data)<br>
+</pre>
+<p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by any value except (@token,@token2) Note that if @token2 is not NULL, then (X, NULL) won't match to follow # the semantic of XSD ##other</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>the starting point of the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>the target point of the transition or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token</tt></i>:</span></td>
+<td>the first input string associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token2</tt></i>:</span></td>
+<td>the second input string associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>data passed to the callback function if the transition is activated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the target state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewOnceTrans"></a>xmlAutomataNewOnceTrans ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewOnceTrans (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                           <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                               <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                int min, <br>                                           int max, <br>                                           void * data)<br>
+</pre>
+<p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and whose number is between @min and @max, moreover that transition can only be crossed once.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>the starting point of the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>the target point of the transition or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token</tt></i>:</span></td>
+<td>the input string associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>min</tt></i>:</span></td>
+<td>the minimum successive occurrences of token</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>max</tt></i>:</span></td>
+<td>the maximum successive occurrences of token</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>data associated to the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the target state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewOnceTrans2"></a>xmlAutomataNewOnceTrans2 ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewOnceTrans2        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br>                                                       int min, <br>                                                   int max, <br>                                                   void * data)<br>
+</pre>
+<p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max, moreover that transition can only be crossed once.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>the starting point of the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>the target point of the transition or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token</tt></i>:</span></td>
+<td>the input string associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token2</tt></i>:</span></td>
+<td>the second input string associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>min</tt></i>:</span></td>
+<td>the minimum successive occurrences of token</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>max</tt></i>:</span></td>
+<td>the maximum successive occurrences of token</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>data associated to the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the target state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewState"></a>xmlAutomataNewState ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewState     (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br>
+</pre>
+<p>Create a new disconnected state in the automata</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewTransition"></a>xmlAutomataNewTransition ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewTransition        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                        void * data)<br>
+</pre>
+<p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by the value of @token</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>the starting point of the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>the target point of the transition or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token</tt></i>:</span></td>
+<td>the input string associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>data passed to the callback function if the transition is activated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the target state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataNewTransition2"></a>xmlAutomataNewTransition2 ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a>     xmlAutomataNewTransition2       (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br>                                                       <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token2, <br>                                                       void * data)<br>
+</pre>
+<p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by the value of @token</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>the starting point of the transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>the target point of the transition or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token</tt></i>:</span></td>
+<td>the first input string associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token2</tt></i>:</span></td>
+<td>the second input string associated to that transition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>data passed to the callback function if the transition is activated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the target state or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlAutomataSetFinalState"></a>xmlAutomataSetFinalState ()</h3>
+<pre class="programlisting">int        xmlAutomataSetFinalState        (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br>                                   <a href="libxml2-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> state)<br>
+</pre>
+<p>Makes that state a final state</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>state</tt></i>:</span></td>
+<td>a state in this automata</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeAutomata"></a>xmlFreeAutomata ()</h3>
+<pre class="programlisting">void       xmlFreeAutomata                 (<a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br>
+</pre>
+<p>Free an automata</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>am</tt></i>:</span></td>
+<td>an automata</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewAutomata"></a>xmlNewAutomata ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a>       xmlNewAutomata          (void)<br>
+</pre>
+<p>Create a new automata</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new object or NULL in case of failure</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index f8e1eca..f97c8e1 100644 (file)
@@ -1,79 +1,59 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlerror: error handling</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlautomata.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlexports.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlerror</span>
-    </h2>
-    <p>xmlerror - error handling</p>
-    <p>the API used to report errors </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef <a href="libxml2-xmlerror.html#xmlError">xmlError</a> * <a href="#xmlErrorPtr">xmlErrorPtr</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlerror: error handling</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlautomata.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlexports.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlerror</span></h2>
+<p>xmlerror - error handling</p>
+<p>the API used to report errors </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlError <a href="#xmlError">xmlError</a>;
+typedef enum <a href="#xmlErrorDomain">xmlErrorDomain</a>;
 typedef enum <a href="#xmlErrorLevel">xmlErrorLevel</a>;
+typedef <a href="libxml2-xmlerror.html#xmlError">xmlError</a> * <a href="#xmlErrorPtr">xmlErrorPtr</a>;
 typedef enum <a href="#xmlParserErrors">xmlParserErrors</a>;
-typedef enum <a href="#xmlErrorDomain">xmlErrorDomain</a>;
-typedef struct _xmlError <a href="#xmlError">xmlError</a>;
-void   <a href="#xmlParserValidityError">xmlParserValidityError</a>            (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-typedef void <a href="#xmlGenericErrorFunc">xmlGenericErrorFunc</a>            (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-void   <a href="#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a>            (void * ctx, <br/>                                       <a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> handler);
-void   <a href="#xmlParserPrintFileInfo">xmlParserPrintFileInfo</a>            (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input);
-void   <a href="#xmlCtxtResetLastError">xmlCtxtResetLastError</a>              (void * ctx);
-void   <a href="#xmlResetLastError">xmlResetLastError</a>              (void);
 void   <a href="#initGenericErrorDefaultFunc">initGenericErrorDefaultFunc</a>  (<a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> * handler);
-int    <a href="#xmlCopyError">xmlCopyError</a>                        (<a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> from, <br/>                                         <a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> to);
-void   <a href="#xmlParserValidityWarning">xmlParserValidityWarning</a>        (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
+int    <a href="#xmlCopyError">xmlCopyError</a>                        (<a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> from, <br>                                  <a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> to);
+<a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a>    <a href="#xmlCtxtGetLastError">xmlCtxtGetLastError</a>  (void * ctx);
+void   <a href="#xmlCtxtResetLastError">xmlCtxtResetLastError</a>              (void * ctx);
+typedef void <a href="#xmlGenericErrorFunc">xmlGenericErrorFunc</a>            (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+<a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a>    <a href="#xmlGetLastError">xmlGetLastError</a>          (void);
+void   <a href="#xmlParserError">xmlParserError</a>                    (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
 void   <a href="#xmlParserPrintFileContext">xmlParserPrintFileContext</a>      (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input);
-void   <a href="#xmlParserError">xmlParserError</a>                    (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-void   <a href="#xmlParserWarning">xmlParserWarning</a>                (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-typedef void <a href="#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a>              (void * userData, <br/>                                  <a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> error);
-void   <a href="#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a>      (void * ctx, <br/>                                       <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> handler);
+void   <a href="#xmlParserPrintFileInfo">xmlParserPrintFileInfo</a>            (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input);
+void   <a href="#xmlParserValidityError">xmlParserValidityError</a>            (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+void   <a href="#xmlParserValidityWarning">xmlParserValidityWarning</a>        (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+void   <a href="#xmlParserWarning">xmlParserWarning</a>                (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
 void   <a href="#xmlResetError">xmlResetError</a>                      (<a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> err);
-<a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a>    <a href="#xmlGetLastError">xmlGetLastError</a>          (void);
-<a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a>    <a href="#xmlCtxtGetLastError">xmlCtxtGetLastError</a>  (void * ctx);
+void   <a href="#xmlResetLastError">xmlResetLastError</a>              (void);
+void   <a href="#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a>            (void * ctx, <br>                                        <a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> handler);
+void   <a href="#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a>      (void * ctx, <br>                                        <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> handler);
+typedef void <a href="#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a>              (void * userData, <br>                                   <a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> error);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlError">Structure </a>xmlError</h3><pre class="programlisting">struct _xmlError {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlError">Structure </a>xmlError</h3>
+<pre class="programlisting">struct _xmlError {
     int        domain  : What part of the library raised this error
     int        code    : The error code, e.g. an <a href="libxml2-xmlerror.html#xmlParserError">xmlParserError</a>
     char *     message : human-readable informative error message
@@ -88,10 +68,14 @@ void        <a href="#xmlResetError">xmlResetError</a>                      (<a href="libxml2-xmlerror.htm
     void *     ctxt    : the parser context if available
     void *     node    : the node in the tree
 } xmlError;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlErrorDomain">Enum </a>xmlErrorDomain</h3><pre class="programlisting">enum <a href="#xmlErrorDomain">xmlErrorDomain</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlErrorDomain">Enum </a>xmlErrorDomain</h3>
+<pre class="programlisting">enum <a href="#xmlErrorDomain">xmlErrorDomain</a> {
     <a name="XML_FROM_NONE">XML_FROM_NONE</a> = 0
     <a name="XML_FROM_PARSER">XML_FROM_PARSER</a> = 1 /* The XML parser */
     <a name="XML_FROM_TREE">XML_FROM_TREE</a> = 2 /* The tree module */
@@ -124,23 +108,35 @@ void      <a href="#xmlResetError">xmlResetError</a>                      (<a href="libxml2-xmlerror.htm
     <a name="XML_FROM_BUFFER">XML_FROM_BUFFER</a> = 29 /* The buffers module */
     <a name="XML_FROM_URI">XML_FROM_URI</a> = 30 /*  The URI module */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlErrorLevel">Enum </a>xmlErrorLevel</h3><pre class="programlisting">enum <a href="#xmlErrorLevel">xmlErrorLevel</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlErrorLevel">Enum </a>xmlErrorLevel</h3>
+<pre class="programlisting">enum <a href="#xmlErrorLevel">xmlErrorLevel</a> {
     <a name="XML_ERR_NONE">XML_ERR_NONE</a> = 0
     <a name="XML_ERR_WARNING">XML_ERR_WARNING</a> = 1 /* A simple warning */
     <a name="XML_ERR_ERROR">XML_ERR_ERROR</a> = 2 /* A recoverable error */
     <a name="XML_ERR_FATAL">XML_ERR_FATAL</a> = 3 /*  A fatal error */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlErrorPtr">Typedef </a>xmlErrorPtr</h3><pre class="programlisting"><a href="libxml2-xmlerror.html#xmlError">xmlError</a> * xmlErrorPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlErrorPtr">Typedef </a>xmlErrorPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlerror.html#xmlError">xmlError</a> * xmlErrorPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserErrors">Enum </a>xmlParserErrors</h3><pre class="programlisting">enum <a href="#xmlParserErrors">xmlParserErrors</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserErrors">Enum </a>xmlParserErrors</h3>
+<pre class="programlisting">enum <a href="#xmlParserErrors">xmlParserErrors</a> {
     <a name="XML_ERR_OK">XML_ERR_OK</a> = 0
     <a name="XML_ERR_INTERNAL_ERROR">XML_ERR_INTERNAL_ERROR</a> = 1 /* 1 */
     <a name="XML_ERR_NO_MEMORY">XML_ERR_NO_MEMORY</a> = 2 /* 2 */
@@ -878,78 +874,343 @@ void     <a href="#xmlResetError">xmlResetError</a>                      (<a href="libxml2-xmlerror.htm
     <a name="XML_I18N_NO_OUTPUT">XML_I18N_NO_OUTPUT</a> = 6004 /* 6004 */
     <a name="XML_BUF_OVERFLOW">XML_BUF_OVERFLOW</a> = 7000
 };
-</pre><p/>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGenericErrorFunc"></a>Function type xmlGenericErrorFunc</h3>
+<pre class="programlisting">void       xmlGenericErrorFunc             (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Signature of the function to use when there is an error and no parsing or validity context available .</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>a parsing context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>the extra arguments of the varargs to format the message</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStructuredErrorFunc"></a>Function type xmlStructuredErrorFunc</h3>
+<pre class="programlisting">void       xmlStructuredErrorFunc          (void * userData, <br>                                   <a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> error)<br>
+</pre>
+<p>Signature of the function to use when there is an error and the module handles the new error reporting mechanism.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>userData</tt></i>:</span></td>
+<td>user provided data for the error callback</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>error</tt></i>:</span></td>
+<td>the error being raised.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="initGenericErrorDefaultFunc"></a>initGenericErrorDefaultFunc ()</h3>
+<pre class="programlisting">void       initGenericErrorDefaultFunc     (<a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> * handler)<br>
+</pre>
+<p>Set or reset (if NULL) the default handler for generic errors to the builtin error function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td>the handler</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCopyError"></a>xmlCopyError ()</h3>
+<pre class="programlisting">int        xmlCopyError                    (<a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> from, <br>                                  <a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> to)<br>
+</pre>
+<p>Save the original error to the new place.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>from</tt></i>:</span></td>
+<td>a source error</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>to</tt></i>:</span></td>
+<td>a target error</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCtxtGetLastError"></a>xmlCtxtGetLastError ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a>        xmlCtxtGetLastError     (void * ctx)<br>
+</pre>
+<p>Get the last parsing error registered.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if no error occurred or a pointer to the error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCtxtResetLastError"></a>xmlCtxtResetLastError ()</h3>
+<pre class="programlisting">void       xmlCtxtResetLastError           (void * ctx)<br>
+</pre>
+<p>Cleanup the last global error registered. For parsing error this does not change the well-formedness result.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetLastError"></a>xmlGetLastError ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a>        xmlGetLastError         (void)<br>
+</pre>
+<p>Get the last global error registered. This is per thread if compiled with thread support.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>NULL if no error occurred or a pointer to the error</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserError"></a>xmlParserError ()</h3>
+<pre class="programlisting">void       xmlParserError                  (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Display and format an error messages, gives file, line, position and extra parameters.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message to display/transmit</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the message display</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserPrintFileContext"></a>xmlParserPrintFileContext ()</h3>
+<pre class="programlisting">void       xmlParserPrintFileContext       (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input)<br>
+</pre>
+<p>Displays current context within the input content for error tracking</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserPrintFileInfo"></a>xmlParserPrintFileInfo ()</h3>
+<pre class="programlisting">void       xmlParserPrintFileInfo          (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input)<br>
+</pre>
+<p>Displays the associated file and line information for the current input</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserValidityError"></a>xmlParserValidityError ()</h3>
+<pre class="programlisting">void       xmlParserValidityError          (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Display and format an validity error messages, gives file, line, position and extra parameters.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message to display/transmit</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the message display</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserValidityWarning"></a>xmlParserValidityWarning ()</h3>
+<pre class="programlisting">void       xmlParserValidityWarning        (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Display and format a validity warning messages, gives file, line, position and extra parameters.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message to display/transmit</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the message display</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserWarning"></a>xmlParserWarning ()</h3>
+<pre class="programlisting">void       xmlParserWarning                (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Display and format a warning messages, gives file, line, position and extra parameters.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>an XML parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message to display/transmit</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the message display</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlResetError"></a>xmlResetError ()</h3>
+<pre class="programlisting">void       xmlResetError                   (<a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> err)<br>
+</pre>
+<p>Cleanup the error.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>err</tt></i>:</span></td>
+<td>pointer to the error.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlResetLastError"></a>xmlResetLastError ()</h3>
+<pre class="programlisting">void       xmlResetLastError               (void)<br>
+</pre>
+<p>Cleanup the last global error registered. For parsing error this does not change the well-formedness result.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetGenericErrorFunc"></a>xmlSetGenericErrorFunc ()</h3>
+<pre class="programlisting">void       xmlSetGenericErrorFunc          (void * ctx, <br>                                        <a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> handler)<br>
+</pre>
+<p>Function to reset the handler and the error context for out of context error messages. This simply means that @handler will be called for subsequent error messages while not parsing nor validating. And @ctx will be passed as first argument to @handler One can simply force messages to be emitted to another FILE * than stderr by setting @ctx to this file handle and @handler to NULL. For multi-threaded applications, this must be set separately for each thread.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the new error handling context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td>the new handler function</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSetStructuredErrorFunc"></a>xmlSetStructuredErrorFunc ()</h3>
+<pre class="programlisting">void       xmlSetStructuredErrorFunc       (void * ctx, <br>                                        <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> handler)<br>
+</pre>
+<p>Function to reset the handler and the error context for out of context structured error messages. This simply means that @handler will be called for subsequent error messages while not parsing nor validating. And @ctx will be passed as first argument to @handler For multi-threaded applications, this must be set separately for each thread.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the new error handling context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>handler</tt></i>:</span></td>
+<td>the new handler function</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGenericErrorFunc"/>Function type xmlGenericErrorFunc</h3><pre class="programlisting">void      xmlGenericErrorFunc             (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Signature of the function to use when there is an error and no parsing or validity context available .</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>a parsing context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>the extra arguments of the varargs to format the message</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStructuredErrorFunc"/>Function type xmlStructuredErrorFunc</h3><pre class="programlisting">void        xmlStructuredErrorFunc          (void * userData, <br/>                                  <a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> error)<br/>
-</pre><p>Signature of the function to use when there is an error and the module handles the new error reporting mechanism.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>userData</tt></i>:</span></td><td>user provided data for the error callback</td></tr><tr><td><span class="term"><i><tt>error</tt></i>:</span></td><td>the error being raised.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="initGenericErrorDefaultFunc"/>initGenericErrorDefaultFunc ()</h3><pre class="programlisting">void initGenericErrorDefaultFunc     (<a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> * handler)<br/>
-</pre><p>Set or reset (if NULL) the default handler for generic errors to the builtin error function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>the handler</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCopyError"/>xmlCopyError ()</h3><pre class="programlisting">int        xmlCopyError                    (<a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> from, <br/>                                         <a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> to)<br/>
-</pre><p>Save the original error to the new place.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>a source error</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>a target error</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCtxtGetLastError"/>xmlCtxtGetLastError ()</h3><pre class="programlisting"><a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a>  xmlCtxtGetLastError     (void * ctx)<br/>
-</pre><p>Get the last parsing error registered.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if no error occurred or a pointer to the error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCtxtResetLastError"/>xmlCtxtResetLastError ()</h3><pre class="programlisting">void     xmlCtxtResetLastError           (void * ctx)<br/>
-</pre><p>Cleanup the last global error registered. For parsing error this does not change the well-formedness result.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetLastError"/>xmlGetLastError ()</h3><pre class="programlisting"><a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a>  xmlGetLastError         (void)<br/>
-</pre><p>Get the last global error registered. This is per thread if compiled with thread support.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>NULL if no error occurred or a pointer to the error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserError"/>xmlParserError ()</h3><pre class="programlisting">void   xmlParserError                  (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Display and format an error messages, gives file, line, position and extra parameters.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message to display/transmit</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the message display</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserPrintFileContext"/>xmlParserPrintFileContext ()</h3><pre class="programlisting">void     xmlParserPrintFileContext       (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input)<br/>
-</pre><p>Displays current context within the input content for error tracking</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserPrintFileInfo"/>xmlParserPrintFileInfo ()</h3><pre class="programlisting">void   xmlParserPrintFileInfo          (<a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input)<br/>
-</pre><p>Displays the associated file and line information for the current input</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlParserInputPtr">xmlParserInputPtr</a> input</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserValidityError"/>xmlParserValidityError ()</h3><pre class="programlisting">void   xmlParserValidityError          (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Display and format an validity error messages, gives file, line, position and extra parameters.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message to display/transmit</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the message display</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserValidityWarning"/>xmlParserValidityWarning ()</h3><pre class="programlisting">void       xmlParserValidityWarning        (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Display and format a validity warning messages, gives file, line, position and extra parameters.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message to display/transmit</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the message display</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserWarning"/>xmlParserWarning ()</h3><pre class="programlisting">void       xmlParserWarning                (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Display and format a warning messages, gives file, line, position and extra parameters.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message to display/transmit</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the message display</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlResetError"/>xmlResetError ()</h3><pre class="programlisting">void     xmlResetError                   (<a href="libxml2-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a> err)<br/>
-</pre><p>Cleanup the error.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>pointer to the error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlResetLastError"/>xmlResetLastError ()</h3><pre class="programlisting">void     xmlResetLastError               (void)<br/>
-</pre><p>Cleanup the last global error registered. For parsing error this does not change the well-formedness result.</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetGenericErrorFunc"/>xmlSetGenericErrorFunc ()</h3><pre class="programlisting">void   xmlSetGenericErrorFunc          (void * ctx, <br/>                                       <a href="libxml2-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> handler)<br/>
-</pre><p>Function to reset the handler and the error context for out of context error messages. This simply means that @handler will be called for subsequent error messages while not parsing nor validating. And @ctx will be passed as first argument to @handler One can simply force messages to be emitted to another FILE * than stderr by setting @ctx to this file handle and @handler to NULL. For multi-threaded applications, this must be set separately for each thread.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the new error handling context</td></tr><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>the new handler function</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSetStructuredErrorFunc"/>xmlSetStructuredErrorFunc ()</h3><pre class="programlisting">void     xmlSetStructuredErrorFunc       (void * ctx, <br/>                                       <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> handler)<br/>
-</pre><p>Function to reset the handler and the error context for out of context structured error messages. This simply means that @handler will be called for subsequent error messages while not parsing nor validating. And @ctx will be passed as first argument to @handler For multi-threaded applications, this must be set separately for each thread.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the new error handling context</td></tr><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>the new handler function</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</body>
 </html>
index 2ac2daf..9bf475e 100644 (file)
@@ -1,87 +1,88 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlexports: macros for marking symbols as exportable/importable.</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlerror.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlmemory.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlexports</span>
-    </h2>
-    <p>xmlexports - macros for marking symbols as exportable/importable.</p>
-    <p>macros for marking symbols as exportable/importable. </p>
-    <p>Author(s): </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#XMLCDECL">XMLCDECL</a>;
-#define <a href="#XMLPUBLIC">XMLPUBLIC</a>;
-#define <a href="#XMLPUBVAR">XMLPUBVAR</a>;
-#define <a href="#LIBXML_DLL_IMPORT">LIBXML_DLL_IMPORT</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlexports: macros for marking symbols as exportable/importable.</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlerror.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlmemory.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlexports</span></h2>
+<p>xmlexports - macros for marking symbols as exportable/importable.</p>
+<p>macros for marking symbols as exportable/importable. </p>
+<p>Author(s): </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#LIBXML_DLL_IMPORT">LIBXML_DLL_IMPORT</a>;
 #define <a href="#XMLCALL">XMLCALL</a>;
+#define <a href="#XMLCDECL">XMLCDECL</a>;
 #define <a href="#XMLPUBFUN">XMLPUBFUN</a>;
+#define <a href="#XMLPUBLIC">XMLPUBLIC</a>;
+#define <a href="#XMLPUBVAR">XMLPUBVAR</a>;
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_DLL_IMPORT">Macro </a>LIBXML_DLL_IMPORT</h3><pre class="programlisting">#define <a href="#LIBXML_DLL_IMPORT">LIBXML_DLL_IMPORT</a>;
-</pre><p/>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XMLCALL">Macro </a>XMLCALL</h3><pre class="programlisting">#define <a href="#XMLCALL">XMLCALL</a>;
-</pre><p>Macro which declares the calling convention for exported functions</p>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_DLL_IMPORT">Macro </a>LIBXML_DLL_IMPORT</h3>
+<pre class="programlisting">#define <a href="#LIBXML_DLL_IMPORT">LIBXML_DLL_IMPORT</a>;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XMLCDECL">Macro </a>XMLCDECL</h3><pre class="programlisting">#define <a href="#XMLCDECL">XMLCDECL</a>;
-</pre><p>Macro which declares the calling convention for exported functions that use '...'.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XMLCALL">Macro </a>XMLCALL</h3>
+<pre class="programlisting">#define <a href="#XMLCALL">XMLCALL</a>;
+</pre>
+<p>Macro which declares the calling convention for exported functions</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XMLPUBFUN">Macro </a>XMLPUBFUN</h3><pre class="programlisting">#define <a href="#XMLPUBFUN">XMLPUBFUN</a>;
-</pre><p>Macro which declares an exportable function</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XMLCDECL">Macro </a>XMLCDECL</h3>
+<pre class="programlisting">#define <a href="#XMLCDECL">XMLCDECL</a>;
+</pre>
+<p>Macro which declares the calling convention for exported functions that use '...'.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XMLPUBFUN">Macro </a>XMLPUBFUN</h3>
+<pre class="programlisting">#define <a href="#XMLPUBFUN">XMLPUBFUN</a>;
+</pre>
+<p>Macro which declares an exportable function</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XMLPUBLIC">Macro </a>XMLPUBLIC</h3>
+<pre class="programlisting">#define <a href="#XMLPUBLIC">XMLPUBLIC</a>;
+</pre>
+<p>Macro which declares a public symbol</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XMLPUBVAR">Macro </a>XMLPUBVAR</h3>
+<pre class="programlisting">#define <a href="#XMLPUBVAR">XMLPUBVAR</a>;
+</pre>
+<p>Macro which declares an exportable variable</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XMLPUBLIC">Macro </a>XMLPUBLIC</h3><pre class="programlisting">#define <a href="#XMLPUBLIC">XMLPUBLIC</a>;
-</pre><p>Macro which declares a public symbol</p>
+<hr>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XMLPUBVAR">Macro </a>XMLPUBVAR</h3><pre class="programlisting">#define <a href="#XMLPUBVAR">XMLPUBVAR</a>;
-</pre><p>Macro which declares an exportable variable</p>
 </div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</body>
 </html>
index 4c45a26..e1aef9d 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlmemory: interface for the memory allocator</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlexports.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlmodule.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlmemory</span>
-    </h2>
-    <p>xmlmemory - interface for the memory allocator</p>
-    <p>provides interfaces for the memory allocator, including debugging capabilities. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#xmlRealloc">xmlRealloc</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlmemory: interface for the memory allocator</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlexports.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlmodule.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlmemory</span></h2>
+<p>xmlmemory - interface for the memory allocator</p>
+<p>provides interfaces for the memory allocator, including debugging capabilities. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#DEBUG_MEMORY">DEBUG_MEMORY</a>;
 #define <a href="#xmlMalloc">xmlMalloc</a>;
 #define <a href="#xmlMallocAtomic">xmlMallocAtomic</a>;
-#define <a href="#DEBUG_MEMORY">DEBUG_MEMORY</a>;
 #define <a href="#xmlMemStrdup">xmlMemStrdup</a>;
-void * <a href="#xmlMemRealloc">xmlMemRealloc</a>                      (void * ptr, <br/>                                       size_t size);
+#define <a href="#xmlRealloc">xmlRealloc</a>;
+void   <a href="#xmlCleanupMemory">xmlCleanupMemory</a>                (void);
+typedef void <a href="#xmlFreeFunc">xmlFreeFunc</a>                    (void * mem);
+int    <a href="#xmlGcMemGet">xmlGcMemGet</a>                  (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> * freeFunc, <br>                                   <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocFunc, <br>                                     <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocAtomicFunc, <br>                                       <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> * reallocFunc, <br>                                  <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> * strdupFunc);
+int    <a href="#xmlGcMemSetup">xmlGcMemSetup</a>                      (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> freeFunc, <br>                                     <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocFunc, <br>                                       <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocAtomicFunc, <br>                                         <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> reallocFunc, <br>                                    <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> strdupFunc);
 int    <a href="#xmlInitMemory">xmlInitMemory</a>                      (void);
+void * <a href="#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a>            (size_t size, <br>                                       const char * file, <br>                                         int line);
+typedef void * <a href="#xmlMallocFunc">xmlMallocFunc</a>                      (size_t size);
+void * <a href="#xmlMallocLoc">xmlMallocLoc</a>                        (size_t size, <br>                                       const char * file, <br>                                         int line);
+int    <a href="#xmlMemBlocks">xmlMemBlocks</a>                        (void);
+void   <a href="#xmlMemDisplay">xmlMemDisplay</a>                      (FILE * fp);
+void   <a href="#xmlMemDisplayLast">xmlMemDisplayLast</a>              (FILE * fp, <br>                                         long nbBytes);
 void   <a href="#xmlMemFree">xmlMemFree</a>                    (void * ptr);
+int    <a href="#xmlMemGet">xmlMemGet</a>                      (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> * freeFunc, <br>                                   <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocFunc, <br>                                     <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> * reallocFunc, <br>                                  <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> * strdupFunc);
 void * <a href="#xmlMemMalloc">xmlMemMalloc</a>                        (size_t size);
-void   <a href="#xmlMemDisplayLast">xmlMemDisplayLast</a>              (FILE * fp, <br/>                                        long nbBytes);
-int    <a href="#xmlMemGet">xmlMemGet</a>                      (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> * freeFunc, <br/>                                  <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocFunc, <br/>                                    <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> * reallocFunc, <br/>                                         <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> * strdupFunc);
-void   <a href="#xmlMemoryDump">xmlMemoryDump</a>                      (void);
-void * <a href="#xmlMallocLoc">xmlMallocLoc</a>                        (size_t size, <br/>                                      const char * file, <br/>                                        int line);
-void   <a href="#xmlMemDisplay">xmlMemDisplay</a>                      (FILE * fp);
-int    <a href="#xmlMemBlocks">xmlMemBlocks</a>                        (void);
-int    <a href="#xmlGcMemGet">xmlGcMemGet</a>                  (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> * freeFunc, <br/>                                  <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocFunc, <br/>                                    <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocAtomicFunc, <br/>                                      <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> * reallocFunc, <br/>                                         <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> * strdupFunc);
-typedef char * <a href="#xmlStrdupFunc">xmlStrdupFunc</a>                      (const char * str);
-typedef void <a href="#xmlFreeFunc">xmlFreeFunc</a>                    (void * mem);
-void   <a href="#xmlMemShow">xmlMemShow</a>                    (FILE * fp, <br/>                                        int nr);
-void * <a href="#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a>            (size_t size, <br/>                                      const char * file, <br/>                                        int line);
-void * <a href="#xmlReallocLoc">xmlReallocLoc</a>                      (void * ptr, <br/>                                       size_t size, <br/>                                      const char * file, <br/>                                        int line);
-void   <a href="#xmlCleanupMemory">xmlCleanupMemory</a>                (void);
+void * <a href="#xmlMemRealloc">xmlMemRealloc</a>                      (void * ptr, <br>                                        size_t size);
+int    <a href="#xmlMemSetup">xmlMemSetup</a>                  (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> freeFunc, <br>                                     <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocFunc, <br>                                       <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> reallocFunc, <br>                                    <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> strdupFunc);
+void   <a href="#xmlMemShow">xmlMemShow</a>                    (FILE * fp, <br>                                         int nr);
+char * <a href="#xmlMemStrdupLoc">xmlMemStrdupLoc</a>                  (const char * str, <br>                                  const char * file, <br>                                         int line);
 int    <a href="#xmlMemUsed">xmlMemUsed</a>                    (void);
-int    <a href="#xmlMemSetup">xmlMemSetup</a>                  (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> freeFunc, <br/>                                    <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocFunc, <br/>                                      <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> reallocFunc, <br/>                                   <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> strdupFunc);
-typedef void * <a href="#xmlReallocFunc">xmlReallocFunc</a>                    (void * mem, <br/>                                       size_t size);
-typedef void * <a href="#xmlMallocFunc">xmlMallocFunc</a>                      (size_t size);
-int    <a href="#xmlGcMemSetup">xmlGcMemSetup</a>                      (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> freeFunc, <br/>                                    <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocFunc, <br/>                                      <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocAtomicFunc, <br/>                                        <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> reallocFunc, <br/>                                   <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> strdupFunc);
+void   <a href="#xmlMemoryDump">xmlMemoryDump</a>                      (void);
 char * <a href="#xmlMemoryStrdup">xmlMemoryStrdup</a>                  (const char * str);
-char * <a href="#xmlMemStrdupLoc">xmlMemStrdupLoc</a>                  (const char * str, <br/>                                         const char * file, <br/>                                        int line);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="DEBUG_MEMORY">Macro </a>DEBUG_MEMORY</h3><pre class="programlisting">#define <a href="#DEBUG_MEMORY">DEBUG_MEMORY</a>;
-</pre><p><a href="libxml2-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a> replaces the allocator with a collect and debug shell to the libc allocator. <a href="libxml2-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a> should only be activated when debugging libxml i.e. if libxml has been configured with --with-debug-mem too. #define DEBUG_MEMORY_FREED #define <a href="libxml2-xmlversion.html#DEBUG_MEMORY_LOCATION">DEBUG_MEMORY_LOCATION</a></p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeFunc"/>Function type xmlFreeFunc</h3><pre class="programlisting">void      xmlFreeFunc                     (void * mem)<br/>
-</pre><p>Signature for a free() implementation.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>mem</tt></i>:</span></td><td>an already allocated block of memory</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMallocFunc"/>Function type xmlMallocFunc</h3><pre class="programlisting">void *        xmlMallocFunc                   (size_t size)<br/>
-</pre><p>Signature for a malloc() implementation.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size requested in bytes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the newly allocated block or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReallocFunc"/>Function type xmlReallocFunc</h3><pre class="programlisting">void *      xmlReallocFunc                  (void * mem, <br/>                                       size_t size)<br/>
-</pre><p>Signature for a realloc() implementation.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>mem</tt></i>:</span></td><td>an already allocated block of memory</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the new size requested in bytes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the newly reallocated block or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrdupFunc"/>Function type xmlStrdupFunc</h3><pre class="programlisting">char *        xmlStrdupFunc                   (const char * str)<br/>
-</pre><p>Signature for an strdup() implementation.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>a zero terminated string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the copy of the string or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCleanupMemory"/>xmlCleanupMemory ()</h3><pre class="programlisting">void       xmlCleanupMemory                (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Free up all the memory allocated by the library for its own use. This should not be called by user level code.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGcMemGet"/>xmlGcMemGet ()</h3><pre class="programlisting">int  xmlGcMemGet                     (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> * freeFunc, <br/>                                  <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocFunc, <br/>                                    <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocAtomicFunc, <br/>                                      <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> * reallocFunc, <br/>                                         <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> * strdupFunc)<br/>
-</pre><p>Provides the memory access functions set currently in use The mallocAtomicFunc is specialized for atomic block allocations (i.e. of areas useful for garbage collected memory allocators</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>freeFunc</tt></i>:</span></td><td>place to save the free() function in use</td></tr><tr><td><span class="term"><i><tt>mallocFunc</tt></i>:</span></td><td>place to save the malloc() function in use</td></tr><tr><td><span class="term"><i><tt>mallocAtomicFunc</tt></i>:</span></td><td>place to save the atomic malloc() function in use</td></tr><tr><td><span class="term"><i><tt>reallocFunc</tt></i>:</span></td><td>place to save the realloc() function in use</td></tr><tr><td><span class="term"><i><tt>strdupFunc</tt></i>:</span></td><td>place to save the strdup() function in use</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 on success</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGcMemSetup"/>xmlGcMemSetup ()</h3><pre class="programlisting">int      xmlGcMemSetup                   (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> freeFunc, <br/>                                    <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocFunc, <br/>                                      <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocAtomicFunc, <br/>                                        <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> reallocFunc, <br/>                                   <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> strdupFunc)<br/>
-</pre><p>Override the default memory access functions with a new set This has to be called before any other libxml routines ! The mallocAtomicFunc is specialized for atomic block allocations (i.e. of areas useful for garbage collected memory allocators Should this be blocked if there was already some allocations done ?</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>freeFunc</tt></i>:</span></td><td>the free() function to use</td></tr><tr><td><span class="term"><i><tt>mallocFunc</tt></i>:</span></td><td>the malloc() function to use</td></tr><tr><td><span class="term"><i><tt>mallocAtomicFunc</tt></i>:</span></td><td>the malloc() function to use for atomic allocations</td></tr><tr><td><span class="term"><i><tt>reallocFunc</tt></i>:</span></td><td>the realloc() function to use</td></tr><tr><td><span class="term"><i><tt>strdupFunc</tt></i>:</span></td><td>the strdup() function to use</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 on success</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlInitMemory"/>xmlInitMemory ()</h3><pre class="programlisting">int      xmlInitMemory                   (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Initialize the memory layer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 on success</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMallocAtomicLoc"/>xmlMallocAtomicLoc ()</h3><pre class="programlisting">void * xmlMallocAtomicLoc              (size_t size, <br/>                                      const char * file, <br/>                                        int line)<br/>
-</pre><p>a malloc() equivalent, with logging of the allocation info.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>an unsigned int specifying the size in byte to allocate.</td></tr><tr><td><span class="term"><i><tt>file</tt></i>:</span></td><td>the file name or NULL</td></tr><tr><td><span class="term"><i><tt>line</tt></i>:</span></td><td>the line number</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the allocated area or NULL in case of lack of memory.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMallocLoc"/>xmlMallocLoc ()</h3><pre class="programlisting">void *     xmlMallocLoc                    (size_t size, <br/>                                      const char * file, <br/>                                        int line)<br/>
-</pre><p>a malloc() equivalent, with logging of the allocation info.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>an int specifying the size in byte to allocate.</td></tr><tr><td><span class="term"><i><tt>file</tt></i>:</span></td><td>the file name or NULL</td></tr><tr><td><span class="term"><i><tt>line</tt></i>:</span></td><td>the line number</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the allocated area or NULL in case of lack of memory.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemBlocks"/>xmlMemBlocks ()</h3><pre class="programlisting">int        xmlMemBlocks                    (void)<br/>
-</pre><p>Provides the number of memory areas currently allocated</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an int representing the number of blocks</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemDisplay"/>xmlMemDisplay ()</h3><pre class="programlisting">void     xmlMemDisplay                   (FILE * fp)<br/>
-</pre><p>show in-extenso the memory blocks allocated</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>fp</tt></i>:</span></td><td>a FILE descriptor used as the output file, if NULL, the result is written to the file .memorylist</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemDisplayLast"/>xmlMemDisplayLast ()</h3><pre class="programlisting">void     xmlMemDisplayLast               (FILE * fp, <br/>                                        long nbBytes)<br/>
-</pre><p>the last nbBytes of memory allocated and not freed, useful for dumping the memory left allocated between two places at runtime.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>fp</tt></i>:</span></td><td>a FILE descriptor used as the output file, if NULL, the result is written to the file .memorylist</td></tr><tr><td><span class="term"><i><tt>nbBytes</tt></i>:</span></td><td>the amount of memory to dump</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemFree"/>xmlMemFree ()</h3><pre class="programlisting">void   xmlMemFree                      (void * ptr)<br/>
-</pre><p>a free() equivalent, with error checking.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ptr</tt></i>:</span></td><td>the memory block pointer</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemGet"/>xmlMemGet ()</h3><pre class="programlisting">int      xmlMemGet                       (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> * freeFunc, <br/>                                  <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocFunc, <br/>                                    <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> * reallocFunc, <br/>                                         <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> * strdupFunc)<br/>
-</pre><p>Provides the memory access functions set currently in use</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>freeFunc</tt></i>:</span></td><td>place to save the free() function in use</td></tr><tr><td><span class="term"><i><tt>mallocFunc</tt></i>:</span></td><td>place to save the malloc() function in use</td></tr><tr><td><span class="term"><i><tt>reallocFunc</tt></i>:</span></td><td>place to save the realloc() function in use</td></tr><tr><td><span class="term"><i><tt>strdupFunc</tt></i>:</span></td><td>place to save the strdup() function in use</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 on success</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemMalloc"/>xmlMemMalloc ()</h3><pre class="programlisting">void *     xmlMemMalloc                    (size_t size)<br/>
-</pre><p>a malloc() equivalent, with logging of the allocation info.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>an int specifying the size in byte to allocate.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the allocated area or NULL in case of lack of memory.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemRealloc"/>xmlMemRealloc ()</h3><pre class="programlisting">void *   xmlMemRealloc                   (void * ptr, <br/>                                       size_t size)<br/>
-</pre><p>a realloc() equivalent, with logging of the allocation info.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ptr</tt></i>:</span></td><td>the initial memory block pointer</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>an int specifying the size in byte to allocate.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the allocated area or NULL in case of lack of memory.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemSetup"/>xmlMemSetup ()</h3><pre class="programlisting">int  xmlMemSetup                     (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> freeFunc, <br/>                                    <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocFunc, <br/>                                      <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> reallocFunc, <br/>                                   <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> strdupFunc)<br/>
-</pre><p>Override the default memory access functions with a new set This has to be called before any other libxml routines ! Should this be blocked if there was already some allocations done ?</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>freeFunc</tt></i>:</span></td><td>the free() function to use</td></tr><tr><td><span class="term"><i><tt>mallocFunc</tt></i>:</span></td><td>the malloc() function to use</td></tr><tr><td><span class="term"><i><tt>reallocFunc</tt></i>:</span></td><td>the realloc() function to use</td></tr><tr><td><span class="term"><i><tt>strdupFunc</tt></i>:</span></td><td>the strdup() function to use</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 on success</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemShow"/>xmlMemShow ()</h3><pre class="programlisting">void   xmlMemShow                      (FILE * fp, <br/>                                        int nr)<br/>
-</pre><p>show a show display of the memory allocated, and dump the @nr last allocated areas which were not freed</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>fp</tt></i>:</span></td><td>a FILE descriptor used as the output file</td></tr><tr><td><span class="term"><i><tt>nr</tt></i>:</span></td><td>number of entries to dump</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemStrdupLoc"/>xmlMemStrdupLoc ()</h3><pre class="programlisting">char *       xmlMemStrdupLoc                 (const char * str, <br/>                                         const char * file, <br/>                                        int line)<br/>
-</pre><p>a strdup() equivalent, with logging of the allocation info.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the initial string pointer</td></tr><tr><td><span class="term"><i><tt>file</tt></i>:</span></td><td>the file name or NULL</td></tr><tr><td><span class="term"><i><tt>line</tt></i>:</span></td><td>the line number</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new string or NULL if allocation error occurred.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemUsed"/>xmlMemUsed ()</h3><pre class="programlisting">int    xmlMemUsed                      (void)<br/>
-</pre><p>Provides the amount of memory currently allocated</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an int representing the amount of memory allocated.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemoryDump"/>xmlMemoryDump ()</h3><pre class="programlisting">void     xmlMemoryDump                   (void)<br/>
-</pre><p>Dump in-extenso the memory blocks allocated to the file .memorylist</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlMemoryStrdup"/>xmlMemoryStrdup ()</h3><pre class="programlisting">char *       xmlMemoryStrdup                 (const char * str)<br/>
-</pre><p>a strdup() equivalent, with logging of the allocation info.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the initial string pointer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new string or NULL if allocation error occurred.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReallocLoc"/>xmlReallocLoc ()</h3><pre class="programlisting">void *   xmlReallocLoc                   (void * ptr, <br/>                                       size_t size, <br/>                                      const char * file, <br/>                                        int line)<br/>
-</pre><p>a realloc() equivalent, with logging of the allocation info.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ptr</tt></i>:</span></td><td>the initial memory block pointer</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>an int specifying the size in byte to allocate.</td></tr><tr><td><span class="term"><i><tt>file</tt></i>:</span></td><td>the file name or NULL</td></tr><tr><td><span class="term"><i><tt>line</tt></i>:</span></td><td>the line number</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the allocated area or NULL in case of lack of memory.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+typedef void * <a href="#xmlReallocFunc">xmlReallocFunc</a>                    (void * mem, <br>                                        size_t size);
+void * <a href="#xmlReallocLoc">xmlReallocLoc</a>                      (void * ptr, <br>                                        size_t size, <br>                                       const char * file, <br>                                         int line);
+typedef char * <a href="#xmlStrdupFunc">xmlStrdupFunc</a>                      (const char * str);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="DEBUG_MEMORY">Macro </a>DEBUG_MEMORY</h3>
+<pre class="programlisting">#define <a href="#DEBUG_MEMORY">DEBUG_MEMORY</a>;
+</pre>
+<p><a href="libxml2-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a> replaces the allocator with a collect and debug shell to the libc allocator. <a href="libxml2-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a> should only be activated when debugging libxml i.e. if libxml has been configured with --with-debug-mem too. #define DEBUG_MEMORY_FREED #define <a href="libxml2-xmlversion.html#DEBUG_MEMORY_LOCATION">DEBUG_MEMORY_LOCATION</a></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeFunc"></a>Function type xmlFreeFunc</h3>
+<pre class="programlisting">void       xmlFreeFunc                     (void * mem)<br>
+</pre>
+<p>Signature for a free() implementation.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>mem</tt></i>:</span></td>
+<td>an already allocated block of memory</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMallocFunc"></a>Function type xmlMallocFunc</h3>
+<pre class="programlisting">void *     xmlMallocFunc                   (size_t size)<br>
+</pre>
+<p>Signature for a malloc() implementation.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size requested in bytes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the newly allocated block or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReallocFunc"></a>Function type xmlReallocFunc</h3>
+<pre class="programlisting">void *     xmlReallocFunc                  (void * mem, <br>                                        size_t size)<br>
+</pre>
+<p>Signature for a realloc() implementation.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>mem</tt></i>:</span></td>
+<td>an already allocated block of memory</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the new size requested in bytes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the newly reallocated block or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrdupFunc"></a>Function type xmlStrdupFunc</h3>
+<pre class="programlisting">char *     xmlStrdupFunc                   (const char * str)<br>
+</pre>
+<p>Signature for an strdup() implementation.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>a zero terminated string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the copy of the string or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCleanupMemory"></a>xmlCleanupMemory ()</h3>
+<pre class="programlisting">void       xmlCleanupMemory                (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Free up all the memory allocated by the library for its own use. This should not be called by user level code.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGcMemGet"></a>xmlGcMemGet ()</h3>
+<pre class="programlisting">int        xmlGcMemGet                     (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> * freeFunc, <br>                                   <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocFunc, <br>                                     <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocAtomicFunc, <br>                                       <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> * reallocFunc, <br>                                  <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> * strdupFunc)<br>
+</pre>
+<p>Provides the memory access functions set currently in use The mallocAtomicFunc is specialized for atomic block allocations (i.e. of areas useful for garbage collected memory allocators</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>freeFunc</tt></i>:</span></td>
+<td>place to save the free() function in use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mallocFunc</tt></i>:</span></td>
+<td>place to save the malloc() function in use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mallocAtomicFunc</tt></i>:</span></td>
+<td>place to save the atomic malloc() function in use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>reallocFunc</tt></i>:</span></td>
+<td>place to save the realloc() function in use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>strdupFunc</tt></i>:</span></td>
+<td>place to save the strdup() function in use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 on success</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGcMemSetup"></a>xmlGcMemSetup ()</h3>
+<pre class="programlisting">int        xmlGcMemSetup                   (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> freeFunc, <br>                                     <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocFunc, <br>                                       <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocAtomicFunc, <br>                                         <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> reallocFunc, <br>                                    <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> strdupFunc)<br>
+</pre>
+<p>Override the default memory access functions with a new set This has to be called before any other libxml routines ! The mallocAtomicFunc is specialized for atomic block allocations (i.e. of areas useful for garbage collected memory allocators Should this be blocked if there was already some allocations done ?</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>freeFunc</tt></i>:</span></td>
+<td>the free() function to use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mallocFunc</tt></i>:</span></td>
+<td>the malloc() function to use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mallocAtomicFunc</tt></i>:</span></td>
+<td>the malloc() function to use for atomic allocations</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>reallocFunc</tt></i>:</span></td>
+<td>the realloc() function to use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>strdupFunc</tt></i>:</span></td>
+<td>the strdup() function to use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 on success</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlInitMemory"></a>xmlInitMemory ()</h3>
+<pre class="programlisting">int        xmlInitMemory                   (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Initialize the memory layer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 on success</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMallocAtomicLoc"></a>xmlMallocAtomicLoc ()</h3>
+<pre class="programlisting">void *     xmlMallocAtomicLoc              (size_t size, <br>                                       const char * file, <br>                                         int line)<br>
+</pre>
+<p>a malloc() equivalent, with logging of the allocation info.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>an unsigned int specifying the size in byte to allocate.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>file</tt></i>:</span></td>
+<td>the file name or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>line</tt></i>:</span></td>
+<td>the line number</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the allocated area or NULL in case of lack of memory.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMallocLoc"></a>xmlMallocLoc ()</h3>
+<pre class="programlisting">void *     xmlMallocLoc                    (size_t size, <br>                                       const char * file, <br>                                         int line)<br>
+</pre>
+<p>a malloc() equivalent, with logging of the allocation info.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>an int specifying the size in byte to allocate.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>file</tt></i>:</span></td>
+<td>the file name or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>line</tt></i>:</span></td>
+<td>the line number</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the allocated area or NULL in case of lack of memory.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemBlocks"></a>xmlMemBlocks ()</h3>
+<pre class="programlisting">int        xmlMemBlocks                    (void)<br>
+</pre>
+<p>Provides the number of memory areas currently allocated</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an int representing the number of blocks</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemDisplay"></a>xmlMemDisplay ()</h3>
+<pre class="programlisting">void       xmlMemDisplay                   (FILE * fp)<br>
+</pre>
+<p>show in-extenso the memory blocks allocated</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>fp</tt></i>:</span></td>
+<td>a FILE descriptor used as the output file, if NULL, the result is written to the file .memorylist</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemDisplayLast"></a>xmlMemDisplayLast ()</h3>
+<pre class="programlisting">void       xmlMemDisplayLast               (FILE * fp, <br>                                         long nbBytes)<br>
+</pre>
+<p>the last nbBytes of memory allocated and not freed, useful for dumping the memory left allocated between two places at runtime.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>fp</tt></i>:</span></td>
+<td>a FILE descriptor used as the output file, if NULL, the result is written to the file .memorylist</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nbBytes</tt></i>:</span></td>
+<td>the amount of memory to dump</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemFree"></a>xmlMemFree ()</h3>
+<pre class="programlisting">void       xmlMemFree                      (void * ptr)<br>
+</pre>
+<p>a free() equivalent, with error checking.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ptr</tt></i>:</span></td>
+<td>the memory block pointer</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemGet"></a>xmlMemGet ()</h3>
+<pre class="programlisting">int        xmlMemGet                       (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> * freeFunc, <br>                                   <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> * mallocFunc, <br>                                     <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> * reallocFunc, <br>                                  <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> * strdupFunc)<br>
+</pre>
+<p>Provides the memory access functions set currently in use</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>freeFunc</tt></i>:</span></td>
+<td>place to save the free() function in use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mallocFunc</tt></i>:</span></td>
+<td>place to save the malloc() function in use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>reallocFunc</tt></i>:</span></td>
+<td>place to save the realloc() function in use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>strdupFunc</tt></i>:</span></td>
+<td>place to save the strdup() function in use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 on success</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemMalloc"></a>xmlMemMalloc ()</h3>
+<pre class="programlisting">void *     xmlMemMalloc                    (size_t size)<br>
+</pre>
+<p>a malloc() equivalent, with logging of the allocation info.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>an int specifying the size in byte to allocate.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the allocated area or NULL in case of lack of memory.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemRealloc"></a>xmlMemRealloc ()</h3>
+<pre class="programlisting">void *     xmlMemRealloc                   (void * ptr, <br>                                        size_t size)<br>
+</pre>
+<p>a realloc() equivalent, with logging of the allocation info.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ptr</tt></i>:</span></td>
+<td>the initial memory block pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>an int specifying the size in byte to allocate.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the allocated area or NULL in case of lack of memory.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemSetup"></a>xmlMemSetup ()</h3>
+<pre class="programlisting">int        xmlMemSetup                     (<a href="libxml2-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a> freeFunc, <br>                                     <a href="libxml2-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a> mallocFunc, <br>                                       <a href="libxml2-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a> reallocFunc, <br>                                    <a href="libxml2-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a> strdupFunc)<br>
+</pre>
+<p>Override the default memory access functions with a new set This has to be called before any other libxml routines ! Should this be blocked if there was already some allocations done ?</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>freeFunc</tt></i>:</span></td>
+<td>the free() function to use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>mallocFunc</tt></i>:</span></td>
+<td>the malloc() function to use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>reallocFunc</tt></i>:</span></td>
+<td>the realloc() function to use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>strdupFunc</tt></i>:</span></td>
+<td>the strdup() function to use</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 on success</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemShow"></a>xmlMemShow ()</h3>
+<pre class="programlisting">void       xmlMemShow                      (FILE * fp, <br>                                         int nr)<br>
+</pre>
+<p>show a show display of the memory allocated, and dump the @nr last allocated areas which were not freed</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>fp</tt></i>:</span></td>
+<td>a FILE descriptor used as the output file</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nr</tt></i>:</span></td>
+<td>number of entries to dump</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemStrdupLoc"></a>xmlMemStrdupLoc ()</h3>
+<pre class="programlisting">char *     xmlMemStrdupLoc                 (const char * str, <br>                                  const char * file, <br>                                         int line)<br>
+</pre>
+<p>a strdup() equivalent, with logging of the allocation info.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the initial string pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>file</tt></i>:</span></td>
+<td>the file name or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>line</tt></i>:</span></td>
+<td>the line number</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new string or NULL if allocation error occurred.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemUsed"></a>xmlMemUsed ()</h3>
+<pre class="programlisting">int        xmlMemUsed                      (void)<br>
+</pre>
+<p>Provides the amount of memory currently allocated</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an int representing the amount of memory allocated.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemoryDump"></a>xmlMemoryDump ()</h3>
+<pre class="programlisting">void       xmlMemoryDump                   (void)<br>
+</pre>
+<p>Dump in-extenso the memory blocks allocated to the file .memorylist</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlMemoryStrdup"></a>xmlMemoryStrdup ()</h3>
+<pre class="programlisting">char *     xmlMemoryStrdup                 (const char * str)<br>
+</pre>
+<p>a strdup() equivalent, with logging of the allocation info.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the initial string pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new string or NULL if allocation error occurred.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReallocLoc"></a>xmlReallocLoc ()</h3>
+<pre class="programlisting">void *     xmlReallocLoc                   (void * ptr, <br>                                        size_t size, <br>                                       const char * file, <br>                                         int line)<br>
+</pre>
+<p>a realloc() equivalent, with logging of the allocation info.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ptr</tt></i>:</span></td>
+<td>the initial memory block pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>an int specifying the size in byte to allocate.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>file</tt></i>:</span></td>
+<td>the file name or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>line</tt></i>:</span></td>
+<td>the line number</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the allocated area or NULL in case of lack of memory.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 28c5bec..e28329b 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlmodule: dynamic module loading</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlmemory.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlreader.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlmodule</span>
-    </h2>
-    <p>xmlmodule - dynamic module loading</p>
-    <p>basic API for dynamic module loading, used by libexslt added in 2.6.17 </p>
-    <p>Author(s): Joel W. Reed </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef struct _xmlModule <a href="#xmlModule">xmlModule</a>;
-typedef <a href="libxml2-xmlmodule.html#xmlModule">xmlModule</a> * <a href="#xmlModulePtr">xmlModulePtr</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlmodule: dynamic module loading</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlmemory.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlreader.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlmodule</span></h2>
+<p>xmlmodule - dynamic module loading</p>
+<p>basic API for dynamic module loading, used by libexslt added in 2.6.17 </p>
+<p>Author(s): Joel W. Reed </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlModule <a href="#xmlModule">xmlModule</a>;
 typedef enum <a href="#xmlModuleOption">xmlModuleOption</a>;
-int    <a href="#xmlModuleFree">xmlModuleFree</a>                      (<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module);
-int    <a href="#xmlModuleSymbol">xmlModuleSymbol</a>                  (<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module, <br/>                                    const char * name, <br/>                                        void ** symbol);
-<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> <a href="#xmlModuleOpen">xmlModuleOpen</a>              (const char * name, <br/>                                        int options);
+typedef <a href="libxml2-xmlmodule.html#xmlModule">xmlModule</a> * <a href="#xmlModulePtr">xmlModulePtr</a>;
 int    <a href="#xmlModuleClose">xmlModuleClose</a>                    (<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module);
+int    <a href="#xmlModuleFree">xmlModuleFree</a>                      (<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module);
+<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> <a href="#xmlModuleOpen">xmlModuleOpen</a>              (const char * name, <br>                                         int options);
+int    <a href="#xmlModuleSymbol">xmlModuleSymbol</a>                  (<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module, <br>                                     const char * name, <br>                                         void ** symbol);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlModule">Structure </a>xmlModule</h3><pre class="programlisting">struct _xmlModule {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlModule">Structure </a>xmlModule</h3>
+<pre class="programlisting">struct _xmlModule {
 The content of this structure is not made public by the API.
 } xmlModule;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlModuleOption">Enum </a>xmlModuleOption</h3><pre class="programlisting">enum <a href="#xmlModuleOption">xmlModuleOption</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlModuleOption">Enum </a>xmlModuleOption</h3>
+<pre class="programlisting">enum <a href="#xmlModuleOption">xmlModuleOption</a> {
     <a name="XML_MODULE_LAZY">XML_MODULE_LAZY</a> = 1 /* lazy binding */
     <a name="XML_MODULE_LOCAL">XML_MODULE_LOCAL</a> = 2 /*  local binding */
 };
-</pre><p/>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlModulePtr">Typedef </a>xmlModulePtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlmodule.html#xmlModule">xmlModule</a> * xmlModulePtr;
+</pre>
+<p>A handle to a dynamically loaded module</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlModuleClose"></a>xmlModuleClose ()</h3>
+<pre class="programlisting">int        xmlModuleClose                  (<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module)<br>
+</pre>
+<p>The close operations unload the associated module and free the data associated to the module.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>module</tt></i>:</span></td>
+<td>the module handle</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 in case of argument error and -2 if the module could not be closed/unloaded.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlModuleFree"></a>xmlModuleFree ()</h3>
+<pre class="programlisting">int        xmlModuleFree                   (<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module)<br>
+</pre>
+<p>The free operations free the data associated to the module but does not unload the associated shared library which may still be in use.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>module</tt></i>:</span></td>
+<td>the module handle</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 in case of argument error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlModuleOpen"></a>xmlModuleOpen ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a>     xmlModuleOpen           (const char * name, <br>                                         int options)<br>
+</pre>
+<p>Opens a module/shared library given its name or path NOTE: that due to portability issues, behaviour can only be guaranteed with @name using ASCII. We cannot guarantee that an UTF-8 string would work, which is why name is a const char * and not a const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * . TODO: options are not yet implemented.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the module name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a set of <a href="libxml2-xmlmodule.html#xmlModuleOption">xmlModuleOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a handle for the module or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlModuleSymbol"></a>xmlModuleSymbol ()</h3>
+<pre class="programlisting">int        xmlModuleSymbol                 (<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module, <br>                                     const char * name, <br>                                         void ** symbol)<br>
+</pre>
+<p>Lookup for a symbol address in the given module NOTE: that due to portability issues, behaviour can only be guaranteed with @name using ASCII. We cannot guarantee that an UTF-8 string would work, which is why name is a const char * and not a const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * .</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>module</tt></i>:</span></td>
+<td>the module</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the symbol</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>symbol</tt></i>:</span></td>
+<td>the resulting symbol address</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the symbol was found, or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlModulePtr">Typedef </a>xmlModulePtr</h3><pre class="programlisting"><a href="libxml2-xmlmodule.html#xmlModule">xmlModule</a> * xmlModulePtr;
-</pre><p>A handle to a dynamically loaded module</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlModuleClose"/>xmlModuleClose ()</h3><pre class="programlisting">int    xmlModuleClose                  (<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module)<br/>
-</pre><p>The close operations unload the associated module and free the data associated to the module.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>module</tt></i>:</span></td><td>the module handle</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of argument error and -2 if the module could not be closed/unloaded.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlModuleFree"/>xmlModuleFree ()</h3><pre class="programlisting">int      xmlModuleFree                   (<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module)<br/>
-</pre><p>The free operations free the data associated to the module but does not unload the associated shared library which may still be in use.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>module</tt></i>:</span></td><td>the module handle</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of argument error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlModuleOpen"/>xmlModuleOpen ()</h3><pre class="programlisting"><a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a>   xmlModuleOpen           (const char * name, <br/>                                        int options)<br/>
-</pre><p>Opens a module/shared library given its name or path NOTE: that due to portability issues, behaviour can only be guaranteed with @name using ASCII. We cannot guarantee that an UTF-8 string would work, which is why name is a const char * and not a const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * . TODO: options are not yet implemented.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the module name</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a set of <a href="libxml2-xmlmodule.html#xmlModuleOption">xmlModuleOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a handle for the module or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlModuleSymbol"/>xmlModuleSymbol ()</h3><pre class="programlisting">int  xmlModuleSymbol                 (<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module, <br/>                                    const char * name, <br/>                                        void ** symbol)<br/>
-</pre><p>Lookup for a symbol address in the given module NOTE: that due to portability issues, behaviour can only be guaranteed with @name using ASCII. We cannot guarantee that an UTF-8 string would work, which is why name is a const char * and not a const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * .</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>module</tt></i>:</span></td><td>the module</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the symbol</td></tr><tr><td><span class="term"><i><tt>symbol</tt></i>:</span></td><td>the resulting symbol address</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the symbol was found, or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</body>
 </html>
index a000d56..0230687 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlreader: the XMLReader implementation</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlmodule.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlregexp.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlreader</span>
-    </h2>
-    <p>xmlreader - the XMLReader implementation</p>
-    <p>API of the XML streaming API based on C# interfaces. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef <a href="libxml2-xmlreader.html#xmlTextReader">xmlTextReader</a> * <a href="#xmlTextReaderPtr">xmlTextReaderPtr</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlreader: the XMLReader implementation</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlmodule.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlregexp.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlreader</span></h2>
+<p>xmlreader - the XMLReader implementation</p>
+<p>API of the XML streaming API based on C# interfaces. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef enum <a href="#xmlParserProperties">xmlParserProperties</a>;
 typedef enum <a href="#xmlParserSeverities">xmlParserSeverities</a>;
-typedef enum <a href="#xmlParserProperties">xmlParserProperties</a>;
-typedef enum <a href="#xmlTextReaderMode">xmlTextReaderMode</a>;
+typedef enum <a href="#xmlReaderTypes">xmlReaderTypes</a>;
 typedef struct _xmlTextReader <a href="#xmlTextReader">xmlTextReader</a>;
 typedef void * <a href="#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a>;
-typedef enum <a href="#xmlReaderTypes">xmlReaderTypes</a>;
+typedef enum <a href="#xmlTextReaderMode">xmlTextReaderMode</a>;
+typedef <a href="libxml2-xmlreader.html#xmlTextReader">xmlTextReader</a> * <a href="#xmlTextReaderPtr">xmlTextReaderPtr</a>;
+void   <a href="#xmlFreeTextReader">xmlFreeTextReader</a>              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlNewTextReader">xmlNewTextReader</a>        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br>                                             const char * URI);
 <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlNewTextReaderFilename">xmlNewTextReaderFilename</a>        (const char * URI);
-int    <a href="#xmlTextReaderHasAttributes">xmlTextReaderHasAttributes</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderReadState">xmlTextReaderReadState</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderForFile">xmlReaderForFile</a>        (const char * filename, <br/>                                            const char * encoding, <br/>                                            int options);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstNamespaceUri">xmlTextReaderConstNamespaceUri</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderGetParserLineNumber">xmlTextReaderGetParserLineNumber</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlTextReaderExpand">xmlTextReaderExpand</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderForDoc">xmlReaderForDoc</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-int    <a href="#xmlReaderNewIO">xmlReaderNewIO</a>                    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
+<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderForDoc">xmlReaderForDoc</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderForFd">xmlReaderForFd</a>    (int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderForFile">xmlReaderForFile</a>        (const char * filename, <br>                                             const char * encoding, <br>                                             int options);
+<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderForIO">xmlReaderForIO</a>    (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderForMemory">xmlReaderForMemory</a>    (const char * buffer, <br>                                               int size, <br>                                          const char * URL, <br>                                          const char * encoding, <br>                                             int options);
+int    <a href="#xmlReaderNewDoc">xmlReaderNewDoc</a>                  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+int    <a href="#xmlReaderNewFd">xmlReaderNewFd</a>                    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+int    <a href="#xmlReaderNewFile">xmlReaderNewFile</a>                (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const char * filename, <br>                                     const char * encoding, <br>                                     int options);
+int    <a href="#xmlReaderNewIO">xmlReaderNewIO</a>                    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+int    <a href="#xmlReaderNewMemory">xmlReaderNewMemory</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const char * buffer, <br>                                       int size, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options);
+int    <a href="#xmlReaderNewWalker">xmlReaderNewWalker</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderWalker">xmlReaderWalker</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+int    <a href="#xmlTextReaderAttributeCount">xmlTextReaderAttributeCount</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderBaseUri">xmlTextReaderBaseUri</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+long   <a href="#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
 int    <a href="#xmlTextReaderClose">xmlTextReaderClose</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstBaseUri">xmlTextReaderConstBaseUri</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstEncoding">xmlTextReaderConstEncoding</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderNormalization">xmlTextReaderNormalization</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderGetParserProp">xmlTextReaderGetParserProp</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    int prop);
-int    <a href="#xmlTextReaderMoveToAttribute">xmlTextReaderMoveToAttribute</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlTextReaderQuoteChar">xmlTextReaderQuoteChar</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderValue">xmlTextReaderValue</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderIsValid">xmlTextReaderIsValid</a>                (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderMoveToFirstAttribute">xmlTextReaderMoveToFirstAttribute</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderGetParserColumnNumber">xmlTextReaderGetParserColumnNumber</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstValue">xmlTextReaderConstValue</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlNewTextReader">xmlNewTextReader</a>        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br/>                                            const char * URI);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderGetAttributeNo">xmlTextReaderGetAttributeNo</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            int no);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderGetAttributeNs">xmlTextReaderGetAttributeNs</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstLocalName">xmlTextReaderConstLocalName</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstName">xmlTextReaderConstName</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstString">xmlTextReaderConstString</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstNamespaceUri">xmlTextReaderConstNamespaceUri</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstPrefix">xmlTextReaderConstPrefix</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstString">xmlTextReaderConstString</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstValue">xmlTextReaderConstValue</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstXmlVersion">xmlTextReaderConstXmlVersion</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>    <a href="#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
 int    <a href="#xmlTextReaderDepth">xmlTextReaderDepth</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderReadString">xmlTextReaderReadString</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+typedef void <a href="#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a>              (void * arg, <br>                                        const char * msg, <br>                                  <a href="libxml2-xmlreader.html#xmlParserSeverities">xmlParserSeverities</a> severity, <br>                                     <a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> locator);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlTextReaderExpand">xmlTextReaderExpand</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderGetAttribute">xmlTextReaderGetAttribute</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderGetAttributeNo">xmlTextReaderGetAttributeNo</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             int no);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderGetAttributeNs">xmlTextReaderGetAttributeNs</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI);
+void   <a href="#xmlTextReaderGetErrorHandler">xmlTextReaderGetErrorHandler</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a> * f, <br>                                    void ** arg);
+int    <a href="#xmlTextReaderGetParserColumnNumber">xmlTextReaderGetParserColumnNumber</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderGetParserLineNumber">xmlTextReaderGetParserLineNumber</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderGetParserProp">xmlTextReaderGetParserProp</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     int prop);
+<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderHasAttributes">xmlTextReaderHasAttributes</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderHasValue">xmlTextReaderHasValue</a>              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
 int    <a href="#xmlTextReaderIsDefault">xmlTextReaderIsDefault</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderMoveToNextAttribute">xmlTextReaderMoveToNextAttribute</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlReaderNewWalker">xmlReaderNewWalker</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstPrefix">xmlTextReaderConstPrefix</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderWalker">xmlReaderWalker</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstLocalName">xmlTextReaderConstLocalName</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderNodeType">xmlTextReaderNodeType</a>              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-void   <a href="#xmlFreeTextReader">xmlFreeTextReader</a>              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderName">xmlTextReaderName</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderRead">xmlTextReaderRead</a>              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
 int    <a href="#xmlTextReaderIsEmptyElement">xmlTextReaderIsEmptyElement</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlReaderNewMemory">xmlReaderNewMemory</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const char * buffer, <br/>                                      int size, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-int    <a href="#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   int options);
-int    <a href="#xmlTextReaderHasValue">xmlTextReaderHasValue</a>              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstBaseUri">xmlTextReaderConstBaseUri</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderBaseUri">xmlTextReaderBaseUri</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderMoveToAttributeNo">xmlTextReaderMoveToAttributeNo</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    int no);
+int    <a href="#xmlTextReaderIsNamespaceDecl">xmlTextReaderIsNamespaceDecl</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderIsValid">xmlTextReaderIsValid</a>                (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderLocalName">xmlTextReaderLocalName</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderLocatorBaseURI">xmlTextReaderLocatorBaseURI</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> locator);
 int    <a href="#xmlTextReaderLocatorLineNumber">xmlTextReaderLocatorLineNumber</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> locator);
-int    <a href="#xmlTextReaderMoveToAttributeNs">xmlTextReaderMoveToAttributeNs</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI);
-int    <a href="#xmlTextReaderNext">xmlTextReaderNext</a>              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderAttributeCount">xmlTextReaderAttributeCount</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
+int    <a href="#xmlTextReaderMoveToAttribute">xmlTextReaderMoveToAttribute</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlTextReaderMoveToAttributeNo">xmlTextReaderMoveToAttributeNo</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     int no);
+int    <a href="#xmlTextReaderMoveToAttributeNs">xmlTextReaderMoveToAttributeNs</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI);
 int    <a href="#xmlTextReaderMoveToElement">xmlTextReaderMoveToElement</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderForIO">xmlReaderForIO</a>    (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderRelaxNGValidateCtxt">xmlTextReaderRelaxNGValidateCtxt</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            <a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                            int options);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderPrefix">xmlTextReaderPrefix</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderMoveToFirstAttribute">xmlTextReaderMoveToFirstAttribute</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderMoveToNextAttribute">xmlTextReaderMoveToNextAttribute</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderName">xmlTextReaderName</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderNamespaceUri">xmlTextReaderNamespaceUri</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderNext">xmlTextReaderNext</a>              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
 int    <a href="#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-typedef void <a href="#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a>              (void * arg, <br/>                                       const char * msg, <br/>                                         <a href="libxml2-xmlreader.html#xmlParserSeverities">xmlParserSeverities</a> severity, <br/>                                    <a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> locator);
-<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderForFd">xmlReaderForFd</a>    (int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderGetAttribute">xmlTextReaderGetAttribute</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderLocalName">xmlTextReaderLocalName</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderNodeType">xmlTextReaderNodeType</a>              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderNormalization">xmlTextReaderNormalization</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderPrefix">xmlTextReaderPrefix</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
 <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlTextReaderPreserve">xmlTextReaderPreserve</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    int prop, <br/>                                         int value);
-<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>        <a href="#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-void   <a href="#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a> f, <br/>                                     void * arg);
-int    <a href="#xmlTextReaderIsNamespaceDecl">xmlTextReaderIsNamespaceDecl</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlReaderNewDoc">xmlReaderNewDoc</a>                  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-int    <a href="#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pattern, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-void   <a href="#xmlTextReaderGetErrorHandler">xmlTextReaderGetErrorHandler</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a> * f, <br/>                                   void ** arg);
-void   <a href="#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> f, <br/>                                              void * arg);
-int    <a href="#xmlReaderNewFile">xmlReaderNewFile</a>                (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const char * filename, <br/>                                    const char * encoding, <br/>                                    int options);
-int    <a href="#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema);
-int    <a href="#xmlReaderNewFd">xmlReaderNewFd</a>                    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-int    <a href="#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const char * rng);
-<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> <a href="#xmlReaderForMemory">xmlReaderForMemory</a>    (const char * buffer, <br/>                                              int size, <br/>                                                 const char * URL, <br/>                                                 const char * encoding, <br/>                                            int options);
-int    <a href="#xmlTextReaderSetup">xmlTextReaderSetup</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br/>                                    const char * URL, <br/>                                         const char * encoding, <br/>                                    int options);
-long   <a href="#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderLocatorBaseURI">xmlTextReaderLocatorBaseURI</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> locator);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderNamespaceUri">xmlTextReaderNamespaceUri</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
-int    <a href="#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const char * xsd);
+int    <a href="#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pattern, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces);
+int    <a href="#xmlTextReaderQuoteChar">xmlTextReaderQuoteChar</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderRead">xmlTextReaderRead</a>              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderReadState">xmlTextReaderReadState</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderReadString">xmlTextReaderReadString</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+int    <a href="#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a>      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema);
+int    <a href="#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const char * rng);
+int    <a href="#xmlTextReaderRelaxNGValidateCtxt">xmlTextReaderRelaxNGValidateCtxt</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             <a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                             int options);
+int    <a href="#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const char * xsd);
+int    <a href="#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a>  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    int options);
+void   <a href="#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a> f, <br>                                      void * arg);
+int    <a href="#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     int prop, <br>                                  int value);
+int    <a href="#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema);
+void   <a href="#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> f, <br>                                               void * arg);
+int    <a href="#xmlTextReaderSetup">xmlTextReaderSetup</a>            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br>                                     const char * URL, <br>                                  const char * encoding, <br>                                     int options);
 int    <a href="#xmlTextReaderStandalone">xmlTextReaderStandalone</a>          (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderValue">xmlTextReaderValue</a>    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a>        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlParserProperties">Enum </a>xmlParserProperties</h3><pre class="programlisting">enum <a href="#xmlParserProperties">xmlParserProperties</a> {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserProperties">Enum </a>xmlParserProperties</h3>
+<pre class="programlisting">enum <a href="#xmlParserProperties">xmlParserProperties</a> {
     <a name="XML_PARSER_LOADDTD">XML_PARSER_LOADDTD</a> = 1
     <a name="XML_PARSER_DEFAULTATTRS">XML_PARSER_DEFAULTATTRS</a> = 2
     <a name="XML_PARSER_VALIDATE">XML_PARSER_VALIDATE</a> = 3
     <a name="XML_PARSER_SUBST_ENTITIES">XML_PARSER_SUBST_ENTITIES</a> = 4
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlParserSeverities">Enum </a>xmlParserSeverities</h3><pre class="programlisting">enum <a href="#xmlParserSeverities">xmlParserSeverities</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlParserSeverities">Enum </a>xmlParserSeverities</h3>
+<pre class="programlisting">enum <a href="#xmlParserSeverities">xmlParserSeverities</a> {
     <a name="XML_PARSER_SEVERITY_VALIDITY_WARNING">XML_PARSER_SEVERITY_VALIDITY_WARNING</a> = 1
     <a name="XML_PARSER_SEVERITY_VALIDITY_ERROR">XML_PARSER_SEVERITY_VALIDITY_ERROR</a> = 2
     <a name="XML_PARSER_SEVERITY_WARNING">XML_PARSER_SEVERITY_WARNING</a> = 3
     <a name="XML_PARSER_SEVERITY_ERROR">XML_PARSER_SEVERITY_ERROR</a> = 4
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderTypes">Enum </a>xmlReaderTypes</h3><pre class="programlisting">enum <a href="#xmlReaderTypes">xmlReaderTypes</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderTypes">Enum </a>xmlReaderTypes</h3>
+<pre class="programlisting">enum <a href="#xmlReaderTypes">xmlReaderTypes</a> {
     <a name="XML_READER_TYPE_NONE">XML_READER_TYPE_NONE</a> = 0
     <a name="XML_READER_TYPE_ELEMENT">XML_READER_TYPE_ELEMENT</a> = 1
     <a name="XML_READER_TYPE_ATTRIBUTE">XML_READER_TYPE_ATTRIBUTE</a> = 2
@@ -183,20 +171,32 @@ int       <a href="#xmlTextReaderStandalone">xmlTextReaderStandalone</a>          (<a href="li
     <a name="XML_READER_TYPE_END_ENTITY">XML_READER_TYPE_END_ENTITY</a> = 16
     <a name="XML_READER_TYPE_XML_DECLARATION">XML_READER_TYPE_XML_DECLARATION</a> = 17
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReader">Structure </a>xmlTextReader</h3><pre class="programlisting">struct _xmlTextReader {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReader">Structure </a>xmlTextReader</h3>
+<pre class="programlisting">struct _xmlTextReader {
 The content of this structure is not made public by the API.
 } xmlTextReader;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderLocatorPtr">Typedef </a>xmlTextReaderLocatorPtr</h3><pre class="programlisting">void * xmlTextReaderLocatorPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderLocatorPtr">Typedef </a>xmlTextReaderLocatorPtr</h3>
+<pre class="programlisting">void * xmlTextReaderLocatorPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderMode">Enum </a>xmlTextReaderMode</h3><pre class="programlisting">enum <a href="#xmlTextReaderMode">xmlTextReaderMode</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderMode">Enum </a>xmlTextReaderMode</h3>
+<pre class="programlisting">enum <a href="#xmlTextReaderMode">xmlTextReaderMode</a> {
     <a name="XML_TEXTREADER_MODE_INITIAL">XML_TEXTREADER_MODE_INITIAL</a> = 0
     <a name="XML_TEXTREADER_MODE_INTERACTIVE">XML_TEXTREADER_MODE_INTERACTIVE</a> = 1
     <a name="XML_TEXTREADER_MODE_ERROR">XML_TEXTREADER_MODE_ERROR</a> = 2
@@ -204,362 +204,2145 @@ The content of this structure is not made public by the API.
     <a name="XML_TEXTREADER_MODE_CLOSED">XML_TEXTREADER_MODE_CLOSED</a> = 4
     <a name="XML_TEXTREADER_MODE_READING">XML_TEXTREADER_MODE_READING</a> = 5
 };
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderPtr">Typedef </a>xmlTextReaderPtr</h3><pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReader">xmlTextReader</a> * xmlTextReaderPtr;
-</pre><p>Pointer to an xmlReader context.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderErrorFunc"/>Function type xmlTextReaderErrorFunc</h3><pre class="programlisting">void        xmlTextReaderErrorFunc          (void * arg, <br/>                                       const char * msg, <br/>                                         <a href="libxml2-xmlreader.html#xmlParserSeverities">xmlParserSeverities</a> severity, <br/>                                    <a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> locator)<br/>
-</pre><p>Signature of an error callback from a reader parser</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>arg</tt></i>:</span></td><td>the user argument</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message</td></tr><tr><td><span class="term"><i><tt>severity</tt></i>:</span></td><td>the severity of the error</td></tr><tr><td><span class="term"><i><tt>locator</tt></i>:</span></td><td>a locator indicating where the error occurred</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeTextReader"/>xmlFreeTextReader ()</h3><pre class="programlisting">void     xmlFreeTextReader               (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Deallocate all the resources associated to the reader</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewTextReader"/>xmlNewTextReader ()</h3><pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>     xmlNewTextReader        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br/>                                            const char * URI)<br/>
-</pre><p>Create an <a href="libxml2-xmlreader.html#xmlTextReader">xmlTextReader</a> structure fed with @input</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> used to read data</td></tr><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the URI information for the source if available</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewTextReaderFilename"/>xmlNewTextReaderFilename ()</h3><pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>     xmlNewTextReaderFilename        (const char * URI)<br/>
-</pre><p>Create an <a href="libxml2-xmlreader.html#xmlTextReader">xmlTextReader</a> structure fed with the resource at @URI</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URI</tt></i>:</span></td><td>the URI of the resource to process</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderForDoc"/>xmlReaderForDoc ()</h3><pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>       xmlReaderForDoc (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Create an xmltextReader for an XML in-memory document. The parsing flags @options are a combination of xmlParserOption.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to a zero terminated string</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new reader or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderForFd"/>xmlReaderForFd ()</h3><pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> xmlReaderForFd  (int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Create an xmltextReader for an XML from a file descriptor. The parsing flags @options are a combination of xmlParserOption. NOTE that the file descriptor will not be closed when the reader is closed or reset.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>fd</tt></i>:</span></td><td>an open file descriptor</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new reader or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderForFile"/>xmlReaderForFile ()</h3><pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>     xmlReaderForFile        (const char * filename, <br/>                                            const char * encoding, <br/>                                            int options)<br/>
-</pre><p>parse an XML file from the filesystem or the network. The parsing flags @options are a combination of xmlParserOption.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file or URL</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new reader or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderForIO"/>xmlReaderForIO ()</h3><pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> xmlReaderForIO  (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Create an xmltextReader for an XML document from I/O functions and source. The parsing flags @options are a combination of xmlParserOption.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ioread</tt></i>:</span></td><td>an I/O read function</td></tr><tr><td><span class="term"><i><tt>ioclose</tt></i>:</span></td><td>an I/O close function</td></tr><tr><td><span class="term"><i><tt>ioctx</tt></i>:</span></td><td>an I/O handler</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new reader or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderForMemory"/>xmlReaderForMemory ()</h3><pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> xmlReaderForMemory      (const char * buffer, <br/>                                              int size, <br/>                                                 const char * URL, <br/>                                                 const char * encoding, <br/>                                            int options)<br/>
-</pre><p>Create an xmltextReader for an XML in-memory document. The parsing flags @options are a combination of xmlParserOption.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new reader or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderNewDoc"/>xmlReaderNewDoc ()</h3><pre class="programlisting">int  xmlReaderNewDoc                 (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Setup an xmltextReader to parse an XML in-memory document. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>an XML reader</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>a pointer to a zero terminated string</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderNewFd"/>xmlReaderNewFd ()</h3><pre class="programlisting">int    xmlReaderNewFd                  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    int fd, <br/>                                   const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Setup an xmltextReader to parse an XML from a file descriptor. NOTE that the file descriptor will not be closed when the reader is closed or reset. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>an XML reader</td></tr><tr><td><span class="term"><i><tt>fd</tt></i>:</span></td><td>an open file descriptor</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderNewFile"/>xmlReaderNewFile ()</h3><pre class="programlisting">int        xmlReaderNewFile                (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const char * filename, <br/>                                    const char * encoding, <br/>                                    int options)<br/>
-</pre><p>parse an XML file from the filesystem or the network. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>an XML reader</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file or URL</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderNewIO"/>xmlReaderNewIO ()</h3><pre class="programlisting">int    xmlReaderNewIO                  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br/>                                        <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br/>                                     void * ioctx, <br/>                                     const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Setup an xmltextReader to parse an XML document from I/O functions and source. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>an XML reader</td></tr><tr><td><span class="term"><i><tt>ioread</tt></i>:</span></td><td>an I/O read function</td></tr><tr><td><span class="term"><i><tt>ioclose</tt></i>:</span></td><td>an I/O close function</td></tr><tr><td><span class="term"><i><tt>ioctx</tt></i>:</span></td><td>an I/O handler</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderNewMemory"/>xmlReaderNewMemory ()</h3><pre class="programlisting">int    xmlReaderNewMemory              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const char * buffer, <br/>                                      int size, <br/>                                         const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Setup an xmltextReader to parse an XML in-memory document. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>an XML reader</td></tr><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderNewWalker"/>xmlReaderNewWalker ()</h3><pre class="programlisting">int    xmlReaderNewWalker              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Setup an xmltextReader to parse a preparsed XML document. This reuses the existing @reader xmlTextReader.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>an XML reader</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a preparsed document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlReaderWalker"/>xmlReaderWalker ()</h3><pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>       xmlReaderWalker (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Create an xmltextReader for a preparsed document.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a preparsed document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new reader or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderAttributeCount"/>xmlTextReaderAttributeCount ()</h3><pre class="programlisting">int  xmlTextReaderAttributeCount     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Provides the number of attributes of the current node</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 i no attributes, -1 in case of error or the <a href="libxml2-SAX.html#attribute">attribute</a> count</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderBaseUri"/>xmlTextReaderBaseUri ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderBaseUri    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The base URI of the node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the base URI or NULL if not available, if non NULL it need to be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderByteConsumed"/>xmlTextReaderByteConsumed ()</h3><pre class="programlisting">long     xmlTextReaderByteConsumed       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>This function provides the current index of the parser used by the reader, relative to the start of the current entity. This function actually just wraps a call to xmlBytesConsumed() for the parser context associated with the reader. See xmlBytesConsumed() for more information.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>an XML reader</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the index in bytes from the beginning of the entity or -1 in case the index could not be computed.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderClose"/>xmlTextReaderClose ()</h3><pre class="programlisting">int    xmlTextReaderClose              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>This method releases any resources allocated by the current instance changes the state to Closed and close any underlying input.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderConstBaseUri"/>xmlTextReaderConstBaseUri ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderConstBaseUri       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The base URI of the node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the base URI or NULL if not available, the string will be deallocated with the reader</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderConstEncoding"/>xmlTextReaderConstEncoding ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlTextReaderConstEncoding      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Determine the encoding of the document being read.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a string containing the encoding of the document or NULL in case of error. The string is deallocated with the reader.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderConstLocalName"/>xmlTextReaderConstLocalName ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlTextReaderConstLocalName     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The local name of the node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the local name or NULL if not available, the string will be deallocated with the reader.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderConstName"/>xmlTextReaderConstName ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlTextReaderConstName  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The qualified name of the node, equal to Prefix :LocalName.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the local name or NULL if not available, the string is deallocated with the reader.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderConstNamespaceUri"/>xmlTextReaderConstNamespaceUri ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlTextReaderConstNamespaceUri  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The URI defining the namespace associated with the node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the namespace URI or NULL if not available, the string will be deallocated with the reader</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderConstPrefix"/>xmlTextReaderConstPrefix ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstPrefix        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>A shorthand <a href="libxml2-SAX.html#reference">reference</a> to the namespace associated with the node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the prefix or NULL if not available, the string is deallocated with the reader.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderConstString"/>xmlTextReaderConstString ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstString        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>Get an interned string from the reader, allows for example to speedup string name comparisons</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the string to intern.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an interned copy of the string or NULL in case of error. The string will be deallocated with the reader.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderConstValue"/>xmlTextReaderConstValue ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlTextReaderConstValue (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Provides the text value of the node if present</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the string or NULL if not available. The result will be deallocated on the next Read() operation.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderConstXmlLang"/>xmlTextReaderConstXmlLang ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderConstXmlLang       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The xml:lang scope within which the node resides.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the xml:lang value or NULL if none exists.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderConstXmlVersion"/>xmlTextReaderConstXmlVersion ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstXmlVersion    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Determine the XML version of the document being read.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a string containing the XML version of the document or NULL in case of error. The string is deallocated with the reader.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderCurrentDoc"/>xmlTextReaderCurrentDoc ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>  xmlTextReaderCurrentDoc (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Hacking interface allowing to get the <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> corresponding to the current document being accessed by the xmlTextReader. NOTE: as a result of this call, the reader will not destroy the associated XML document and calling xmlFreeDoc() on the result is needed once the reader parsing has finished.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderCurrentNode"/>xmlTextReaderCurrentNode ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlTextReaderCurrentNode        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Hacking interface allowing to get the <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> corresponding to the current node being accessed by the xmlTextReader. This is dangerous because the underlying node may be destroyed on the next Reads.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderDepth"/>xmlTextReaderDepth ()</h3><pre class="programlisting">int    xmlTextReaderDepth              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The depth of the node in the tree.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the depth or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderExpand"/>xmlTextReaderExpand ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>        xmlTextReaderExpand     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Reads the contents of the current node and the full subtree. It then makes the subtree available until the next xmlTextReaderRead() call</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a node pointer valid until the next xmlTextReaderRead() call or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderGetAttribute"/>xmlTextReaderGetAttribute ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlTextReaderGetAttribute       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Provides the value of the <a href="libxml2-SAX.html#attribute">attribute</a> with the specified qualified name.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the qualified name of the attribute.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a string containing the value of the specified attribute, or NULL in case of error. The string must be deallocated by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderGetAttributeNo"/>xmlTextReaderGetAttributeNo ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderGetAttributeNo     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            int no)<br/>
-</pre><p>Provides the value of the <a href="libxml2-SAX.html#attribute">attribute</a> with the specified index relative to the containing element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>no</tt></i>:</span></td><td>the zero-based index of the <a href="libxml2-SAX.html#attribute">attribute</a> relative to the containing element</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a string containing the value of the specified attribute, or NULL in case of error. The string must be deallocated by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderGetAttributeNs"/>xmlTextReaderGetAttributeNs ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderGetAttributeNs     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI)<br/>
-</pre><p>Provides the value of the specified <a href="libxml2-SAX.html#attribute">attribute</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>localName</tt></i>:</span></td><td>the local name of the attribute.</td></tr><tr><td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td><td>the namespace URI of the attribute.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a string containing the value of the specified attribute, or NULL in case of error. The string must be deallocated by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderGetErrorHandler"/>xmlTextReaderGetErrorHandler ()</h3><pre class="programlisting">void       xmlTextReaderGetErrorHandler    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a> * f, <br/>                                   void ** arg)<br/>
-</pre><p>Retrieve the error callback function and user argument.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the callback function or NULL is no callback has been registered</td></tr><tr><td><span class="term"><i><tt>arg</tt></i>:</span></td><td>a user argument</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderGetParserColumnNumber"/>xmlTextReaderGetParserColumnNumber ()</h3><pre class="programlisting">int    xmlTextReaderGetParserColumnNumber      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Provide the column number of the current parsing point.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the user data (XML reader context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an int or 0 if not available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderGetParserLineNumber"/>xmlTextReaderGetParserLineNumber ()</h3><pre class="programlisting">int        xmlTextReaderGetParserLineNumber        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Provide the line number of the current parsing point.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the user data (XML reader context)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an int or 0 if not available</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderGetParserProp"/>xmlTextReaderGetParserProp ()</h3><pre class="programlisting">int    xmlTextReaderGetParserProp      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    int prop)<br/>
-</pre><p>Read the parser internal property.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>prop</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlParserProperties">xmlParserProperties</a> to get</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the value, usually 0 or 1, or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderGetRemainder"/>xmlTextReaderGetRemainder ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>  xmlTextReaderGetRemainder       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Method to get the remainder of the buffered XML. this method stops the parser, set its state to End Of File and return the input stream with what is left that the parser did not use. The implementation is not good, the parser certainly progressed past what's left in reader-&gt;input, and there is an allocation problem. Best would be to rewrite it differently.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> attached to the XML or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderHasAttributes"/>xmlTextReaderHasAttributes ()</h3><pre class="programlisting">int    xmlTextReaderHasAttributes      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Whether the node has attributes.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true, 0 if false, and -1 in case or error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderHasValue"/>xmlTextReaderHasValue ()</h3><pre class="programlisting">int      xmlTextReaderHasValue           (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Whether the node can have a text value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true, 0 if false, and -1 in case or error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderIsDefault"/>xmlTextReaderIsDefault ()</h3><pre class="programlisting">int    xmlTextReaderIsDefault          (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Whether an Attribute node was generated from the default value defined in the DTD or schema.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if not defaulted, 1 if defaulted, and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderIsEmptyElement"/>xmlTextReaderIsEmptyElement ()</h3><pre class="programlisting">int  xmlTextReaderIsEmptyElement     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Check if the current node is empty</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if empty, 0 if not and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderIsNamespaceDecl"/>xmlTextReaderIsNamespaceDecl ()</h3><pre class="programlisting">int        xmlTextReaderIsNamespaceDecl    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Determine whether the current node is a namespace declaration rather than a regular attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the current node is a namespace declaration, 0 if it is a regular <a href="libxml2-SAX.html#attribute">attribute</a> or other type of node, or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderIsValid"/>xmlTextReaderIsValid ()</h3><pre class="programlisting">int        xmlTextReaderIsValid            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Retrieve the validity status from the parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the flag value 1 if valid, 0 if no, and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderLocalName"/>xmlTextReaderLocalName ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlTextReaderLocalName  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The local name of the node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the local name or NULL if not available, if non NULL it need to be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderLocatorBaseURI"/>xmlTextReaderLocatorBaseURI ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderLocatorBaseURI     (<a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> locator)<br/>
-</pre><p>Obtain the base URI for the given locator.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>locator</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the base URI or NULL in case of error, if non NULL it need to be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderLocatorLineNumber"/>xmlTextReaderLocatorLineNumber ()</h3><pre class="programlisting">int    xmlTextReaderLocatorLineNumber  (<a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> locator)<br/>
-</pre><p>Obtain the line number for the given locator.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>locator</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the line number or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderLookupNamespace"/>xmlTextReaderLookupNamespace ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderLookupNamespace    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br/>
-</pre><p>Resolves a namespace prefix in the scope of the current element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the prefix whose namespace URI is to be resolved. To return the default namespace, specify NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a string containing the namespace URI to which the prefix maps or NULL in case of error. The string must be deallocated by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderMoveToAttribute"/>xmlTextReaderMoveToAttribute ()</h3><pre class="programlisting">int        xmlTextReaderMoveToAttribute    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Moves the position of the current instance to the <a href="libxml2-SAX.html#attribute">attribute</a> with the specified qualified name.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the qualified name of the attribute.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 in case of success, -1 in case of error, 0 if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderMoveToAttributeNo"/>xmlTextReaderMoveToAttributeNo ()</h3><pre class="programlisting">int    xmlTextReaderMoveToAttributeNo  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    int no)<br/>
-</pre><p>Moves the position of the current instance to the <a href="libxml2-SAX.html#attribute">attribute</a> with the specified index relative to the containing element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>no</tt></i>:</span></td><td>the zero-based index of the <a href="libxml2-SAX.html#attribute">attribute</a> relative to the containing element.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 in case of success, -1 in case of error, 0 if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderMoveToAttributeNs"/>xmlTextReaderMoveToAttributeNs ()</h3><pre class="programlisting">int    xmlTextReaderMoveToAttributeNs  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI)<br/>
-</pre><p>Moves the position of the current instance to the <a href="libxml2-SAX.html#attribute">attribute</a> with the specified local name and namespace URI.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>localName</tt></i>:</span></td><td>the local name of the attribute.</td></tr><tr><td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td><td>the namespace URI of the attribute.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 in case of success, -1 in case of error, 0 if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderMoveToElement"/>xmlTextReaderMoveToElement ()</h3><pre class="programlisting">int    xmlTextReaderMoveToElement      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Moves the position of the current instance to the node that contains the current Attribute node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 in case of success, -1 in case of error, 0 if not moved</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderMoveToFirstAttribute"/>xmlTextReaderMoveToFirstAttribute ()</h3><pre class="programlisting">int      xmlTextReaderMoveToFirstAttribute       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Moves the position of the current instance to the first <a href="libxml2-SAX.html#attribute">attribute</a> associated with the current node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 in case of success, -1 in case of error, 0 if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderMoveToNextAttribute"/>xmlTextReaderMoveToNextAttribute ()</h3><pre class="programlisting">int        xmlTextReaderMoveToNextAttribute        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Moves the position of the current instance to the next <a href="libxml2-SAX.html#attribute">attribute</a> associated with the current node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 in case of success, -1 in case of error, 0 if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderName"/>xmlTextReaderName ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlTextReaderName       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The qualified name of the node, equal to Prefix :LocalName.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the local name or NULL if not available, if non NULL it need to be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderNamespaceUri"/>xmlTextReaderNamespaceUri ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlTextReaderNamespaceUri       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The URI defining the namespace associated with the node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the namespace URI or NULL if not available, if non NULL it need to be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderNext"/>xmlTextReaderNext ()</h3><pre class="programlisting">int      xmlTextReaderNext               (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Skip to the node following the current one in document order while avoiding the subtree if any.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the node was read successfully, 0 if there is no more nodes to read, or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderNextSibling"/>xmlTextReaderNextSibling ()</h3><pre class="programlisting">int        xmlTextReaderNextSibling        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Skip to the node following the current one in document order while avoiding the subtree if any. Currently implemented only for Readers built on a document</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the node was read successfully, 0 if there is no more nodes to read, or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderNodeType"/>xmlTextReaderNodeType ()</h3><pre class="programlisting">int      xmlTextReaderNodeType           (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Get the node type of the current node Reference: http://www.gnu.org/software/dotgnu/pnetlib-doc/System/Xml/XmlNodeType.html</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlReaderTypes">xmlReaderTypes</a> of the current node or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderNormalization"/>xmlTextReaderNormalization ()</h3><pre class="programlisting">int    xmlTextReaderNormalization      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The value indicating whether to normalize white space and <a href="libxml2-SAX.html#attribute">attribute</a> values. Since <a href="libxml2-SAX.html#attribute">attribute</a> value and end of line normalizations are a MUST in the XML specification only the value true is accepted. The broken behaviour of accepting out of range character entities like &amp;#0; is of course not supported either.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderPrefix"/>xmlTextReaderPrefix ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderPrefix     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>A shorthand <a href="libxml2-SAX.html#reference">reference</a> to the namespace associated with the node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the prefix or NULL if not available, if non NULL it need to be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderPreserve"/>xmlTextReaderPreserve ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlTextReaderPreserve   (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>This tells the XML Reader to preserve the current node. The caller must also use xmlTextReaderCurrentDoc() to keep an handle on the resulting document once parsing has finished</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderPreservePattern"/>xmlTextReaderPreservePattern ()</h3><pre class="programlisting">int        xmlTextReaderPreservePattern    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pattern, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces)<br/>
-</pre><p>This tells the XML Reader to preserve all nodes matched by the pattern. The caller must also use xmlTextReaderCurrentDoc() to keep an handle on the resulting document once parsing has finished</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>pattern</tt></i>:</span></td><td>an XPath subset pattern</td></tr><tr><td><span class="term"><i><tt>namespaces</tt></i>:</span></td><td>the prefix definitions, array of [URI, prefix] or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a non-negative number in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderQuoteChar"/>xmlTextReaderQuoteChar ()</h3><pre class="programlisting">int    xmlTextReaderQuoteChar          (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The quotation mark character used to enclose the value of an attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>" or ' and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderRead"/>xmlTextReaderRead ()</h3><pre class="programlisting">int      xmlTextReaderRead               (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Moves the position of the current instance to the next node in the stream, exposing its properties.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the node was read successfully, 0 if there is no more nodes to read, or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderReadAttributeValue"/>xmlTextReaderReadAttributeValue ()</h3><pre class="programlisting">int  xmlTextReaderReadAttributeValue (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Parses an <a href="libxml2-SAX.html#attribute">attribute</a> value into one or more Text and EntityReference nodes.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 in case of success, 0 if the reader was not positioned on an <a href="libxml2-SAX.html#attribute">attribute</a> node or all the <a href="libxml2-SAX.html#attribute">attribute</a> values have been read, or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderReadInnerXml"/>xmlTextReaderReadInnerXml ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlTextReaderReadInnerXml       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Reads the contents of the current node, including child nodes and markup.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a string containing the XML content, or NULL if the current node is neither an element nor attribute, or has no child nodes. The string must be deallocated by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderReadOuterXml"/>xmlTextReaderReadOuterXml ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlTextReaderReadOuterXml       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Reads the contents of the current node, including child nodes and markup.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a string containing the node and any XML content, or NULL if the current node cannot be serialized. The string must be deallocated by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderReadState"/>xmlTextReaderReadState ()</h3><pre class="programlisting">int    xmlTextReaderReadState          (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Gets the read state of the reader.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the state value, or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderReadString"/>xmlTextReaderReadString ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderReadString (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Reads the contents of an element or a text node as a string.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a string containing the contents of the Element or Text node, or NULL if the reader is positioned on any other type of node. The string must be deallocated by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderRelaxNGSetSchema"/>xmlTextReaderRelaxNGSetSchema ()</h3><pre class="programlisting">int      xmlTextReaderRelaxNGSetSchema   (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema)<br/>
-</pre><p>Use RelaxNG to validate the document as it is processed. Activation is only possible before the first Read(). if @schema is NULL, then RelaxNG validation is deactivated. @ The @schema should not be freed until the reader is deallocated or its use has been deactivated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a precompiled RelaxNG schema</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case the RelaxNG validation could be (de)activated and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderRelaxNGValidate"/>xmlTextReaderRelaxNGValidate ()</h3><pre class="programlisting">int        xmlTextReaderRelaxNGValidate    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const char * rng)<br/>
-</pre><p>Use RelaxNG schema to validate the document as it is processed. Activation is only possible before the first Read(). If @rng is NULL, then RelaxNG schema validation is deactivated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>rng</tt></i>:</span></td><td>the path to a RelaxNG schema or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case the schemas validation could be (de)activated and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderRelaxNGValidateCtxt"/>xmlTextReaderRelaxNGValidateCtxt ()</h3><pre class="programlisting">int        xmlTextReaderRelaxNGValidateCtxt        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            <a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br/>                                            int options)<br/>
-</pre><p>Use RelaxNG schema context to validate the document as it is processed. Activation is only possible before the first Read(). If @ctxt is NULL, then RelaxNG schema validation is deactivated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the RelaxNG schema validation context or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>options (not used yet)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case the schemas validation could be (de)activated and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderSchemaValidate"/>xmlTextReaderSchemaValidate ()</h3><pre class="programlisting">int  xmlTextReaderSchemaValidate     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    const char * xsd)<br/>
-</pre><p>Use W3C XSD schema to validate the document as it is processed. Activation is only possible before the first Read(). If @xsd is NULL, then XML Schema validation is deactivated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>xsd</tt></i>:</span></td><td>the path to a W3C XSD schema or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case the schemas validation could be (de)activated and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderSchemaValidateCtxt"/>xmlTextReaderSchemaValidateCtxt ()</h3><pre class="programlisting">int  xmlTextReaderSchemaValidateCtxt (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   int options)<br/>
-</pre><p>Use W3C XSD schema context to validate the document as it is processed. Activation is only possible before the first Read(). If @ctxt is NULL, then XML Schema validation is deactivated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XML Schema validation context or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>options (not used yet)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case the schemas validation could be (de)activated and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderSetErrorHandler"/>xmlTextReaderSetErrorHandler ()</h3><pre class="programlisting">void       xmlTextReaderSetErrorHandler    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a> f, <br/>                                     void * arg)<br/>
-</pre><p>Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the callback function to call on error and warnings</td></tr><tr><td><span class="term"><i><tt>arg</tt></i>:</span></td><td>a user argument to pass to the callback function</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderSetParserProp"/>xmlTextReaderSetParserProp ()</h3><pre class="programlisting">int    xmlTextReaderSetParserProp      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    int prop, <br/>                                         int value)<br/>
-</pre><p>Change the parser processing behaviour by changing some of its internal properties. Note that some properties can only be changed before any read has been done.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>prop</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlParserProperties">xmlParserProperties</a> to set</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>usually 0 or 1 to (de)activate it</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the call was successful, or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderSetSchema"/>xmlTextReaderSetSchema ()</h3><pre class="programlisting">int    xmlTextReaderSetSchema          (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)<br/>
-</pre><p>Use XSD Schema to validate the document as it is processed. Activation is only possible before the first Read(). if @schema is NULL, then Schema validation is deactivated. The @schema should not be freed until the reader is deallocated or its use has been deactivated.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a precompiled Schema schema</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case the Schema validation could be (de)activated and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderSetStructuredErrorHandler"/>xmlTextReaderSetStructuredErrorHandler ()</h3><pre class="programlisting">void   xmlTextReaderSetStructuredErrorHandler  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                            <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> f, <br/>                                              void * arg)<br/>
-</pre><p>Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the callback function to call on error and warnings</td></tr><tr><td><span class="term"><i><tt>arg</tt></i>:</span></td><td>a user argument to pass to the callback function</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderSetup"/>xmlTextReaderSetup ()</h3><pre class="programlisting">int    xmlTextReaderSetup              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br/>                                    <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br/>                                    const char * URL, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Setup an XML reader with new options</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>an XML reader</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> used to feed the reader, will be destroyed with it.</td></tr><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the base URL to use for the document</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the document encoding, or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderStandalone"/>xmlTextReaderStandalone ()</h3><pre class="programlisting">int  xmlTextReaderStandalone         (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Determine the standalone status of the document being read.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the document was declared to be standalone, 0 if it was declared to be not standalone, or -1 if the document did not specify its standalone status or in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderValue"/>xmlTextReaderValue ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlTextReaderValue      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>Provides the text value of the node if present</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the string or NULL if not available. The result must be deallocated with xmlFree()</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextReaderXmlLang"/>xmlTextReaderXmlLang ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderXmlLang    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br/>
-</pre><p>The xml:lang scope within which the node resides.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>reader</tt></i>:</span></td><td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the xml:lang value or NULL if none exists., if non NULL it need to be freed by the caller.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderPtr">Typedef </a>xmlTextReaderPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReader">xmlTextReader</a> * xmlTextReaderPtr;
+</pre>
+<p>Pointer to an xmlReader context.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderErrorFunc"></a>Function type xmlTextReaderErrorFunc</h3>
+<pre class="programlisting">void       xmlTextReaderErrorFunc          (void * arg, <br>                                        const char * msg, <br>                                  <a href="libxml2-xmlreader.html#xmlParserSeverities">xmlParserSeverities</a> severity, <br>                                     <a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> locator)<br>
+</pre>
+<p>Signature of an error callback from a reader parser</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>arg</tt></i>:</span></td>
+<td>the user argument</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>severity</tt></i>:</span></td>
+<td>the severity of the error</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>locator</tt></i>:</span></td>
+<td>a locator indicating where the error occurred</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeTextReader"></a>xmlFreeTextReader ()</h3>
+<pre class="programlisting">void       xmlFreeTextReader               (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Deallocate all the resources associated to the reader</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>
+</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewTextReader"></a>xmlNewTextReader ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>     xmlNewTextReader        (<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br>                                             const char * URI)<br>
+</pre>
+<p>Create an <a href="libxml2-xmlreader.html#xmlTextReader">xmlTextReader</a> structure fed with @input</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> used to read data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the URI information for the source if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewTextReaderFilename"></a>xmlNewTextReaderFilename ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>     xmlNewTextReaderFilename        (const char * URI)<br>
+</pre>
+<p>Create an <a href="libxml2-xmlreader.html#xmlTextReader">xmlTextReader</a> structure fed with the resource at @URI</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URI</tt></i>:</span></td>
+<td>the URI of the resource to process</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderForDoc"></a>xmlReaderForDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>     xmlReaderForDoc (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Create an xmltextReader for an XML in-memory document. The parsing flags @options are a combination of xmlParserOption.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to a zero terminated string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new reader or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderForFd"></a>xmlReaderForFd ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>     xmlReaderForFd  (int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Create an xmltextReader for an XML from a file descriptor. The parsing flags @options are a combination of xmlParserOption. NOTE that the file descriptor will not be closed when the reader is closed or reset.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>fd</tt></i>:</span></td>
+<td>an open file descriptor</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new reader or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderForFile"></a>xmlReaderForFile ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>     xmlReaderForFile        (const char * filename, <br>                                             const char * encoding, <br>                                             int options)<br>
+</pre>
+<p>parse an XML file from the filesystem or the network. The parsing flags @options are a combination of xmlParserOption.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file or URL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new reader or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderForIO"></a>xmlReaderForIO ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>     xmlReaderForIO  (<a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Create an xmltextReader for an XML document from I/O functions and source. The parsing flags @options are a combination of xmlParserOption.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ioread</tt></i>:</span></td>
+<td>an I/O read function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioclose</tt></i>:</span></td>
+<td>an I/O close function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioctx</tt></i>:</span></td>
+<td>an I/O handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new reader or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderForMemory"></a>xmlReaderForMemory ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>     xmlReaderForMemory      (const char * buffer, <br>                                               int size, <br>                                          const char * URL, <br>                                          const char * encoding, <br>                                             int options)<br>
+</pre>
+<p>Create an xmltextReader for an XML in-memory document. The parsing flags @options are a combination of xmlParserOption.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new reader or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderNewDoc"></a>xmlReaderNewDoc ()</h3>
+<pre class="programlisting">int        xmlReaderNewDoc                 (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Setup an xmltextReader to parse an XML in-memory document. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>an XML reader</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>a pointer to a zero terminated string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderNewFd"></a>xmlReaderNewFd ()</h3>
+<pre class="programlisting">int        xmlReaderNewFd                  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     int fd, <br>                                    const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Setup an xmltextReader to parse an XML from a file descriptor. NOTE that the file descriptor will not be closed when the reader is closed or reset. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>an XML reader</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>fd</tt></i>:</span></td>
+<td>an open file descriptor</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderNewFile"></a>xmlReaderNewFile ()</h3>
+<pre class="programlisting">int        xmlReaderNewFile                (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const char * filename, <br>                                     const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>parse an XML file from the filesystem or the network. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>an XML reader</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file or URL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderNewIO"></a>xmlReaderNewIO ()</h3>
+<pre class="programlisting">int        xmlReaderNewIO                  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a> ioread, <br>                                         <a href="libxml2-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a> ioclose, <br>                                      void * ioctx, <br>                                      const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Setup an xmltextReader to parse an XML document from I/O functions and source. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>an XML reader</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioread</tt></i>:</span></td>
+<td>an I/O read function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioclose</tt></i>:</span></td>
+<td>an I/O close function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioctx</tt></i>:</span></td>
+<td>an I/O handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderNewMemory"></a>xmlReaderNewMemory ()</h3>
+<pre class="programlisting">int        xmlReaderNewMemory              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const char * buffer, <br>                                       int size, <br>                                  const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Setup an xmltextReader to parse an XML in-memory document. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>an XML reader</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a pointer to a char array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderNewWalker"></a>xmlReaderNewWalker ()</h3>
+<pre class="programlisting">int        xmlReaderNewWalker              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Setup an xmltextReader to parse a preparsed XML document. This reuses the existing @reader xmlTextReader.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>an XML reader</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a preparsed document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlReaderWalker"></a>xmlReaderWalker ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a>     xmlReaderWalker (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Create an xmltextReader for a preparsed document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a preparsed document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new reader or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderAttributeCount"></a>xmlTextReaderAttributeCount ()</h3>
+<pre class="programlisting">int        xmlTextReaderAttributeCount     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Provides the number of attributes of the current node</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 i no attributes, -1 in case of error or the <a href="libxml2-SAX.html#attribute">attribute</a> count</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderBaseUri"></a>xmlTextReaderBaseUri ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderBaseUri    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The base URI of the node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the base URI or NULL if not available, if non NULL it need to be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderByteConsumed"></a>xmlTextReaderByteConsumed ()</h3>
+<pre class="programlisting">long       xmlTextReaderByteConsumed       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>This function provides the current index of the parser used by the reader, relative to the start of the current entity. This function actually just wraps a call to xmlBytesConsumed() for the parser context associated with the reader. See xmlBytesConsumed() for more information.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>an XML reader</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the index in bytes from the beginning of the entity or -1 in case the index could not be computed.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderClose"></a>xmlTextReaderClose ()</h3>
+<pre class="programlisting">int        xmlTextReaderClose              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>This method releases any resources allocated by the current instance changes the state to Closed and close any underlying input.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderConstBaseUri"></a>xmlTextReaderConstBaseUri ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstBaseUri       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The base URI of the node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the base URI or NULL if not available, the string will be deallocated with the reader</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderConstEncoding"></a>xmlTextReaderConstEncoding ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstEncoding      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Determine the encoding of the document being read.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a string containing the encoding of the document or NULL in case of error. The string is deallocated with the reader.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderConstLocalName"></a>xmlTextReaderConstLocalName ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstLocalName     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The local name of the node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the local name or NULL if not available, the string will be deallocated with the reader.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderConstName"></a>xmlTextReaderConstName ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstName  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The qualified name of the node, equal to Prefix :LocalName.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the local name or NULL if not available, the string is deallocated with the reader.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderConstNamespaceUri"></a>xmlTextReaderConstNamespaceUri ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstNamespaceUri  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The URI defining the namespace associated with the node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the namespace URI or NULL if not available, the string will be deallocated with the reader</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderConstPrefix"></a>xmlTextReaderConstPrefix ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstPrefix        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>A shorthand <a href="libxml2-SAX.html#reference">reference</a> to the namespace associated with the node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the prefix or NULL if not available, the string is deallocated with the reader.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderConstString"></a>xmlTextReaderConstString ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstString        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>Get an interned string from the reader, allows for example to speedup string name comparisons</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the string to intern.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an interned copy of the string or NULL in case of error. The string will be deallocated with the reader.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderConstValue"></a>xmlTextReaderConstValue ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstValue (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Provides the text value of the node if present</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the string or NULL if not available. The result will be deallocated on the next Read() operation.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderConstXmlLang"></a>xmlTextReaderConstXmlLang ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstXmlLang       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The xml:lang scope within which the node resides.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the xml:lang value or NULL if none exists.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderConstXmlVersion"></a>xmlTextReaderConstXmlVersion ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlTextReaderConstXmlVersion    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Determine the XML version of the document being read.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a string containing the XML version of the document or NULL in case of error. The string is deallocated with the reader.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderCurrentDoc"></a>xmlTextReaderCurrentDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        xmlTextReaderCurrentDoc (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Hacking interface allowing to get the <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> corresponding to the current document being accessed by the xmlTextReader. NOTE: as a result of this call, the reader will not destroy the associated XML document and calling xmlFreeDoc() on the result is needed once the reader parsing has finished.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderCurrentNode"></a>xmlTextReaderCurrentNode ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlTextReaderCurrentNode        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Hacking interface allowing to get the <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> corresponding to the current node being accessed by the xmlTextReader. This is dangerous because the underlying node may be destroyed on the next Reads.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderDepth"></a>xmlTextReaderDepth ()</h3>
+<pre class="programlisting">int        xmlTextReaderDepth              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The depth of the node in the tree.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the depth or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderExpand"></a>xmlTextReaderExpand ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlTextReaderExpand     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Reads the contents of the current node and the full subtree. It then makes the subtree available until the next xmlTextReaderRead() call</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a node pointer valid until the next xmlTextReaderRead() call or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderGetAttribute"></a>xmlTextReaderGetAttribute ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderGetAttribute       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Provides the value of the <a href="libxml2-SAX.html#attribute">attribute</a> with the specified qualified name.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the qualified name of the attribute.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a string containing the value of the specified attribute, or NULL in case of error. The string must be deallocated by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderGetAttributeNo"></a>xmlTextReaderGetAttributeNo ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderGetAttributeNo     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             int no)<br>
+</pre>
+<p>Provides the value of the <a href="libxml2-SAX.html#attribute">attribute</a> with the specified index relative to the containing element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>no</tt></i>:</span></td>
+<td>the zero-based index of the <a href="libxml2-SAX.html#attribute">attribute</a> relative to the containing element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a string containing the value of the specified attribute, or NULL in case of error. The string must be deallocated by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderGetAttributeNs"></a>xmlTextReaderGetAttributeNs ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderGetAttributeNs     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI)<br>
+</pre>
+<p>Provides the value of the specified <a href="libxml2-SAX.html#attribute">attribute</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>localName</tt></i>:</span></td>
+<td>the local name of the attribute.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td>
+<td>the namespace URI of the attribute.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a string containing the value of the specified attribute, or NULL in case of error. The string must be deallocated by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderGetErrorHandler"></a>xmlTextReaderGetErrorHandler ()</h3>
+<pre class="programlisting">void       xmlTextReaderGetErrorHandler    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a> * f, <br>                                    void ** arg)<br>
+</pre>
+<p>Retrieve the error callback function and user argument.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the callback function or NULL is no callback has been registered</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>arg</tt></i>:</span></td>
+<td>a user argument</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderGetParserColumnNumber"></a>xmlTextReaderGetParserColumnNumber ()</h3>
+<pre class="programlisting">int        xmlTextReaderGetParserColumnNumber      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Provide the column number of the current parsing point.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the user data (XML reader context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an int or 0 if not available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderGetParserLineNumber"></a>xmlTextReaderGetParserLineNumber ()</h3>
+<pre class="programlisting">int        xmlTextReaderGetParserLineNumber        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Provide the line number of the current parsing point.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the user data (XML reader context)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an int or 0 if not available</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderGetParserProp"></a>xmlTextReaderGetParserProp ()</h3>
+<pre class="programlisting">int        xmlTextReaderGetParserProp      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     int prop)<br>
+</pre>
+<p>Read the parser internal property.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prop</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlParserProperties">xmlParserProperties</a> to get</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the value, usually 0 or 1, or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderGetRemainder"></a>xmlTextReaderGetRemainder ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a>    xmlTextReaderGetRemainder       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Method to get the remainder of the buffered XML. this method stops the parser, set its state to End Of File and return the input stream with what is left that the parser did not use. The implementation is not good, the parser certainly progressed past what's left in reader-&gt;input, and there is an allocation problem. Best would be to rewrite it differently.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> attached to the XML or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderHasAttributes"></a>xmlTextReaderHasAttributes ()</h3>
+<pre class="programlisting">int        xmlTextReaderHasAttributes      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Whether the node has attributes.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true, 0 if false, and -1 in case or error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderHasValue"></a>xmlTextReaderHasValue ()</h3>
+<pre class="programlisting">int        xmlTextReaderHasValue           (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Whether the node can have a text value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true, 0 if false, and -1 in case or error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderIsDefault"></a>xmlTextReaderIsDefault ()</h3>
+<pre class="programlisting">int        xmlTextReaderIsDefault          (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Whether an Attribute node was generated from the default value defined in the DTD or schema.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if not defaulted, 1 if defaulted, and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderIsEmptyElement"></a>xmlTextReaderIsEmptyElement ()</h3>
+<pre class="programlisting">int        xmlTextReaderIsEmptyElement     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Check if the current node is empty</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if empty, 0 if not and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderIsNamespaceDecl"></a>xmlTextReaderIsNamespaceDecl ()</h3>
+<pre class="programlisting">int        xmlTextReaderIsNamespaceDecl    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Determine whether the current node is a namespace declaration rather than a regular attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the current node is a namespace declaration, 0 if it is a regular <a href="libxml2-SAX.html#attribute">attribute</a> or other type of node, or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderIsValid"></a>xmlTextReaderIsValid ()</h3>
+<pre class="programlisting">int        xmlTextReaderIsValid            (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Retrieve the validity status from the parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the flag value 1 if valid, 0 if no, and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderLocalName"></a>xmlTextReaderLocalName ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderLocalName  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The local name of the node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the local name or NULL if not available, if non NULL it need to be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderLocatorBaseURI"></a>xmlTextReaderLocatorBaseURI ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderLocatorBaseURI     (<a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> locator)<br>
+</pre>
+<p>Obtain the base URI for the given locator.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>locator</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the base URI or NULL in case of error, if non NULL it need to be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderLocatorLineNumber"></a>xmlTextReaderLocatorLineNumber ()</h3>
+<pre class="programlisting">int        xmlTextReaderLocatorLineNumber  (<a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> locator)<br>
+</pre>
+<p>Obtain the line number for the given locator.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>locator</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the line number or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderLookupNamespace"></a>xmlTextReaderLookupNamespace ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderLookupNamespace    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br>
+</pre>
+<p>Resolves a namespace prefix in the scope of the current element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the prefix whose namespace URI is to be resolved. To return the default namespace, specify NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a string containing the namespace URI to which the prefix maps or NULL in case of error. The string must be deallocated by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderMoveToAttribute"></a>xmlTextReaderMoveToAttribute ()</h3>
+<pre class="programlisting">int        xmlTextReaderMoveToAttribute    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Moves the position of the current instance to the <a href="libxml2-SAX.html#attribute">attribute</a> with the specified qualified name.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the qualified name of the attribute.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 in case of success, -1 in case of error, 0 if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderMoveToAttributeNo"></a>xmlTextReaderMoveToAttributeNo ()</h3>
+<pre class="programlisting">int        xmlTextReaderMoveToAttributeNo  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     int no)<br>
+</pre>
+<p>Moves the position of the current instance to the <a href="libxml2-SAX.html#attribute">attribute</a> with the specified index relative to the containing element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>no</tt></i>:</span></td>
+<td>the zero-based index of the <a href="libxml2-SAX.html#attribute">attribute</a> relative to the containing element.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 in case of success, -1 in case of error, 0 if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderMoveToAttributeNs"></a>xmlTextReaderMoveToAttributeNs ()</h3>
+<pre class="programlisting">int        xmlTextReaderMoveToAttributeNs  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI)<br>
+</pre>
+<p>Moves the position of the current instance to the <a href="libxml2-SAX.html#attribute">attribute</a> with the specified local name and namespace URI.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>localName</tt></i>:</span></td>
+<td>the local name of the attribute.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td>
+<td>the namespace URI of the attribute.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 in case of success, -1 in case of error, 0 if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderMoveToElement"></a>xmlTextReaderMoveToElement ()</h3>
+<pre class="programlisting">int        xmlTextReaderMoveToElement      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Moves the position of the current instance to the node that contains the current Attribute node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 in case of success, -1 in case of error, 0 if not moved</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderMoveToFirstAttribute"></a>xmlTextReaderMoveToFirstAttribute ()</h3>
+<pre class="programlisting">int        xmlTextReaderMoveToFirstAttribute       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Moves the position of the current instance to the first <a href="libxml2-SAX.html#attribute">attribute</a> associated with the current node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 in case of success, -1 in case of error, 0 if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderMoveToNextAttribute"></a>xmlTextReaderMoveToNextAttribute ()</h3>
+<pre class="programlisting">int        xmlTextReaderMoveToNextAttribute        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Moves the position of the current instance to the next <a href="libxml2-SAX.html#attribute">attribute</a> associated with the current node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 in case of success, -1 in case of error, 0 if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderName"></a>xmlTextReaderName ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderName       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The qualified name of the node, equal to Prefix :LocalName.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the local name or NULL if not available, if non NULL it need to be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderNamespaceUri"></a>xmlTextReaderNamespaceUri ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderNamespaceUri       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The URI defining the namespace associated with the node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the namespace URI or NULL if not available, if non NULL it need to be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderNext"></a>xmlTextReaderNext ()</h3>
+<pre class="programlisting">int        xmlTextReaderNext               (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Skip to the node following the current one in document order while avoiding the subtree if any.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the node was read successfully, 0 if there is no more nodes to read, or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderNextSibling"></a>xmlTextReaderNextSibling ()</h3>
+<pre class="programlisting">int        xmlTextReaderNextSibling        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Skip to the node following the current one in document order while avoiding the subtree if any. Currently implemented only for Readers built on a document</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the node was read successfully, 0 if there is no more nodes to read, or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderNodeType"></a>xmlTextReaderNodeType ()</h3>
+<pre class="programlisting">int        xmlTextReaderNodeType           (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Get the node type of the current node Reference: http://www.gnu.org/software/dotgnu/pnetlib-doc/System/Xml/XmlNodeType.html</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlReaderTypes">xmlReaderTypes</a> of the current node or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderNormalization"></a>xmlTextReaderNormalization ()</h3>
+<pre class="programlisting">int        xmlTextReaderNormalization      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The value indicating whether to normalize white space and <a href="libxml2-SAX.html#attribute">attribute</a> values. Since <a href="libxml2-SAX.html#attribute">attribute</a> value and end of line normalizations are a MUST in the XML specification only the value true is accepted. The broken behaviour of accepting out of range character entities like &amp;#0; is of course not supported either.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderPrefix"></a>xmlTextReaderPrefix ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderPrefix     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>A shorthand <a href="libxml2-SAX.html#reference">reference</a> to the namespace associated with the node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the prefix or NULL if not available, if non NULL it need to be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderPreserve"></a>xmlTextReaderPreserve ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlTextReaderPreserve   (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>This tells the XML Reader to preserve the current node. The caller must also use xmlTextReaderCurrentDoc() to keep an handle on the resulting document once parsing has finished</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderPreservePattern"></a>xmlTextReaderPreservePattern ()</h3>
+<pre class="programlisting">int        xmlTextReaderPreservePattern    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pattern, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** namespaces)<br>
+</pre>
+<p>This tells the XML Reader to preserve all nodes matched by the pattern. The caller must also use xmlTextReaderCurrentDoc() to keep an handle on the resulting document once parsing has finished</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pattern</tt></i>:</span></td>
+<td>an XPath subset pattern</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaces</tt></i>:</span></td>
+<td>the prefix definitions, array of [URI, prefix] or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a non-negative number in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderQuoteChar"></a>xmlTextReaderQuoteChar ()</h3>
+<pre class="programlisting">int        xmlTextReaderQuoteChar          (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The quotation mark character used to enclose the value of an attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>" or ' and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderRead"></a>xmlTextReaderRead ()</h3>
+<pre class="programlisting">int        xmlTextReaderRead               (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Moves the position of the current instance to the next node in the stream, exposing its properties.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the node was read successfully, 0 if there is no more nodes to read, or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderReadAttributeValue"></a>xmlTextReaderReadAttributeValue ()</h3>
+<pre class="programlisting">int        xmlTextReaderReadAttributeValue (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Parses an <a href="libxml2-SAX.html#attribute">attribute</a> value into one or more Text and EntityReference nodes.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 in case of success, 0 if the reader was not positioned on an <a href="libxml2-SAX.html#attribute">attribute</a> node or all the <a href="libxml2-SAX.html#attribute">attribute</a> values have been read, or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderReadInnerXml"></a>xmlTextReaderReadInnerXml ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderReadInnerXml       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Reads the contents of the current node, including child nodes and markup.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a string containing the XML content, or NULL if the current node is neither an element nor attribute, or has no child nodes. The string must be deallocated by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderReadOuterXml"></a>xmlTextReaderReadOuterXml ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderReadOuterXml       (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Reads the contents of the current node, including child nodes and markup.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a string containing the node and any XML content, or NULL if the current node cannot be serialized. The string must be deallocated by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderReadState"></a>xmlTextReaderReadState ()</h3>
+<pre class="programlisting">int        xmlTextReaderReadState          (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Gets the read state of the reader.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the state value, or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderReadString"></a>xmlTextReaderReadString ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderReadString (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Reads the contents of an element or a text node as a string.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a string containing the contents of the Element or Text node, or NULL if the reader is positioned on any other type of node. The string must be deallocated by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderRelaxNGSetSchema"></a>xmlTextReaderRelaxNGSetSchema ()</h3>
+<pre class="programlisting">int        xmlTextReaderRelaxNGSetSchema   (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a> schema)<br>
+</pre>
+<p>Use RelaxNG to validate the document as it is processed. Activation is only possible before the first Read(). if @schema is NULL, then RelaxNG validation is deactivated. @ The @schema should not be freed until the reader is deallocated or its use has been deactivated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>schema</tt></i>:</span></td>
+<td>a precompiled RelaxNG schema</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case the RelaxNG validation could be (de)activated and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderRelaxNGValidate"></a>xmlTextReaderRelaxNGValidate ()</h3>
+<pre class="programlisting">int        xmlTextReaderRelaxNGValidate    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const char * rng)<br>
+</pre>
+<p>Use RelaxNG schema to validate the document as it is processed. Activation is only possible before the first Read(). If @rng is NULL, then RelaxNG schema validation is deactivated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>rng</tt></i>:</span></td>
+<td>the path to a RelaxNG schema or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case the schemas validation could be (de)activated and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderRelaxNGValidateCtxt"></a>xmlTextReaderRelaxNGValidateCtxt ()</h3>
+<pre class="programlisting">int        xmlTextReaderRelaxNGValidateCtxt        (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             <a href="libxml2-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a> ctxt, <br>                                             int options)<br>
+</pre>
+<p>Use RelaxNG schema context to validate the document as it is processed. Activation is only possible before the first Read(). If @ctxt is NULL, then RelaxNG schema validation is deactivated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the RelaxNG schema validation context or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>options (not used yet)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case the schemas validation could be (de)activated and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderSchemaValidate"></a>xmlTextReaderSchemaValidate ()</h3>
+<pre class="programlisting">int        xmlTextReaderSchemaValidate     (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     const char * xsd)<br>
+</pre>
+<p>Use W3C XSD schema to validate the document as it is processed. Activation is only possible before the first Read(). If @xsd is NULL, then XML Schema validation is deactivated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>xsd</tt></i>:</span></td>
+<td>the path to a W3C XSD schema or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case the schemas validation could be (de)activated and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderSchemaValidateCtxt"></a>xmlTextReaderSchemaValidateCtxt ()</h3>
+<pre class="programlisting">int        xmlTextReaderSchemaValidateCtxt (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    int options)<br>
+</pre>
+<p>Use W3C XSD schema context to validate the document as it is processed. Activation is only possible before the first Read(). If @ctxt is NULL, then XML Schema validation is deactivated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XML Schema validation context or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>options (not used yet)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case the schemas validation could be (de)activated and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderSetErrorHandler"></a>xmlTextReaderSetErrorHandler ()</h3>
+<pre class="programlisting">void       xmlTextReaderSetErrorHandler    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a> f, <br>                                      void * arg)<br>
+</pre>
+<p>Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the callback function to call on error and warnings</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>arg</tt></i>:</span></td>
+<td>a user argument to pass to the callback function</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderSetParserProp"></a>xmlTextReaderSetParserProp ()</h3>
+<pre class="programlisting">int        xmlTextReaderSetParserProp      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     int prop, <br>                                  int value)<br>
+</pre>
+<p>Change the parser processing behaviour by changing some of its internal properties. Note that some properties can only be changed before any read has been done.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prop</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlParserProperties">xmlParserProperties</a> to set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>usually 0 or 1 to (de)activate it</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the call was successful, or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderSetSchema"></a>xmlTextReaderSetSchema ()</h3>
+<pre class="programlisting">int        xmlTextReaderSetSchema          (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)<br>
+</pre>
+<p>Use XSD Schema to validate the document as it is processed. Activation is only possible before the first Read(). if @schema is NULL, then Schema validation is deactivated. The @schema should not be freed until the reader is deallocated or its use has been deactivated.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>schema</tt></i>:</span></td>
+<td>a precompiled Schema schema</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case the Schema validation could be (de)activated and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderSetStructuredErrorHandler"></a>xmlTextReaderSetStructuredErrorHandler ()</h3>
+<pre class="programlisting">void       xmlTextReaderSetStructuredErrorHandler  (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                             <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> f, <br>                                               void * arg)<br>
+</pre>
+<p>Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the callback function to call on error and warnings</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>arg</tt></i>:</span></td>
+<td>a user argument to pass to the callback function</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderSetup"></a>xmlTextReaderSetup ()</h3>
+<pre class="programlisting">int        xmlTextReaderSetup              (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader, <br>                                     <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br>                                     const char * URL, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Setup an XML reader with new options</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>an XML reader</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>
+<a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> used to feed the reader, will be destroyed with it.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the base URL to use for the document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the document encoding, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-parser.html#xmlParserOption">xmlParserOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderStandalone"></a>xmlTextReaderStandalone ()</h3>
+<pre class="programlisting">int        xmlTextReaderStandalone         (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Determine the standalone status of the document being read.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the document was declared to be standalone, 0 if it was declared to be not standalone, or -1 if the document did not specify its standalone status or in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderValue"></a>xmlTextReaderValue ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderValue      (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>Provides the text value of the node if present</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the string or NULL if not available. The result must be deallocated with xmlFree()</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextReaderXmlLang"></a>xmlTextReaderXmlLang ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlTextReaderXmlLang    (<a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> reader)<br>
+</pre>
+<p>The xml:lang scope within which the node resides.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>reader</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a> used</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the xml:lang value or NULL if none exists., if non NULL it need to be freed by the caller.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index cf13627..1286692 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlregexp: regular expressions handling</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlreader.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlsave.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlregexp</span>
-    </h2>
-    <p>xmlregexp - regular expressions handling</p>
-    <p>basic API for libxml regular expressions handling used for XML Schemas and validation. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef <a href="libxml2-xmlregexp.html#xmlRegExecCtxt">xmlRegExecCtxt</a> * <a href="#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a>;
-typedef struct _xmlExpCtxt <a href="#xmlExpCtxt">xmlExpCtxt</a>;
-typedef <a href="libxml2-xmlregexp.html#xmlExpNode">xmlExpNode</a> * <a href="#xmlExpNodePtr">xmlExpNodePtr</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlregexp: regular expressions handling</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlreader.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlsave.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlregexp</span></h2>
+<p>xmlregexp - regular expressions handling</p>
+<p>basic API for libxml regular expressions handling used for XML Schemas and validation. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlExpCtxt <a href="#xmlExpCtxt">xmlExpCtxt</a>;
 typedef <a href="libxml2-xmlregexp.html#xmlExpCtxt">xmlExpCtxt</a> * <a href="#xmlExpCtxtPtr">xmlExpCtxtPtr</a>;
+typedef struct _xmlExpNode <a href="#xmlExpNode">xmlExpNode</a>;
+typedef <a href="libxml2-xmlregexp.html#xmlExpNode">xmlExpNode</a> * <a href="#xmlExpNodePtr">xmlExpNodePtr</a>;
 typedef enum <a href="#xmlExpNodeType">xmlExpNodeType</a>;
 typedef struct _xmlRegExecCtxt <a href="#xmlRegExecCtxt">xmlRegExecCtxt</a>;
-typedef struct _xmlExpNode <a href="#xmlExpNode">xmlExpNode</a>;
+typedef <a href="libxml2-xmlregexp.html#xmlRegExecCtxt">xmlRegExecCtxt</a> * <a href="#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a>;
 typedef struct _xmlRegexp <a href="#xmlRegexp">xmlRegexp</a>;
 typedef <a href="libxml2-xmlregexp.html#xmlRegexp">xmlRegexp</a> * <a href="#xmlRegexpPtr">xmlRegexpPtr</a>;
-typedef void <a href="#xmlRegExecCallbacks">xmlRegExecCallbacks</a>            (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                       void * transdata, <br/>                                         void * inputdata);
-<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a>       <a href="#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a>      (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp, <br/>                                              <a href="libxml2-xmlregexp.html#xmlRegExecCallbacks">xmlRegExecCallbacks</a> callback, <br/>                                            void * data);
-<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpNewOr">xmlExpNewOr</a>          (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> left, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> right);
-void   <a href="#xmlRegFreeRegexp">xmlRegFreeRegexp</a>                (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> regexp);
-void   <a href="#xmlExpRef">xmlExpRef</a>                      (<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp);
-int    <a href="#xmlRegexpIsDeterminist">xmlRegexpIsDeterminist</a>            (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp);
-int    <a href="#xmlRegExecErrInfo">xmlRegExecErrInfo</a>              (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** string, <br/>                                     int * nbval, <br/>                                      int * nbneg, <br/>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** values, <br/>                                   int * terminal);
-void   <a href="#xmlRegFreeExecCtxt">xmlRegFreeExecCtxt</a>            (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec);
 int    <a href="#xmlExpCtxtNbCons">xmlExpCtxtNbCons</a>                (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt);
-int    <a href="#xmlExpSubsume">xmlExpSubsume</a>                      (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br/>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> sub);
-int    <a href="#xmlRegExecPushString2">xmlRegExecPushString2</a>              (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value2, <br/>                                      void * data);
-int    <a href="#xmlRegExecNextValues">xmlRegExecNextValues</a>                (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br/>                                    int * nbval, <br/>                                      int * nbneg, <br/>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** values, <br/>                                   int * terminal);
-<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpExpDerive">xmlExpExpDerive</a>          (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br/>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> sub);
-int    <a href="#xmlExpIsNillable">xmlExpIsNillable</a>                (<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp);
-void   <a href="#xmlExpFreeCtxt">xmlExpFreeCtxt</a>                    (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt);
-void   <a href="#xmlExpDump">xmlExpDump</a>                    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> expr);
-<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpNewSeq">xmlExpNewSeq</a>                (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> left, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> right);
-void   <a href="#xmlExpFree">xmlExpFree</a>                    (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp);
-<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpNewRange">xmlExpNewRange</a>            (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> subset, <br/>                                  int min, <br/>                                  int max);
-<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> <a href="#xmlRegexpCompile">xmlRegexpCompile</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * regexp);
-<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpNewAtom">xmlExpNewAtom</a>              (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int len);
-int    <a href="#xmlRegexpExec">xmlRegexpExec</a>                      (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlRegExecPushString">xmlRegExecPushString</a>                (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       void * data);
-int    <a href="#xmlExpGetStart">xmlExpGetStart</a>                    (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** tokList, <br/>                                    int len);
-<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpParse">xmlExpParse</a>          (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    const char * expr);
-<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a>       <a href="#xmlExpNewCtxt">xmlExpNewCtxt</a>              (int maxNodes, <br/>                                     <a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict);
-int    <a href="#xmlExpGetLanguage">xmlExpGetLanguage</a>              (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langList, <br/>                                   int len);
-<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpStringDerive">xmlExpStringDerive</a>    (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         int len);
 int    <a href="#xmlExpCtxtNbNodes">xmlExpCtxtNbNodes</a>              (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt);
+void   <a href="#xmlExpDump">xmlExpDump</a>                    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> expr);
+<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpExpDerive">xmlExpExpDerive</a>          (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br>                                      <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> sub);
+void   <a href="#xmlExpFree">xmlExpFree</a>                    (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp);
+void   <a href="#xmlExpFreeCtxt">xmlExpFreeCtxt</a>                    (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt);
+int    <a href="#xmlExpGetLanguage">xmlExpGetLanguage</a>              (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langList, <br>                                    int len);
+int    <a href="#xmlExpGetStart">xmlExpGetStart</a>                    (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** tokList, <br>                                     int len);
+int    <a href="#xmlExpIsNillable">xmlExpIsNillable</a>                (<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp);
 int    <a href="#xmlExpMaxToken">xmlExpMaxToken</a>                    (<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> expr);
-void   <a href="#xmlRegexpPrint">xmlRegexpPrint</a>                    (FILE * output, <br/>                                    <a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> regexp);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlExpCtxt">Structure </a>xmlExpCtxt</h3><pre class="programlisting">struct _xmlExpCtxt {
+<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpNewAtom">xmlExpNewAtom</a>              (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int len);
+<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a>       <a href="#xmlExpNewCtxt">xmlExpNewCtxt</a>              (int maxNodes, <br>                                      <a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict);
+<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpNewOr">xmlExpNewOr</a>          (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> left, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> right);
+<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpNewRange">xmlExpNewRange</a>            (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> subset, <br>                                   int min, <br>                                   int max);
+<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpNewSeq">xmlExpNewSeq</a>                (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> left, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> right);
+<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpParse">xmlExpParse</a>          (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     const char * expr);
+void   <a href="#xmlExpRef">xmlExpRef</a>                      (<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp);
+<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       <a href="#xmlExpStringDerive">xmlExpStringDerive</a>    (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  int len);
+int    <a href="#xmlExpSubsume">xmlExpSubsume</a>                      (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br>                                      <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> sub);
+typedef void <a href="#xmlRegExecCallbacks">xmlRegExecCallbacks</a>            (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                        void * transdata, <br>                                  void * inputdata);
+int    <a href="#xmlRegExecErrInfo">xmlRegExecErrInfo</a>              (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** string, <br>                                      int * nbval, <br>                                       int * nbneg, <br>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** values, <br>                                    int * terminal);
+int    <a href="#xmlRegExecNextValues">xmlRegExecNextValues</a>                (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br>                                     int * nbval, <br>                                       int * nbneg, <br>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** values, <br>                                    int * terminal);
+int    <a href="#xmlRegExecPushString">xmlRegExecPushString</a>                (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        void * data);
+int    <a href="#xmlRegExecPushString2">xmlRegExecPushString2</a>              (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value2, <br>                                       void * data);
+void   <a href="#xmlRegFreeExecCtxt">xmlRegFreeExecCtxt</a>            (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec);
+void   <a href="#xmlRegFreeRegexp">xmlRegFreeRegexp</a>                (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> regexp);
+<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a>       <a href="#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a>      (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp, <br>                                               <a href="libxml2-xmlregexp.html#xmlRegExecCallbacks">xmlRegExecCallbacks</a> callback, <br>                                             void * data);
+<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> <a href="#xmlRegexpCompile">xmlRegexpCompile</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * regexp);
+int    <a href="#xmlRegexpExec">xmlRegexpExec</a>                      (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlRegexpIsDeterminist">xmlRegexpIsDeterminist</a>            (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp);
+void   <a href="#xmlRegexpPrint">xmlRegexpPrint</a>                    (FILE * output, <br>                                     <a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> regexp);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpCtxt">Structure </a>xmlExpCtxt</h3>
+<pre class="programlisting">struct _xmlExpCtxt {
 The content of this structure is not made public by the API.
 } xmlExpCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpCtxtPtr">Typedef </a>xmlExpCtxtPtr</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpCtxt">xmlExpCtxt</a> * xmlExpCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpCtxtPtr">Typedef </a>xmlExpCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpCtxt">xmlExpCtxt</a> * xmlExpCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpNode">Structure </a>xmlExpNode</h3><pre class="programlisting">struct _xmlExpNode {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpNode">Structure </a>xmlExpNode</h3>
+<pre class="programlisting">struct _xmlExpNode {
 The content of this structure is not made public by the API.
 } xmlExpNode;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpNodePtr">Typedef </a>xmlExpNodePtr</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNode">xmlExpNode</a> * xmlExpNodePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpNodePtr">Typedef </a>xmlExpNodePtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNode">xmlExpNode</a> * xmlExpNodePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpNodeType">Enum </a>xmlExpNodeType</h3><pre class="programlisting">enum <a href="#xmlExpNodeType">xmlExpNodeType</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpNodeType">Enum </a>xmlExpNodeType</h3>
+<pre class="programlisting">enum <a href="#xmlExpNodeType">xmlExpNodeType</a> {
     <a name="XML_EXP_EMPTY">XML_EXP_EMPTY</a> = 0
     <a name="XML_EXP_FORBID">XML_EXP_FORBID</a> = 1
     <a name="XML_EXP_ATOM">XML_EXP_ATOM</a> = 2
@@ -119,162 +115,862 @@ The content of this structure is not made public by the API.
     <a name="XML_EXP_OR">XML_EXP_OR</a> = 4
     <a name="XML_EXP_COUNT">XML_EXP_COUNT</a> = 5
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegExecCtxt">Structure </a>xmlRegExecCtxt</h3><pre class="programlisting">struct _xmlRegExecCtxt {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegExecCtxt">Structure </a>xmlRegExecCtxt</h3>
+<pre class="programlisting">struct _xmlRegExecCtxt {
 The content of this structure is not made public by the API.
 } xmlRegExecCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegExecCtxtPtr">Typedef </a>xmlRegExecCtxtPtr</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlRegExecCtxt">xmlRegExecCtxt</a> * xmlRegExecCtxtPtr;
-</pre><p>A libxml progressive regular expression evaluation context</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegExecCtxtPtr">Typedef </a>xmlRegExecCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlRegExecCtxt">xmlRegExecCtxt</a> * xmlRegExecCtxtPtr;
+</pre>
+<p>A libxml progressive regular expression evaluation context</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegexp">Structure </a>xmlRegexp</h3><pre class="programlisting">struct _xmlRegexp {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegexp">Structure </a>xmlRegexp</h3>
+<pre class="programlisting">struct _xmlRegexp {
 The content of this structure is not made public by the API.
 } xmlRegexp;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegexpPtr">Typedef </a>xmlRegexpPtr</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlRegexp">xmlRegexp</a> * xmlRegexpPtr;
-</pre><p>A libxml regular expression, they can actually be far more complex thank the POSIX regex expressions.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegExecCallbacks"/>Function type xmlRegExecCallbacks</h3><pre class="programlisting">void      xmlRegExecCallbacks             (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br/>                                       void * transdata, <br/>                                         void * inputdata)<br/>
-</pre><p>Callback function when doing a transition in the automata</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>exec</tt></i>:</span></td><td>the regular expression context</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the current token string</td></tr><tr><td><span class="term"><i><tt>transdata</tt></i>:</span></td><td>transition data</td></tr><tr><td><span class="term"><i><tt>inputdata</tt></i>:</span></td><td>input data</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="emptyExp">Variable </a>emptyExp</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> emptyExp;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="forbiddenExp">Variable </a>forbiddenExp</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> forbiddenExp;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpCtxtNbCons"/>xmlExpCtxtNbCons ()</h3><pre class="programlisting">int        xmlExpCtxtNbCons                (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt)<br/>
-</pre><p>Debugging facility provides the number of allocated nodes over lifetime</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an expression context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of nodes ever allocated or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpCtxtNbNodes"/>xmlExpCtxtNbNodes ()</h3><pre class="programlisting">int      xmlExpCtxtNbNodes               (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt)<br/>
-</pre><p>Debugging facility provides the number of allocated nodes at a that point</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an expression context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of nodes in use or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpDump"/>xmlExpDump ()</h3><pre class="programlisting">void   xmlExpDump                      (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> expr)<br/>
-</pre><p>Serialize the expression as compiled to the buffer</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>a buffer to receive the output</td></tr><tr><td><span class="term"><i><tt>expr</tt></i>:</span></td><td>the compiled expression</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpExpDerive"/>xmlExpExpDerive ()</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>     xmlExpExpDerive         (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br/>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> sub)<br/>
-</pre><p>Evaluates the expression resulting from @exp consuming a sub expression @sub Based on algebraic derivation and sometimes direct Brzozowski derivation it usually takes less than linear time and can handle expressions generating infinite languages.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the expressions context</td></tr><tr><td><span class="term"><i><tt>exp</tt></i>:</span></td><td>the englobing expression</td></tr><tr><td><span class="term"><i><tt>sub</tt></i>:</span></td><td>the subexpression</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting expression or NULL in case of internal error, the result must be freed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpFree"/>xmlExpFree ()</h3><pre class="programlisting">void   xmlExpFree                      (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp)<br/>
-</pre><p>Dereference the expression</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the expression context</td></tr><tr><td><span class="term"><i><tt>exp</tt></i>:</span></td><td>the expression</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpFreeCtxt"/>xmlExpFreeCtxt ()</h3><pre class="programlisting">void   xmlExpFreeCtxt                  (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt)<br/>
-</pre><p>Free an expression context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an expression context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpGetLanguage"/>xmlExpGetLanguage ()</h3><pre class="programlisting">int      xmlExpGetLanguage               (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langList, <br/>                                   int len)<br/>
-</pre><p>Find all the strings used in @exp and store them in @list</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the expression context</td></tr><tr><td><span class="term"><i><tt>exp</tt></i>:</span></td><td>the expression</td></tr><tr><td><span class="term"><i><tt>langList</tt></i>:</span></td><td>where to store the tokens</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the allocated length of @list</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of unique strings found, -1 in case of errors and -2 if there is more than @len strings</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpGetStart"/>xmlExpGetStart ()</h3><pre class="programlisting">int    xmlExpGetStart                  (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** tokList, <br/>                                    int len)<br/>
-</pre><p>Find all the strings that appears at the start of the languages accepted by @exp and store them in @list. E.g. for (a, b) | c it will return the list [a, c]</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the expression context</td></tr><tr><td><span class="term"><i><tt>exp</tt></i>:</span></td><td>the expression</td></tr><tr><td><span class="term"><i><tt>tokList</tt></i>:</span></td><td>where to store the tokens</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the allocated length of @list</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of unique strings found, -1 in case of errors and -2 if there is more than @len strings</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpIsNillable"/>xmlExpIsNillable ()</h3><pre class="programlisting">int        xmlExpIsNillable                (<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp)<br/>
-</pre><p>Finds if the expression is nillable, i.e. if it accepts the empty sequence</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>exp</tt></i>:</span></td><td>the expression</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if nillable, 0 if not and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpMaxToken"/>xmlExpMaxToken ()</h3><pre class="programlisting">int    xmlExpMaxToken                  (<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> expr)<br/>
-</pre><p>Indicate the maximum number of input a expression can accept</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>expr</tt></i>:</span></td><td>a compiled expression</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the maximum length or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpNewAtom"/>xmlExpNewAtom ()</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> xmlExpNewAtom           (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        int len)<br/>
-</pre><p>Get the atom associated to this name from that context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the expression context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the atom name</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the atom name length in byte (or -1);</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the node or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpNewCtxt"/>xmlExpNewCtxt ()</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> xmlExpNewCtxt           (int maxNodes, <br/>                                     <a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br/>
-</pre><p>Creates a new context for manipulating expressions</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>maxNodes</tt></i>:</span></td><td>the maximum number of nodes</td></tr><tr><td><span class="term"><i><tt>dict</tt></i>:</span></td><td>optional dictionary to use internally</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpNewOr"/>xmlExpNewOr ()</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>     xmlExpNewOr             (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> left, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> right)<br/>
-</pre><p>Get the atom associated to the choice @left | @right Note that @left and @right are consumed in the operation, to keep an handle on them use xmlExpRef() and use xmlExpFree() to release them, this is true even in case of failure (unless ctxt == NULL).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the expression context</td></tr><tr><td><span class="term"><i><tt>left</tt></i>:</span></td><td>left expression</td></tr><tr><td><span class="term"><i><tt>right</tt></i>:</span></td><td>right expression</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the node or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpNewRange"/>xmlExpNewRange ()</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       xmlExpNewRange          (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> subset, <br/>                                  int min, <br/>                                  int max)<br/>
-</pre><p>Get the atom associated to the range (@subset){@min, @max} Note that @subset is consumed in the operation, to keep an handle on it use xmlExpRef() and use xmlExpFree() to release it, this is true even in case of failure (unless ctxt == NULL).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the expression context</td></tr><tr><td><span class="term"><i><tt>subset</tt></i>:</span></td><td>the expression to be repeated</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the lower bound for the repetition</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the upper bound for the repetition, -1 means infinite</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the node or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpNewSeq"/>xmlExpNewSeq ()</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>   xmlExpNewSeq            (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> left, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> right)<br/>
-</pre><p>Get the atom associated to the sequence @left , @right Note that @left and @right are consumed in the operation, to keep an handle on them use xmlExpRef() and use xmlExpFree() to release them, this is true even in case of failure (unless ctxt == NULL).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the expression context</td></tr><tr><td><span class="term"><i><tt>left</tt></i>:</span></td><td>left expression</td></tr><tr><td><span class="term"><i><tt>right</tt></i>:</span></td><td>right expression</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the node or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpParse"/>xmlExpParse ()</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>     xmlExpParse             (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    const char * expr)<br/>
-</pre><p>Minimal parser for regexps, it understand the following constructs - string terminals - choice operator | - sequence operator , - subexpressions (...) - usual cardinality operators + * and ? - finite sequences { min, max } - infinite sequences { min, * } There is minimal checkings made especially no checking on strings values</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the expressions context</td></tr><tr><td><span class="term"><i><tt>expr</tt></i>:</span></td><td>the 0 terminated string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new expression or NULL in case of failure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpRef"/>xmlExpRef ()</h3><pre class="programlisting">void     xmlExpRef                       (<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp)<br/>
-</pre><p>Increase the <a href="libxml2-SAX.html#reference">reference</a> count of the expression</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>exp</tt></i>:</span></td><td>the expression</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpStringDerive"/>xmlExpStringDerive ()</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>       xmlExpStringDerive      (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         int len)<br/>
-</pre><p>Do one step of Brzozowski derivation of the expression @exp with respect to the input string</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the expression context</td></tr><tr><td><span class="term"><i><tt>exp</tt></i>:</span></td><td>the expression</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the string len in bytes if available</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the resulting expression or NULL in case of internal error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlExpSubsume"/>xmlExpSubsume ()</h3><pre class="programlisting">int      xmlExpSubsume                   (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br/>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> sub)<br/>
-</pre><p>Check whether @exp accepts all the languages accepted by @sub the input being a subexpression.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the expressions context</td></tr><tr><td><span class="term"><i><tt>exp</tt></i>:</span></td><td>the englobing expression</td></tr><tr><td><span class="term"><i><tt>sub</tt></i>:</span></td><td>the subexpression</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 if false and -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegExecErrInfo"/>xmlRegExecErrInfo ()</h3><pre class="programlisting">int      xmlRegExecErrInfo               (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** string, <br/>                                     int * nbval, <br/>                                      int * nbneg, <br/>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** values, <br/>                                   int * terminal)<br/>
-</pre><p>Extract error information from the regexp execution, the parameter @string will be updated with the value pushed and not accepted, the parameter @values must point to an array of @nbval string pointers on return nbval will contain the number of possible strings in that state and the @values array will be updated with them. The string values</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>exec</tt></i>:</span></td><td>a regexp execution context generating an error</td></tr><tr><td><span class="term"><i><tt>string</tt></i>:</span></td><td>return value for the error string</td></tr><tr><td><span class="term"><i><tt>nbval</tt></i>:</span></td><td>pointer to the number of accepted values IN/OUT</td></tr><tr><td><span class="term"><i><tt>nbneg</tt></i>:</span></td><td>return number of negative transitions</td></tr><tr><td><span class="term"><i><tt>values</tt></i>:</span></td><td>pointer to the array of acceptable values</td></tr><tr><td><span class="term"><i><tt>terminal</tt></i>:</span></td><td>return value if this was a terminal state</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>will be freed with the @exec context and don't need to be deallocated. Returns: 0 in case of success or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegExecNextValues"/>xmlRegExecNextValues ()</h3><pre class="programlisting">int        xmlRegExecNextValues            (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br/>                                    int * nbval, <br/>                                      int * nbneg, <br/>                                      <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** values, <br/>                                   int * terminal)<br/>
-</pre><p>Extract information from the regexp execution, the parameter @values must point to an array of @nbval string pointers on return nbval will contain the number of possible strings in that state and the @values array will be updated with them. The string values</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>exec</tt></i>:</span></td><td>a regexp execution context</td></tr><tr><td><span class="term"><i><tt>nbval</tt></i>:</span></td><td>pointer to the number of accepted values IN/OUT</td></tr><tr><td><span class="term"><i><tt>nbneg</tt></i>:</span></td><td>return number of negative transitions</td></tr><tr><td><span class="term"><i><tt>values</tt></i>:</span></td><td>pointer to the array of acceptable values</td></tr><tr><td><span class="term"><i><tt>terminal</tt></i>:</span></td><td>return value if this was a terminal state</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>will be freed with the @exec context and don't need to be deallocated. Returns: 0 in case of success or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegExecPushString"/>xmlRegExecPushString ()</h3><pre class="programlisting">int        xmlRegExecPushString            (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       void * data)<br/>
-</pre><p>Push one input token in the execution context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>exec</tt></i>:</span></td><td>a regexp execution context or NULL to indicate the end</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>a string token input</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the token to reuse in callbacks</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the regexp reached a final state, 0 if non-final, and a negative value in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegExecPushString2"/>xmlRegExecPushString2 ()</h3><pre class="programlisting">int      xmlRegExecPushString2           (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value2, <br/>                                      void * data)<br/>
-</pre><p>Push one input token in the execution context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>exec</tt></i>:</span></td><td>a regexp execution context or NULL to indicate the end</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the first string token input</td></tr><tr><td><span class="term"><i><tt>value2</tt></i>:</span></td><td>the second string token input</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the token to reuse in callbacks</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the regexp reached a final state, 0 if non-final, and a negative value in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegFreeExecCtxt"/>xmlRegFreeExecCtxt ()</h3><pre class="programlisting">void   xmlRegFreeExecCtxt              (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec)<br/>
-</pre><p>Free the structures associated to a regular expression evaluation context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>exec</tt></i>:</span></td><td>a regular expression evaluation context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegFreeRegexp"/>xmlRegFreeRegexp ()</h3><pre class="programlisting">void       xmlRegFreeRegexp                (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> regexp)<br/>
-</pre><p>Free a regexp</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>regexp</tt></i>:</span></td><td>the regexp</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegNewExecCtxt"/>xmlRegNewExecCtxt ()</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> xmlRegNewExecCtxt       (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp, <br/>                                              <a href="libxml2-xmlregexp.html#xmlRegExecCallbacks">xmlRegExecCallbacks</a> callback, <br/>                                            void * data)<br/>
-</pre><p>Build a context used for progressive evaluation of a regexp.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>a precompiled regular expression</td></tr><tr><td><span class="term"><i><tt>callback</tt></i>:</span></td><td>a callback function used for handling progresses in the automata matching phase</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the context data associated to the callback in this context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegexpCompile"/>xmlRegexpCompile ()</h3><pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a>     xmlRegexpCompile        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * regexp)<br/>
-</pre><p>Parses a regular expression conforming to XML Schemas Part 2 Datatype Appendix F and builds an automata suitable for testing strings against that regular expression</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>regexp</tt></i>:</span></td><td>a regular expression string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the compiled expression or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegexpExec"/>xmlRegexpExec ()</h3><pre class="programlisting">int      xmlRegexpExec                   (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Check if the regular expression generates the value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>the compiled regular expression</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>the value to check against the regular expression</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if it matches, 0 if not and a negative value in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegexpIsDeterminist"/>xmlRegexpIsDeterminist ()</h3><pre class="programlisting">int    xmlRegexpIsDeterminist          (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp)<br/>
-</pre><p>Check if the regular expression is determinist</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>the compiled regular expression</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if it yes, 0 if not and a negative value in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlRegexpPrint"/>xmlRegexpPrint ()</h3><pre class="programlisting">void   xmlRegexpPrint                  (FILE * output, <br/>                                    <a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> regexp)<br/>
-</pre><p>Print the content of the compiled regular expression</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the file for the output debug</td></tr><tr><td><span class="term"><i><tt>regexp</tt></i>:</span></td><td>the compiled regexp</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegexpPtr">Typedef </a>xmlRegexpPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlRegexp">xmlRegexp</a> * xmlRegexpPtr;
+</pre>
+<p>A libxml regular expression, they can actually be far more complex thank the POSIX regex expressions.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegExecCallbacks"></a>Function type xmlRegExecCallbacks</h3>
+<pre class="programlisting">void       xmlRegExecCallbacks             (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * token, <br>                                        void * transdata, <br>                                  void * inputdata)<br>
+</pre>
+<p>Callback function when doing a transition in the automata</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>exec</tt></i>:</span></td>
+<td>the regular expression context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>token</tt></i>:</span></td>
+<td>the current token string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>transdata</tt></i>:</span></td>
+<td>transition data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inputdata</tt></i>:</span></td>
+<td>input data</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="emptyExp">Variable </a>emptyExp</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> emptyExp;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="forbiddenExp">Variable </a>forbiddenExp</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> forbiddenExp;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpCtxtNbCons"></a>xmlExpCtxtNbCons ()</h3>
+<pre class="programlisting">int        xmlExpCtxtNbCons                (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Debugging facility provides the number of allocated nodes over lifetime</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an expression context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of nodes ever allocated or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpCtxtNbNodes"></a>xmlExpCtxtNbNodes ()</h3>
+<pre class="programlisting">int        xmlExpCtxtNbNodes               (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Debugging facility provides the number of allocated nodes at a that point</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an expression context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of nodes in use or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpDump"></a>xmlExpDump ()</h3>
+<pre class="programlisting">void       xmlExpDump                      (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> expr)<br>
+</pre>
+<p>Serialize the expression as compiled to the buffer</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>a buffer to receive the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>expr</tt></i>:</span></td>
+<td>the compiled expression</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpExpDerive"></a>xmlExpExpDerive ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>   xmlExpExpDerive         (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br>                                      <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> sub)<br>
+</pre>
+<p>Evaluates the expression resulting from @exp consuming a sub expression @sub Based on algebraic derivation and sometimes direct Brzozowski derivation it usually takes less than linear time and can handle expressions generating infinite languages.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the expressions context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>exp</tt></i>:</span></td>
+<td>the englobing expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sub</tt></i>:</span></td>
+<td>the subexpression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting expression or NULL in case of internal error, the result must be freed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpFree"></a>xmlExpFree ()</h3>
+<pre class="programlisting">void       xmlExpFree                      (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp)<br>
+</pre>
+<p>Dereference the expression</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the expression context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>exp</tt></i>:</span></td>
+<td>the expression</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpFreeCtxt"></a>xmlExpFreeCtxt ()</h3>
+<pre class="programlisting">void       xmlExpFreeCtxt                  (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Free an expression context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an expression context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpGetLanguage"></a>xmlExpGetLanguage ()</h3>
+<pre class="programlisting">int        xmlExpGetLanguage               (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** langList, <br>                                    int len)<br>
+</pre>
+<p>Find all the strings used in @exp and store them in @list</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the expression context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>exp</tt></i>:</span></td>
+<td>the expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>langList</tt></i>:</span></td>
+<td>where to store the tokens</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the allocated length of @list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of unique strings found, -1 in case of errors and -2 if there is more than @len strings</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpGetStart"></a>xmlExpGetStart ()</h3>
+<pre class="programlisting">int        xmlExpGetStart                  (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** tokList, <br>                                     int len)<br>
+</pre>
+<p>Find all the strings that appears at the start of the languages accepted by @exp and store them in @list. E.g. for (a, b) | c it will return the list [a, c]</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the expression context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>exp</tt></i>:</span></td>
+<td>the expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>tokList</tt></i>:</span></td>
+<td>where to store the tokens</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the allocated length of @list</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of unique strings found, -1 in case of errors and -2 if there is more than @len strings</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpIsNillable"></a>xmlExpIsNillable ()</h3>
+<pre class="programlisting">int        xmlExpIsNillable                (<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp)<br>
+</pre>
+<p>Finds if the expression is nillable, i.e. if it accepts the empty sequence</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>exp</tt></i>:</span></td>
+<td>the expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if nillable, 0 if not and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpMaxToken"></a>xmlExpMaxToken ()</h3>
+<pre class="programlisting">int        xmlExpMaxToken                  (<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> expr)<br>
+</pre>
+<p>Indicate the maximum number of input a expression can accept</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>expr</tt></i>:</span></td>
+<td>a compiled expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the maximum length or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpNewAtom"></a>xmlExpNewAtom ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>   xmlExpNewAtom           (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         int len)<br>
+</pre>
+<p>Get the atom associated to this name from that context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the expression context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the atom name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the atom name length in byte (or -1);</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the node or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpNewCtxt"></a>xmlExpNewCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a>   xmlExpNewCtxt           (int maxNodes, <br>                                      <a href="libxml2-dict.html#xmlDictPtr">xmlDictPtr</a> dict)<br>
+</pre>
+<p>Creates a new context for manipulating expressions</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>maxNodes</tt></i>:</span></td>
+<td>the maximum number of nodes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>dict</tt></i>:</span></td>
+<td>optional dictionary to use internally</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpNewOr"></a>xmlExpNewOr ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>   xmlExpNewOr             (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> left, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> right)<br>
+</pre>
+<p>Get the atom associated to the choice @left | @right Note that @left and @right are consumed in the operation, to keep an handle on them use xmlExpRef() and use xmlExpFree() to release them, this is true even in case of failure (unless ctxt == NULL).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the expression context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>left</tt></i>:</span></td>
+<td>left expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>right</tt></i>:</span></td>
+<td>right expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the node or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpNewRange"></a>xmlExpNewRange ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>   xmlExpNewRange          (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> subset, <br>                                   int min, <br>                                   int max)<br>
+</pre>
+<p>Get the atom associated to the range (@subset){@min, @max} Note that @subset is consumed in the operation, to keep an handle on it use xmlExpRef() and use xmlExpFree() to release it, this is true even in case of failure (unless ctxt == NULL).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the expression context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>subset</tt></i>:</span></td>
+<td>the expression to be repeated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>min</tt></i>:</span></td>
+<td>the lower bound for the repetition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>max</tt></i>:</span></td>
+<td>the upper bound for the repetition, -1 means infinite</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the node or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpNewSeq"></a>xmlExpNewSeq ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>   xmlExpNewSeq            (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> left, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> right)<br>
+</pre>
+<p>Get the atom associated to the sequence @left , @right Note that @left and @right are consumed in the operation, to keep an handle on them use xmlExpRef() and use xmlExpFree() to release them, this is true even in case of failure (unless ctxt == NULL).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the expression context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>left</tt></i>:</span></td>
+<td>left expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>right</tt></i>:</span></td>
+<td>right expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the node or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpParse"></a>xmlExpParse ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>   xmlExpParse             (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     const char * expr)<br>
+</pre>
+<p>Minimal parser for regexps, it understand the following constructs - string terminals - choice operator | - sequence operator , - subexpressions (...) - usual cardinality operators + * and ? - finite sequences { min, max } - infinite sequences { min, * } There is minimal checkings made especially no checking on strings values</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the expressions context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>expr</tt></i>:</span></td>
+<td>the 0 terminated string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new expression or NULL in case of failure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpRef"></a>xmlExpRef ()</h3>
+<pre class="programlisting">void       xmlExpRef                       (<a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp)<br>
+</pre>
+<p>Increase the <a href="libxml2-SAX.html#reference">reference</a> count of the expression</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>exp</tt></i>:</span></td>
+<td>the expression</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpStringDerive"></a>xmlExpStringDerive ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a>   xmlExpStringDerive      (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  int len)<br>
+</pre>
+<p>Do one step of Brzozowski derivation of the expression @exp with respect to the input string</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the expression context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>exp</tt></i>:</span></td>
+<td>the expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the string len in bytes if available</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the resulting expression or NULL in case of internal error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlExpSubsume"></a>xmlExpSubsume ()</h3>
+<pre class="programlisting">int        xmlExpSubsume                   (<a href="libxml2-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> exp, <br>                                      <a href="libxml2-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a> sub)<br>
+</pre>
+<p>Check whether @exp accepts all the languages accepted by @sub the input being a subexpression.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the expressions context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>exp</tt></i>:</span></td>
+<td>the englobing expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sub</tt></i>:</span></td>
+<td>the subexpression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 if false and -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegExecErrInfo"></a>xmlRegExecErrInfo ()</h3>
+<pre class="programlisting">int        xmlRegExecErrInfo               (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** string, <br>                                      int * nbval, <br>                                       int * nbneg, <br>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** values, <br>                                    int * terminal)<br>
+</pre>
+<p>Extract error information from the regexp execution, the parameter @string will be updated with the value pushed and not accepted, the parameter @values must point to an array of @nbval string pointers on return nbval will contain the number of possible strings in that state and the @values array will be updated with them. The string values</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>exec</tt></i>:</span></td>
+<td>a regexp execution context generating an error</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>string</tt></i>:</span></td>
+<td>return value for the error string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nbval</tt></i>:</span></td>
+<td>pointer to the number of accepted values IN/OUT</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nbneg</tt></i>:</span></td>
+<td>return number of negative transitions</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>values</tt></i>:</span></td>
+<td>pointer to the array of acceptable values</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>terminal</tt></i>:</span></td>
+<td>return value if this was a terminal state</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>will be freed with the @exec context and don't need to be deallocated. Returns: 0 in case of success or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegExecNextValues"></a>xmlRegExecNextValues ()</h3>
+<pre class="programlisting">int        xmlRegExecNextValues            (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br>                                     int * nbval, <br>                                       int * nbneg, <br>                                       <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** values, <br>                                    int * terminal)<br>
+</pre>
+<p>Extract information from the regexp execution, the parameter @values must point to an array of @nbval string pointers on return nbval will contain the number of possible strings in that state and the @values array will be updated with them. The string values</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>exec</tt></i>:</span></td>
+<td>a regexp execution context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nbval</tt></i>:</span></td>
+<td>pointer to the number of accepted values IN/OUT</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nbneg</tt></i>:</span></td>
+<td>return number of negative transitions</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>values</tt></i>:</span></td>
+<td>pointer to the array of acceptable values</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>terminal</tt></i>:</span></td>
+<td>return value if this was a terminal state</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>will be freed with the @exec context and don't need to be deallocated. Returns: 0 in case of success or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegExecPushString"></a>xmlRegExecPushString ()</h3>
+<pre class="programlisting">int        xmlRegExecPushString            (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        void * data)<br>
+</pre>
+<p>Push one input token in the execution context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>exec</tt></i>:</span></td>
+<td>a regexp execution context or NULL to indicate the end</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>a string token input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>data associated to the token to reuse in callbacks</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the regexp reached a final state, 0 if non-final, and a negative value in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegExecPushString2"></a>xmlRegExecPushString2 ()</h3>
+<pre class="programlisting">int        xmlRegExecPushString2           (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value2, <br>                                       void * data)<br>
+</pre>
+<p>Push one input token in the execution context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>exec</tt></i>:</span></td>
+<td>a regexp execution context or NULL to indicate the end</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the first string token input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value2</tt></i>:</span></td>
+<td>the second string token input</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>data associated to the token to reuse in callbacks</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the regexp reached a final state, 0 if non-final, and a negative value in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegFreeExecCtxt"></a>xmlRegFreeExecCtxt ()</h3>
+<pre class="programlisting">void       xmlRegFreeExecCtxt              (<a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a> exec)<br>
+</pre>
+<p>Free the structures associated to a regular expression evaluation context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>exec</tt></i>:</span></td>
+<td>a regular expression evaluation context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegFreeRegexp"></a>xmlRegFreeRegexp ()</h3>
+<pre class="programlisting">void       xmlRegFreeRegexp                (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> regexp)<br>
+</pre>
+<p>Free a regexp</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>regexp</tt></i>:</span></td>
+<td>the regexp</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegNewExecCtxt"></a>xmlRegNewExecCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a>   xmlRegNewExecCtxt       (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp, <br>                                               <a href="libxml2-xmlregexp.html#xmlRegExecCallbacks">xmlRegExecCallbacks</a> callback, <br>                                             void * data)<br>
+</pre>
+<p>Build a context used for progressive evaluation of a regexp.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>a precompiled regular expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>callback</tt></i>:</span></td>
+<td>a callback function used for handling progresses in the automata matching phase</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the context data associated to the callback in this context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new context</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegexpCompile"></a>xmlRegexpCompile ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a>     xmlRegexpCompile        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * regexp)<br>
+</pre>
+<p>Parses a regular expression conforming to XML Schemas Part 2 Datatype Appendix F and builds an automata suitable for testing strings against that regular expression</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>regexp</tt></i>:</span></td>
+<td>a regular expression string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the compiled expression or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegexpExec"></a>xmlRegexpExec ()</h3>
+<pre class="programlisting">int        xmlRegexpExec                   (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Check if the regular expression generates the value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>the compiled regular expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>the value to check against the regular expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if it matches, 0 if not and a negative value in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegexpIsDeterminist"></a>xmlRegexpIsDeterminist ()</h3>
+<pre class="programlisting">int        xmlRegexpIsDeterminist          (<a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> comp)<br>
+</pre>
+<p>Check if the regular expression is determinist</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>the compiled regular expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if it yes, 0 if not and a negative value in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlRegexpPrint"></a>xmlRegexpPrint ()</h3>
+<pre class="programlisting">void       xmlRegexpPrint                  (FILE * output, <br>                                     <a href="libxml2-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> regexp)<br>
+</pre>
+<p>Print the content of the compiled regular expression</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the file for the output debug</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>regexp</tt></i>:</span></td>
+<td>the compiled regexp</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 6e851de..fe2c2d2 100644 (file)
@@ -1,80 +1,68 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlsave: the XML document serializer</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlregexp.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlschemas.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlsave</span>
-    </h2>
-    <p>xmlsave - the XML document serializer</p>
-    <p>API to save document or subtree of document </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef enum <a href="#xmlSaveOption">xmlSaveOption</a>;
-typedef struct _xmlSaveCtxt <a href="#xmlSaveCtxt">xmlSaveCtxt</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlsave: the XML document serializer</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlregexp.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlschemas.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlsave</span></h2>
+<p>xmlsave - the XML document serializer</p>
+<p>API to save document or subtree of document </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlSaveCtxt <a href="#xmlSaveCtxt">xmlSaveCtxt</a>;
 typedef <a href="libxml2-xmlsave.html#xmlSaveCtxt">xmlSaveCtxt</a> * <a href="#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>;
-<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>       <a href="#xmlSaveToIO">xmlSaveToIO</a>          (<a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> iowrite, <br/>                                   <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> ioclose, <br/>                                   void * ioctx, <br/>                                     const char * encoding, <br/>                                    int options);
-<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>       <a href="#xmlSaveToFd">xmlSaveToFd</a>          (int fd, <br/>                                   const char * encoding, <br/>                                    int options);
+typedef enum <a href="#xmlSaveOption">xmlSaveOption</a>;
 int    <a href="#xmlSaveClose">xmlSaveClose</a>                        (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt);
-int    <a href="#xmlSaveSetAttrEscape">xmlSaveSetAttrEscape</a>                (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escape);
-<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>       <a href="#xmlSaveToBuffer">xmlSaveToBuffer</a>          (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br/>                                         const char * encoding, <br/>                                    int options);
-<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>       <a href="#xmlSaveToFilename">xmlSaveToFilename</a>      (const char * filename, <br/>                                    const char * encoding, <br/>                                    int options);
+long   <a href="#xmlSaveDoc">xmlSaveDoc</a>                    (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
 int    <a href="#xmlSaveFlush">xmlSaveFlush</a>                        (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt);
-long   <a href="#xmlSaveDoc">xmlSaveDoc</a>                    (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-int    <a href="#xmlSaveSetEscape">xmlSaveSetEscape</a>                (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escape);
-long   <a href="#xmlSaveTree">xmlSaveTree</a>                  (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+int    <a href="#xmlSaveSetAttrEscape">xmlSaveSetAttrEscape</a>                (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escape);
+int    <a href="#xmlSaveSetEscape">xmlSaveSetEscape</a>                (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escape);
+<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>       <a href="#xmlSaveToBuffer">xmlSaveToBuffer</a>          (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br>                                  const char * encoding, <br>                                     int options);
+<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>       <a href="#xmlSaveToFd">xmlSaveToFd</a>          (int fd, <br>                                    const char * encoding, <br>                                     int options);
+<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>       <a href="#xmlSaveToFilename">xmlSaveToFilename</a>      (const char * filename, <br>                                     const char * encoding, <br>                                     int options);
+<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>       <a href="#xmlSaveToIO">xmlSaveToIO</a>          (<a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> iowrite, <br>                                    <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> ioclose, <br>                                    void * ioctx, <br>                                      const char * encoding, <br>                                     int options);
+long   <a href="#xmlSaveTree">xmlSaveTree</a>                  (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveCtxt">Structure </a>xmlSaveCtxt</h3><pre class="programlisting">struct _xmlSaveCtxt {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveCtxt">Structure </a>xmlSaveCtxt</h3>
+<pre class="programlisting">struct _xmlSaveCtxt {
 The content of this structure is not made public by the API.
 } xmlSaveCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveCtxtPtr">Typedef </a>xmlSaveCtxtPtr</h3><pre class="programlisting"><a href="libxml2-xmlsave.html#xmlSaveCtxt">xmlSaveCtxt</a> * xmlSaveCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveCtxtPtr">Typedef </a>xmlSaveCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlsave.html#xmlSaveCtxt">xmlSaveCtxt</a> * xmlSaveCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveOption">Enum </a>xmlSaveOption</h3><pre class="programlisting">enum <a href="#xmlSaveOption">xmlSaveOption</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveOption">Enum </a>xmlSaveOption</h3>
+<pre class="programlisting">enum <a href="#xmlSaveOption">xmlSaveOption</a> {
     <a name="XML_SAVE_FORMAT">XML_SAVE_FORMAT</a> = 1 /* format save output */
     <a name="XML_SAVE_NO_DECL">XML_SAVE_NO_DECL</a> = 2 /* drop the xml declaration */
     <a name="XML_SAVE_NO_EMPTY">XML_SAVE_NO_EMPTY</a> = 4 /* no empty tags */
@@ -84,50 +72,277 @@ The content of this structure is not made public by the API.
     <a name="XML_SAVE_AS_HTML">XML_SAVE_AS_HTML</a> = 64 /* force HTML serialization on XML doc */
     <a name="XML_SAVE_WSNONSIG">XML_SAVE_WSNONSIG</a> = 128 /*  format with non-significant whitespace */
 };
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveClose"/>xmlSaveClose ()</h3><pre class="programlisting">int        xmlSaveClose                    (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt)<br/>
-</pre><p>Close a document saving context, i.e. make sure that all bytes have been output and free the associated data.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a document saving context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveDoc"/>xmlSaveDoc ()</h3><pre class="programlisting">long   xmlSaveDoc                      (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Save a full document to a saving context TODO: The function is not fully implemented yet as it does not return the byte count but 0 instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a document saving context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveFlush"/>xmlSaveFlush ()</h3><pre class="programlisting">int        xmlSaveFlush                    (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt)<br/>
-</pre><p>Flush a document saving context, i.e. make sure that all bytes have been output.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a document saving context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveSetAttrEscape"/>xmlSaveSetAttrEscape ()</h3><pre class="programlisting">int        xmlSaveSetAttrEscape            (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escape)<br/>
-</pre><p>Set a custom escaping function to be used for text in <a href="libxml2-SAX.html#attribute">attribute</a> content</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a document saving context</td></tr><tr><td><span class="term"><i><tt>escape</tt></i>:</span></td><td>the escaping function</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if successful or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveSetEscape"/>xmlSaveSetEscape ()</h3><pre class="programlisting">int        xmlSaveSetEscape                (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escape)<br/>
-</pre><p>Set a custom escaping function to be used for text in element content</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a document saving context</td></tr><tr><td><span class="term"><i><tt>escape</tt></i>:</span></td><td>the escaping function</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if successful or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveToBuffer"/>xmlSaveToBuffer ()</h3><pre class="programlisting"><a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>     xmlSaveToBuffer         (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br/>                                         const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Create a document saving context serializing to a buffer with the encoding and the options given</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a buffer</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding name to use or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a set of xmlSaveOptions</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new serialization context or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveToFd"/>xmlSaveToFd ()</h3><pre class="programlisting"><a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>     xmlSaveToFd             (int fd, <br/>                                   const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Create a document saving context serializing to a file descriptor with the encoding and the options given.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>fd</tt></i>:</span></td><td>a file descriptor number</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding name to use or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a set of xmlSaveOptions</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new serialization context or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveToFilename"/>xmlSaveToFilename ()</h3><pre class="programlisting"><a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> xmlSaveToFilename       (const char * filename, <br/>                                    const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Create a document saving context serializing to a filename or possibly to an URL (but this is less reliable) with the encoding and the options given.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>a file name or an URL</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding name to use or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a set of xmlSaveOptions</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new serialization context or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveToIO"/>xmlSaveToIO ()</h3><pre class="programlisting"><a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>     xmlSaveToIO             (<a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> iowrite, <br/>                                   <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> ioclose, <br/>                                   void * ioctx, <br/>                                     const char * encoding, <br/>                                    int options)<br/>
-</pre><p>Create a document saving context serializing to a file descriptor with the encoding and the options given</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>iowrite</tt></i>:</span></td><td>an I/O write function</td></tr><tr><td><span class="term"><i><tt>ioclose</tt></i>:</span></td><td>an I/O close function</td></tr><tr><td><span class="term"><i><tt>ioctx</tt></i>:</span></td><td>an I/O handler</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding name to use or NULL</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a set of xmlSaveOptions</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new serialization context or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSaveTree"/>xmlSaveTree ()</h3><pre class="programlisting">long xmlSaveTree                     (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br/>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Save a subtree starting at the node parameter to a saving context TODO: The function is not fully implemented yet as it does not return the byte count but 0 instead</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a document saving context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td/></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of byte written or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveClose"></a>xmlSaveClose ()</h3>
+<pre class="programlisting">int        xmlSaveClose                    (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Close a document saving context, i.e. make sure that all bytes have been output and free the associated data.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a document saving context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveDoc"></a>xmlSaveDoc ()</h3>
+<pre class="programlisting">long       xmlSaveDoc                      (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Save a full document to a saving context TODO: The function is not fully implemented yet as it does not return the byte count but 0 instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a document saving context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveFlush"></a>xmlSaveFlush ()</h3>
+<pre class="programlisting">int        xmlSaveFlush                    (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Flush a document saving context, i.e. make sure that all bytes have been output.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a document saving context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveSetAttrEscape"></a>xmlSaveSetAttrEscape ()</h3>
+<pre class="programlisting">int        xmlSaveSetAttrEscape            (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escape)<br>
+</pre>
+<p>Set a custom escaping function to be used for text in <a href="libxml2-SAX.html#attribute">attribute</a> content</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a document saving context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>escape</tt></i>:</span></td>
+<td>the escaping function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if successful or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveSetEscape"></a>xmlSaveSetEscape ()</h3>
+<pre class="programlisting">int        xmlSaveSetEscape                (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a> escape)<br>
+</pre>
+<p>Set a custom escaping function to be used for text in element content</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a document saving context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>escape</tt></i>:</span></td>
+<td>the escaping function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if successful or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveToBuffer"></a>xmlSaveToBuffer ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>   xmlSaveToBuffer         (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buffer, <br>                                  const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Create a document saving context serializing to a buffer with the encoding and the options given</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a buffer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding name to use or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a set of xmlSaveOptions</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new serialization context or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveToFd"></a>xmlSaveToFd ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>   xmlSaveToFd             (int fd, <br>                                    const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Create a document saving context serializing to a file descriptor with the encoding and the options given.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>fd</tt></i>:</span></td>
+<td>a file descriptor number</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding name to use or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a set of xmlSaveOptions</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new serialization context or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveToFilename"></a>xmlSaveToFilename ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>   xmlSaveToFilename       (const char * filename, <br>                                     const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Create a document saving context serializing to a filename or possibly to an URL (but this is less reliable) with the encoding and the options given.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>a file name or an URL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding name to use or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a set of xmlSaveOptions</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new serialization context or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveToIO"></a>xmlSaveToIO ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a>   xmlSaveToIO             (<a href="libxml2-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a> iowrite, <br>                                    <a href="libxml2-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a> ioclose, <br>                                    void * ioctx, <br>                                      const char * encoding, <br>                                     int options)<br>
+</pre>
+<p>Create a document saving context serializing to a file descriptor with the encoding and the options given</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>iowrite</tt></i>:</span></td>
+<td>an I/O write function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioclose</tt></i>:</span></td>
+<td>an I/O close function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ioctx</tt></i>:</span></td>
+<td>an I/O handler</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding name to use or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a set of xmlSaveOptions</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new serialization context or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSaveTree"></a>xmlSaveTree ()</h3>
+<pre class="programlisting">long       xmlSaveTree                     (<a href="libxml2-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a> ctxt, <br>                                     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Save a subtree starting at the node parameter to a saving context TODO: The function is not fully implemented yet as it does not return the byte count but 0 instead</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a document saving context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of byte written or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 4bac771..6fde790 100644 (file)
@@ -1,97 +1,77 @@
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlschemas: incomplete XML Schemas structure implementation</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlsave.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlschemastypes.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlschemas</span>
-    </h2>
-    <p>xmlschemas - incomplete XML Schemas structure implementation</p>
-    <p>interface to the XML Schemas handling and schema validity checking, it is incomplete right now. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef <a href="libxml2-xmlschemas.html#xmlSchema">xmlSchema</a> * <a href="#xmlSchemaPtr">xmlSchemaPtr</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlschemas: incomplete XML Schemas structure implementation</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlsave.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlschemastypes.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlschemas</span></h2>
+<p>xmlschemas - incomplete XML Schemas structure implementation</p>
+<p>interface to the XML Schemas handling and schema validity checking, it is incomplete right now. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlSchema <a href="#xmlSchema">xmlSchema</a>;
 typedef struct _xmlSchemaParserCtxt <a href="#xmlSchemaParserCtxt">xmlSchemaParserCtxt</a>;
-typedef enum <a href="#xmlSchemaValidOption">xmlSchemaValidOption</a>;
+typedef <a href="libxml2-xmlschemas.html#xmlSchemaParserCtxt">xmlSchemaParserCtxt</a> * <a href="#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>;
+typedef <a href="libxml2-xmlschemas.html#xmlSchema">xmlSchema</a> * <a href="#xmlSchemaPtr">xmlSchemaPtr</a>;
 typedef <a href="libxml2-xmlschemas.html#xmlSchemaSAXPlugStruct">xmlSchemaSAXPlugStruct</a> * <a href="#xmlSchemaSAXPlugPtr">xmlSchemaSAXPlugPtr</a>;
 typedef struct _xmlSchemaSAXPlug <a href="#xmlSchemaSAXPlugStruct">xmlSchemaSAXPlugStruct</a>;
+typedef struct _xmlSchemaValidCtxt <a href="#xmlSchemaValidCtxt">xmlSchemaValidCtxt</a>;
 typedef <a href="libxml2-xmlschemas.html#xmlSchemaValidCtxt">xmlSchemaValidCtxt</a> * <a href="#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a>;
-typedef <a href="libxml2-xmlschemas.html#xmlSchemaParserCtxt">xmlSchemaParserCtxt</a> * <a href="#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>;
-typedef struct _xmlSchema <a href="#xmlSchema">xmlSchema</a>;
 typedef enum <a href="#xmlSchemaValidError">xmlSchemaValidError</a>;
-typedef struct _xmlSchemaValidCtxt <a href="#xmlSchemaValidCtxt">xmlSchemaValidCtxt</a>;
-<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>    <a href="#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-int    <a href="#xmlSchemaSAXUnplug">xmlSchemaSAXUnplug</a>            (<a href="libxml2-xmlschemas.html#xmlSchemaSAXPlugPtr">xmlSchemaSAXPlugPtr</a> plug);
-<a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a>        <a href="#xmlSchemaParse">xmlSchemaParse</a>            (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt);
+typedef enum <a href="#xmlSchemaValidOption">xmlSchemaValidOption</a>;
+void   <a href="#xmlSchemaDump">xmlSchemaDump</a>                      (FILE * output, <br>                                     <a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema);
+void   <a href="#xmlSchemaFree">xmlSchemaFree</a>                      (<a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema);
 void   <a href="#xmlSchemaFreeParserCtxt">xmlSchemaFreeParserCtxt</a>          (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt);
-void   <a href="#xmlSchemaValidateSetFilename">xmlSchemaValidateSetFilename</a>        (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> vctxt, <br/>                                  const char * filename);
-<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>    <a href="#xmlSchemaNewParserCtxt">xmlSchemaNewParserCtxt</a>    (const char * URL);
+void   <a href="#xmlSchemaFreeValidCtxt">xmlSchemaFreeValidCtxt</a>            (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt);
+int    <a href="#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a>        (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> * err, <br>                                         <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> * warn, <br>                                    void ** ctx);
+int    <a href="#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a>          (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> * err, <br>                                         <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> * warn, <br>                                    void ** ctx);
 int    <a href="#xmlSchemaIsValid">xmlSchemaIsValid</a>                (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt);
-typedef void <a href="#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a>      (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-<a href="libxml2-xmlschemas.html#xmlSchemaSAXPlugPtr">xmlSchemaSAXPlugPtr</a>  <a href="#xmlSchemaSAXPlug">xmlSchemaSAXPlug</a>        (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> * sax, <br/>                                          void ** user_data);
-int    <a href="#xmlSchemaValidateStream">xmlSchemaValidateStream</a>          (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br/>                                    <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc, <br/>                                  <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    void * user_data);
-int    <a href="#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a>        (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> * err, <br/>                                        <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> * warn, <br/>                                   void ** ctx);
-void   <a href="#xmlSchemaValidateSetLocator">xmlSchemaValidateSetLocator</a>  (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> vctxt, <br/>                                  <a href="libxml2-xmlschemas.html#xmlSchemaValidityLocatorFunc">xmlSchemaValidityLocatorFunc</a> f, <br/>                                        void * ctxt);
-int    <a href="#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a>  (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
-void   <a href="#xmlSchemaSetValidStructuredErrors">xmlSchemaSetValidStructuredErrors</a>      (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br/>                                                 void * ctx);
-void   <a href="#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a>          (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br/>                                  <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br/>                                     void * ctx);
+<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>    <a href="#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>    <a href="#xmlSchemaNewMemParserCtxt">xmlSchemaNewMemParserCtxt</a>      (const char * buffer, <br>                                                       int size);
+<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>    <a href="#xmlSchemaNewParserCtxt">xmlSchemaNewParserCtxt</a>    (const char * URL);
+<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a>      <a href="#xmlSchemaNewValidCtxt">xmlSchemaNewValidCtxt</a>      (<a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema);
+<a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a>        <a href="#xmlSchemaParse">xmlSchemaParse</a>            (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt);
+<a href="libxml2-xmlschemas.html#xmlSchemaSAXPlugPtr">xmlSchemaSAXPlugPtr</a>  <a href="#xmlSchemaSAXPlug">xmlSchemaSAXPlug</a>        (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> * sax, <br>                                           void ** user_data);
+int    <a href="#xmlSchemaSAXUnplug">xmlSchemaSAXUnplug</a>            (<a href="libxml2-xmlschemas.html#xmlSchemaSAXPlugPtr">xmlSchemaSAXPlugPtr</a> plug);
+void   <a href="#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a>        (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br>                                   <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br>                                      void * ctx);
+void   <a href="#xmlSchemaSetParserStructuredErrors">xmlSchemaSetParserStructuredErrors</a>    (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br>                                          <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br>                                          void * ctx);
+void   <a href="#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a>          (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br>                                   <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br>                                      void * ctx);
+int    <a href="#xmlSchemaSetValidOptions">xmlSchemaSetValidOptions</a>        (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    int options);
+void   <a href="#xmlSchemaSetValidStructuredErrors">xmlSchemaSetValidStructuredErrors</a>      (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br>                                          void * ctx);
 int    <a href="#xmlSchemaValidCtxtGetOptions">xmlSchemaValidCtxtGetOptions</a>        (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt);
-int    <a href="#xmlSchemaValidateFile">xmlSchemaValidateFile</a>              (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   const char * filename, <br/>                                    int options);
-int    <a href="#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a>                (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-void   <a href="#xmlSchemaFree">xmlSchemaFree</a>                      (<a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema);
-<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>    <a href="#xmlSchemaNewMemParserCtxt">xmlSchemaNewMemParserCtxt</a>      (const char * buffer, <br/>                                                      int size);
-typedef int <a href="#xmlSchemaValidityLocatorFunc">xmlSchemaValidityLocatorFunc</a>   (void * ctx, <br/>                                       const char ** file, <br/>                                       unsigned long * line);
-int    <a href="#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a>          (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> * err, <br/>                                        <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> * warn, <br/>                                   void ** ctx);
-int    <a href="#xmlSchemaSetValidOptions">xmlSchemaSetValidOptions</a>        (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   int options);
-void   <a href="#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a>        (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br/>                                  <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br/>                                     void * ctx);
-typedef void <a href="#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a>  (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...);
-void   <a href="#xmlSchemaDump">xmlSchemaDump</a>                      (FILE * output, <br/>                                    <a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema);
-void   <a href="#xmlSchemaFreeValidCtxt">xmlSchemaFreeValidCtxt</a>            (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt);
 <a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>      <a href="#xmlSchemaValidCtxtGetParserCtxt">xmlSchemaValidCtxtGetParserCtxt</a>  (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt);
-void   <a href="#xmlSchemaSetParserStructuredErrors">xmlSchemaSetParserStructuredErrors</a>    (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br/>                                                 <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br/>                                                 void * ctx);
-<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a>      <a href="#xmlSchemaNewValidCtxt">xmlSchemaNewValidCtxt</a>      (<a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema);
+int    <a href="#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a>                (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+int    <a href="#xmlSchemaValidateFile">xmlSchemaValidateFile</a>              (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    const char * filename, <br>                                     int options);
+int    <a href="#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a>  (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem);
+void   <a href="#xmlSchemaValidateSetFilename">xmlSchemaValidateSetFilename</a>        (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> vctxt, <br>                                   const char * filename);
+void   <a href="#xmlSchemaValidateSetLocator">xmlSchemaValidateSetLocator</a>  (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> vctxt, <br>                                   <a href="libxml2-xmlschemas.html#xmlSchemaValidityLocatorFunc">xmlSchemaValidityLocatorFunc</a> f, <br>                                         void * ctxt);
+int    <a href="#xmlSchemaValidateStream">xmlSchemaValidateStream</a>          (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br>                                     <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc, <br>                                   <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     void * user_data);
+typedef void <a href="#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a>      (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
+typedef int <a href="#xmlSchemaValidityLocatorFunc">xmlSchemaValidityLocatorFunc</a>   (void * ctx, <br>                                        const char ** file, <br>                                        unsigned long * line);
+typedef void <a href="#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a>  (void * ctx, <br>                                        const char * msg, <br>                                  ... ...);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlSchema">Structure </a>xmlSchema</h3><pre class="programlisting">struct _xmlSchema {
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchema">Structure </a>xmlSchema</h3>
+<pre class="programlisting">struct _xmlSchema {
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : schema name
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       targetNamespace : the target namespace
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       version
@@ -114,44 +94,76 @@ void       <a href="#xmlSchemaSetParserStructuredErrors">xmlSchemaSetParserStructuredE
     <a href="libxml2-hash.html#xmlHashTablePtr">xmlHashTablePtr</a>    idcDef  : All identity-constraint defs.
     void *     volatiles       : Obsolete
 } xmlSchema;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaParserCtxt">Structure </a>xmlSchemaParserCtxt</h3><pre class="programlisting">struct _xmlSchemaParserCtxt {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaParserCtxt">Structure </a>xmlSchemaParserCtxt</h3>
+<pre class="programlisting">struct _xmlSchemaParserCtxt {
 The content of this structure is not made public by the API.
 } xmlSchemaParserCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaParserCtxtPtr">Typedef </a>xmlSchemaParserCtxtPtr</h3><pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaParserCtxt">xmlSchemaParserCtxt</a> * xmlSchemaParserCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaParserCtxtPtr">Typedef </a>xmlSchemaParserCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaParserCtxt">xmlSchemaParserCtxt</a> * xmlSchemaParserCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaPtr">Typedef </a>xmlSchemaPtr</h3><pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchema">xmlSchema</a> * xmlSchemaPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaPtr">Typedef </a>xmlSchemaPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchema">xmlSchema</a> * xmlSchemaPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaSAXPlugPtr">Typedef </a>xmlSchemaSAXPlugPtr</h3><pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaSAXPlugStruct">xmlSchemaSAXPlugStruct</a> * xmlSchemaSAXPlugPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaSAXPlugPtr">Typedef </a>xmlSchemaSAXPlugPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaSAXPlugStruct">xmlSchemaSAXPlugStruct</a> * xmlSchemaSAXPlugPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaSAXPlugStruct">Structure </a>xmlSchemaSAXPlugStruct</h3><pre class="programlisting">struct _xmlSchemaSAXPlug {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaSAXPlugStruct">Structure </a>xmlSchemaSAXPlugStruct</h3>
+<pre class="programlisting">struct _xmlSchemaSAXPlug {
 The content of this structure is not made public by the API.
 } xmlSchemaSAXPlugStruct;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidCtxt">Structure </a>xmlSchemaValidCtxt</h3><pre class="programlisting">struct _xmlSchemaValidCtxt {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidCtxt">Structure </a>xmlSchemaValidCtxt</h3>
+<pre class="programlisting">struct _xmlSchemaValidCtxt {
 The content of this structure is not made public by the API.
 } xmlSchemaValidCtxt;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidCtxtPtr">Typedef </a>xmlSchemaValidCtxtPtr</h3><pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaValidCtxt">xmlSchemaValidCtxt</a> * xmlSchemaValidCtxtPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidCtxtPtr">Typedef </a>xmlSchemaValidCtxtPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaValidCtxt">xmlSchemaValidCtxt</a> * xmlSchemaValidCtxtPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidError">Enum </a>xmlSchemaValidError</h3><pre class="programlisting">enum <a href="#xmlSchemaValidError">xmlSchemaValidError</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidError">Enum </a>xmlSchemaValidError</h3>
+<pre class="programlisting">enum <a href="#xmlSchemaValidError">xmlSchemaValidError</a> {
     <a name="XML_SCHEMAS_ERR_OK">XML_SCHEMAS_ERR_OK</a> = 0
     <a name="XML_SCHEMAS_ERR_NOROOT">XML_SCHEMAS_ERR_NOROOT</a> = 1
     <a name="XML_SCHEMAS_ERR_UNDECLAREDELEM">XML_SCHEMAS_ERR_UNDECLAREDELEM</a> = 2
@@ -179,136 +191,752 @@ The content of this structure is not made public by the API.
     <a name="XML_SCHEMAS_ERR_">XML_SCHEMAS_ERR_</a> = 24
     <a name="XML_SCHEMAS_ERR_XXX">XML_SCHEMAS_ERR_XXX</a> = 25
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidOption">Enum </a>xmlSchemaValidOption</h3><pre class="programlisting">enum <a href="#xmlSchemaValidOption">xmlSchemaValidOption</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidOption">Enum </a>xmlSchemaValidOption</h3>
+<pre class="programlisting">enum <a href="#xmlSchemaValidOption">xmlSchemaValidOption</a> {
     <a name="XML_SCHEMA_VAL_VC_I_CREATE">XML_SCHEMA_VAL_VC_I_CREATE</a> = 1 /*  Default/fixed: create an attribute node * or an element's text node on the instance. * */
 };
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidityErrorFunc"/>Function type xmlSchemaValidityErrorFunc</h3><pre class="programlisting">void        xmlSchemaValidityErrorFunc      (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Signature of an error callback from an XSD validation</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidityLocatorFunc"/>Function type xmlSchemaValidityLocatorFunc</h3><pre class="programlisting">int     xmlSchemaValidityLocatorFunc    (void * ctx, <br/>                                       const char ** file, <br/>                                       unsigned long * line)<br/>
-</pre><p>A schemas validation locator, a callback called by the validator. This is used when file or node information are not available to find out what file and line number are affected</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>user provided context</td></tr><tr><td><span class="term"><i><tt>file</tt></i>:</span></td><td>returned file information</td></tr><tr><td><span class="term"><i><tt>line</tt></i>:</span></td><td>returned line information</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidityWarningFunc"/>Function type xmlSchemaValidityWarningFunc</h3><pre class="programlisting">void    xmlSchemaValidityWarningFunc    (void * ctx, <br/>                                       const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Signature of a warning callback from an XSD validation</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the validation context</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaDump"/>xmlSchemaDump ()</h3><pre class="programlisting">void     xmlSchemaDump                   (FILE * output, <br/>                                    <a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)<br/>
-</pre><p>Dump a Schema structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the file output</td></tr><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a schema structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaFree"/>xmlSchemaFree ()</h3><pre class="programlisting">void     xmlSchemaFree                   (<a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)<br/>
-</pre><p>Deallocate a Schema structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a schema structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaFreeParserCtxt"/>xmlSchemaFreeParserCtxt ()</h3><pre class="programlisting">void xmlSchemaFreeParserCtxt         (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt)<br/>
-</pre><p>Free the resources associated to the schema parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the schema parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaFreeValidCtxt"/>xmlSchemaFreeValidCtxt ()</h3><pre class="programlisting">void   xmlSchemaFreeValidCtxt          (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt)<br/>
-</pre><p>Free the resources associated to the schema validation context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the schema validation context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaGetParserErrors"/>xmlSchemaGetParserErrors ()</h3><pre class="programlisting">int        xmlSchemaGetParserErrors        (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> * err, <br/>                                        <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> * warn, <br/>                                   void ** ctx)<br/>
-</pre><p>Get the callback information used to handle errors for a parser context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a XMl-Schema parser context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error callback result</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning callback result</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>contextual data for the callbacks result</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of failure, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaGetValidErrors"/>xmlSchemaGetValidErrors ()</h3><pre class="programlisting">int  xmlSchemaGetValidErrors         (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> * err, <br/>                                        <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> * warn, <br/>                                   void ** ctx)<br/>
-</pre><p>Get the error and warning callback information</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a XML-Schema validation context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error function result</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning function result</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the functions context result</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error and 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaIsValid"/>xmlSchemaIsValid ()</h3><pre class="programlisting">int        xmlSchemaIsValid                (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt)<br/>
-</pre><p>Check if any error was detected during validation.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the schema validation context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if valid so far, 0 if errors were detected, and -1 in case of internal error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaNewDocParserCtxt"/>xmlSchemaNewDocParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>      xmlSchemaNewDocParserCtxt       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Create an XML Schemas parse context for that document. NB. The document may be modified during the parsing process.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a preparsed document tree</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaNewMemParserCtxt"/>xmlSchemaNewMemParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>      xmlSchemaNewMemParserCtxt       (const char * buffer, <br/>                                                      int size)<br/>
-</pre><p>Create an XML Schemas parse context for that memory buffer expected to contain an XML Schemas file.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array containing the schemas</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaNewParserCtxt"/>xmlSchemaNewParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>    xmlSchemaNewParserCtxt  (const char * URL)<br/>
-</pre><p>Create an XML Schemas parse context for that file/resource expected to contain an XML Schemas file.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the location of the schema</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaNewValidCtxt"/>xmlSchemaNewValidCtxt ()</h3><pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a>        xmlSchemaNewValidCtxt   (<a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)<br/>
-</pre><p>Create an XML Schemas validation context based on the given schema.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a precompiled XML Schemas</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the validation context or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaParse"/>xmlSchemaParse ()</h3><pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a>        xmlSchemaParse          (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt)<br/>
-</pre><p>parse a schema definition resource and build an internal XML Schema structure which can be used to validate instances.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the internal XML Schema structure built from the resource or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaSAXPlug"/>xmlSchemaSAXPlug ()</h3><pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaSAXPlugPtr">xmlSchemaSAXPlugPtr</a>      xmlSchemaSAXPlug        (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> * sax, <br/>                                          void ** user_data)<br/>
-</pre><p>Plug a SAX based validation layer in a SAX parsing event flow. The original @saxptr and @dataptr data are replaced by new pointers but the calls to the original will be maintained.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>a pointer to the original <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a></td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>a pointer to the original SAX user data pointer</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to a data structure needed to unplug the validation layer or NULL in case of errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaSAXUnplug"/>xmlSchemaSAXUnplug ()</h3><pre class="programlisting">int    xmlSchemaSAXUnplug              (<a href="libxml2-xmlschemas.html#xmlSchemaSAXPlugPtr">xmlSchemaSAXPlugPtr</a> plug)<br/>
-</pre><p>Unplug a SAX based validation layer in a SAX parsing event flow. The original pointers used in the call are restored.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>plug</tt></i>:</span></td><td>a data structure returned by <a href="libxml2-xmlschemas.html#xmlSchemaSAXPlug">xmlSchemaSAXPlug</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of failure.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaSetParserErrors"/>xmlSchemaSetParserErrors ()</h3><pre class="programlisting">void       xmlSchemaSetParserErrors        (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br/>                                         <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br/>                                  <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br/>                                     void * ctx)<br/>
-</pre><p>Set the callback functions used to handle errors for a validation context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error callback</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning callback</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>contextual data for the callbacks</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaSetParserStructuredErrors"/>xmlSchemaSetParserStructuredErrors ()</h3><pre class="programlisting">void   xmlSchemaSetParserStructuredErrors      (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br/>                                                 <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br/>                                                 void * ctx)<br/>
-</pre><p>Set the structured error callback</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema parser context</td></tr><tr><td><span class="term"><i><tt>serror</tt></i>:</span></td><td>the structured error function</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the functions context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaSetValidErrors"/>xmlSchemaSetValidErrors ()</h3><pre class="programlisting">void xmlSchemaSetValidErrors         (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br/>                                  <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br/>                                     void * ctx)<br/>
-</pre><p>Set the error and warning callback information</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error function</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning function</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the functions context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaSetValidOptions"/>xmlSchemaSetValidOptions ()</h3><pre class="programlisting">int        xmlSchemaSetValidOptions        (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   int options)<br/>
-</pre><p>Sets the options to be used during the validation.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a combination of <a href="libxml2-xmlschemas.html#xmlSchemaValidOption">xmlSchemaValidOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of an API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaSetValidStructuredErrors"/>xmlSchemaSetValidStructuredErrors ()</h3><pre class="programlisting">void     xmlSchemaSetValidStructuredErrors       (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                           <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br/>                                                 void * ctx)<br/>
-</pre><p>Set the structured error callback</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>serror</tt></i>:</span></td><td>the structured error function</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the functions context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidCtxtGetOptions"/>xmlSchemaValidCtxtGetOptions ()</h3><pre class="programlisting">int        xmlSchemaValidCtxtGetOptions    (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt)<br/>
-</pre><p>Get the validation context options.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the option combination or -1 on error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidCtxtGetParserCtxt"/>xmlSchemaValidCtxtGetParserCtxt ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>    xmlSchemaValidCtxtGetParserCtxt (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt)<br/>
-</pre><p>allow access to the parser context of the schema validation context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context of the schema validation context or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidateDoc"/>xmlSchemaValidateDoc ()</h3><pre class="programlisting">int        xmlSchemaValidateDoc            (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Validate a document tree in memory.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a parsed document tree</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the document is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidateFile"/>xmlSchemaValidateFile ()</h3><pre class="programlisting">int      xmlSchemaValidateFile           (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   const char * filename, <br/>                                    int options)<br/>
-</pre><p>Do a schemas validation of the given resource, it will use the SAX streamable validation internally.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the URI of the instance</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a future set of options, currently unused</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the document is valid, a positive error code number otherwise and -1 in case of an internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidateOneElement"/>xmlSchemaValidateOneElement ()</h3><pre class="programlisting">int  xmlSchemaValidateOneElement     (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br/>
-</pre><p>Validate a branch of a tree, starting with the given @elem.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the element and its subtree is valid, a positive error code number otherwise and -1 in case of an internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidateSetFilename"/>xmlSchemaValidateSetFilename ()</h3><pre class="programlisting">void       xmlSchemaValidateSetFilename    (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> vctxt, <br/>                                  const char * filename)<br/>
-</pre><p>Workaround to provide file error reporting information when this is not provided by current APIs</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>vctxt</tt></i>:</span></td><td>the schema validation context</td></tr><tr><td><span class="term"><i><tt>filename</tt></i>:</span></td><td>the file name</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidateSetLocator"/>xmlSchemaValidateSetLocator ()</h3><pre class="programlisting">void xmlSchemaValidateSetLocator     (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> vctxt, <br/>                                  <a href="libxml2-xmlschemas.html#xmlSchemaValidityLocatorFunc">xmlSchemaValidityLocatorFunc</a> f, <br/>                                        void * ctxt)<br/>
-</pre><p>Allows to set a locator function to the validation context, which will be used to provide file and line information since those are not provided as part of the SAX validation flow Setting @f to NULL disable the locator.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>vctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the locator function pointer</td></tr><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the locator context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidateStream"/>xmlSchemaValidateStream ()</h3><pre class="programlisting">int  xmlSchemaValidateStream         (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br/>                                   <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br/>                                    <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc, <br/>                                  <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br/>                                    void * user_data)<br/>
-</pre><p>Validate an input based on a flow of SAX event from the parser and forward the events to the @sax handler with the provided @user_data the user provided @sax handler must be a SAX2 one.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>the input to use for reading the data</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>an optional encoding information</td></tr><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>a SAX handler for the resulting events</td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>the context to provide to the SAX handler.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the document is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidityErrorFunc"></a>Function type xmlSchemaValidityErrorFunc</h3>
+<pre class="programlisting">void       xmlSchemaValidityErrorFunc      (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Signature of an error callback from an XSD validation</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidityLocatorFunc"></a>Function type xmlSchemaValidityLocatorFunc</h3>
+<pre class="programlisting">int        xmlSchemaValidityLocatorFunc    (void * ctx, <br>                                        const char ** file, <br>                                        unsigned long * line)<br>
+</pre>
+<p>A schemas validation locator, a callback called by the validator. This is used when file or node information are not available to find out what file and line number are affected</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>user provided context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>file</tt></i>:</span></td>
+<td>returned file information</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>line</tt></i>:</span></td>
+<td>returned line information</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidityWarningFunc"></a>Function type xmlSchemaValidityWarningFunc</h3>
+<pre class="programlisting">void       xmlSchemaValidityWarningFunc    (void * ctx, <br>                                        const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Signature of a warning callback from an XSD validation</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaDump"></a>xmlSchemaDump ()</h3>
+<pre class="programlisting">void       xmlSchemaDump                   (FILE * output, <br>                                     <a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)<br>
+</pre>
+<p>Dump a Schema structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the file output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>schema</tt></i>:</span></td>
+<td>a schema structure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaFree"></a>xmlSchemaFree ()</h3>
+<pre class="programlisting">void       xmlSchemaFree                   (<a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)<br>
+</pre>
+<p>Deallocate a Schema structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>schema</tt></i>:</span></td>
+<td>a schema structure</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaFreeParserCtxt"></a>xmlSchemaFreeParserCtxt ()</h3>
+<pre class="programlisting">void       xmlSchemaFreeParserCtxt         (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Free the resources associated to the schema parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the schema parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaFreeValidCtxt"></a>xmlSchemaFreeValidCtxt ()</h3>
+<pre class="programlisting">void       xmlSchemaFreeValidCtxt          (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Free the resources associated to the schema validation context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the schema validation context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaGetParserErrors"></a>xmlSchemaGetParserErrors ()</h3>
+<pre class="programlisting">int        xmlSchemaGetParserErrors        (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> * err, <br>                                         <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> * warn, <br>                                    void ** ctx)<br>
+</pre>
+<p>Get the callback information used to handle errors for a parser context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a XMl-Schema parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>err</tt></i>:</span></td>
+<td>the error callback result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>warn</tt></i>:</span></td>
+<td>the warning callback result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>contextual data for the callbacks result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of failure, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaGetValidErrors"></a>xmlSchemaGetValidErrors ()</h3>
+<pre class="programlisting">int        xmlSchemaGetValidErrors         (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> * err, <br>                                         <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> * warn, <br>                                    void ** ctx)<br>
+</pre>
+<p>Get the error and warning callback information</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a XML-Schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>err</tt></i>:</span></td>
+<td>the error function result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>warn</tt></i>:</span></td>
+<td>the warning function result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the functions context result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error and 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaIsValid"></a>xmlSchemaIsValid ()</h3>
+<pre class="programlisting">int        xmlSchemaIsValid                (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Check if any error was detected during validation.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if valid so far, 0 if errors were detected, and -1 in case of internal error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaNewDocParserCtxt"></a>xmlSchemaNewDocParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>        xmlSchemaNewDocParserCtxt       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Create an XML Schemas parse context for that document. NB. The document may be modified during the parsing process.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a preparsed document tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the parser context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaNewMemParserCtxt"></a>xmlSchemaNewMemParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>        xmlSchemaNewMemParserCtxt       (const char * buffer, <br>                                                       int size)<br>
+</pre>
+<p>Create an XML Schemas parse context for that memory buffer expected to contain an XML Schemas file.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buffer</tt></i>:</span></td>
+<td>a pointer to a char array containing the schemas</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>size</tt></i>:</span></td>
+<td>the size of the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the parser context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaNewParserCtxt"></a>xmlSchemaNewParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a>        xmlSchemaNewParserCtxt  (const char * URL)<br>
+</pre>
+<p>Create an XML Schemas parse context for that file/resource expected to contain an XML Schemas file.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>URL</tt></i>:</span></td>
+<td>the location of the schema</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the parser context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaNewValidCtxt"></a>xmlSchemaNewValidCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a>  xmlSchemaNewValidCtxt   (<a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)<br>
+</pre>
+<p>Create an XML Schemas validation context based on the given schema.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>schema</tt></i>:</span></td>
+<td>a precompiled XML Schemas</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the validation context or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaParse"></a>xmlSchemaParse ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a>    xmlSchemaParse          (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt)<br>
+</pre>
+<p>parse a schema definition resource and build an internal XML Schema structure which can be used to validate instances.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the internal XML Schema structure built from the resource or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaSAXPlug"></a>xmlSchemaSAXPlug ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlschemas.html#xmlSchemaSAXPlugPtr">xmlSchemaSAXPlugPtr</a>      xmlSchemaSAXPlug        (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> * sax, <br>                                           void ** user_data)<br>
+</pre>
+<p>Plug a SAX based validation layer in a SAX parsing event flow. The original @saxptr and @dataptr data are replaced by new pointers but the calls to the original will be maintained.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>a pointer to the original <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>a pointer to the original SAX user data pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to a data structure needed to unplug the validation layer or NULL in case of errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaSAXUnplug"></a>xmlSchemaSAXUnplug ()</h3>
+<pre class="programlisting">int        xmlSchemaSAXUnplug              (<a href="libxml2-xmlschemas.html#xmlSchemaSAXPlugPtr">xmlSchemaSAXPlugPtr</a> plug)<br>
+</pre>
+<p>Unplug a SAX based validation layer in a SAX parsing event flow. The original pointers used in the call are restored.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>plug</tt></i>:</span></td>
+<td>a data structure returned by <a href="libxml2-xmlschemas.html#xmlSchemaSAXPlug">xmlSchemaSAXPlug</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of failure.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaSetParserErrors"></a>xmlSchemaSetParserErrors ()</h3>
+<pre class="programlisting">void       xmlSchemaSetParserErrors        (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br>                                  <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br>                                   <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br>                                      void * ctx)<br>
+</pre>
+<p>Set the callback functions used to handle errors for a validation context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>err</tt></i>:</span></td>
+<td>the error callback</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>warn</tt></i>:</span></td>
+<td>the warning callback</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>contextual data for the callbacks</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaSetParserStructuredErrors"></a>xmlSchemaSetParserStructuredErrors ()</h3>
+<pre class="programlisting">void       xmlSchemaSetParserStructuredErrors      (<a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br>                                          <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br>                                          void * ctx)<br>
+</pre>
+<p>Set the structured error callback</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>serror</tt></i>:</span></td>
+<td>the structured error function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the functions context</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaSetValidErrors"></a>xmlSchemaSetValidErrors ()</h3>
+<pre class="programlisting">void       xmlSchemaSetValidErrors         (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br>                                   <a href="libxml2-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br>                                      void * ctx)<br>
+</pre>
+<p>Set the error and warning callback information</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>err</tt></i>:</span></td>
+<td>the error function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>warn</tt></i>:</span></td>
+<td>the warning function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the functions context</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaSetValidOptions"></a>xmlSchemaSetValidOptions ()</h3>
+<pre class="programlisting">int        xmlSchemaSetValidOptions        (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    int options)<br>
+</pre>
+<p>Sets the options to be used during the validation.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a combination of <a href="libxml2-xmlschemas.html#xmlSchemaValidOption">xmlSchemaValidOption</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 in case of an API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaSetValidStructuredErrors"></a>xmlSchemaSetValidStructuredErrors ()</h3>
+<pre class="programlisting">void       xmlSchemaSetValidStructuredErrors       (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                            <a href="libxml2-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> serror, <br>                                          void * ctx)<br>
+</pre>
+<p>Set the structured error callback</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>serror</tt></i>:</span></td>
+<td>the structured error function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the functions context</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidCtxtGetOptions"></a>xmlSchemaValidCtxtGetOptions ()</h3>
+<pre class="programlisting">int        xmlSchemaValidCtxtGetOptions    (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt)<br>
+</pre>
+<p>Get the validation context options.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the option combination or -1 on error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidCtxtGetParserCtxt"></a>xmlSchemaValidCtxtGetParserCtxt ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a>  xmlSchemaValidCtxtGetParserCtxt (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt)<br>
+</pre>
+<p>allow access to the parser context of the schema validation context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the parser context of the schema validation context or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidateDoc"></a>xmlSchemaValidateDoc ()</h3>
+<pre class="programlisting">int        xmlSchemaValidateDoc            (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Validate a document tree in memory.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>a parsed document tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the document is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidateFile"></a>xmlSchemaValidateFile ()</h3>
+<pre class="programlisting">int        xmlSchemaValidateFile           (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    const char * filename, <br>                                     int options)<br>
+</pre>
+<p>Do a schemas validation of the given resource, it will use the SAX streamable validation internally.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the URI of the instance</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>a future set of options, currently unused</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the document is valid, a positive error code number otherwise and -1 in case of an internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidateOneElement"></a>xmlSchemaValidateOneElement ()</h3>
+<pre class="programlisting">int        xmlSchemaValidateOneElement     (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br>
+</pre>
+<p>Validate a branch of a tree, starting with the given @elem.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>elem</tt></i>:</span></td>
+<td>an element node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the element and its subtree is valid, a positive error code number otherwise and -1 in case of an internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidateSetFilename"></a>xmlSchemaValidateSetFilename ()</h3>
+<pre class="programlisting">void       xmlSchemaValidateSetFilename    (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> vctxt, <br>                                   const char * filename)<br>
+</pre>
+<p>Workaround to provide file error reporting information when this is not provided by current APIs</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>vctxt</tt></i>:</span></td>
+<td>the schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>filename</tt></i>:</span></td>
+<td>the file name</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidateSetLocator"></a>xmlSchemaValidateSetLocator ()</h3>
+<pre class="programlisting">void       xmlSchemaValidateSetLocator     (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> vctxt, <br>                                   <a href="libxml2-xmlschemas.html#xmlSchemaValidityLocatorFunc">xmlSchemaValidityLocatorFunc</a> f, <br>                                         void * ctxt)<br>
+</pre>
+<p>Allows to set a locator function to the validation context, which will be used to provide file and line information since those are not provided as part of the SAX validation flow Setting @f to NULL disable the locator.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>vctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the locator function pointer</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the locator context</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidateStream"></a>xmlSchemaValidateStream ()</h3>
+<pre class="programlisting">int        xmlSchemaValidateStream         (<a href="libxml2-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br>                                    <a href="libxml2-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br>                                     <a href="libxml2-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc, <br>                                   <a href="libxml2-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br>                                     void * user_data)<br>
+</pre>
+<p>Validate an input based on a flow of SAX event from the parser and forward the events to the @sax handler with the provided @user_data the user provided @sax handler must be a SAX2 one.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a schema validation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>input</tt></i>:</span></td>
+<td>the input to use for reading the data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>enc</tt></i>:</span></td>
+<td>an optional encoding information</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sax</tt></i>:</span></td>
+<td>a SAX handler for the resulting events</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>user_data</tt></i>:</span></td>
+<td>the context to provide to the SAX handler.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the document is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index c591dcc..5760adf 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlschemastypes: implementation of XML Schema Datatypes</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlschemas.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlstring.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlschemastypes</span>
-    </h2>
-    <p>xmlschemastypes - implementation of XML Schema Datatypes</p>
-    <p>module providing the XML Schema Datatypes implementation both definition and validity checking </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef enum <a href="#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a>;
-int    <a href="#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a>    (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val, <br/>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-int    <a href="#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** retValue, <br/>                                   <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws);
-int    <a href="#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a>      (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                            <a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> valType, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                               <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br/>                                          unsigned long * length, <br/>                                           <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws);
-int    <a href="#xmlSchemaIsBuiltInTypeFacet">xmlSchemaIsBuiltInTypeFacet</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br/>                                       int facetType);
-int    <a href="#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a>            (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** retValue);
-<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>  <a href="#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a>      (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type);
-int    <a href="#xmlSchemaCompareValuesWhtsp">xmlSchemaCompareValuesWhtsp</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> x, <br/>                                    <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> xws, <br/>                                         <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> y, <br/>                                    <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> yws);
-int    <a href="#xmlSchemaValueGetAsBoolean">xmlSchemaValueGetAsBoolean</a>    (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlschemastypes: implementation of XML Schema Datatypes</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlschemas.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlstring.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlschemastypes</span></h2>
+<p>xmlschemastypes - implementation of XML Schema Datatypes</p>
+<p>module providing the XML Schema Datatypes implementation both definition and validity checking </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef enum <a href="#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a>;
+int    <a href="#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a>          (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                     <a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> typeDecl, <br>                                    <a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> pctxt, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+void   <a href="#xmlSchemaCleanupTypes">xmlSchemaCleanupTypes</a>              (void);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlSchemaCollapseString">xmlSchemaCollapseString</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-int    <a href="#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a>        (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                               <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val, <br/>                                                <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-int    <a href="#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a>            (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> base, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val);
-<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a>        <a href="#xmlSchemaNewFacet">xmlSchemaNewFacet</a>      (void);
-int    <a href="#xmlSchemaValueAppend">xmlSchemaValueAppend</a>                (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> prev, <br/>                                         <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> cur);
-int    <a href="#xmlSchemaCompareValues">xmlSchemaCompareValues</a>            (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> x, <br/>                                    <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> y);
-int    <a href="#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a>        (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br/>                                  unsigned long * length);
-<a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a>  <a href="#xmlSchemaGetValType">xmlSchemaGetValType</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val);
-<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>  <a href="#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns);
-int    <a href="#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val);
+int    <a href="#xmlSchemaCompareValues">xmlSchemaCompareValues</a>            (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> x, <br>                                     <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> y);
+int    <a href="#xmlSchemaCompareValuesWhtsp">xmlSchemaCompareValuesWhtsp</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> x, <br>                                     <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> xws, <br>                                  <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> y, <br>                                     <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> yws);
+<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    <a href="#xmlSchemaCopyValue">xmlSchemaCopyValue</a>    (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val);
 void   <a href="#xmlSchemaFreeFacet">xmlSchemaFreeFacet</a>            (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet);
-int    <a href="#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a>        (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                               unsigned long actualLen, <br/>                                          unsigned long * expectedLen);
-unsigned long  <a href="#xmlSchemaGetFacetValueAsULong">xmlSchemaGetFacetValueAsULong</a>      (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet);
 void   <a href="#xmlSchemaFreeValue">xmlSchemaFreeValue</a>            (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> value);
-<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    <a href="#xmlSchemaValueGetNext">xmlSchemaValueGetNext</a>      (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> cur);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlSchemaValueGetAsString">xmlSchemaValueGetAsString</a>      (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val);
-<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    <a href="#xmlSchemaCopyValue">xmlSchemaCopyValue</a>    (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val);
-<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    <a href="#xmlSchemaNewNOTATIONValue">xmlSchemaNewNOTATIONValue</a>      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns);
-<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    <a href="#xmlSchemaNewQNameValue">xmlSchemaNewQNameValue</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceName, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName);
-void   <a href="#xmlSchemaCleanupTypes">xmlSchemaCleanupTypes</a>              (void);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlSchemaWhiteSpaceReplace">xmlSchemaWhiteSpaceReplace</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
-<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    <a href="#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> type, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>  <a href="#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a>      (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type);
 <a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>  <a href="#xmlSchemaGetBuiltInType">xmlSchemaGetBuiltInType</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> type);
+int    <a href="#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a>            (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** retValue);
+int    <a href="#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** retValue, <br>                                    <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws);
+unsigned long  <a href="#xmlSchemaGetFacetValueAsULong">xmlSchemaGetFacetValueAsULong</a>      (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet);
+<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>  <a href="#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns);
+<a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a>  <a href="#xmlSchemaGetValType">xmlSchemaGetValType</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val);
 void   <a href="#xmlSchemaInitTypes">xmlSchemaInitTypes</a>            (void);
-int    <a href="#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                    <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> fws, <br/>                                         <a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> valType, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br/>                                  <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws);
-int    <a href="#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a>          (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                    <a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> typeDecl, <br/>                                   <a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> pctxt, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaWhitespaceValueType">Enum </a>xmlSchemaWhitespaceValueType</h3><pre class="programlisting">enum <a href="#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> {
+int    <a href="#xmlSchemaIsBuiltInTypeFacet">xmlSchemaIsBuiltInTypeFacet</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br>                                        int facetType);
+<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a>        <a href="#xmlSchemaNewFacet">xmlSchemaNewFacet</a>      (void);
+<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    <a href="#xmlSchemaNewNOTATIONValue">xmlSchemaNewNOTATIONValue</a>      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns);
+<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    <a href="#xmlSchemaNewQNameValue">xmlSchemaNewQNameValue</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceName, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName);
+<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    <a href="#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> type, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+int    <a href="#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a>    (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val, <br>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+int    <a href="#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a>        (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                                <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val, <br>                                                 <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+int    <a href="#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a>            (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> base, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val);
+int    <a href="#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                     <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> fws, <br>                                  <a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> valType, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br>                                   <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws);
+int    <a href="#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a>        (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br>                                   unsigned long * length);
+int    <a href="#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a>      (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                             <a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> valType, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                                <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br>                                           unsigned long * length, <br>                                            <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws);
+int    <a href="#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a>        (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                                unsigned long actualLen, <br>                                           unsigned long * expectedLen);
+int    <a href="#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a>  (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val);
+int    <a href="#xmlSchemaValueAppend">xmlSchemaValueAppend</a>                (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> prev, <br>                                  <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> cur);
+int    <a href="#xmlSchemaValueGetAsBoolean">xmlSchemaValueGetAsBoolean</a>    (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlSchemaValueGetAsString">xmlSchemaValueGetAsString</a>      (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val);
+<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    <a href="#xmlSchemaValueGetNext">xmlSchemaValueGetNext</a>      (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> cur);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlSchemaWhiteSpaceReplace">xmlSchemaWhiteSpaceReplace</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaWhitespaceValueType">Enum </a>xmlSchemaWhitespaceValueType</h3>
+<pre class="programlisting">enum <a href="#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> {
     <a name="XML_SCHEMA_WHITESPACE_UNKNOWN">XML_SCHEMA_WHITESPACE_UNKNOWN</a> = 0
     <a name="XML_SCHEMA_WHITESPACE_PRESERVE">XML_SCHEMA_WHITESPACE_PRESERVE</a> = 1
     <a name="XML_SCHEMA_WHITESPACE_REPLACE">XML_SCHEMA_WHITESPACE_REPLACE</a> = 2
     <a name="XML_SCHEMA_WHITESPACE_COLLAPSE">XML_SCHEMA_WHITESPACE_COLLAPSE</a> = 3
 };
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaCheckFacet"/>xmlSchemaCheckFacet ()</h3><pre class="programlisting">int  xmlSchemaCheckFacet             (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                    <a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> typeDecl, <br/>                                   <a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> pctxt, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Checks and computes the values of facets.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>facet</tt></i>:</span></td><td>the facet</td></tr><tr><td><span class="term"><i><tt>typeDecl</tt></i>:</span></td><td>the schema type definition</td></tr><tr><td><span class="term"><i><tt>pctxt</tt></i>:</span></td><td>the schema parser context or NULL</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the optional name of the type</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if valid, a positive error code if not valid and -1 in case of an internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaCleanupTypes"/>xmlSchemaCleanupTypes ()</h3><pre class="programlisting">void     xmlSchemaCleanupTypes           (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Cleanup the default XML Schemas type library</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaCollapseString"/>xmlSchemaCollapseString ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlSchemaCollapseString (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Removes and normalize white spaces in the string</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>a value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new string or NULL if no change was required.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaCompareValues"/>xmlSchemaCompareValues ()</h3><pre class="programlisting">int    xmlSchemaCompareValues          (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> x, <br/>                                    <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> y)<br/>
-</pre><p>Compare 2 values</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>x</tt></i>:</span></td><td>a first value</td></tr><tr><td><span class="term"><i><tt>y</tt></i>:</span></td><td>a second value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 if x &lt; y, 0 if x == y, 1 if x &gt; y, 2 if x &lt;&gt; y, and -2 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaCompareValuesWhtsp"/>xmlSchemaCompareValuesWhtsp ()</h3><pre class="programlisting">int  xmlSchemaCompareValuesWhtsp     (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> x, <br/>                                    <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> xws, <br/>                                         <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> y, <br/>                                    <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> yws)<br/>
-</pre><p>Compare 2 values</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>x</tt></i>:</span></td><td>a first value</td></tr><tr><td><span class="term"><i><tt>xws</tt></i>:</span></td><td>the whitespace value of x</td></tr><tr><td><span class="term"><i><tt>y</tt></i>:</span></td><td>a second value</td></tr><tr><td><span class="term"><i><tt>yws</tt></i>:</span></td><td>the whitespace value of y</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 if x &lt; y, 0 if x == y, 1 if x &gt; y, 2 if x &lt;&gt; y, and -2 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaCopyValue"/>xmlSchemaCopyValue ()</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    xmlSchemaCopyValue      (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val)<br/>
-</pre><p>Copies the precomputed value. This duplicates any string within.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the precomputed value to be copied</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the copy or NULL if a copy for a data-type is not implemented.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaFreeFacet"/>xmlSchemaFreeFacet ()</h3><pre class="programlisting">void   xmlSchemaFreeFacet              (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet)<br/>
-</pre><p>Deallocate a Schema Facet structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>facet</tt></i>:</span></td><td>a schema facet structure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaFreeValue"/>xmlSchemaFreeValue ()</h3><pre class="programlisting">void   xmlSchemaFreeValue              (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> value)<br/>
-</pre><p>Cleanup the default XML Schemas type library</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value to free</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaGetBuiltInListSimpleTypeItemType"/>xmlSchemaGetBuiltInListSimpleTypeItemType ()</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>    xmlSchemaGetBuiltInListSimpleTypeItemType       (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type)<br/>
-</pre><p>Lookup function</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the built-in simple type.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the item type of @type as defined by the built-in datatype hierarchy of XML Schema Part 2: Datatypes, or NULL in case of an error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaGetBuiltInType"/>xmlSchemaGetBuiltInType ()</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>        xmlSchemaGetBuiltInType (<a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> type)<br/>
-</pre><p>Gives you the type struct for a built-in type by its type id.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the type of the built in type</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the type if found, NULL otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaGetCanonValue"/>xmlSchemaGetCanonValue ()</h3><pre class="programlisting">int    xmlSchemaGetCanonValue          (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** retValue)<br/>
-</pre><p>Get the canonical lexical representation of the value. The caller has to FREE the returned retValue. WARNING: Some value types are not supported yet, resulting in a @retValue of "???". TODO: XML Schema 1.0 does not define canonical representations for: duration, gYearMonth, gYear, gMonthDay, gMonth, gDay, anyURI, QName, NOTATION. This will be fixed in XML Schema 1.1.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the precomputed value</td></tr><tr><td><span class="term"><i><tt>retValue</tt></i>:</span></td><td>the returned value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the value could be built, 1 if the value type is not supported yet and -1 in case of API errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaGetCanonValueWhtsp"/>xmlSchemaGetCanonValueWhtsp ()</h3><pre class="programlisting">int  xmlSchemaGetCanonValueWhtsp     (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br/>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** retValue, <br/>                                   <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws)<br/>
-</pre><p>Get the canonical representation of the value. The caller has to free the returned @retValue.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the precomputed value</td></tr><tr><td><span class="term"><i><tt>retValue</tt></i>:</span></td><td>the returned value</td></tr><tr><td><span class="term"><i><tt>ws</tt></i>:</span></td><td>the whitespace type of the value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the value could be built, 1 if the value type is not supported yet and -1 in case of API errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaGetFacetValueAsULong"/>xmlSchemaGetFacetValueAsULong ()</h3><pre class="programlisting">unsigned long    xmlSchemaGetFacetValueAsULong   (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet)<br/>
-</pre><p>Extract the value of a facet</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>facet</tt></i>:</span></td><td>an schemas type facet</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the value as a long</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaGetPredefinedType"/>xmlSchemaGetPredefinedType ()</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>  xmlSchemaGetPredefinedType      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns)<br/>
-</pre><p>Lookup a type in the default XML Schemas type library</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the type name</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>the URI of the namespace usually "http://www.w3.org/2001/XMLSchema"</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the type if found, NULL otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaGetValType"/>xmlSchemaGetValType ()</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a>        xmlSchemaGetValType     (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val)<br/>
-</pre><p>Accessor for the type of a value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a schemas value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> of the value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaInitTypes"/>xmlSchemaInitTypes ()</h3><pre class="programlisting">void   xmlSchemaInitTypes              (void)<br/>
-</pre><p>Initialize the default XML Schemas type library</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaIsBuiltInTypeFacet"/>xmlSchemaIsBuiltInTypeFacet ()</h3><pre class="programlisting">int  xmlSchemaIsBuiltInTypeFacet     (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br/>                                       int facetType)<br/>
-</pre><p>Evaluates if a specific facet can be used in conjunction with a type.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the built-in type</td></tr><tr><td><span class="term"><i><tt>facetType</tt></i>:</span></td><td>the facet type</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the facet can be used with the given built-in type, 0 otherwise and -1 in case the type is not a built-in type.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaNewFacet"/>xmlSchemaNewFacet ()</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a>  xmlSchemaNewFacet       (void)<br/>
-</pre><p>Allocate a new Facet structure.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly allocated structure or NULL in case or error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaNewNOTATIONValue"/>xmlSchemaNewNOTATIONValue ()</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>      xmlSchemaNewNOTATIONValue       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns)<br/>
-</pre><p>Allocate a new NOTATION value. The given values are consumed and freed with the struct.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the notation name</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>the notation namespace name or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new value or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaNewQNameValue"/>xmlSchemaNewQNameValue ()</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>    xmlSchemaNewQNameValue  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceName, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName)<br/>
-</pre><p>Allocate a new QName value. The given values are consumed and freed with the struct.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>namespaceName</tt></i>:</span></td><td>the namespace name</td></tr><tr><td><span class="term"><i><tt>localName</tt></i>:</span></td><td>the local name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new value or NULL in case of an error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaNewStringValue"/>xmlSchemaNewStringValue ()</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>  xmlSchemaNewStringValue (<a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> type, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Allocate a new simple type value. The type can be of XML_SCHEMAS_STRING. WARNING: This one is intended to be expanded for other string based types. We need this for anySimpleType as well. The given value is consumed and freed with the struct.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the value type</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the new value or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValPredefTypeNode"/>xmlSchemaValPredefTypeNode ()</h3><pre class="programlisting">int    xmlSchemaValPredefTypeNode      (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val, <br/>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Check that a value conforms to the lexical space of the predefined type. if true a value is computed and returned in @val.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the predefined type</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value to check</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the return computed value</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node containing the value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValPredefTypeNodeNoNorm"/>xmlSchemaValPredefTypeNodeNoNorm ()</h3><pre class="programlisting">int        xmlSchemaValPredefTypeNodeNoNorm        (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                               <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val, <br/>                                                <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Check that a value conforms to the lexical space of the predefined type. if true a value is computed and returned in @val. This one does apply any normalization to the value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the predefined type</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value to check</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the return computed value</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node containing the value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidateFacet"/>xmlSchemaValidateFacet ()</h3><pre class="programlisting">int    xmlSchemaValidateFacet          (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> base, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val)<br/>
-</pre><p>Check a value against a facet condition</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>base</tt></i>:</span></td><td>the base type</td></tr><tr><td><span class="term"><i><tt>facet</tt></i>:</span></td><td>the facet to check</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the lexical repr of the value to validate</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the precomputed value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the element is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidateFacetWhtsp"/>xmlSchemaValidateFacetWhtsp ()</h3><pre class="programlisting">int  xmlSchemaValidateFacetWhtsp     (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                    <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> fws, <br/>                                         <a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> valType, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br/>                                  <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws)<br/>
-</pre><p>Check a value against a facet condition. This takes value normalization according to the specified whitespace types into account. Note that @value needs to be the *normalized* value if the facet is of type "pattern".</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>facet</tt></i>:</span></td><td>the facet to check</td></tr><tr><td><span class="term"><i><tt>fws</tt></i>:</span></td><td>the whitespace type of the facet's value</td></tr><tr><td><span class="term"><i><tt>valType</tt></i>:</span></td><td>the built-in type of the value</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the lexical (or normalized for pattern) repr of the value to validate</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the precomputed value</td></tr><tr><td><span class="term"><i><tt>ws</tt></i>:</span></td><td>the whitespace type of the value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the element is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidateLengthFacet"/>xmlSchemaValidateLengthFacet ()</h3><pre class="programlisting">int        xmlSchemaValidateLengthFacet    (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br/>                                  unsigned long * length)<br/>
-</pre><p>Checka a value against a "length", "minLength" and "maxLength" facet; sets @length to the computed length of @value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the built-in type</td></tr><tr><td><span class="term"><i><tt>facet</tt></i>:</span></td><td>the facet to check</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the lexical repr. of the value to be validated</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the precomputed value</td></tr><tr><td><span class="term"><i><tt>length</tt></i>:</span></td><td>the actual length of the value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the value is valid, a positive error code otherwise and -1 in case of an internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidateLengthFacetWhtsp"/>xmlSchemaValidateLengthFacetWhtsp ()</h3><pre class="programlisting">int      xmlSchemaValidateLengthFacetWhtsp       (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                            <a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> valType, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                               <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br/>                                          unsigned long * length, <br/>                                           <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws)<br/>
-</pre><p>Checka a value against a "length", "minLength" and "maxLength" facet; sets @length to the computed length of @value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>facet</tt></i>:</span></td><td>the facet to check</td></tr><tr><td><span class="term"><i><tt>valType</tt></i>:</span></td><td>the built-in type</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the lexical repr. of the value to be validated</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the precomputed value</td></tr><tr><td><span class="term"><i><tt>length</tt></i>:</span></td><td>the actual length of the value</td></tr><tr><td><span class="term"><i><tt>ws</tt></i>:</span></td><td>the whitespace type of the value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the value is valid, a positive error code otherwise and -1 in case of an internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidateListSimpleTypeFacet"/>xmlSchemaValidateListSimpleTypeFacet ()</h3><pre class="programlisting">int        xmlSchemaValidateListSimpleTypeFacet    (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                               unsigned long actualLen, <br/>                                          unsigned long * expectedLen)<br/>
-</pre><p>Checks the value of a list simple type against a facet.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>facet</tt></i>:</span></td><td>the facet to check</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the lexical repr of the value to validate</td></tr><tr><td><span class="term"><i><tt>actualLen</tt></i>:</span></td><td>the number of list items</td></tr><tr><td><span class="term"><i><tt>expectedLen</tt></i>:</span></td><td>the resulting expected number of list items</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the value is valid, a positive error code number otherwise and -1 in case of an internal error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValidatePredefinedType"/>xmlSchemaValidatePredefinedType ()</h3><pre class="programlisting">int  xmlSchemaValidatePredefinedType (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br/>                                       <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val)<br/>
-</pre><p>Check that a value conforms to the lexical space of the predefined type. if true a value is computed and returned in @val.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the predefined type</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the value to check</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the return computed value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValueAppend"/>xmlSchemaValueAppend ()</h3><pre class="programlisting">int        xmlSchemaValueAppend            (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> prev, <br/>                                         <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> cur)<br/>
-</pre><p>Appends a next sibling to a list of computed values.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>prev</tt></i>:</span></td><td>the value</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the value to be appended</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if succeeded and -1 on API errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValueGetAsBoolean"/>xmlSchemaValueGetAsBoolean ()</h3><pre class="programlisting">int    xmlSchemaValueGetAsBoolean      (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val)<br/>
-</pre><p>Accessor for the boolean value of a computed value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true and 0 if false, or in case of an error. Hmm.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValueGetAsString"/>xmlSchemaValueGetAsString ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlSchemaValueGetAsString       (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val)<br/>
-</pre><p>Accessor for the string value of a computed value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the string value or NULL if there was none, or on API errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaValueGetNext"/>xmlSchemaValueGetNext ()</h3><pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>      xmlSchemaValueGetNext   (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> cur)<br/>
-</pre><p>Accessor for the next sibling of a list of computed values.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next value or NULL if there was none, or on API errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlSchemaWhiteSpaceReplace"/>xmlSchemaWhiteSpaceReplace ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlSchemaWhiteSpaceReplace      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br/>
-</pre><p>Replaces 0xd, 0x9 and 0xa with a space.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>a value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new string or NULL if no change was required.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaCheckFacet"></a>xmlSchemaCheckFacet ()</h3>
+<pre class="programlisting">int        xmlSchemaCheckFacet             (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                     <a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> typeDecl, <br>                                    <a href="libxml2-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> pctxt, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Checks and computes the values of facets.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>facet</tt></i>:</span></td>
+<td>the facet</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>typeDecl</tt></i>:</span></td>
+<td>the schema type definition</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pctxt</tt></i>:</span></td>
+<td>the schema parser context or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the optional name of the type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if valid, a positive error code if not valid and -1 in case of an internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaCleanupTypes"></a>xmlSchemaCleanupTypes ()</h3>
+<pre class="programlisting">void       xmlSchemaCleanupTypes           (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> to free global state but see the warnings there. <a href="libxml2-parser.html#xmlCleanupParser">xmlCleanupParser</a> should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Cleanup the default XML Schemas type library</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaCollapseString"></a>xmlSchemaCollapseString ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlSchemaCollapseString (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Removes and normalize white spaces in the string</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>a value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new string or NULL if no change was required.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaCompareValues"></a>xmlSchemaCompareValues ()</h3>
+<pre class="programlisting">int        xmlSchemaCompareValues          (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> x, <br>                                     <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> y)<br>
+</pre>
+<p>Compare 2 values</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>x</tt></i>:</span></td>
+<td>a first value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>y</tt></i>:</span></td>
+<td>a second value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 if x &lt; y, 0 if x == y, 1 if x &gt; y, 2 if x &lt;&gt; y, and -2 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaCompareValuesWhtsp"></a>xmlSchemaCompareValuesWhtsp ()</h3>
+<pre class="programlisting">int        xmlSchemaCompareValuesWhtsp     (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> x, <br>                                     <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> xws, <br>                                  <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> y, <br>                                     <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> yws)<br>
+</pre>
+<p>Compare 2 values</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>x</tt></i>:</span></td>
+<td>a first value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>xws</tt></i>:</span></td>
+<td>the whitespace value of x</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>y</tt></i>:</span></td>
+<td>a second value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>yws</tt></i>:</span></td>
+<td>the whitespace value of y</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 if x &lt; y, 0 if x == y, 1 if x &gt; y, 2 if x &lt;&gt; y, and -2 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaCopyValue"></a>xmlSchemaCopyValue ()</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>        xmlSchemaCopyValue      (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val)<br>
+</pre>
+<p>Copies the precomputed value. This duplicates any string within.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the precomputed value to be copied</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the copy or NULL if a copy for a data-type is not implemented.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaFreeFacet"></a>xmlSchemaFreeFacet ()</h3>
+<pre class="programlisting">void       xmlSchemaFreeFacet              (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet)<br>
+</pre>
+<p>Deallocate a Schema Facet structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>facet</tt></i>:</span></td>
+<td>a schema facet structure</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaFreeValue"></a>xmlSchemaFreeValue ()</h3>
+<pre class="programlisting">void       xmlSchemaFreeValue              (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> value)<br>
+</pre>
+<p>Cleanup the default XML Schemas type library</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value to free</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaGetBuiltInListSimpleTypeItemType"></a>xmlSchemaGetBuiltInListSimpleTypeItemType ()</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>      xmlSchemaGetBuiltInListSimpleTypeItemType       (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type)<br>
+</pre>
+<p>Lookup function</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the built-in simple type.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the item type of @type as defined by the built-in datatype hierarchy of XML Schema Part 2: Datatypes, or NULL in case of an error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaGetBuiltInType"></a>xmlSchemaGetBuiltInType ()</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>      xmlSchemaGetBuiltInType (<a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> type)<br>
+</pre>
+<p>Gives you the type struct for a built-in type by its type id.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the type of the built in type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the type if found, NULL otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaGetCanonValue"></a>xmlSchemaGetCanonValue ()</h3>
+<pre class="programlisting">int        xmlSchemaGetCanonValue          (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** retValue)<br>
+</pre>
+<p>Get the canonical lexical representation of the value. The caller has to FREE the returned retValue. WARNING: Some value types are not supported yet, resulting in a @retValue of "???". TODO: XML Schema 1.0 does not define canonical representations for: duration, gYearMonth, gYear, gMonthDay, gMonth, gDay, anyURI, QName, NOTATION. This will be fixed in XML Schema 1.1.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the precomputed value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>retValue</tt></i>:</span></td>
+<td>the returned value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the value could be built, 1 if the value type is not supported yet and -1 in case of API errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaGetCanonValueWhtsp"></a>xmlSchemaGetCanonValueWhtsp ()</h3>
+<pre class="programlisting">int        xmlSchemaGetCanonValueWhtsp     (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> ** retValue, <br>                                    <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws)<br>
+</pre>
+<p>Get the canonical representation of the value. The caller has to free the returned @retValue.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the precomputed value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>retValue</tt></i>:</span></td>
+<td>the returned value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ws</tt></i>:</span></td>
+<td>the whitespace type of the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the value could be built, 1 if the value type is not supported yet and -1 in case of API errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaGetFacetValueAsULong"></a>xmlSchemaGetFacetValueAsULong ()</h3>
+<pre class="programlisting">unsigned long      xmlSchemaGetFacetValueAsULong   (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet)<br>
+</pre>
+<p>Extract the value of a facet</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>facet</tt></i>:</span></td>
+<td>an schemas type facet</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the value as a long</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaGetPredefinedType"></a>xmlSchemaGetPredefinedType ()</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a>      xmlSchemaGetPredefinedType      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns)<br>
+</pre>
+<p>Lookup a type in the default XML Schemas type library</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the type name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>the URI of the namespace usually "http://www.w3.org/2001/XMLSchema"</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the type if found, NULL otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaGetValType"></a>xmlSchemaGetValType ()</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a>      xmlSchemaGetValType     (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val)<br>
+</pre>
+<p>Accessor for the type of a value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a schemas value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> of the value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaInitTypes"></a>xmlSchemaInitTypes ()</h3>
+<pre class="programlisting">void       xmlSchemaInitTypes              (void)<br>
+</pre>
+<p>Initialize the default XML Schemas type library</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaIsBuiltInTypeFacet"></a>xmlSchemaIsBuiltInTypeFacet ()</h3>
+<pre class="programlisting">int        xmlSchemaIsBuiltInTypeFacet     (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br>                                        int facetType)<br>
+</pre>
+<p>Evaluates if a specific facet can be used in conjunction with a type.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the built-in type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>facetType</tt></i>:</span></td>
+<td>the facet type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the facet can be used with the given built-in type, 0 otherwise and -1 in case the type is not a built-in type.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaNewFacet"></a>xmlSchemaNewFacet ()</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a>    xmlSchemaNewFacet       (void)<br>
+</pre>
+<p>Allocate a new Facet structure.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly allocated structure or NULL in case or error</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaNewNOTATIONValue"></a>xmlSchemaNewNOTATIONValue ()</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>        xmlSchemaNewNOTATIONValue       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns)<br>
+</pre>
+<p>Allocate a new NOTATION value. The given values are consumed and freed with the struct.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the notation name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>the notation namespace name or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new value or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaNewQNameValue"></a>xmlSchemaNewQNameValue ()</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>        xmlSchemaNewQNameValue  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceName, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * localName)<br>
+</pre>
+<p>Allocate a new QName value. The given values are consumed and freed with the struct.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>namespaceName</tt></i>:</span></td>
+<td>the namespace name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>localName</tt></i>:</span></td>
+<td>the local name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new value or NULL in case of an error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaNewStringValue"></a>xmlSchemaNewStringValue ()</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>        xmlSchemaNewStringValue (<a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> type, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Allocate a new simple type value. The type can be of XML_SCHEMAS_STRING. WARNING: This one is intended to be expanded for other string based types. We need this for anySimpleType as well. The given value is consumed and freed with the struct.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the value type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the new value or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValPredefTypeNode"></a>xmlSchemaValPredefTypeNode ()</h3>
+<pre class="programlisting">int        xmlSchemaValPredefTypeNode      (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val, <br>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Check that a value conforms to the lexical space of the predefined type. if true a value is computed and returned in @val.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the predefined type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the return computed value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node containing the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValPredefTypeNodeNoNorm"></a>xmlSchemaValPredefTypeNodeNoNorm ()</h3>
+<pre class="programlisting">int        xmlSchemaValPredefTypeNodeNoNorm        (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                                <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val, <br>                                                 <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Check that a value conforms to the lexical space of the predefined type. if true a value is computed and returned in @val. This one does apply any normalization to the value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the predefined type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the return computed value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node containing the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidateFacet"></a>xmlSchemaValidateFacet ()</h3>
+<pre class="programlisting">int        xmlSchemaValidateFacet          (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> base, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val)<br>
+</pre>
+<p>Check a value against a facet condition</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>base</tt></i>:</span></td>
+<td>the base type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>facet</tt></i>:</span></td>
+<td>the facet to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the lexical repr of the value to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the precomputed value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the element is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidateFacetWhtsp"></a>xmlSchemaValidateFacetWhtsp ()</h3>
+<pre class="programlisting">int        xmlSchemaValidateFacetWhtsp     (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                     <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> fws, <br>                                  <a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> valType, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br>                                   <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws)<br>
+</pre>
+<p>Check a value against a facet condition. This takes value normalization according to the specified whitespace types into account. Note that @value needs to be the *normalized* value if the facet is of type "pattern".</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>facet</tt></i>:</span></td>
+<td>the facet to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>fws</tt></i>:</span></td>
+<td>the whitespace type of the facet's value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>valType</tt></i>:</span></td>
+<td>the built-in type of the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the lexical (or normalized for pattern) repr of the value to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the precomputed value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ws</tt></i>:</span></td>
+<td>the whitespace type of the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the element is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidateLengthFacet"></a>xmlSchemaValidateLengthFacet ()</h3>
+<pre class="programlisting">int        xmlSchemaValidateLengthFacet    (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br>                                   unsigned long * length)<br>
+</pre>
+<p>Checka a value against a "length", "minLength" and "maxLength" facet; sets @length to the computed length of @value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the built-in type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>facet</tt></i>:</span></td>
+<td>the facet to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the lexical repr. of the value to be validated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the precomputed value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>length</tt></i>:</span></td>
+<td>the actual length of the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the value is valid, a positive error code otherwise and -1 in case of an internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidateLengthFacetWhtsp"></a>xmlSchemaValidateLengthFacetWhtsp ()</h3>
+<pre class="programlisting">int        xmlSchemaValidateLengthFacetWhtsp       (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                             <a href="libxml2-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a> valType, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                                <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val, <br>                                           unsigned long * length, <br>                                            <a href="libxml2-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a> ws)<br>
+</pre>
+<p>Checka a value against a "length", "minLength" and "maxLength" facet; sets @length to the computed length of @value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>facet</tt></i>:</span></td>
+<td>the facet to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>valType</tt></i>:</span></td>
+<td>the built-in type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the lexical repr. of the value to be validated</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the precomputed value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>length</tt></i>:</span></td>
+<td>the actual length of the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ws</tt></i>:</span></td>
+<td>the whitespace type of the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the value is valid, a positive error code otherwise and -1 in case of an internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidateListSimpleTypeFacet"></a>xmlSchemaValidateListSimpleTypeFacet ()</h3>
+<pre class="programlisting">int        xmlSchemaValidateListSimpleTypeFacet    (<a href="libxml2-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a> facet, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                                unsigned long actualLen, <br>                                           unsigned long * expectedLen)<br>
+</pre>
+<p>Checks the value of a list simple type against a facet.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>facet</tt></i>:</span></td>
+<td>the facet to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the lexical repr of the value to validate</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>actualLen</tt></i>:</span></td>
+<td>the number of list items</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>expectedLen</tt></i>:</span></td>
+<td>the resulting expected number of list items</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the value is valid, a positive error code number otherwise and -1 in case of an internal error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValidatePredefinedType"></a>xmlSchemaValidatePredefinedType ()</h3>
+<pre class="programlisting">int        xmlSchemaValidatePredefinedType (<a href="libxml2-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value, <br>                                        <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> * val)<br>
+</pre>
+<p>Check that a value conforms to the lexical space of the predefined type. if true a value is computed and returned in @val.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the predefined type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the value to check</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the return computed value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValueAppend"></a>xmlSchemaValueAppend ()</h3>
+<pre class="programlisting">int        xmlSchemaValueAppend            (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> prev, <br>                                  <a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> cur)<br>
+</pre>
+<p>Appends a next sibling to a list of computed values.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>prev</tt></i>:</span></td>
+<td>the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the value to be appended</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if succeeded and -1 on API errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValueGetAsBoolean"></a>xmlSchemaValueGetAsBoolean ()</h3>
+<pre class="programlisting">int        xmlSchemaValueGetAsBoolean      (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val)<br>
+</pre>
+<p>Accessor for the boolean value of a computed value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true and 0 if false, or in case of an error. Hmm.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValueGetAsString"></a>xmlSchemaValueGetAsString ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlSchemaValueGetAsString       (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> val)<br>
+</pre>
+<p>Accessor for the string value of a computed value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the string value or NULL if there was none, or on API errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaValueGetNext"></a>xmlSchemaValueGetNext ()</h3>
+<pre class="programlisting"><a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a>        xmlSchemaValueGetNext   (<a href="libxml2-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> cur)<br>
+</pre>
+<p>Accessor for the next sibling of a list of computed values.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next value or NULL if there was none, or on API errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlSchemaWhiteSpaceReplace"></a>xmlSchemaWhiteSpaceReplace ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlSchemaWhiteSpaceReplace      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value)<br>
+</pre>
+<p>Replaces 0xd, 0x9 and 0xa with a space.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>a value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new string or NULL if no change was required.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 95a845f..c0ef99b 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlstring: set of routines to process strings</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlschemastypes.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlunicode.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlstring</span>
-    </h2>
-    <p>xmlstring - set of routines to process strings</p>
-    <p>type and interfaces needed for the internal string handling of the library, especially UTF8 processing. </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#BAD_CAST">BAD_CAST</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlstring: set of routines to process strings</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlschemastypes.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlunicode.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlstring</span></h2>
+<p>xmlstring - set of routines to process strings</p>
+<p>type and interfaces needed for the internal string handling of the library, especially UTF8 processing. </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#BAD_CAST">BAD_CAST</a>;
 typedef unsigned char <a href="#xmlChar">xmlChar</a>;
-int    <a href="#xmlStrcmp">xmlStrcmp</a>                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCharStrndup">xmlCharStrndup</a>            (const char * cur, <br/>                                         int len);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlStrcasestr">xmlStrcasestr</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrcat">xmlStrcat</a>              (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * add);
-int    <a href="#xmlStrPrintf">xmlStrPrintf</a>                        (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buf, <br/>                                       int len, <br/>                                  const char * msg, <br/>                                         ... ...);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlStrstr">xmlStrstr</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val);
-int    <a href="#xmlUTF8Size">xmlUTF8Size</a>                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf);
-int    <a href="#xmlStrQEqual">xmlStrQEqual</a>                        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pref, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrncatNew">xmlStrncatNew</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br/>                                        int len);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlUTF8Strpos">xmlUTF8Strpos</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br/>                                         int pos);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrdup">xmlStrdup</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur);
 <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCharStrdup">xmlCharStrdup</a>              (const char * cur);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlStrchr">xmlStrchr</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> val);
-int    <a href="#xmlStrlen">xmlStrlen</a>                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
-int    <a href="#xmlStrncmp">xmlStrncmp</a>                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br/>                                        int len);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrsub">xmlStrsub</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         int start, <br/>                                        int len);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrncat">xmlStrncat</a>            (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * add, <br/>                                         int len);
-int    <a href="#xmlGetUTF8Char">xmlGetUTF8Char</a>                    (const unsigned char * utf, <br/>                                        int * len);
-int    <a href="#xmlStrcasecmp">xmlStrcasecmp</a>                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrndup">xmlStrndup</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         int len);
-int    <a href="#xmlStrVPrintf">xmlStrVPrintf</a>                      (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buf, <br/>                                       int len, <br/>                                  const char * msg, <br/>                                         va_list ap);
-int    <a href="#xmlUTF8Strsize">xmlUTF8Strsize</a>                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br/>                                         int len);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlCharStrndup">xmlCharStrndup</a>            (const char * cur, <br>                                  int len);
 int    <a href="#xmlCheckUTF8">xmlCheckUTF8</a>                        (const unsigned char * utf);
-int    <a href="#xmlStrncasecmp">xmlStrncasecmp</a>                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br/>                                        int len);
+int    <a href="#xmlGetUTF8Char">xmlGetUTF8Char</a>                    (const unsigned char * utf, <br>                                         int * len);
+int    <a href="#xmlStrEqual">xmlStrEqual</a>                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2);
+int    <a href="#xmlStrPrintf">xmlStrPrintf</a>                        (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buf, <br>                                        int len, <br>                                   const char * msg, <br>                                  ... ...);
+int    <a href="#xmlStrQEqual">xmlStrQEqual</a>                        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pref, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
+int    <a href="#xmlStrVPrintf">xmlStrVPrintf</a>                      (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buf, <br>                                        int len, <br>                                   const char * msg, <br>                                  va_list ap);
+int    <a href="#xmlStrcasecmp">xmlStrcasecmp</a>                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlStrcasestr">xmlStrcasestr</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrcat">xmlStrcat</a>              (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * add);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlStrchr">xmlStrchr</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> val);
+int    <a href="#xmlStrcmp">xmlStrcmp</a>                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrdup">xmlStrdup</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur);
+int    <a href="#xmlStrlen">xmlStrlen</a>                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
+int    <a href="#xmlStrncasecmp">xmlStrncasecmp</a>                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br>                                         int len);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrncat">xmlStrncat</a>            (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * add, <br>                                  int len);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrncatNew">xmlStrncatNew</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br>                                         int len);
+int    <a href="#xmlStrncmp">xmlStrncmp</a>                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br>                                         int len);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrndup">xmlStrndup</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  int len);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlStrstr">xmlStrstr</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlStrsub">xmlStrsub</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  int start, <br>                                         int len);
+int    <a href="#xmlUTF8Charcmp">xmlUTF8Charcmp</a>                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf2);
+int    <a href="#xmlUTF8Size">xmlUTF8Size</a>                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf);
 int    <a href="#xmlUTF8Strlen">xmlUTF8Strlen</a>                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlUTF8Strsub">xmlUTF8Strsub</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br/>                                         int start, <br/>                                        int len);
-int    <a href="#xmlStrEqual">xmlStrEqual</a>                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2);
-int    <a href="#xmlUTF8Charcmp">xmlUTF8Charcmp</a>                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf2);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlUTF8Strndup">xmlUTF8Strndup</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br/>                                         int len);
-int    <a href="#xmlUTF8Strloc">xmlUTF8Strloc</a>                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utfchar);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="BAD_CAST">Macro </a>BAD_CAST</h3><pre class="programlisting">#define <a href="#BAD_CAST">BAD_CAST</a>;
-</pre><p>Macro to cast a string to an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * when one know its safe.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlChar">Typedef </a>xmlChar</h3><pre class="programlisting">unsigned char xmlChar;
-</pre><p>This is a basic byte in an UTF-8 encoded string. It's unsigned allowing to pinpoint case where char * are assigned to <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * (possibly making serialization back impossible).</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCharStrdup"/>xmlCharStrdup ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlCharStrdup           (const char * cur)<br/>
-</pre><p>a strdup for char's to xmlChar's</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the input char *</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCharStrndup"/>xmlCharStrndup ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlCharStrndup          (const char * cur, <br/>                                         int len)<br/>
-</pre><p>a strndup for char's to xmlChar's</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the input char *</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the len of @cur</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCheckUTF8"/>xmlCheckUTF8 ()</h3><pre class="programlisting">int        xmlCheckUTF8                    (const unsigned char * utf)<br/>
-</pre><p>Checks @utf for being valid UTF-8. @utf is assumed to be null-terminated. This function is not super-strict, as it will allow longer UTF-8 sequences than necessary. Note that Java is capable of producing these sequences if provoked. Also note, this routine checks for the 4-byte maximum size, but does not check for 0x10ffff maximum value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>Pointer to putative UTF-8 encoded string.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>value: true if @utf is valid.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlGetUTF8Char"/>xmlGetUTF8Char ()</h3><pre class="programlisting">int    xmlGetUTF8Char                  (const unsigned char * utf, <br/>                                        int * len)<br/>
-</pre><p>Read the first UTF8 character from @utf</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>a sequence of UTF-8 encoded bytes</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>a pointer to the minimum number of bytes present in the sequence. This is used to assure the next character is completely contained within the sequence.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the char value or -1 in case of error, and sets *len to the actual number of bytes consumed (0 in case of error)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrEqual"/>xmlStrEqual ()</h3><pre class="programlisting">int  xmlStrEqual                     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2)<br/>
-</pre><p>Check if both strings are equal of have same content. Should be a bit more readable and faster than xmlStrcmp()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str1</tt></i>:</span></td><td>the first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>str2</tt></i>:</span></td><td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if they are equal, 0 if they are different</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrPrintf"/>xmlStrPrintf ()</h3><pre class="programlisting">int        xmlStrPrintf                    (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buf, <br/>                                       int len, <br/>                                  const char * msg, <br/>                                         ... ...)<br/>
-</pre><p>Formats @msg and places result into @buf.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the result buffer.</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the result buffer length.</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message with printf formatting.</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the message.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of <a href="libxml2-SAX.html#characters">characters</a> written to @buf or -1 if an error occurs.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrQEqual"/>xmlStrQEqual ()</h3><pre class="programlisting">int        xmlStrQEqual                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pref, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>Check if a QName is Equal to a given string</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>pref</tt></i>:</span></td><td>the prefix of the QName</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the localname of the QName</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if they are equal, 0 if they are different</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrVPrintf"/>xmlStrVPrintf ()</h3><pre class="programlisting">int      xmlStrVPrintf                   (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buf, <br/>                                       int len, <br/>                                  const char * msg, <br/>                                         va_list ap)<br/>
-</pre><p>Formats @msg and places result into @buf.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td>the result buffer.</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the result buffer length.</td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td>the message with printf formatting.</td></tr><tr><td><span class="term"><i><tt>ap</tt></i>:</span></td><td>extra parameters for the message.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of <a href="libxml2-SAX.html#characters">characters</a> written to @buf or -1 if an error occurs.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrcasecmp"/>xmlStrcasecmp ()</h3><pre class="programlisting">int      xmlStrcasecmp                   (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2)<br/>
-</pre><p>a strcasecmp for xmlChar's</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str1</tt></i>:</span></td><td>the first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>str2</tt></i>:</span></td><td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the integer result of the comparison</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrcasestr"/>xmlStrcasestr ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlStrcasestr           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br/>
-</pre><p>a case-ignoring strstr for xmlChar's</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array (haystack)</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> to search (needle)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * for the first occurrence or NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrcat"/>xmlStrcat ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlStrcat               (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * add)<br/>
-</pre><p>a strcat for array of xmlChar's. Since they are supposed to be encoded in UTF-8 or an encoding with 8bit based chars, we assume a termination mark of '0'.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the original <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array</td></tr><tr><td><span class="term"><i><tt>add</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array added</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * containing the concatenated string. The original @cur is reallocated and should not be freed.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrchr"/>xmlStrchr ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlStrchr               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> val)<br/>
-</pre><p>a strchr for xmlChar's</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> to search</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * for the first occurrence or NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrcmp"/>xmlStrcmp ()</h3><pre class="programlisting">int      xmlStrcmp                       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2)<br/>
-</pre><p>a strcmp for xmlChar's</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str1</tt></i>:</span></td><td>the first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>str2</tt></i>:</span></td><td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the integer result of the comparison</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrdup"/>xmlStrdup ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlStrdup               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur)<br/>
-</pre><p>a strdup for array of xmlChar's. Since they are supposed to be encoded in UTF-8 or an encoding with 8bit based chars, we assume a termination mark of '0'.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the input <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrlen"/>xmlStrlen ()</h3><pre class="programlisting">int      xmlStrlen                       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>length of a xmlChar's string</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> contained in the ARRAY.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrncasecmp"/>xmlStrncasecmp ()</h3><pre class="programlisting">int    xmlStrncasecmp                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br/>                                        int len)<br/>
-</pre><p>a strncasecmp for xmlChar's</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str1</tt></i>:</span></td><td>the first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>str2</tt></i>:</span></td><td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the max comparison length</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the integer result of the comparison</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrncat"/>xmlStrncat ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlStrncat              (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * add, <br/>                                         int len)<br/>
-</pre><p>a strncat for array of xmlChar's, it will extend @cur with the len first bytes of @add. Note that if @len &lt; 0 then this is an API error and NULL will be returned.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the original <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array</td></tr><tr><td><span class="term"><i><tt>add</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array added</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length of @add</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *, the original @cur is reallocated and should not be freed.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrncatNew"/>xmlStrncatNew ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlStrncatNew           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br/>                                        int len)<br/>
-</pre><p>same as xmlStrncat, but creates a new string. The original two strings are not freed. If @len is &lt; 0 then the length will be calculated automatically.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str1</tt></i>:</span></td><td>first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td></tr><tr><td><span class="term"><i><tt>str2</tt></i>:</span></td><td>second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the len of @str2 or &lt; 0</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrncmp"/>xmlStrncmp ()</h3><pre class="programlisting">int    xmlStrncmp                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br/>                                        int len)<br/>
-</pre><p>a strncmp for xmlChar's</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str1</tt></i>:</span></td><td>the first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>str2</tt></i>:</span></td><td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the max comparison length</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the integer result of the comparison</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrndup"/>xmlStrndup ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlStrndup              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br/>                                         int len)<br/>
-</pre><p>a strndup for array of xmlChar's</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the input <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the len of @cur</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrstr"/>xmlStrstr ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlStrstr               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br/>
-</pre><p>a strstr for xmlChar's</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array (haystack)</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> to search (needle)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * for the first occurrence or NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlStrsub"/>xmlStrsub ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlStrsub               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         int start, <br/>                                        int len)<br/>
-</pre><p>Extract a substring of a given string</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array (haystack)</td></tr><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>the index of the first char (zero based)</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the length of the substring</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * for the first occurrence or NULL.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUTF8Charcmp"/>xmlUTF8Charcmp ()</h3><pre class="programlisting">int    xmlUTF8Charcmp                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf1, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf2)<br/>
-</pre><p>compares the two UCS4 values</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>utf1</tt></i>:</span></td><td>pointer to first UTF8 char</td></tr><tr><td><span class="term"><i><tt>utf2</tt></i>:</span></td><td>pointer to second UTF8 char</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>result of the compare as with <a href="libxml2-xmlstring.html#xmlStrncmp">xmlStrncmp</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUTF8Size"/>xmlUTF8Size ()</h3><pre class="programlisting">int  xmlUTF8Size                     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf)<br/>
-</pre><p>calculates the internal size of a UTF8 character</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>pointer to the UTF8 character</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the numbers of bytes in the character, -1 on format error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUTF8Strlen"/>xmlUTF8Strlen ()</h3><pre class="programlisting">int      xmlUTF8Strlen                   (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf)<br/>
-</pre><p>compute the length of an UTF8 string, it doesn't do a full UTF8 checking of the content of the string.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>a sequence of UTF-8 encoded bytes</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of <a href="libxml2-SAX.html#characters">characters</a> in the string or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUTF8Strloc"/>xmlUTF8Strloc ()</h3><pre class="programlisting">int      xmlUTF8Strloc                   (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br/>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utfchar)<br/>
-</pre><p>a function to provide the relative location of a UTF8 char</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>the input UTF8 *</td></tr><tr><td><span class="term"><i><tt>utfchar</tt></i>:</span></td><td>the UTF8 character to be found</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the relative character position of the desired char or -1 if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUTF8Strndup"/>xmlUTF8Strndup ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlUTF8Strndup          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br/>                                         int len)<br/>
-</pre><p>a strndup for array of UTF8's</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>the input UTF8 *</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the len of @utf (in chars)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new UTF8 * or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUTF8Strpos"/>xmlUTF8Strpos ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlUTF8Strpos           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br/>                                         int pos)<br/>
-</pre><p>a function to provide the equivalent of fetching a character from a string array</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>the input UTF8 *</td></tr><tr><td><span class="term"><i><tt>pos</tt></i>:</span></td><td>the position of the desired UTF8 char (in chars)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the UTF8 character or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUTF8Strsize"/>xmlUTF8Strsize ()</h3><pre class="programlisting">int    xmlUTF8Strsize                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br/>                                         int len)<br/>
-</pre><p>storage size of an UTF8 string the behaviour is not guaranteed if the input string is not UTF-8</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>a sequence of UTF-8 encoded bytes</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of <a href="libxml2-SAX.html#characters">characters</a> in the array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the storage size of the first 'len' <a href="libxml2-SAX.html#characters">characters</a> of ARRAY</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUTF8Strsub"/>xmlUTF8Strsub ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlUTF8Strsub           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br/>                                         int start, <br/>                                        int len)<br/>
-</pre><p>Create a substring from a given UTF-8 string Note: positions are given in units of UTF-8 chars</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>a sequence of UTF-8 encoded bytes</td></tr><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>relative pos of first char</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>total number to copy</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to a newly created string or NULL if any problem</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+int    <a href="#xmlUTF8Strloc">xmlUTF8Strloc</a>                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utfchar);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlUTF8Strndup">xmlUTF8Strndup</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br>                                  int len);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlUTF8Strpos">xmlUTF8Strpos</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br>                                  int pos);
+int    <a href="#xmlUTF8Strsize">xmlUTF8Strsize</a>                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br>                                  int len);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlUTF8Strsub">xmlUTF8Strsub</a>              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br>                                  int start, <br>                                         int len);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="BAD_CAST">Macro </a>BAD_CAST</h3>
+<pre class="programlisting">#define <a href="#BAD_CAST">BAD_CAST</a>;
+</pre>
+<p>Macro to cast a string to an <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * when one know its safe.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlChar">Typedef </a>xmlChar</h3>
+<pre class="programlisting">unsigned char xmlChar;
+</pre>
+<p>This is a basic byte in an UTF-8 encoded string. It's unsigned allowing to pinpoint case where char * are assigned to <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * (possibly making serialization back impossible).</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharStrdup"></a>xmlCharStrdup ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlCharStrdup           (const char * cur)<br>
+</pre>
+<p>a strdup for char's to xmlChar's</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the input char *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCharStrndup"></a>xmlCharStrndup ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlCharStrndup          (const char * cur, <br>                                  int len)<br>
+</pre>
+<p>a strndup for char's to xmlChar's</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the input char *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the len of @cur</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCheckUTF8"></a>xmlCheckUTF8 ()</h3>
+<pre class="programlisting">int        xmlCheckUTF8                    (const unsigned char * utf)<br>
+</pre>
+<p>Checks @utf for being valid UTF-8. @utf is assumed to be null-terminated. This function is not super-strict, as it will allow longer UTF-8 sequences than necessary. Note that Java is capable of producing these sequences if provoked. Also note, this routine checks for the 4-byte maximum size, but does not check for 0x10ffff maximum value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>utf</tt></i>:</span></td>
+<td>Pointer to putative UTF-8 encoded string.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>value: true if @utf is valid.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlGetUTF8Char"></a>xmlGetUTF8Char ()</h3>
+<pre class="programlisting">int        xmlGetUTF8Char                  (const unsigned char * utf, <br>                                         int * len)<br>
+</pre>
+<p>Read the first UTF8 character from @utf</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>utf</tt></i>:</span></td>
+<td>a sequence of UTF-8 encoded bytes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>a pointer to the minimum number of bytes present in the sequence. This is used to assure the next character is completely contained within the sequence.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the char value or -1 in case of error, and sets *len to the actual number of bytes consumed (0 in case of error)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrEqual"></a>xmlStrEqual ()</h3>
+<pre class="programlisting">int        xmlStrEqual                     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2)<br>
+</pre>
+<p>Check if both strings are equal of have same content. Should be a bit more readable and faster than xmlStrcmp()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str1</tt></i>:</span></td>
+<td>the first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str2</tt></i>:</span></td>
+<td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if they are equal, 0 if they are different</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrPrintf"></a>xmlStrPrintf ()</h3>
+<pre class="programlisting">int        xmlStrPrintf                    (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buf, <br>                                        int len, <br>                                   const char * msg, <br>                                  ... ...)<br>
+</pre>
+<p>Formats @msg and places result into @buf.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the result buffer.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the result buffer length.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message with printf formatting.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the message.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of <a href="libxml2-SAX.html#characters">characters</a> written to @buf or -1 if an error occurs.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrQEqual"></a>xmlStrQEqual ()</h3>
+<pre class="programlisting">int        xmlStrQEqual                    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pref, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>Check if a QName is Equal to a given string</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>pref</tt></i>:</span></td>
+<td>the prefix of the QName</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the localname of the QName</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if they are equal, 0 if they are different</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrVPrintf"></a>xmlStrVPrintf ()</h3>
+<pre class="programlisting">int        xmlStrVPrintf                   (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * buf, <br>                                        int len, <br>                                   const char * msg, <br>                                  va_list ap)<br>
+</pre>
+<p>Formats @msg and places result into @buf.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td>the result buffer.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the result buffer length.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>msg</tt></i>:</span></td>
+<td>the message with printf formatting.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ap</tt></i>:</span></td>
+<td>extra parameters for the message.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of <a href="libxml2-SAX.html#characters">characters</a> written to @buf or -1 if an error occurs.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrcasecmp"></a>xmlStrcasecmp ()</h3>
+<pre class="programlisting">int        xmlStrcasecmp                   (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2)<br>
+</pre>
+<p>a strcasecmp for xmlChar's</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str1</tt></i>:</span></td>
+<td>the first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str2</tt></i>:</span></td>
+<td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the integer result of the comparison</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrcasestr"></a>xmlStrcasestr ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlStrcasestr           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br>
+</pre>
+<p>a case-ignoring strstr for xmlChar's</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array (haystack)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> to search (needle)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * for the first occurrence or NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrcat"></a>xmlStrcat ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlStrcat               (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * add)<br>
+</pre>
+<p>a strcat for array of xmlChar's. Since they are supposed to be encoded in UTF-8 or an encoding with 8bit based chars, we assume a termination mark of '0'.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the original <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>add</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array added</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * containing the concatenated string. The original @cur is reallocated and should not be freed.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrchr"></a>xmlStrchr ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlStrchr               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> val)<br>
+</pre>
+<p>a strchr for xmlChar's</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> to search</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * for the first occurrence or NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrcmp"></a>xmlStrcmp ()</h3>
+<pre class="programlisting">int        xmlStrcmp                       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2)<br>
+</pre>
+<p>a strcmp for xmlChar's</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str1</tt></i>:</span></td>
+<td>the first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str2</tt></i>:</span></td>
+<td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the integer result of the comparison</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrdup"></a>xmlStrdup ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlStrdup               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur)<br>
+</pre>
+<p>a strdup for array of xmlChar's. Since they are supposed to be encoded in UTF-8 or an encoding with 8bit based chars, we assume a termination mark of '0'.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the input <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrlen"></a>xmlStrlen ()</h3>
+<pre class="programlisting">int        xmlStrlen                       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>length of a xmlChar's string</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> contained in the ARRAY.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrncasecmp"></a>xmlStrncasecmp ()</h3>
+<pre class="programlisting">int        xmlStrncasecmp                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br>                                         int len)<br>
+</pre>
+<p>a strncasecmp for xmlChar's</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str1</tt></i>:</span></td>
+<td>the first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str2</tt></i>:</span></td>
+<td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the max comparison length</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the integer result of the comparison</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrncat"></a>xmlStrncat ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlStrncat              (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * add, <br>                                  int len)<br>
+</pre>
+<p>a strncat for array of xmlChar's, it will extend @cur with the len first bytes of @add. Note that if @len &lt; 0 then this is an API error and NULL will be returned.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the original <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>add</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array added</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length of @add</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *, the original @cur is reallocated and should not be freed.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrncatNew"></a>xmlStrncatNew ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlStrncatNew           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br>                                         int len)<br>
+</pre>
+<p>same as xmlStrncat, but creates a new string. The original two strings are not freed. If @len is &lt; 0 then the length will be calculated automatically.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str1</tt></i>:</span></td>
+<td>first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str2</tt></i>:</span></td>
+<td>second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the len of @str2 or &lt; 0</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrncmp"></a>xmlStrncmp ()</h3>
+<pre class="programlisting">int        xmlStrncmp                      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str2, <br>                                         int len)<br>
+</pre>
+<p>a strncmp for xmlChar's</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str1</tt></i>:</span></td>
+<td>the first <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str2</tt></i>:</span></td>
+<td>the second <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the max comparison length</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the integer result of the comparison</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrndup"></a>xmlStrndup ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlStrndup              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * cur, <br>                                  int len)<br>
+</pre>
+<p>a strndup for array of xmlChar's</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the input <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the len of @cur</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrstr"></a>xmlStrstr ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlStrstr               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br>
+</pre>
+<p>a strstr for xmlChar's</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array (haystack)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> to search (needle)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * for the first occurrence or NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlStrsub"></a>xmlStrsub ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlStrsub               (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  int start, <br>                                         int len)<br>
+</pre>
+<p>Extract a substring of a given string</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * array (haystack)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>the index of the first char (zero based)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the length of the substring</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * for the first occurrence or NULL.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUTF8Charcmp"></a>xmlUTF8Charcmp ()</h3>
+<pre class="programlisting">int        xmlUTF8Charcmp                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf1, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf2)<br>
+</pre>
+<p>compares the two UCS4 values</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>utf1</tt></i>:</span></td>
+<td>pointer to first UTF8 char</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>utf2</tt></i>:</span></td>
+<td>pointer to second UTF8 char</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>result of the compare as with <a href="libxml2-xmlstring.html#xmlStrncmp">xmlStrncmp</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUTF8Size"></a>xmlUTF8Size ()</h3>
+<pre class="programlisting">int        xmlUTF8Size                     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf)<br>
+</pre>
+<p>calculates the internal size of a UTF8 character</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>utf</tt></i>:</span></td>
+<td>pointer to the UTF8 character</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the numbers of bytes in the character, -1 on format error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUTF8Strlen"></a>xmlUTF8Strlen ()</h3>
+<pre class="programlisting">int        xmlUTF8Strlen                   (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf)<br>
+</pre>
+<p>compute the length of an UTF8 string, it doesn't do a full UTF8 checking of the content of the string.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>utf</tt></i>:</span></td>
+<td>a sequence of UTF-8 encoded bytes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of <a href="libxml2-SAX.html#characters">characters</a> in the string or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUTF8Strloc"></a>xmlUTF8Strloc ()</h3>
+<pre class="programlisting">int        xmlUTF8Strloc                   (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br>                                  const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utfchar)<br>
+</pre>
+<p>a function to provide the relative location of a UTF8 char</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>utf</tt></i>:</span></td>
+<td>the input UTF8 *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>utfchar</tt></i>:</span></td>
+<td>the UTF8 character to be found</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the relative character position of the desired char or -1 if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUTF8Strndup"></a>xmlUTF8Strndup ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlUTF8Strndup          (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br>                                  int len)<br>
+</pre>
+<p>a strndup for array of UTF8's</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>utf</tt></i>:</span></td>
+<td>the input UTF8 *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the len of @utf (in chars)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a new UTF8 * or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUTF8Strpos"></a>xmlUTF8Strpos ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlUTF8Strpos           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br>                                  int pos)<br>
+</pre>
+<p>a function to provide the equivalent of fetching a character from a string array</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>utf</tt></i>:</span></td>
+<td>the input UTF8 *</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pos</tt></i>:</span></td>
+<td>the position of the desired UTF8 char (in chars)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to the UTF8 character or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUTF8Strsize"></a>xmlUTF8Strsize ()</h3>
+<pre class="programlisting">int        xmlUTF8Strsize                  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br>                                  int len)<br>
+</pre>
+<p>storage size of an UTF8 string the behaviour is not guaranteed if the input string is not UTF-8</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>utf</tt></i>:</span></td>
+<td>a sequence of UTF-8 encoded bytes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of <a href="libxml2-SAX.html#characters">characters</a> in the array</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the storage size of the first 'len' <a href="libxml2-SAX.html#characters">characters</a> of ARRAY</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUTF8Strsub"></a>xmlUTF8Strsub ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlUTF8Strsub           (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * utf, <br>                                  int start, <br>                                         int len)<br>
+</pre>
+<p>Create a substring from a given UTF-8 string Note: positions are given in units of UTF-8 chars</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>utf</tt></i>:</span></td>
+<td>a sequence of UTF-8 encoded bytes</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>relative pos of first char</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>total number to copy</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a pointer to a newly created string or NULL if any problem</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 7d4f0d8..29ec7de 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlunicode: Unicode character APIs</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlstring.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlversion.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlunicode</span>
-    </h2>
-    <p>xmlunicode - Unicode character APIs</p>
-    <p>API for the Unicode character APIs  This file is automatically generated from the UCS description files of the Unicode Character Database</p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">int        <a href="#xmlUCSIsBlockElements">xmlUCSIsBlockElements</a>              (int code);
-int    <a href="#xmlUCSIsBopomofo">xmlUCSIsBopomofo</a>                (int code);
-int    <a href="#xmlUCSIsDingbats">xmlUCSIsDingbats</a>                (int code);
-int    <a href="#xmlUCSIsSuperscriptsandSubscripts">xmlUCSIsSuperscriptsandSubscripts</a>      (int code);
-int    <a href="#xmlUCSIsCombiningHalfMarks">xmlUCSIsCombiningHalfMarks</a>    (int code);
-int    <a href="#xmlUCSIsTibetan">xmlUCSIsTibetan</a>                  (int code);
-int    <a href="#xmlUCSIsYiRadicals">xmlUCSIsYiRadicals</a>            (int code);
-int    <a href="#xmlUCSIsCombiningMarksforSymbols">xmlUCSIsCombiningMarksforSymbols</a>        (int code);
-int    <a href="#xmlUCSIsHangulSyllables">xmlUCSIsHangulSyllables</a>          (int code);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlunicode: Unicode character APIs</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlstring.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlversion.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlunicode</span></h2>
+<p>xmlunicode - Unicode character APIs</p>
+<p>API for the Unicode character APIs  This file is automatically generated from the UCS description files of the Unicode Character Database</p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">int      <a href="#xmlUCSIsAegeanNumbers">xmlUCSIsAegeanNumbers</a>              (int code);
+int    <a href="#xmlUCSIsAlphabeticPresentationForms">xmlUCSIsAlphabeticPresentationForms</a>  (int code);
+int    <a href="#xmlUCSIsArabic">xmlUCSIsArabic</a>                    (int code);
+int    <a href="#xmlUCSIsArabicPresentationFormsA">xmlUCSIsArabicPresentationFormsA</a>        (int code);
+int    <a href="#xmlUCSIsArabicPresentationFormsB">xmlUCSIsArabicPresentationFormsB</a>        (int code);
+int    <a href="#xmlUCSIsArmenian">xmlUCSIsArmenian</a>                (int code);
+int    <a href="#xmlUCSIsArrows">xmlUCSIsArrows</a>                    (int code);
 int    <a href="#xmlUCSIsBasicLatin">xmlUCSIsBasicLatin</a>            (int code);
-int    <a href="#xmlUCSIsCatSc">xmlUCSIsCatSc</a>                      (int code);
-int    <a href="#xmlUCSIsCatSo">xmlUCSIsCatSo</a>                      (int code);
-int    <a href="#xmlUCSIsLimbu">xmlUCSIsLimbu</a>                      (int code);
-int    <a href="#xmlUCSIsCatSm">xmlUCSIsCatSm</a>                      (int code);
-int    <a href="#xmlUCSIsCatSk">xmlUCSIsCatSk</a>                      (int code);
-int    <a href="#xmlUCSIsKhmerSymbols">xmlUCSIsKhmerSymbols</a>                (int code);
-int    <a href="#xmlUCSIsMongolian">xmlUCSIsMongolian</a>              (int code);
-int    <a href="#xmlUCSIsMalayalam">xmlUCSIsMalayalam</a>              (int code);
-int    <a href="#xmlUCSIsMathematicalAlphanumericSymbols">xmlUCSIsMathematicalAlphanumericSymbols</a>  (int code);
-int    <a href="#xmlUCSIsThaana">xmlUCSIsThaana</a>                    (int code);
-int    <a href="#xmlUCSIsMyanmar">xmlUCSIsMyanmar</a>                  (int code);
-int    <a href="#xmlUCSIsTags">xmlUCSIsTags</a>                        (int code);
-int    <a href="#xmlUCSIsCJKCompatibilityIdeographs">xmlUCSIsCJKCompatibilityIdeographs</a>    (int code);
-int    <a href="#xmlUCSIsTelugu">xmlUCSIsTelugu</a>                    (int code);
-int    <a href="#xmlUCSIsLowSurrogates">xmlUCSIsLowSurrogates</a>              (int code);
-int    <a href="#xmlUCSIsOsmanya">xmlUCSIsOsmanya</a>                  (int code);
-int    <a href="#xmlUCSIsSyriac">xmlUCSIsSyriac</a>                    (int code);
-int    <a href="#xmlUCSIsEthiopic">xmlUCSIsEthiopic</a>                (int code);
+int    <a href="#xmlUCSIsBengali">xmlUCSIsBengali</a>                  (int code);
+int    <a href="#xmlUCSIsBlock">xmlUCSIsBlock</a>                      (int code, <br>                                  const char * block);
+int    <a href="#xmlUCSIsBlockElements">xmlUCSIsBlockElements</a>              (int code);
+int    <a href="#xmlUCSIsBopomofo">xmlUCSIsBopomofo</a>                (int code);
+int    <a href="#xmlUCSIsBopomofoExtended">xmlUCSIsBopomofoExtended</a>        (int code);
 int    <a href="#xmlUCSIsBoxDrawing">xmlUCSIsBoxDrawing</a>            (int code);
-int    <a href="#xmlUCSIsGreekExtended">xmlUCSIsGreekExtended</a>              (int code);
-int    <a href="#xmlUCSIsGreekandCoptic">xmlUCSIsGreekandCoptic</a>            (int code);
-int    <a href="#xmlUCSIsKannada">xmlUCSIsKannada</a>                  (int code);
+int    <a href="#xmlUCSIsBraillePatterns">xmlUCSIsBraillePatterns</a>          (int code);
+int    <a href="#xmlUCSIsBuhid">xmlUCSIsBuhid</a>                      (int code);
 int    <a href="#xmlUCSIsByzantineMusicalSymbols">xmlUCSIsByzantineMusicalSymbols</a>  (int code);
-int    <a href="#xmlUCSIsEnclosedCJKLettersandMonths">xmlUCSIsEnclosedCJKLettersandMonths</a>  (int code);
+int    <a href="#xmlUCSIsCJKCompatibility">xmlUCSIsCJKCompatibility</a>        (int code);
 int    <a href="#xmlUCSIsCJKCompatibilityForms">xmlUCSIsCJKCompatibilityForms</a>      (int code);
-int    <a href="#xmlUCSIsCatCs">xmlUCSIsCatCs</a>                      (int code);
+int    <a href="#xmlUCSIsCJKCompatibilityIdeographs">xmlUCSIsCJKCompatibilityIdeographs</a>    (int code);
+int    <a href="#xmlUCSIsCJKCompatibilityIdeographsSupplement">xmlUCSIsCJKCompatibilityIdeographsSupplement</a>        (int code);
 int    <a href="#xmlUCSIsCJKRadicalsSupplement">xmlUCSIsCJKRadicalsSupplement</a>      (int code);
-int    <a href="#xmlUCSIsCatCf">xmlUCSIsCatCf</a>                      (int code);
-int    <a href="#xmlUCSIsSmallFormVariants">xmlUCSIsSmallFormVariants</a>      (int code);
-int    <a href="#xmlUCSIsHangulCompatibilityJamo">xmlUCSIsHangulCompatibilityJamo</a>  (int code);
+int    <a href="#xmlUCSIsCJKSymbolsandPunctuation">xmlUCSIsCJKSymbolsandPunctuation</a>        (int code);
+int    <a href="#xmlUCSIsCJKUnifiedIdeographs">xmlUCSIsCJKUnifiedIdeographs</a>        (int code);
+int    <a href="#xmlUCSIsCJKUnifiedIdeographsExtensionA">xmlUCSIsCJKUnifiedIdeographsExtensionA</a>    (int code);
+int    <a href="#xmlUCSIsCJKUnifiedIdeographsExtensionB">xmlUCSIsCJKUnifiedIdeographsExtensionB</a>    (int code);
+int    <a href="#xmlUCSIsCat">xmlUCSIsCat</a>                  (int code, <br>                                  const char * cat);
+int    <a href="#xmlUCSIsCatC">xmlUCSIsCatC</a>                        (int code);
 int    <a href="#xmlUCSIsCatCc">xmlUCSIsCatCc</a>                      (int code);
+int    <a href="#xmlUCSIsCatCf">xmlUCSIsCatCf</a>                      (int code);
 int    <a href="#xmlUCSIsCatCo">xmlUCSIsCatCo</a>                      (int code);
-int    <a href="#xmlUCSIsCherokee">xmlUCSIsCherokee</a>                (int code);
-int    <a href="#xmlUCSIsGothic">xmlUCSIsGothic</a>                    (int code);
-int    <a href="#xmlUCSIsKhmer">xmlUCSIsKhmer</a>                      (int code);
-int    <a href="#xmlUCSIsCombiningDiacriticalMarksforSymbols">xmlUCSIsCombiningDiacriticalMarksforSymbols</a>  (int code);
-int    <a href="#xmlUCSIsOgham">xmlUCSIsOgham</a>                      (int code);
-int    <a href="#xmlUCSIsOriya">xmlUCSIsOriya</a>                      (int code);
-int    <a href="#xmlUCSIsLinearBIdeograms">xmlUCSIsLinearBIdeograms</a>        (int code);
-int    <a href="#xmlUCSIsBlock">xmlUCSIsBlock</a>                      (int code, <br/>                                         const char * block);
-int    <a href="#xmlUCSIsBopomofoExtended">xmlUCSIsBopomofoExtended</a>        (int code);
-int    <a href="#xmlUCSIsHangulJamo">xmlUCSIsHangulJamo</a>            (int code);
-int    <a href="#xmlUCSIsTagbanwa">xmlUCSIsTagbanwa</a>                (int code);
-int    <a href="#xmlUCSIsGeneralPunctuation">xmlUCSIsGeneralPunctuation</a>    (int code);
-int    <a href="#xmlUCSIsCyrillic">xmlUCSIsCyrillic</a>                (int code);
-int    <a href="#xmlUCSIsArrows">xmlUCSIsArrows</a>                    (int code);
-int    <a href="#xmlUCSIsControlPictures">xmlUCSIsControlPictures</a>          (int code);
-int    <a href="#xmlUCSIsCJKUnifiedIdeographs">xmlUCSIsCJKUnifiedIdeographs</a>        (int code);
+int    <a href="#xmlUCSIsCatCs">xmlUCSIsCatCs</a>                      (int code);
+int    <a href="#xmlUCSIsCatL">xmlUCSIsCatL</a>                        (int code);
+int    <a href="#xmlUCSIsCatLl">xmlUCSIsCatLl</a>                      (int code);
+int    <a href="#xmlUCSIsCatLm">xmlUCSIsCatLm</a>                      (int code);
+int    <a href="#xmlUCSIsCatLo">xmlUCSIsCatLo</a>                      (int code);
+int    <a href="#xmlUCSIsCatLt">xmlUCSIsCatLt</a>                      (int code);
+int    <a href="#xmlUCSIsCatLu">xmlUCSIsCatLu</a>                      (int code);
+int    <a href="#xmlUCSIsCatM">xmlUCSIsCatM</a>                        (int code);
+int    <a href="#xmlUCSIsCatMc">xmlUCSIsCatMc</a>                      (int code);
+int    <a href="#xmlUCSIsCatMe">xmlUCSIsCatMe</a>                      (int code);
+int    <a href="#xmlUCSIsCatMn">xmlUCSIsCatMn</a>                      (int code);
+int    <a href="#xmlUCSIsCatN">xmlUCSIsCatN</a>                        (int code);
+int    <a href="#xmlUCSIsCatNd">xmlUCSIsCatNd</a>                      (int code);
 int    <a href="#xmlUCSIsCatNl">xmlUCSIsCatNl</a>                      (int code);
 int    <a href="#xmlUCSIsCatNo">xmlUCSIsCatNo</a>                      (int code);
-int    <a href="#xmlUCSIsYijingHexagramSymbols">xmlUCSIsYijingHexagramSymbols</a>      (int code);
-int    <a href="#xmlUCSIsVariationSelectorsSupplement">xmlUCSIsVariationSelectorsSupplement</a>        (int code);
-int    <a href="#xmlUCSIsBengali">xmlUCSIsBengali</a>                  (int code);
-int    <a href="#xmlUCSIsPrivateUse">xmlUCSIsPrivateUse</a>            (int code);
-int    <a href="#xmlUCSIsMusicalSymbols">xmlUCSIsMusicalSymbols</a>            (int code);
-int    <a href="#xmlUCSIsMiscellaneousSymbols">xmlUCSIsMiscellaneousSymbols</a>        (int code);
-int    <a href="#xmlUCSIsCJKCompatibility">xmlUCSIsCJKCompatibility</a>        (int code);
-int    <a href="#xmlUCSIsAegeanNumbers">xmlUCSIsAegeanNumbers</a>              (int code);
-int    <a href="#xmlUCSIsDevanagari">xmlUCSIsDevanagari</a>            (int code);
-int    <a href="#xmlUCSIsSupplementalArrowsA">xmlUCSIsSupplementalArrowsA</a>  (int code);
-int    <a href="#xmlUCSIsSupplementalArrowsB">xmlUCSIsSupplementalArrowsB</a>  (int code);
-int    <a href="#xmlUCSIsNumberForms">xmlUCSIsNumberForms</a>          (int code);
-int    <a href="#xmlUCSIsSpacingModifierLetters">xmlUCSIsSpacingModifierLetters</a>    (int code);
-int    <a href="#xmlUCSIsOpticalCharacterRecognition">xmlUCSIsOpticalCharacterRecognition</a>  (int code);
+int    <a href="#xmlUCSIsCatP">xmlUCSIsCatP</a>                        (int code);
 int    <a href="#xmlUCSIsCatPc">xmlUCSIsCatPc</a>                      (int code);
-int    <a href="#xmlUCSIsCatPf">xmlUCSIsCatPf</a>                      (int code);
-int    <a href="#xmlUCSIsCyrillicSupplement">xmlUCSIsCyrillicSupplement</a>    (int code);
 int    <a href="#xmlUCSIsCatPd">xmlUCSIsCatPd</a>                      (int code);
+int    <a href="#xmlUCSIsCatPe">xmlUCSIsCatPe</a>                      (int code);
+int    <a href="#xmlUCSIsCatPf">xmlUCSIsCatPf</a>                      (int code);
 int    <a href="#xmlUCSIsCatPi">xmlUCSIsCatPi</a>                      (int code);
 int    <a href="#xmlUCSIsCatPo">xmlUCSIsCatPo</a>                      (int code);
-int    <a href="#xmlUCSIsHighPrivateUseSurrogates">xmlUCSIsHighPrivateUseSurrogates</a>        (int code);
-int    <a href="#xmlUCSIsLatinExtendedAdditional">xmlUCSIsLatinExtendedAdditional</a>  (int code);
 int    <a href="#xmlUCSIsCatPs">xmlUCSIsCatPs</a>                      (int code);
-int    <a href="#xmlUCSIsHighSurrogates">xmlUCSIsHighSurrogates</a>            (int code);
-int    <a href="#xmlUCSIsLao">xmlUCSIsLao</a>                  (int code);
-int    <a href="#xmlUCSIsBraillePatterns">xmlUCSIsBraillePatterns</a>          (int code);
-int    <a href="#xmlUCSIsDeseret">xmlUCSIsDeseret</a>                  (int code);
-int    <a href="#xmlUCSIsEnclosedAlphanumerics">xmlUCSIsEnclosedAlphanumerics</a>      (int code);
-int    <a href="#xmlUCSIsCombiningDiacriticalMarks">xmlUCSIsCombiningDiacriticalMarks</a>      (int code);
-int    <a href="#xmlUCSIsIdeographicDescriptionCharacters">xmlUCSIsIdeographicDescriptionCharacters</a>        (int code);
-int    <a href="#xmlUCSIsPrivateUseArea">xmlUCSIsPrivateUseArea</a>            (int code);
-int    <a href="#xmlUCSIsCat">xmlUCSIsCat</a>                  (int code, <br/>                                         const char * cat);
-int    <a href="#xmlUCSIsCatLu">xmlUCSIsCatLu</a>                      (int code);
-int    <a href="#xmlUCSIsCatLt">xmlUCSIsCatLt</a>                      (int code);
-int    <a href="#xmlUCSIsYiSyllables">xmlUCSIsYiSyllables</a>          (int code);
-int    <a href="#xmlUCSIsShavian">xmlUCSIsShavian</a>                  (int code);
-int    <a href="#xmlUCSIsCatLo">xmlUCSIsCatLo</a>                      (int code);
-int    <a href="#xmlUCSIsCatLm">xmlUCSIsCatLm</a>                      (int code);
-int    <a href="#xmlUCSIsCatLl">xmlUCSIsCatLl</a>                      (int code);
-int    <a href="#xmlUCSIsMiscellaneousTechnical">xmlUCSIsMiscellaneousTechnical</a>    (int code);
-int    <a href="#xmlUCSIsUgaritic">xmlUCSIsUgaritic</a>                (int code);
-int    <a href="#xmlUCSIsCJKCompatibilityIdeographsSupplement">xmlUCSIsCJKCompatibilityIdeographsSupplement</a>        (int code);
-int    <a href="#xmlUCSIsCypriotSyllabary">xmlUCSIsCypriotSyllabary</a>        (int code);
-int    <a href="#xmlUCSIsTamil">xmlUCSIsTamil</a>                      (int code);
-int    <a href="#xmlUCSIsCatC">xmlUCSIsCatC</a>                        (int code);
-int    <a href="#xmlUCSIsCatN">xmlUCSIsCatN</a>                        (int code);
-int    <a href="#xmlUCSIsCatL">xmlUCSIsCatL</a>                        (int code);
-int    <a href="#xmlUCSIsCatM">xmlUCSIsCatM</a>                        (int code);
-int    <a href="#xmlUCSIsUnifiedCanadianAboriginalSyllabics">xmlUCSIsUnifiedCanadianAboriginalSyllabics</a>    (int code);
 int    <a href="#xmlUCSIsCatS">xmlUCSIsCatS</a>                        (int code);
-int    <a href="#xmlUCSIsCatP">xmlUCSIsCatP</a>                        (int code);
-int    <a href="#xmlUCSIsSinhala">xmlUCSIsSinhala</a>                  (int code);
-int    <a href="#xmlUCSIsGeorgian">xmlUCSIsGeorgian</a>                (int code);
+int    <a href="#xmlUCSIsCatSc">xmlUCSIsCatSc</a>                      (int code);
+int    <a href="#xmlUCSIsCatSk">xmlUCSIsCatSk</a>                      (int code);
+int    <a href="#xmlUCSIsCatSm">xmlUCSIsCatSm</a>                      (int code);
+int    <a href="#xmlUCSIsCatSo">xmlUCSIsCatSo</a>                      (int code);
 int    <a href="#xmlUCSIsCatZ">xmlUCSIsCatZ</a>                        (int code);
-int    <a href="#xmlUCSIsIPAExtensions">xmlUCSIsIPAExtensions</a>              (int code);
-int    <a href="#xmlUCSIsKangxiRadicals">xmlUCSIsKangxiRadicals</a>            (int code);
-int    <a href="#xmlUCSIsGreek">xmlUCSIsGreek</a>                      (int code);
-int    <a href="#xmlUCSIsCatPe">xmlUCSIsCatPe</a>                      (int code);
-int    <a href="#xmlUCSIsHanunoo">xmlUCSIsHanunoo</a>                  (int code);
-int    <a href="#xmlUCSIsArmenian">xmlUCSIsArmenian</a>                (int code);
-int    <a href="#xmlUCSIsSupplementaryPrivateUseAreaB">xmlUCSIsSupplementaryPrivateUseAreaB</a>        (int code);
-int    <a href="#xmlUCSIsSupplementaryPrivateUseAreaA">xmlUCSIsSupplementaryPrivateUseAreaA</a>        (int code);
-int    <a href="#xmlUCSIsKatakanaPhoneticExtensions">xmlUCSIsKatakanaPhoneticExtensions</a>    (int code);
-int    <a href="#xmlUCSIsLetterlikeSymbols">xmlUCSIsLetterlikeSymbols</a>      (int code);
-int    <a href="#xmlUCSIsPhoneticExtensions">xmlUCSIsPhoneticExtensions</a>    (int code);
-int    <a href="#xmlUCSIsArabic">xmlUCSIsArabic</a>                    (int code);
-int    <a href="#xmlUCSIsHebrew">xmlUCSIsHebrew</a>                    (int code);
-int    <a href="#xmlUCSIsOldItalic">xmlUCSIsOldItalic</a>              (int code);
-int    <a href="#xmlUCSIsArabicPresentationFormsA">xmlUCSIsArabicPresentationFormsA</a>        (int code);
+int    <a href="#xmlUCSIsCatZl">xmlUCSIsCatZl</a>                      (int code);
 int    <a href="#xmlUCSIsCatZp">xmlUCSIsCatZp</a>                      (int code);
 int    <a href="#xmlUCSIsCatZs">xmlUCSIsCatZs</a>                      (int code);
-int    <a href="#xmlUCSIsArabicPresentationFormsB">xmlUCSIsArabicPresentationFormsB</a>        (int code);
+int    <a href="#xmlUCSIsCherokee">xmlUCSIsCherokee</a>                (int code);
+int    <a href="#xmlUCSIsCombiningDiacriticalMarks">xmlUCSIsCombiningDiacriticalMarks</a>      (int code);
+int    <a href="#xmlUCSIsCombiningDiacriticalMarksforSymbols">xmlUCSIsCombiningDiacriticalMarksforSymbols</a>  (int code);
+int    <a href="#xmlUCSIsCombiningHalfMarks">xmlUCSIsCombiningHalfMarks</a>    (int code);
+int    <a href="#xmlUCSIsCombiningMarksforSymbols">xmlUCSIsCombiningMarksforSymbols</a>        (int code);
+int    <a href="#xmlUCSIsControlPictures">xmlUCSIsControlPictures</a>          (int code);
+int    <a href="#xmlUCSIsCurrencySymbols">xmlUCSIsCurrencySymbols</a>          (int code);
+int    <a href="#xmlUCSIsCypriotSyllabary">xmlUCSIsCypriotSyllabary</a>        (int code);
+int    <a href="#xmlUCSIsCyrillic">xmlUCSIsCyrillic</a>                (int code);
+int    <a href="#xmlUCSIsCyrillicSupplement">xmlUCSIsCyrillicSupplement</a>    (int code);
+int    <a href="#xmlUCSIsDeseret">xmlUCSIsDeseret</a>                  (int code);
+int    <a href="#xmlUCSIsDevanagari">xmlUCSIsDevanagari</a>            (int code);
+int    <a href="#xmlUCSIsDingbats">xmlUCSIsDingbats</a>                (int code);
+int    <a href="#xmlUCSIsEnclosedAlphanumerics">xmlUCSIsEnclosedAlphanumerics</a>      (int code);
+int    <a href="#xmlUCSIsEnclosedCJKLettersandMonths">xmlUCSIsEnclosedCJKLettersandMonths</a>  (int code);
+int    <a href="#xmlUCSIsEthiopic">xmlUCSIsEthiopic</a>                (int code);
+int    <a href="#xmlUCSIsGeneralPunctuation">xmlUCSIsGeneralPunctuation</a>    (int code);
 int    <a href="#xmlUCSIsGeometricShapes">xmlUCSIsGeometricShapes</a>          (int code);
-int    <a href="#xmlUCSIsCatZl">xmlUCSIsCatZl</a>                      (int code);
-int    <a href="#xmlUCSIsTagalog">xmlUCSIsTagalog</a>                  (int code);
-int    <a href="#xmlUCSIsSpecials">xmlUCSIsSpecials</a>                (int code);
+int    <a href="#xmlUCSIsGeorgian">xmlUCSIsGeorgian</a>                (int code);
+int    <a href="#xmlUCSIsGothic">xmlUCSIsGothic</a>                    (int code);
+int    <a href="#xmlUCSIsGreek">xmlUCSIsGreek</a>                      (int code);
+int    <a href="#xmlUCSIsGreekExtended">xmlUCSIsGreekExtended</a>              (int code);
+int    <a href="#xmlUCSIsGreekandCoptic">xmlUCSIsGreekandCoptic</a>            (int code);
 int    <a href="#xmlUCSIsGujarati">xmlUCSIsGujarati</a>                (int code);
-int    <a href="#xmlUCSIsKatakana">xmlUCSIsKatakana</a>                (int code);
+int    <a href="#xmlUCSIsGurmukhi">xmlUCSIsGurmukhi</a>                (int code);
 int    <a href="#xmlUCSIsHalfwidthandFullwidthForms">xmlUCSIsHalfwidthandFullwidthForms</a>    (int code);
-int    <a href="#xmlUCSIsLatinExtendedB">xmlUCSIsLatinExtendedB</a>            (int code);
+int    <a href="#xmlUCSIsHangulCompatibilityJamo">xmlUCSIsHangulCompatibilityJamo</a>  (int code);
+int    <a href="#xmlUCSIsHangulJamo">xmlUCSIsHangulJamo</a>            (int code);
+int    <a href="#xmlUCSIsHangulSyllables">xmlUCSIsHangulSyllables</a>          (int code);
+int    <a href="#xmlUCSIsHanunoo">xmlUCSIsHanunoo</a>                  (int code);
+int    <a href="#xmlUCSIsHebrew">xmlUCSIsHebrew</a>                    (int code);
+int    <a href="#xmlUCSIsHighPrivateUseSurrogates">xmlUCSIsHighPrivateUseSurrogates</a>        (int code);
+int    <a href="#xmlUCSIsHighSurrogates">xmlUCSIsHighSurrogates</a>            (int code);
+int    <a href="#xmlUCSIsHiragana">xmlUCSIsHiragana</a>                (int code);
+int    <a href="#xmlUCSIsIPAExtensions">xmlUCSIsIPAExtensions</a>              (int code);
+int    <a href="#xmlUCSIsIdeographicDescriptionCharacters">xmlUCSIsIdeographicDescriptionCharacters</a>        (int code);
+int    <a href="#xmlUCSIsKanbun">xmlUCSIsKanbun</a>                    (int code);
+int    <a href="#xmlUCSIsKangxiRadicals">xmlUCSIsKangxiRadicals</a>            (int code);
+int    <a href="#xmlUCSIsKannada">xmlUCSIsKannada</a>                  (int code);
+int    <a href="#xmlUCSIsKatakana">xmlUCSIsKatakana</a>                (int code);
+int    <a href="#xmlUCSIsKatakanaPhoneticExtensions">xmlUCSIsKatakanaPhoneticExtensions</a>    (int code);
+int    <a href="#xmlUCSIsKhmer">xmlUCSIsKhmer</a>                      (int code);
+int    <a href="#xmlUCSIsKhmerSymbols">xmlUCSIsKhmerSymbols</a>                (int code);
+int    <a href="#xmlUCSIsLao">xmlUCSIsLao</a>                  (int code);
+int    <a href="#xmlUCSIsLatin1Supplement">xmlUCSIsLatin1Supplement</a>        (int code);
 int    <a href="#xmlUCSIsLatinExtendedA">xmlUCSIsLatinExtendedA</a>            (int code);
-int    <a href="#xmlUCSIsBuhid">xmlUCSIsBuhid</a>                      (int code);
+int    <a href="#xmlUCSIsLatinExtendedAdditional">xmlUCSIsLatinExtendedAdditional</a>  (int code);
+int    <a href="#xmlUCSIsLatinExtendedB">xmlUCSIsLatinExtendedB</a>            (int code);
+int    <a href="#xmlUCSIsLetterlikeSymbols">xmlUCSIsLetterlikeSymbols</a>      (int code);
+int    <a href="#xmlUCSIsLimbu">xmlUCSIsLimbu</a>                      (int code);
+int    <a href="#xmlUCSIsLinearBIdeograms">xmlUCSIsLinearBIdeograms</a>        (int code);
+int    <a href="#xmlUCSIsLinearBSyllabary">xmlUCSIsLinearBSyllabary</a>        (int code);
+int    <a href="#xmlUCSIsLowSurrogates">xmlUCSIsLowSurrogates</a>              (int code);
+int    <a href="#xmlUCSIsMalayalam">xmlUCSIsMalayalam</a>              (int code);
+int    <a href="#xmlUCSIsMathematicalAlphanumericSymbols">xmlUCSIsMathematicalAlphanumericSymbols</a>  (int code);
+int    <a href="#xmlUCSIsMathematicalOperators">xmlUCSIsMathematicalOperators</a>      (int code);
+int    <a href="#xmlUCSIsMiscellaneousMathematicalSymbolsA">xmlUCSIsMiscellaneousMathematicalSymbolsA</a>      (int code);
+int    <a href="#xmlUCSIsMiscellaneousMathematicalSymbolsB">xmlUCSIsMiscellaneousMathematicalSymbolsB</a>      (int code);
+int    <a href="#xmlUCSIsMiscellaneousSymbols">xmlUCSIsMiscellaneousSymbols</a>        (int code);
 int    <a href="#xmlUCSIsMiscellaneousSymbolsandArrows">xmlUCSIsMiscellaneousSymbolsandArrows</a>      (int code);
+int    <a href="#xmlUCSIsMiscellaneousTechnical">xmlUCSIsMiscellaneousTechnical</a>    (int code);
+int    <a href="#xmlUCSIsMongolian">xmlUCSIsMongolian</a>              (int code);
+int    <a href="#xmlUCSIsMusicalSymbols">xmlUCSIsMusicalSymbols</a>            (int code);
+int    <a href="#xmlUCSIsMyanmar">xmlUCSIsMyanmar</a>                  (int code);
+int    <a href="#xmlUCSIsNumberForms">xmlUCSIsNumberForms</a>          (int code);
+int    <a href="#xmlUCSIsOgham">xmlUCSIsOgham</a>                      (int code);
+int    <a href="#xmlUCSIsOldItalic">xmlUCSIsOldItalic</a>              (int code);
+int    <a href="#xmlUCSIsOpticalCharacterRecognition">xmlUCSIsOpticalCharacterRecognition</a>  (int code);
+int    <a href="#xmlUCSIsOriya">xmlUCSIsOriya</a>                      (int code);
+int    <a href="#xmlUCSIsOsmanya">xmlUCSIsOsmanya</a>                  (int code);
+int    <a href="#xmlUCSIsPhoneticExtensions">xmlUCSIsPhoneticExtensions</a>    (int code);
+int    <a href="#xmlUCSIsPrivateUse">xmlUCSIsPrivateUse</a>            (int code);
+int    <a href="#xmlUCSIsPrivateUseArea">xmlUCSIsPrivateUseArea</a>            (int code);
+int    <a href="#xmlUCSIsRunic">xmlUCSIsRunic</a>                      (int code);
+int    <a href="#xmlUCSIsShavian">xmlUCSIsShavian</a>                  (int code);
+int    <a href="#xmlUCSIsSinhala">xmlUCSIsSinhala</a>                  (int code);
+int    <a href="#xmlUCSIsSmallFormVariants">xmlUCSIsSmallFormVariants</a>      (int code);
+int    <a href="#xmlUCSIsSpacingModifierLetters">xmlUCSIsSpacingModifierLetters</a>    (int code);
+int    <a href="#xmlUCSIsSpecials">xmlUCSIsSpecials</a>                (int code);
+int    <a href="#xmlUCSIsSuperscriptsandSubscripts">xmlUCSIsSuperscriptsandSubscripts</a>      (int code);
+int    <a href="#xmlUCSIsSupplementalArrowsA">xmlUCSIsSupplementalArrowsA</a>  (int code);
+int    <a href="#xmlUCSIsSupplementalArrowsB">xmlUCSIsSupplementalArrowsB</a>  (int code);
+int    <a href="#xmlUCSIsSupplementalMathematicalOperators">xmlUCSIsSupplementalMathematicalOperators</a>      (int code);
+int    <a href="#xmlUCSIsSupplementaryPrivateUseAreaA">xmlUCSIsSupplementaryPrivateUseAreaA</a>        (int code);
+int    <a href="#xmlUCSIsSupplementaryPrivateUseAreaB">xmlUCSIsSupplementaryPrivateUseAreaB</a>        (int code);
+int    <a href="#xmlUCSIsSyriac">xmlUCSIsSyriac</a>                    (int code);
+int    <a href="#xmlUCSIsTagalog">xmlUCSIsTagalog</a>                  (int code);
+int    <a href="#xmlUCSIsTagbanwa">xmlUCSIsTagbanwa</a>                (int code);
+int    <a href="#xmlUCSIsTags">xmlUCSIsTags</a>                        (int code);
 int    <a href="#xmlUCSIsTaiLe">xmlUCSIsTaiLe</a>                      (int code);
-int    <a href="#xmlUCSIsCJKSymbolsandPunctuation">xmlUCSIsCJKSymbolsandPunctuation</a>        (int code);
 int    <a href="#xmlUCSIsTaiXuanJingSymbols">xmlUCSIsTaiXuanJingSymbols</a>    (int code);
-int    <a href="#xmlUCSIsGurmukhi">xmlUCSIsGurmukhi</a>                (int code);
-int    <a href="#xmlUCSIsMathematicalOperators">xmlUCSIsMathematicalOperators</a>      (int code);
-int    <a href="#xmlUCSIsAlphabeticPresentationForms">xmlUCSIsAlphabeticPresentationForms</a>  (int code);
-int    <a href="#xmlUCSIsCurrencySymbols">xmlUCSIsCurrencySymbols</a>          (int code);
-int    <a href="#xmlUCSIsSupplementalMathematicalOperators">xmlUCSIsSupplementalMathematicalOperators</a>      (int code);
-int    <a href="#xmlUCSIsCJKUnifiedIdeographsExtensionA">xmlUCSIsCJKUnifiedIdeographsExtensionA</a>    (int code);
-int    <a href="#xmlUCSIsKanbun">xmlUCSIsKanbun</a>                    (int code);
-int    <a href="#xmlUCSIsCJKUnifiedIdeographsExtensionB">xmlUCSIsCJKUnifiedIdeographsExtensionB</a>    (int code);
+int    <a href="#xmlUCSIsTamil">xmlUCSIsTamil</a>                      (int code);
+int    <a href="#xmlUCSIsTelugu">xmlUCSIsTelugu</a>                    (int code);
+int    <a href="#xmlUCSIsThaana">xmlUCSIsThaana</a>                    (int code);
 int    <a href="#xmlUCSIsThai">xmlUCSIsThai</a>                        (int code);
-int    <a href="#xmlUCSIsRunic">xmlUCSIsRunic</a>                      (int code);
-int    <a href="#xmlUCSIsCatNd">xmlUCSIsCatNd</a>                      (int code);
-int    <a href="#xmlUCSIsLatin1Supplement">xmlUCSIsLatin1Supplement</a>        (int code);
-int    <a href="#xmlUCSIsLinearBSyllabary">xmlUCSIsLinearBSyllabary</a>        (int code);
-int    <a href="#xmlUCSIsHiragana">xmlUCSIsHiragana</a>                (int code);
-int    <a href="#xmlUCSIsMiscellaneousMathematicalSymbolsB">xmlUCSIsMiscellaneousMathematicalSymbolsB</a>      (int code);
-int    <a href="#xmlUCSIsMiscellaneousMathematicalSymbolsA">xmlUCSIsMiscellaneousMathematicalSymbolsA</a>      (int code);
-int    <a href="#xmlUCSIsCatMn">xmlUCSIsCatMn</a>                      (int code);
+int    <a href="#xmlUCSIsTibetan">xmlUCSIsTibetan</a>                  (int code);
+int    <a href="#xmlUCSIsUgaritic">xmlUCSIsUgaritic</a>                (int code);
+int    <a href="#xmlUCSIsUnifiedCanadianAboriginalSyllabics">xmlUCSIsUnifiedCanadianAboriginalSyllabics</a>    (int code);
 int    <a href="#xmlUCSIsVariationSelectors">xmlUCSIsVariationSelectors</a>    (int code);
-int    <a href="#xmlUCSIsCatMc">xmlUCSIsCatMc</a>                      (int code);
-int    <a href="#xmlUCSIsCatMe">xmlUCSIsCatMe</a>                      (int code);
+int    <a href="#xmlUCSIsVariationSelectorsSupplement">xmlUCSIsVariationSelectorsSupplement</a>        (int code);
+int    <a href="#xmlUCSIsYiRadicals">xmlUCSIsYiRadicals</a>            (int code);
+int    <a href="#xmlUCSIsYiSyllables">xmlUCSIsYiSyllables</a>          (int code);
+int    <a href="#xmlUCSIsYijingHexagramSymbols">xmlUCSIsYijingHexagramSymbols</a>      (int code);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsAegeanNumbers"></a>xmlUCSIsAegeanNumbers ()</h3>
+<pre class="programlisting">int        xmlUCSIsAegeanNumbers           (int code)<br>
+</pre>
+<p>Check whether the character is part of AegeanNumbers UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsAlphabeticPresentationForms"></a>xmlUCSIsAlphabeticPresentationForms ()</h3>
+<pre class="programlisting">int        xmlUCSIsAlphabeticPresentationForms     (int code)<br>
+</pre>
+<p>Check whether the character is part of AlphabeticPresentationForms UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsArabic"></a>xmlUCSIsArabic ()</h3>
+<pre class="programlisting">int        xmlUCSIsArabic                  (int code)<br>
+</pre>
+<p>Check whether the character is part of Arabic UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsArabicPresentationFormsA"></a>xmlUCSIsArabicPresentationFormsA ()</h3>
+<pre class="programlisting">int        xmlUCSIsArabicPresentationFormsA        (int code)<br>
+</pre>
+<p>Check whether the character is part of ArabicPresentationForms-A UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsArabicPresentationFormsB"></a>xmlUCSIsArabicPresentationFormsB ()</h3>
+<pre class="programlisting">int        xmlUCSIsArabicPresentationFormsB        (int code)<br>
+</pre>
+<p>Check whether the character is part of ArabicPresentationForms-B UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsArmenian"></a>xmlUCSIsArmenian ()</h3>
+<pre class="programlisting">int        xmlUCSIsArmenian                (int code)<br>
+</pre>
+<p>Check whether the character is part of Armenian UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsArrows"></a>xmlUCSIsArrows ()</h3>
+<pre class="programlisting">int        xmlUCSIsArrows                  (int code)<br>
+</pre>
+<p>Check whether the character is part of Arrows UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsBasicLatin"></a>xmlUCSIsBasicLatin ()</h3>
+<pre class="programlisting">int        xmlUCSIsBasicLatin              (int code)<br>
+</pre>
+<p>Check whether the character is part of BasicLatin UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsBengali"></a>xmlUCSIsBengali ()</h3>
+<pre class="programlisting">int        xmlUCSIsBengali                 (int code)<br>
+</pre>
+<p>Check whether the character is part of Bengali UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsBlock"></a>xmlUCSIsBlock ()</h3>
+<pre class="programlisting">int        xmlUCSIsBlock                   (int code, <br>                                  const char * block)<br>
+</pre>
+<p>Check whether the character is part of the UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>block</tt></i>:</span></td>
+<td>UCS block name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true, 0 if false and -1 on unknown block</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsBlockElements"></a>xmlUCSIsBlockElements ()</h3>
+<pre class="programlisting">int        xmlUCSIsBlockElements           (int code)<br>
+</pre>
+<p>Check whether the character is part of BlockElements UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsBopomofo"></a>xmlUCSIsBopomofo ()</h3>
+<pre class="programlisting">int        xmlUCSIsBopomofo                (int code)<br>
+</pre>
+<p>Check whether the character is part of Bopomofo UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsBopomofoExtended"></a>xmlUCSIsBopomofoExtended ()</h3>
+<pre class="programlisting">int        xmlUCSIsBopomofoExtended        (int code)<br>
+</pre>
+<p>Check whether the character is part of BopomofoExtended UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsBoxDrawing"></a>xmlUCSIsBoxDrawing ()</h3>
+<pre class="programlisting">int        xmlUCSIsBoxDrawing              (int code)<br>
+</pre>
+<p>Check whether the character is part of BoxDrawing UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsBraillePatterns"></a>xmlUCSIsBraillePatterns ()</h3>
+<pre class="programlisting">int        xmlUCSIsBraillePatterns         (int code)<br>
+</pre>
+<p>Check whether the character is part of BraillePatterns UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsBuhid"></a>xmlUCSIsBuhid ()</h3>
+<pre class="programlisting">int        xmlUCSIsBuhid                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Buhid UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsByzantineMusicalSymbols"></a>xmlUCSIsByzantineMusicalSymbols ()</h3>
+<pre class="programlisting">int        xmlUCSIsByzantineMusicalSymbols (int code)<br>
+</pre>
+<p>Check whether the character is part of ByzantineMusicalSymbols UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCJKCompatibility"></a>xmlUCSIsCJKCompatibility ()</h3>
+<pre class="programlisting">int        xmlUCSIsCJKCompatibility        (int code)<br>
+</pre>
+<p>Check whether the character is part of CJKCompatibility UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCJKCompatibilityForms"></a>xmlUCSIsCJKCompatibilityForms ()</h3>
+<pre class="programlisting">int        xmlUCSIsCJKCompatibilityForms   (int code)<br>
+</pre>
+<p>Check whether the character is part of CJKCompatibilityForms UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCJKCompatibilityIdeographs"></a>xmlUCSIsCJKCompatibilityIdeographs ()</h3>
+<pre class="programlisting">int        xmlUCSIsCJKCompatibilityIdeographs      (int code)<br>
+</pre>
+<p>Check whether the character is part of CJKCompatibilityIdeographs UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCJKCompatibilityIdeographsSupplement"></a>xmlUCSIsCJKCompatibilityIdeographsSupplement ()</h3>
+<pre class="programlisting">int        xmlUCSIsCJKCompatibilityIdeographsSupplement    (int code)<br>
+</pre>
+<p>Check whether the character is part of CJKCompatibilityIdeographsSupplement UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCJKRadicalsSupplement"></a>xmlUCSIsCJKRadicalsSupplement ()</h3>
+<pre class="programlisting">int        xmlUCSIsCJKRadicalsSupplement   (int code)<br>
+</pre>
+<p>Check whether the character is part of CJKRadicalsSupplement UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCJKSymbolsandPunctuation"></a>xmlUCSIsCJKSymbolsandPunctuation ()</h3>
+<pre class="programlisting">int        xmlUCSIsCJKSymbolsandPunctuation        (int code)<br>
+</pre>
+<p>Check whether the character is part of CJKSymbolsandPunctuation UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCJKUnifiedIdeographs"></a>xmlUCSIsCJKUnifiedIdeographs ()</h3>
+<pre class="programlisting">int        xmlUCSIsCJKUnifiedIdeographs    (int code)<br>
+</pre>
+<p>Check whether the character is part of CJKUnifiedIdeographs UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCJKUnifiedIdeographsExtensionA"></a>xmlUCSIsCJKUnifiedIdeographsExtensionA ()</h3>
+<pre class="programlisting">int        xmlUCSIsCJKUnifiedIdeographsExtensionA  (int code)<br>
+</pre>
+<p>Check whether the character is part of CJKUnifiedIdeographsExtensionA UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCJKUnifiedIdeographsExtensionB"></a>xmlUCSIsCJKUnifiedIdeographsExtensionB ()</h3>
+<pre class="programlisting">int        xmlUCSIsCJKUnifiedIdeographsExtensionB  (int code)<br>
+</pre>
+<p>Check whether the character is part of CJKUnifiedIdeographsExtensionB UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCat"></a>xmlUCSIsCat ()</h3>
+<pre class="programlisting">int        xmlUCSIsCat                     (int code, <br>                                  const char * cat)<br>
+</pre>
+<p>Check whether the character is part of the UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cat</tt></i>:</span></td>
+<td>UCS Category name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true, 0 if false and -1 on unknown category</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatC"></a>xmlUCSIsCatC ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatC                    (int code)<br>
+</pre>
+<p>Check whether the character is part of C UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatCc"></a>xmlUCSIsCatCc ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatCc                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Cc UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatCf"></a>xmlUCSIsCatCf ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatCf                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Cf UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatCo"></a>xmlUCSIsCatCo ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatCo                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Co UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatCs"></a>xmlUCSIsCatCs ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatCs                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Cs UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatL"></a>xmlUCSIsCatL ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatL                    (int code)<br>
+</pre>
+<p>Check whether the character is part of L UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatLl"></a>xmlUCSIsCatLl ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatLl                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Ll UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatLm"></a>xmlUCSIsCatLm ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatLm                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Lm UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatLo"></a>xmlUCSIsCatLo ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatLo                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Lo UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatLt"></a>xmlUCSIsCatLt ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatLt                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Lt UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatLu"></a>xmlUCSIsCatLu ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatLu                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Lu UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatM"></a>xmlUCSIsCatM ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatM                    (int code)<br>
+</pre>
+<p>Check whether the character is part of M UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatMc"></a>xmlUCSIsCatMc ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatMc                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Mc UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatMe"></a>xmlUCSIsCatMe ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatMe                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Me UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatMn"></a>xmlUCSIsCatMn ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatMn                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Mn UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatN"></a>xmlUCSIsCatN ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatN                    (int code)<br>
+</pre>
+<p>Check whether the character is part of N UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatNd"></a>xmlUCSIsCatNd ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatNd                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Nd UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatNl"></a>xmlUCSIsCatNl ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatNl                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Nl UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatNo"></a>xmlUCSIsCatNo ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatNo                   (int code)<br>
+</pre>
+<p>Check whether the character is part of No UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatP"></a>xmlUCSIsCatP ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatP                    (int code)<br>
+</pre>
+<p>Check whether the character is part of P UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatPc"></a>xmlUCSIsCatPc ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatPc                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Pc UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatPd"></a>xmlUCSIsCatPd ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatPd                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Pd UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatPe"></a>xmlUCSIsCatPe ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatPe                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Pe UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatPf"></a>xmlUCSIsCatPf ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatPf                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Pf UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatPi"></a>xmlUCSIsCatPi ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatPi                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Pi UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatPo"></a>xmlUCSIsCatPo ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatPo                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Po UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatPs"></a>xmlUCSIsCatPs ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatPs                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Ps UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatS"></a>xmlUCSIsCatS ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatS                    (int code)<br>
+</pre>
+<p>Check whether the character is part of S UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatSc"></a>xmlUCSIsCatSc ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatSc                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Sc UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatSk"></a>xmlUCSIsCatSk ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatSk                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Sk UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatSm"></a>xmlUCSIsCatSm ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatSm                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Sm UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatSo"></a>xmlUCSIsCatSo ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatSo                   (int code)<br>
+</pre>
+<p>Check whether the character is part of So UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatZ"></a>xmlUCSIsCatZ ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatZ                    (int code)<br>
+</pre>
+<p>Check whether the character is part of Z UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatZl"></a>xmlUCSIsCatZl ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatZl                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Zl UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatZp"></a>xmlUCSIsCatZp ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatZp                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Zp UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCatZs"></a>xmlUCSIsCatZs ()</h3>
+<pre class="programlisting">int        xmlUCSIsCatZs                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Zs UCS Category</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCherokee"></a>xmlUCSIsCherokee ()</h3>
+<pre class="programlisting">int        xmlUCSIsCherokee                (int code)<br>
+</pre>
+<p>Check whether the character is part of Cherokee UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCombiningDiacriticalMarks"></a>xmlUCSIsCombiningDiacriticalMarks ()</h3>
+<pre class="programlisting">int        xmlUCSIsCombiningDiacriticalMarks       (int code)<br>
+</pre>
+<p>Check whether the character is part of CombiningDiacriticalMarks UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCombiningDiacriticalMarksforSymbols"></a>xmlUCSIsCombiningDiacriticalMarksforSymbols ()</h3>
+<pre class="programlisting">int        xmlUCSIsCombiningDiacriticalMarksforSymbols     (int code)<br>
+</pre>
+<p>Check whether the character is part of CombiningDiacriticalMarksforSymbols UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCombiningHalfMarks"></a>xmlUCSIsCombiningHalfMarks ()</h3>
+<pre class="programlisting">int        xmlUCSIsCombiningHalfMarks      (int code)<br>
+</pre>
+<p>Check whether the character is part of CombiningHalfMarks UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCombiningMarksforSymbols"></a>xmlUCSIsCombiningMarksforSymbols ()</h3>
+<pre class="programlisting">int        xmlUCSIsCombiningMarksforSymbols        (int code)<br>
+</pre>
+<p>Check whether the character is part of CombiningMarksforSymbols UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsControlPictures"></a>xmlUCSIsControlPictures ()</h3>
+<pre class="programlisting">int        xmlUCSIsControlPictures         (int code)<br>
+</pre>
+<p>Check whether the character is part of ControlPictures UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCurrencySymbols"></a>xmlUCSIsCurrencySymbols ()</h3>
+<pre class="programlisting">int        xmlUCSIsCurrencySymbols         (int code)<br>
+</pre>
+<p>Check whether the character is part of CurrencySymbols UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCypriotSyllabary"></a>xmlUCSIsCypriotSyllabary ()</h3>
+<pre class="programlisting">int        xmlUCSIsCypriotSyllabary        (int code)<br>
+</pre>
+<p>Check whether the character is part of CypriotSyllabary UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCyrillic"></a>xmlUCSIsCyrillic ()</h3>
+<pre class="programlisting">int        xmlUCSIsCyrillic                (int code)<br>
+</pre>
+<p>Check whether the character is part of Cyrillic UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsCyrillicSupplement"></a>xmlUCSIsCyrillicSupplement ()</h3>
+<pre class="programlisting">int        xmlUCSIsCyrillicSupplement      (int code)<br>
+</pre>
+<p>Check whether the character is part of CyrillicSupplement UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsDeseret"></a>xmlUCSIsDeseret ()</h3>
+<pre class="programlisting">int        xmlUCSIsDeseret                 (int code)<br>
+</pre>
+<p>Check whether the character is part of Deseret UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsDevanagari"></a>xmlUCSIsDevanagari ()</h3>
+<pre class="programlisting">int        xmlUCSIsDevanagari              (int code)<br>
+</pre>
+<p>Check whether the character is part of Devanagari UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsDingbats"></a>xmlUCSIsDingbats ()</h3>
+<pre class="programlisting">int        xmlUCSIsDingbats                (int code)<br>
+</pre>
+<p>Check whether the character is part of Dingbats UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsEnclosedAlphanumerics"></a>xmlUCSIsEnclosedAlphanumerics ()</h3>
+<pre class="programlisting">int        xmlUCSIsEnclosedAlphanumerics   (int code)<br>
+</pre>
+<p>Check whether the character is part of EnclosedAlphanumerics UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsEnclosedCJKLettersandMonths"></a>xmlUCSIsEnclosedCJKLettersandMonths ()</h3>
+<pre class="programlisting">int        xmlUCSIsEnclosedCJKLettersandMonths     (int code)<br>
+</pre>
+<p>Check whether the character is part of EnclosedCJKLettersandMonths UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsEthiopic"></a>xmlUCSIsEthiopic ()</h3>
+<pre class="programlisting">int        xmlUCSIsEthiopic                (int code)<br>
+</pre>
+<p>Check whether the character is part of Ethiopic UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsGeneralPunctuation"></a>xmlUCSIsGeneralPunctuation ()</h3>
+<pre class="programlisting">int        xmlUCSIsGeneralPunctuation      (int code)<br>
+</pre>
+<p>Check whether the character is part of GeneralPunctuation UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsGeometricShapes"></a>xmlUCSIsGeometricShapes ()</h3>
+<pre class="programlisting">int        xmlUCSIsGeometricShapes         (int code)<br>
+</pre>
+<p>Check whether the character is part of GeometricShapes UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsGeorgian"></a>xmlUCSIsGeorgian ()</h3>
+<pre class="programlisting">int        xmlUCSIsGeorgian                (int code)<br>
+</pre>
+<p>Check whether the character is part of Georgian UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsGothic"></a>xmlUCSIsGothic ()</h3>
+<pre class="programlisting">int        xmlUCSIsGothic                  (int code)<br>
+</pre>
+<p>Check whether the character is part of Gothic UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsGreek"></a>xmlUCSIsGreek ()</h3>
+<pre class="programlisting">int        xmlUCSIsGreek                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Greek UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsGreekExtended"></a>xmlUCSIsGreekExtended ()</h3>
+<pre class="programlisting">int        xmlUCSIsGreekExtended           (int code)<br>
+</pre>
+<p>Check whether the character is part of GreekExtended UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsGreekandCoptic"></a>xmlUCSIsGreekandCoptic ()</h3>
+<pre class="programlisting">int        xmlUCSIsGreekandCoptic          (int code)<br>
+</pre>
+<p>Check whether the character is part of GreekandCoptic UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsGujarati"></a>xmlUCSIsGujarati ()</h3>
+<pre class="programlisting">int        xmlUCSIsGujarati                (int code)<br>
+</pre>
+<p>Check whether the character is part of Gujarati UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsGurmukhi"></a>xmlUCSIsGurmukhi ()</h3>
+<pre class="programlisting">int        xmlUCSIsGurmukhi                (int code)<br>
+</pre>
+<p>Check whether the character is part of Gurmukhi UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsHalfwidthandFullwidthForms"></a>xmlUCSIsHalfwidthandFullwidthForms ()</h3>
+<pre class="programlisting">int        xmlUCSIsHalfwidthandFullwidthForms      (int code)<br>
+</pre>
+<p>Check whether the character is part of HalfwidthandFullwidthForms UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsHangulCompatibilityJamo"></a>xmlUCSIsHangulCompatibilityJamo ()</h3>
+<pre class="programlisting">int        xmlUCSIsHangulCompatibilityJamo (int code)<br>
+</pre>
+<p>Check whether the character is part of HangulCompatibilityJamo UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsHangulJamo"></a>xmlUCSIsHangulJamo ()</h3>
+<pre class="programlisting">int        xmlUCSIsHangulJamo              (int code)<br>
+</pre>
+<p>Check whether the character is part of HangulJamo UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsHangulSyllables"></a>xmlUCSIsHangulSyllables ()</h3>
+<pre class="programlisting">int        xmlUCSIsHangulSyllables         (int code)<br>
+</pre>
+<p>Check whether the character is part of HangulSyllables UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsHanunoo"></a>xmlUCSIsHanunoo ()</h3>
+<pre class="programlisting">int        xmlUCSIsHanunoo                 (int code)<br>
+</pre>
+<p>Check whether the character is part of Hanunoo UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsHebrew"></a>xmlUCSIsHebrew ()</h3>
+<pre class="programlisting">int        xmlUCSIsHebrew                  (int code)<br>
+</pre>
+<p>Check whether the character is part of Hebrew UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsHighPrivateUseSurrogates"></a>xmlUCSIsHighPrivateUseSurrogates ()</h3>
+<pre class="programlisting">int        xmlUCSIsHighPrivateUseSurrogates        (int code)<br>
+</pre>
+<p>Check whether the character is part of HighPrivateUseSurrogates UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsHighSurrogates"></a>xmlUCSIsHighSurrogates ()</h3>
+<pre class="programlisting">int        xmlUCSIsHighSurrogates          (int code)<br>
+</pre>
+<p>Check whether the character is part of HighSurrogates UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsHiragana"></a>xmlUCSIsHiragana ()</h3>
+<pre class="programlisting">int        xmlUCSIsHiragana                (int code)<br>
+</pre>
+<p>Check whether the character is part of Hiragana UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsIPAExtensions"></a>xmlUCSIsIPAExtensions ()</h3>
+<pre class="programlisting">int        xmlUCSIsIPAExtensions           (int code)<br>
+</pre>
+<p>Check whether the character is part of IPAExtensions UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsIdeographicDescriptionCharacters"></a>xmlUCSIsIdeographicDescriptionCharacters ()</h3>
+<pre class="programlisting">int        xmlUCSIsIdeographicDescriptionCharacters        (int code)<br>
+</pre>
+<p>Check whether the character is part of IdeographicDescriptionCharacters UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsKanbun"></a>xmlUCSIsKanbun ()</h3>
+<pre class="programlisting">int        xmlUCSIsKanbun                  (int code)<br>
+</pre>
+<p>Check whether the character is part of Kanbun UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsKangxiRadicals"></a>xmlUCSIsKangxiRadicals ()</h3>
+<pre class="programlisting">int        xmlUCSIsKangxiRadicals          (int code)<br>
+</pre>
+<p>Check whether the character is part of KangxiRadicals UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsKannada"></a>xmlUCSIsKannada ()</h3>
+<pre class="programlisting">int        xmlUCSIsKannada                 (int code)<br>
+</pre>
+<p>Check whether the character is part of Kannada UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsKatakana"></a>xmlUCSIsKatakana ()</h3>
+<pre class="programlisting">int        xmlUCSIsKatakana                (int code)<br>
+</pre>
+<p>Check whether the character is part of Katakana UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsKatakanaPhoneticExtensions"></a>xmlUCSIsKatakanaPhoneticExtensions ()</h3>
+<pre class="programlisting">int        xmlUCSIsKatakanaPhoneticExtensions      (int code)<br>
+</pre>
+<p>Check whether the character is part of KatakanaPhoneticExtensions UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsKhmer"></a>xmlUCSIsKhmer ()</h3>
+<pre class="programlisting">int        xmlUCSIsKhmer                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Khmer UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsKhmerSymbols"></a>xmlUCSIsKhmerSymbols ()</h3>
+<pre class="programlisting">int        xmlUCSIsKhmerSymbols            (int code)<br>
+</pre>
+<p>Check whether the character is part of KhmerSymbols UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsLao"></a>xmlUCSIsLao ()</h3>
+<pre class="programlisting">int        xmlUCSIsLao                     (int code)<br>
+</pre>
+<p>Check whether the character is part of Lao UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsLatin1Supplement"></a>xmlUCSIsLatin1Supplement ()</h3>
+<pre class="programlisting">int        xmlUCSIsLatin1Supplement        (int code)<br>
+</pre>
+<p>Check whether the character is part of Latin-1Supplement UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsLatinExtendedA"></a>xmlUCSIsLatinExtendedA ()</h3>
+<pre class="programlisting">int        xmlUCSIsLatinExtendedA          (int code)<br>
+</pre>
+<p>Check whether the character is part of LatinExtended-A UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsLatinExtendedAdditional"></a>xmlUCSIsLatinExtendedAdditional ()</h3>
+<pre class="programlisting">int        xmlUCSIsLatinExtendedAdditional (int code)<br>
+</pre>
+<p>Check whether the character is part of LatinExtendedAdditional UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsLatinExtendedB"></a>xmlUCSIsLatinExtendedB ()</h3>
+<pre class="programlisting">int        xmlUCSIsLatinExtendedB          (int code)<br>
+</pre>
+<p>Check whether the character is part of LatinExtended-B UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsLetterlikeSymbols"></a>xmlUCSIsLetterlikeSymbols ()</h3>
+<pre class="programlisting">int        xmlUCSIsLetterlikeSymbols       (int code)<br>
+</pre>
+<p>Check whether the character is part of LetterlikeSymbols UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsLimbu"></a>xmlUCSIsLimbu ()</h3>
+<pre class="programlisting">int        xmlUCSIsLimbu                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Limbu UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsLinearBIdeograms"></a>xmlUCSIsLinearBIdeograms ()</h3>
+<pre class="programlisting">int        xmlUCSIsLinearBIdeograms        (int code)<br>
+</pre>
+<p>Check whether the character is part of LinearBIdeograms UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsLinearBSyllabary"></a>xmlUCSIsLinearBSyllabary ()</h3>
+<pre class="programlisting">int        xmlUCSIsLinearBSyllabary        (int code)<br>
+</pre>
+<p>Check whether the character is part of LinearBSyllabary UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsLowSurrogates"></a>xmlUCSIsLowSurrogates ()</h3>
+<pre class="programlisting">int        xmlUCSIsLowSurrogates           (int code)<br>
+</pre>
+<p>Check whether the character is part of LowSurrogates UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsMalayalam"></a>xmlUCSIsMalayalam ()</h3>
+<pre class="programlisting">int        xmlUCSIsMalayalam               (int code)<br>
+</pre>
+<p>Check whether the character is part of Malayalam UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsMathematicalAlphanumericSymbols"></a>xmlUCSIsMathematicalAlphanumericSymbols ()</h3>
+<pre class="programlisting">int        xmlUCSIsMathematicalAlphanumericSymbols (int code)<br>
+</pre>
+<p>Check whether the character is part of MathematicalAlphanumericSymbols UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsMathematicalOperators"></a>xmlUCSIsMathematicalOperators ()</h3>
+<pre class="programlisting">int        xmlUCSIsMathematicalOperators   (int code)<br>
+</pre>
+<p>Check whether the character is part of MathematicalOperators UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsMiscellaneousMathematicalSymbolsA"></a>xmlUCSIsMiscellaneousMathematicalSymbolsA ()</h3>
+<pre class="programlisting">int        xmlUCSIsMiscellaneousMathematicalSymbolsA       (int code)<br>
+</pre>
+<p>Check whether the character is part of MiscellaneousMathematicalSymbols-A UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsMiscellaneousMathematicalSymbolsB"></a>xmlUCSIsMiscellaneousMathematicalSymbolsB ()</h3>
+<pre class="programlisting">int        xmlUCSIsMiscellaneousMathematicalSymbolsB       (int code)<br>
+</pre>
+<p>Check whether the character is part of MiscellaneousMathematicalSymbols-B UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsMiscellaneousSymbols"></a>xmlUCSIsMiscellaneousSymbols ()</h3>
+<pre class="programlisting">int        xmlUCSIsMiscellaneousSymbols    (int code)<br>
+</pre>
+<p>Check whether the character is part of MiscellaneousSymbols UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsMiscellaneousSymbolsandArrows"></a>xmlUCSIsMiscellaneousSymbolsandArrows ()</h3>
+<pre class="programlisting">int        xmlUCSIsMiscellaneousSymbolsandArrows   (int code)<br>
+</pre>
+<p>Check whether the character is part of MiscellaneousSymbolsandArrows UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsMiscellaneousTechnical"></a>xmlUCSIsMiscellaneousTechnical ()</h3>
+<pre class="programlisting">int        xmlUCSIsMiscellaneousTechnical  (int code)<br>
+</pre>
+<p>Check whether the character is part of MiscellaneousTechnical UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsMongolian"></a>xmlUCSIsMongolian ()</h3>
+<pre class="programlisting">int        xmlUCSIsMongolian               (int code)<br>
+</pre>
+<p>Check whether the character is part of Mongolian UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsMusicalSymbols"></a>xmlUCSIsMusicalSymbols ()</h3>
+<pre class="programlisting">int        xmlUCSIsMusicalSymbols          (int code)<br>
+</pre>
+<p>Check whether the character is part of MusicalSymbols UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsMyanmar"></a>xmlUCSIsMyanmar ()</h3>
+<pre class="programlisting">int        xmlUCSIsMyanmar                 (int code)<br>
+</pre>
+<p>Check whether the character is part of Myanmar UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsNumberForms"></a>xmlUCSIsNumberForms ()</h3>
+<pre class="programlisting">int        xmlUCSIsNumberForms             (int code)<br>
+</pre>
+<p>Check whether the character is part of NumberForms UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsOgham"></a>xmlUCSIsOgham ()</h3>
+<pre class="programlisting">int        xmlUCSIsOgham                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Ogham UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsOldItalic"></a>xmlUCSIsOldItalic ()</h3>
+<pre class="programlisting">int        xmlUCSIsOldItalic               (int code)<br>
+</pre>
+<p>Check whether the character is part of OldItalic UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsOpticalCharacterRecognition"></a>xmlUCSIsOpticalCharacterRecognition ()</h3>
+<pre class="programlisting">int        xmlUCSIsOpticalCharacterRecognition     (int code)<br>
+</pre>
+<p>Check whether the character is part of OpticalCharacterRecognition UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsOriya"></a>xmlUCSIsOriya ()</h3>
+<pre class="programlisting">int        xmlUCSIsOriya                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Oriya UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsOsmanya"></a>xmlUCSIsOsmanya ()</h3>
+<pre class="programlisting">int        xmlUCSIsOsmanya                 (int code)<br>
+</pre>
+<p>Check whether the character is part of Osmanya UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsPhoneticExtensions"></a>xmlUCSIsPhoneticExtensions ()</h3>
+<pre class="programlisting">int        xmlUCSIsPhoneticExtensions      (int code)<br>
+</pre>
+<p>Check whether the character is part of PhoneticExtensions UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsPrivateUse"></a>xmlUCSIsPrivateUse ()</h3>
+<pre class="programlisting">int        xmlUCSIsPrivateUse              (int code)<br>
+</pre>
+<p>Check whether the character is part of PrivateUse UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsPrivateUseArea"></a>xmlUCSIsPrivateUseArea ()</h3>
+<pre class="programlisting">int        xmlUCSIsPrivateUseArea          (int code)<br>
+</pre>
+<p>Check whether the character is part of PrivateUseArea UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsRunic"></a>xmlUCSIsRunic ()</h3>
+<pre class="programlisting">int        xmlUCSIsRunic                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Runic UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsShavian"></a>xmlUCSIsShavian ()</h3>
+<pre class="programlisting">int        xmlUCSIsShavian                 (int code)<br>
+</pre>
+<p>Check whether the character is part of Shavian UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsSinhala"></a>xmlUCSIsSinhala ()</h3>
+<pre class="programlisting">int        xmlUCSIsSinhala                 (int code)<br>
+</pre>
+<p>Check whether the character is part of Sinhala UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsSmallFormVariants"></a>xmlUCSIsSmallFormVariants ()</h3>
+<pre class="programlisting">int        xmlUCSIsSmallFormVariants       (int code)<br>
+</pre>
+<p>Check whether the character is part of SmallFormVariants UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsSpacingModifierLetters"></a>xmlUCSIsSpacingModifierLetters ()</h3>
+<pre class="programlisting">int        xmlUCSIsSpacingModifierLetters  (int code)<br>
+</pre>
+<p>Check whether the character is part of SpacingModifierLetters UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsSpecials"></a>xmlUCSIsSpecials ()</h3>
+<pre class="programlisting">int        xmlUCSIsSpecials                (int code)<br>
+</pre>
+<p>Check whether the character is part of Specials UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsSuperscriptsandSubscripts"></a>xmlUCSIsSuperscriptsandSubscripts ()</h3>
+<pre class="programlisting">int        xmlUCSIsSuperscriptsandSubscripts       (int code)<br>
+</pre>
+<p>Check whether the character is part of SuperscriptsandSubscripts UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsSupplementalArrowsA"></a>xmlUCSIsSupplementalArrowsA ()</h3>
+<pre class="programlisting">int        xmlUCSIsSupplementalArrowsA     (int code)<br>
+</pre>
+<p>Check whether the character is part of SupplementalArrows-A UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsSupplementalArrowsB"></a>xmlUCSIsSupplementalArrowsB ()</h3>
+<pre class="programlisting">int        xmlUCSIsSupplementalArrowsB     (int code)<br>
+</pre>
+<p>Check whether the character is part of SupplementalArrows-B UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsSupplementalMathematicalOperators"></a>xmlUCSIsSupplementalMathematicalOperators ()</h3>
+<pre class="programlisting">int        xmlUCSIsSupplementalMathematicalOperators       (int code)<br>
+</pre>
+<p>Check whether the character is part of SupplementalMathematicalOperators UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsSupplementaryPrivateUseAreaA"></a>xmlUCSIsSupplementaryPrivateUseAreaA ()</h3>
+<pre class="programlisting">int        xmlUCSIsSupplementaryPrivateUseAreaA    (int code)<br>
+</pre>
+<p>Check whether the character is part of SupplementaryPrivateUseArea-A UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsSupplementaryPrivateUseAreaB"></a>xmlUCSIsSupplementaryPrivateUseAreaB ()</h3>
+<pre class="programlisting">int        xmlUCSIsSupplementaryPrivateUseAreaB    (int code)<br>
+</pre>
+<p>Check whether the character is part of SupplementaryPrivateUseArea-B UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsSyriac"></a>xmlUCSIsSyriac ()</h3>
+<pre class="programlisting">int        xmlUCSIsSyriac                  (int code)<br>
+</pre>
+<p>Check whether the character is part of Syriac UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsTagalog"></a>xmlUCSIsTagalog ()</h3>
+<pre class="programlisting">int        xmlUCSIsTagalog                 (int code)<br>
+</pre>
+<p>Check whether the character is part of Tagalog UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsTagbanwa"></a>xmlUCSIsTagbanwa ()</h3>
+<pre class="programlisting">int        xmlUCSIsTagbanwa                (int code)<br>
+</pre>
+<p>Check whether the character is part of Tagbanwa UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsTags"></a>xmlUCSIsTags ()</h3>
+<pre class="programlisting">int        xmlUCSIsTags                    (int code)<br>
+</pre>
+<p>Check whether the character is part of Tags UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsTaiLe"></a>xmlUCSIsTaiLe ()</h3>
+<pre class="programlisting">int        xmlUCSIsTaiLe                   (int code)<br>
+</pre>
+<p>Check whether the character is part of TaiLe UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsTaiXuanJingSymbols"></a>xmlUCSIsTaiXuanJingSymbols ()</h3>
+<pre class="programlisting">int        xmlUCSIsTaiXuanJingSymbols      (int code)<br>
+</pre>
+<p>Check whether the character is part of TaiXuanJingSymbols UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsTamil"></a>xmlUCSIsTamil ()</h3>
+<pre class="programlisting">int        xmlUCSIsTamil                   (int code)<br>
+</pre>
+<p>Check whether the character is part of Tamil UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsTelugu"></a>xmlUCSIsTelugu ()</h3>
+<pre class="programlisting">int        xmlUCSIsTelugu                  (int code)<br>
+</pre>
+<p>Check whether the character is part of Telugu UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsThaana"></a>xmlUCSIsThaana ()</h3>
+<pre class="programlisting">int        xmlUCSIsThaana                  (int code)<br>
+</pre>
+<p>Check whether the character is part of Thaana UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsThai"></a>xmlUCSIsThai ()</h3>
+<pre class="programlisting">int        xmlUCSIsThai                    (int code)<br>
+</pre>
+<p>Check whether the character is part of Thai UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsTibetan"></a>xmlUCSIsTibetan ()</h3>
+<pre class="programlisting">int        xmlUCSIsTibetan                 (int code)<br>
+</pre>
+<p>Check whether the character is part of Tibetan UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsUgaritic"></a>xmlUCSIsUgaritic ()</h3>
+<pre class="programlisting">int        xmlUCSIsUgaritic                (int code)<br>
+</pre>
+<p>Check whether the character is part of Ugaritic UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsUnifiedCanadianAboriginalSyllabics"></a>xmlUCSIsUnifiedCanadianAboriginalSyllabics ()</h3>
+<pre class="programlisting">int        xmlUCSIsUnifiedCanadianAboriginalSyllabics      (int code)<br>
+</pre>
+<p>Check whether the character is part of UnifiedCanadianAboriginalSyllabics UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsVariationSelectors"></a>xmlUCSIsVariationSelectors ()</h3>
+<pre class="programlisting">int        xmlUCSIsVariationSelectors      (int code)<br>
+</pre>
+<p>Check whether the character is part of VariationSelectors UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsVariationSelectorsSupplement"></a>xmlUCSIsVariationSelectorsSupplement ()</h3>
+<pre class="programlisting">int        xmlUCSIsVariationSelectorsSupplement    (int code)<br>
+</pre>
+<p>Check whether the character is part of VariationSelectorsSupplement UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsYiRadicals"></a>xmlUCSIsYiRadicals ()</h3>
+<pre class="programlisting">int        xmlUCSIsYiRadicals              (int code)<br>
+</pre>
+<p>Check whether the character is part of YiRadicals UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsYiSyllables"></a>xmlUCSIsYiSyllables ()</h3>
+<pre class="programlisting">int        xmlUCSIsYiSyllables             (int code)<br>
+</pre>
+<p>Check whether the character is part of YiSyllables UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlUCSIsYijingHexagramSymbols"></a>xmlUCSIsYijingHexagramSymbols ()</h3>
+<pre class="programlisting">int        xmlUCSIsYijingHexagramSymbols   (int code)<br>
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsAegeanNumbers"/>xmlUCSIsAegeanNumbers ()</h3><pre class="programlisting">int      xmlUCSIsAegeanNumbers           (int code)<br/>
-</pre><p>Check whether the character is part of AegeanNumbers UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsAlphabeticPresentationForms"/>xmlUCSIsAlphabeticPresentationForms ()</h3><pre class="programlisting">int  xmlUCSIsAlphabeticPresentationForms     (int code)<br/>
-</pre><p>Check whether the character is part of AlphabeticPresentationForms UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsArabic"/>xmlUCSIsArabic ()</h3><pre class="programlisting">int    xmlUCSIsArabic                  (int code)<br/>
-</pre><p>Check whether the character is part of Arabic UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsArabicPresentationFormsA"/>xmlUCSIsArabicPresentationFormsA ()</h3><pre class="programlisting">int        xmlUCSIsArabicPresentationFormsA        (int code)<br/>
-</pre><p>Check whether the character is part of ArabicPresentationForms-A UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsArabicPresentationFormsB"/>xmlUCSIsArabicPresentationFormsB ()</h3><pre class="programlisting">int        xmlUCSIsArabicPresentationFormsB        (int code)<br/>
-</pre><p>Check whether the character is part of ArabicPresentationForms-B UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsArmenian"/>xmlUCSIsArmenian ()</h3><pre class="programlisting">int        xmlUCSIsArmenian                (int code)<br/>
-</pre><p>Check whether the character is part of Armenian UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsArrows"/>xmlUCSIsArrows ()</h3><pre class="programlisting">int    xmlUCSIsArrows                  (int code)<br/>
-</pre><p>Check whether the character is part of Arrows UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsBasicLatin"/>xmlUCSIsBasicLatin ()</h3><pre class="programlisting">int    xmlUCSIsBasicLatin              (int code)<br/>
-</pre><p>Check whether the character is part of BasicLatin UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsBengali"/>xmlUCSIsBengali ()</h3><pre class="programlisting">int  xmlUCSIsBengali                 (int code)<br/>
-</pre><p>Check whether the character is part of Bengali UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsBlock"/>xmlUCSIsBlock ()</h3><pre class="programlisting">int      xmlUCSIsBlock                   (int code, <br/>                                         const char * block)<br/>
-</pre><p>Check whether the character is part of the UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>block</tt></i>:</span></td><td>UCS block name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true, 0 if false and -1 on unknown block</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsBlockElements"/>xmlUCSIsBlockElements ()</h3><pre class="programlisting">int      xmlUCSIsBlockElements           (int code)<br/>
-</pre><p>Check whether the character is part of BlockElements UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsBopomofo"/>xmlUCSIsBopomofo ()</h3><pre class="programlisting">int        xmlUCSIsBopomofo                (int code)<br/>
-</pre><p>Check whether the character is part of Bopomofo UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsBopomofoExtended"/>xmlUCSIsBopomofoExtended ()</h3><pre class="programlisting">int        xmlUCSIsBopomofoExtended        (int code)<br/>
-</pre><p>Check whether the character is part of BopomofoExtended UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsBoxDrawing"/>xmlUCSIsBoxDrawing ()</h3><pre class="programlisting">int    xmlUCSIsBoxDrawing              (int code)<br/>
-</pre><p>Check whether the character is part of BoxDrawing UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsBraillePatterns"/>xmlUCSIsBraillePatterns ()</h3><pre class="programlisting">int  xmlUCSIsBraillePatterns         (int code)<br/>
-</pre><p>Check whether the character is part of BraillePatterns UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsBuhid"/>xmlUCSIsBuhid ()</h3><pre class="programlisting">int      xmlUCSIsBuhid                   (int code)<br/>
-</pre><p>Check whether the character is part of Buhid UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsByzantineMusicalSymbols"/>xmlUCSIsByzantineMusicalSymbols ()</h3><pre class="programlisting">int  xmlUCSIsByzantineMusicalSymbols (int code)<br/>
-</pre><p>Check whether the character is part of ByzantineMusicalSymbols UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCJKCompatibility"/>xmlUCSIsCJKCompatibility ()</h3><pre class="programlisting">int        xmlUCSIsCJKCompatibility        (int code)<br/>
-</pre><p>Check whether the character is part of CJKCompatibility UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCJKCompatibilityForms"/>xmlUCSIsCJKCompatibilityForms ()</h3><pre class="programlisting">int      xmlUCSIsCJKCompatibilityForms   (int code)<br/>
-</pre><p>Check whether the character is part of CJKCompatibilityForms UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCJKCompatibilityIdeographs"/>xmlUCSIsCJKCompatibilityIdeographs ()</h3><pre class="programlisting">int    xmlUCSIsCJKCompatibilityIdeographs      (int code)<br/>
-</pre><p>Check whether the character is part of CJKCompatibilityIdeographs UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCJKCompatibilityIdeographsSupplement"/>xmlUCSIsCJKCompatibilityIdeographsSupplement ()</h3><pre class="programlisting">int        xmlUCSIsCJKCompatibilityIdeographsSupplement    (int code)<br/>
-</pre><p>Check whether the character is part of CJKCompatibilityIdeographsSupplement UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCJKRadicalsSupplement"/>xmlUCSIsCJKRadicalsSupplement ()</h3><pre class="programlisting">int      xmlUCSIsCJKRadicalsSupplement   (int code)<br/>
-</pre><p>Check whether the character is part of CJKRadicalsSupplement UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCJKSymbolsandPunctuation"/>xmlUCSIsCJKSymbolsandPunctuation ()</h3><pre class="programlisting">int        xmlUCSIsCJKSymbolsandPunctuation        (int code)<br/>
-</pre><p>Check whether the character is part of CJKSymbolsandPunctuation UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCJKUnifiedIdeographs"/>xmlUCSIsCJKUnifiedIdeographs ()</h3><pre class="programlisting">int        xmlUCSIsCJKUnifiedIdeographs    (int code)<br/>
-</pre><p>Check whether the character is part of CJKUnifiedIdeographs UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCJKUnifiedIdeographsExtensionA"/>xmlUCSIsCJKUnifiedIdeographsExtensionA ()</h3><pre class="programlisting">int    xmlUCSIsCJKUnifiedIdeographsExtensionA  (int code)<br/>
-</pre><p>Check whether the character is part of CJKUnifiedIdeographsExtensionA UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCJKUnifiedIdeographsExtensionB"/>xmlUCSIsCJKUnifiedIdeographsExtensionB ()</h3><pre class="programlisting">int    xmlUCSIsCJKUnifiedIdeographsExtensionB  (int code)<br/>
-</pre><p>Check whether the character is part of CJKUnifiedIdeographsExtensionB UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCat"/>xmlUCSIsCat ()</h3><pre class="programlisting">int  xmlUCSIsCat                     (int code, <br/>                                         const char * cat)<br/>
-</pre><p>Check whether the character is part of the UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>cat</tt></i>:</span></td><td>UCS Category name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true, 0 if false and -1 on unknown category</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatC"/>xmlUCSIsCatC ()</h3><pre class="programlisting">int        xmlUCSIsCatC                    (int code)<br/>
-</pre><p>Check whether the character is part of C UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatCc"/>xmlUCSIsCatCc ()</h3><pre class="programlisting">int      xmlUCSIsCatCc                   (int code)<br/>
-</pre><p>Check whether the character is part of Cc UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatCf"/>xmlUCSIsCatCf ()</h3><pre class="programlisting">int      xmlUCSIsCatCf                   (int code)<br/>
-</pre><p>Check whether the character is part of Cf UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatCo"/>xmlUCSIsCatCo ()</h3><pre class="programlisting">int      xmlUCSIsCatCo                   (int code)<br/>
-</pre><p>Check whether the character is part of Co UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatCs"/>xmlUCSIsCatCs ()</h3><pre class="programlisting">int      xmlUCSIsCatCs                   (int code)<br/>
-</pre><p>Check whether the character is part of Cs UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatL"/>xmlUCSIsCatL ()</h3><pre class="programlisting">int        xmlUCSIsCatL                    (int code)<br/>
-</pre><p>Check whether the character is part of L UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatLl"/>xmlUCSIsCatLl ()</h3><pre class="programlisting">int      xmlUCSIsCatLl                   (int code)<br/>
-</pre><p>Check whether the character is part of Ll UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatLm"/>xmlUCSIsCatLm ()</h3><pre class="programlisting">int      xmlUCSIsCatLm                   (int code)<br/>
-</pre><p>Check whether the character is part of Lm UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatLo"/>xmlUCSIsCatLo ()</h3><pre class="programlisting">int      xmlUCSIsCatLo                   (int code)<br/>
-</pre><p>Check whether the character is part of Lo UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatLt"/>xmlUCSIsCatLt ()</h3><pre class="programlisting">int      xmlUCSIsCatLt                   (int code)<br/>
-</pre><p>Check whether the character is part of Lt UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatLu"/>xmlUCSIsCatLu ()</h3><pre class="programlisting">int      xmlUCSIsCatLu                   (int code)<br/>
-</pre><p>Check whether the character is part of Lu UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatM"/>xmlUCSIsCatM ()</h3><pre class="programlisting">int        xmlUCSIsCatM                    (int code)<br/>
-</pre><p>Check whether the character is part of M UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatMc"/>xmlUCSIsCatMc ()</h3><pre class="programlisting">int      xmlUCSIsCatMc                   (int code)<br/>
-</pre><p>Check whether the character is part of Mc UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatMe"/>xmlUCSIsCatMe ()</h3><pre class="programlisting">int      xmlUCSIsCatMe                   (int code)<br/>
-</pre><p>Check whether the character is part of Me UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatMn"/>xmlUCSIsCatMn ()</h3><pre class="programlisting">int      xmlUCSIsCatMn                   (int code)<br/>
-</pre><p>Check whether the character is part of Mn UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatN"/>xmlUCSIsCatN ()</h3><pre class="programlisting">int        xmlUCSIsCatN                    (int code)<br/>
-</pre><p>Check whether the character is part of N UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatNd"/>xmlUCSIsCatNd ()</h3><pre class="programlisting">int      xmlUCSIsCatNd                   (int code)<br/>
-</pre><p>Check whether the character is part of Nd UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatNl"/>xmlUCSIsCatNl ()</h3><pre class="programlisting">int      xmlUCSIsCatNl                   (int code)<br/>
-</pre><p>Check whether the character is part of Nl UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatNo"/>xmlUCSIsCatNo ()</h3><pre class="programlisting">int      xmlUCSIsCatNo                   (int code)<br/>
-</pre><p>Check whether the character is part of No UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatP"/>xmlUCSIsCatP ()</h3><pre class="programlisting">int        xmlUCSIsCatP                    (int code)<br/>
-</pre><p>Check whether the character is part of P UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatPc"/>xmlUCSIsCatPc ()</h3><pre class="programlisting">int      xmlUCSIsCatPc                   (int code)<br/>
-</pre><p>Check whether the character is part of Pc UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatPd"/>xmlUCSIsCatPd ()</h3><pre class="programlisting">int      xmlUCSIsCatPd                   (int code)<br/>
-</pre><p>Check whether the character is part of Pd UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatPe"/>xmlUCSIsCatPe ()</h3><pre class="programlisting">int      xmlUCSIsCatPe                   (int code)<br/>
-</pre><p>Check whether the character is part of Pe UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatPf"/>xmlUCSIsCatPf ()</h3><pre class="programlisting">int      xmlUCSIsCatPf                   (int code)<br/>
-</pre><p>Check whether the character is part of Pf UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatPi"/>xmlUCSIsCatPi ()</h3><pre class="programlisting">int      xmlUCSIsCatPi                   (int code)<br/>
-</pre><p>Check whether the character is part of Pi UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatPo"/>xmlUCSIsCatPo ()</h3><pre class="programlisting">int      xmlUCSIsCatPo                   (int code)<br/>
-</pre><p>Check whether the character is part of Po UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatPs"/>xmlUCSIsCatPs ()</h3><pre class="programlisting">int      xmlUCSIsCatPs                   (int code)<br/>
-</pre><p>Check whether the character is part of Ps UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatS"/>xmlUCSIsCatS ()</h3><pre class="programlisting">int        xmlUCSIsCatS                    (int code)<br/>
-</pre><p>Check whether the character is part of S UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatSc"/>xmlUCSIsCatSc ()</h3><pre class="programlisting">int      xmlUCSIsCatSc                   (int code)<br/>
-</pre><p>Check whether the character is part of Sc UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatSk"/>xmlUCSIsCatSk ()</h3><pre class="programlisting">int      xmlUCSIsCatSk                   (int code)<br/>
-</pre><p>Check whether the character is part of Sk UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatSm"/>xmlUCSIsCatSm ()</h3><pre class="programlisting">int      xmlUCSIsCatSm                   (int code)<br/>
-</pre><p>Check whether the character is part of Sm UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatSo"/>xmlUCSIsCatSo ()</h3><pre class="programlisting">int      xmlUCSIsCatSo                   (int code)<br/>
-</pre><p>Check whether the character is part of So UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatZ"/>xmlUCSIsCatZ ()</h3><pre class="programlisting">int        xmlUCSIsCatZ                    (int code)<br/>
-</pre><p>Check whether the character is part of Z UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatZl"/>xmlUCSIsCatZl ()</h3><pre class="programlisting">int      xmlUCSIsCatZl                   (int code)<br/>
-</pre><p>Check whether the character is part of Zl UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatZp"/>xmlUCSIsCatZp ()</h3><pre class="programlisting">int      xmlUCSIsCatZp                   (int code)<br/>
-</pre><p>Check whether the character is part of Zp UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCatZs"/>xmlUCSIsCatZs ()</h3><pre class="programlisting">int      xmlUCSIsCatZs                   (int code)<br/>
-</pre><p>Check whether the character is part of Zs UCS Category</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCherokee"/>xmlUCSIsCherokee ()</h3><pre class="programlisting">int        xmlUCSIsCherokee                (int code)<br/>
-</pre><p>Check whether the character is part of Cherokee UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCombiningDiacriticalMarks"/>xmlUCSIsCombiningDiacriticalMarks ()</h3><pre class="programlisting">int      xmlUCSIsCombiningDiacriticalMarks       (int code)<br/>
-</pre><p>Check whether the character is part of CombiningDiacriticalMarks UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCombiningDiacriticalMarksforSymbols"/>xmlUCSIsCombiningDiacriticalMarksforSymbols ()</h3><pre class="programlisting">int  xmlUCSIsCombiningDiacriticalMarksforSymbols     (int code)<br/>
-</pre><p>Check whether the character is part of CombiningDiacriticalMarksforSymbols UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCombiningHalfMarks"/>xmlUCSIsCombiningHalfMarks ()</h3><pre class="programlisting">int    xmlUCSIsCombiningHalfMarks      (int code)<br/>
-</pre><p>Check whether the character is part of CombiningHalfMarks UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCombiningMarksforSymbols"/>xmlUCSIsCombiningMarksforSymbols ()</h3><pre class="programlisting">int        xmlUCSIsCombiningMarksforSymbols        (int code)<br/>
-</pre><p>Check whether the character is part of CombiningMarksforSymbols UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsControlPictures"/>xmlUCSIsControlPictures ()</h3><pre class="programlisting">int  xmlUCSIsControlPictures         (int code)<br/>
-</pre><p>Check whether the character is part of ControlPictures UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCurrencySymbols"/>xmlUCSIsCurrencySymbols ()</h3><pre class="programlisting">int  xmlUCSIsCurrencySymbols         (int code)<br/>
-</pre><p>Check whether the character is part of CurrencySymbols UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCypriotSyllabary"/>xmlUCSIsCypriotSyllabary ()</h3><pre class="programlisting">int        xmlUCSIsCypriotSyllabary        (int code)<br/>
-</pre><p>Check whether the character is part of CypriotSyllabary UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCyrillic"/>xmlUCSIsCyrillic ()</h3><pre class="programlisting">int        xmlUCSIsCyrillic                (int code)<br/>
-</pre><p>Check whether the character is part of Cyrillic UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsCyrillicSupplement"/>xmlUCSIsCyrillicSupplement ()</h3><pre class="programlisting">int    xmlUCSIsCyrillicSupplement      (int code)<br/>
-</pre><p>Check whether the character is part of CyrillicSupplement UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsDeseret"/>xmlUCSIsDeseret ()</h3><pre class="programlisting">int  xmlUCSIsDeseret                 (int code)<br/>
-</pre><p>Check whether the character is part of Deseret UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsDevanagari"/>xmlUCSIsDevanagari ()</h3><pre class="programlisting">int    xmlUCSIsDevanagari              (int code)<br/>
-</pre><p>Check whether the character is part of Devanagari UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsDingbats"/>xmlUCSIsDingbats ()</h3><pre class="programlisting">int        xmlUCSIsDingbats                (int code)<br/>
-</pre><p>Check whether the character is part of Dingbats UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsEnclosedAlphanumerics"/>xmlUCSIsEnclosedAlphanumerics ()</h3><pre class="programlisting">int      xmlUCSIsEnclosedAlphanumerics   (int code)<br/>
-</pre><p>Check whether the character is part of EnclosedAlphanumerics UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsEnclosedCJKLettersandMonths"/>xmlUCSIsEnclosedCJKLettersandMonths ()</h3><pre class="programlisting">int  xmlUCSIsEnclosedCJKLettersandMonths     (int code)<br/>
-</pre><p>Check whether the character is part of EnclosedCJKLettersandMonths UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsEthiopic"/>xmlUCSIsEthiopic ()</h3><pre class="programlisting">int        xmlUCSIsEthiopic                (int code)<br/>
-</pre><p>Check whether the character is part of Ethiopic UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsGeneralPunctuation"/>xmlUCSIsGeneralPunctuation ()</h3><pre class="programlisting">int    xmlUCSIsGeneralPunctuation      (int code)<br/>
-</pre><p>Check whether the character is part of GeneralPunctuation UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsGeometricShapes"/>xmlUCSIsGeometricShapes ()</h3><pre class="programlisting">int  xmlUCSIsGeometricShapes         (int code)<br/>
-</pre><p>Check whether the character is part of GeometricShapes UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsGeorgian"/>xmlUCSIsGeorgian ()</h3><pre class="programlisting">int        xmlUCSIsGeorgian                (int code)<br/>
-</pre><p>Check whether the character is part of Georgian UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsGothic"/>xmlUCSIsGothic ()</h3><pre class="programlisting">int    xmlUCSIsGothic                  (int code)<br/>
-</pre><p>Check whether the character is part of Gothic UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsGreek"/>xmlUCSIsGreek ()</h3><pre class="programlisting">int      xmlUCSIsGreek                   (int code)<br/>
-</pre><p>Check whether the character is part of Greek UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsGreekExtended"/>xmlUCSIsGreekExtended ()</h3><pre class="programlisting">int      xmlUCSIsGreekExtended           (int code)<br/>
-</pre><p>Check whether the character is part of GreekExtended UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsGreekandCoptic"/>xmlUCSIsGreekandCoptic ()</h3><pre class="programlisting">int    xmlUCSIsGreekandCoptic          (int code)<br/>
-</pre><p>Check whether the character is part of GreekandCoptic UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsGujarati"/>xmlUCSIsGujarati ()</h3><pre class="programlisting">int        xmlUCSIsGujarati                (int code)<br/>
-</pre><p>Check whether the character is part of Gujarati UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsGurmukhi"/>xmlUCSIsGurmukhi ()</h3><pre class="programlisting">int        xmlUCSIsGurmukhi                (int code)<br/>
-</pre><p>Check whether the character is part of Gurmukhi UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsHalfwidthandFullwidthForms"/>xmlUCSIsHalfwidthandFullwidthForms ()</h3><pre class="programlisting">int    xmlUCSIsHalfwidthandFullwidthForms      (int code)<br/>
-</pre><p>Check whether the character is part of HalfwidthandFullwidthForms UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsHangulCompatibilityJamo"/>xmlUCSIsHangulCompatibilityJamo ()</h3><pre class="programlisting">int  xmlUCSIsHangulCompatibilityJamo (int code)<br/>
-</pre><p>Check whether the character is part of HangulCompatibilityJamo UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsHangulJamo"/>xmlUCSIsHangulJamo ()</h3><pre class="programlisting">int    xmlUCSIsHangulJamo              (int code)<br/>
-</pre><p>Check whether the character is part of HangulJamo UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsHangulSyllables"/>xmlUCSIsHangulSyllables ()</h3><pre class="programlisting">int  xmlUCSIsHangulSyllables         (int code)<br/>
-</pre><p>Check whether the character is part of HangulSyllables UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsHanunoo"/>xmlUCSIsHanunoo ()</h3><pre class="programlisting">int  xmlUCSIsHanunoo                 (int code)<br/>
-</pre><p>Check whether the character is part of Hanunoo UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsHebrew"/>xmlUCSIsHebrew ()</h3><pre class="programlisting">int    xmlUCSIsHebrew                  (int code)<br/>
-</pre><p>Check whether the character is part of Hebrew UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsHighPrivateUseSurrogates"/>xmlUCSIsHighPrivateUseSurrogates ()</h3><pre class="programlisting">int        xmlUCSIsHighPrivateUseSurrogates        (int code)<br/>
-</pre><p>Check whether the character is part of HighPrivateUseSurrogates UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsHighSurrogates"/>xmlUCSIsHighSurrogates ()</h3><pre class="programlisting">int    xmlUCSIsHighSurrogates          (int code)<br/>
-</pre><p>Check whether the character is part of HighSurrogates UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsHiragana"/>xmlUCSIsHiragana ()</h3><pre class="programlisting">int        xmlUCSIsHiragana                (int code)<br/>
-</pre><p>Check whether the character is part of Hiragana UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsIPAExtensions"/>xmlUCSIsIPAExtensions ()</h3><pre class="programlisting">int      xmlUCSIsIPAExtensions           (int code)<br/>
-</pre><p>Check whether the character is part of IPAExtensions UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsIdeographicDescriptionCharacters"/>xmlUCSIsIdeographicDescriptionCharacters ()</h3><pre class="programlisting">int        xmlUCSIsIdeographicDescriptionCharacters        (int code)<br/>
-</pre><p>Check whether the character is part of IdeographicDescriptionCharacters UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsKanbun"/>xmlUCSIsKanbun ()</h3><pre class="programlisting">int    xmlUCSIsKanbun                  (int code)<br/>
-</pre><p>Check whether the character is part of Kanbun UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsKangxiRadicals"/>xmlUCSIsKangxiRadicals ()</h3><pre class="programlisting">int    xmlUCSIsKangxiRadicals          (int code)<br/>
-</pre><p>Check whether the character is part of KangxiRadicals UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsKannada"/>xmlUCSIsKannada ()</h3><pre class="programlisting">int  xmlUCSIsKannada                 (int code)<br/>
-</pre><p>Check whether the character is part of Kannada UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsKatakana"/>xmlUCSIsKatakana ()</h3><pre class="programlisting">int        xmlUCSIsKatakana                (int code)<br/>
-</pre><p>Check whether the character is part of Katakana UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsKatakanaPhoneticExtensions"/>xmlUCSIsKatakanaPhoneticExtensions ()</h3><pre class="programlisting">int    xmlUCSIsKatakanaPhoneticExtensions      (int code)<br/>
-</pre><p>Check whether the character is part of KatakanaPhoneticExtensions UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsKhmer"/>xmlUCSIsKhmer ()</h3><pre class="programlisting">int      xmlUCSIsKhmer                   (int code)<br/>
-</pre><p>Check whether the character is part of Khmer UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsKhmerSymbols"/>xmlUCSIsKhmerSymbols ()</h3><pre class="programlisting">int        xmlUCSIsKhmerSymbols            (int code)<br/>
-</pre><p>Check whether the character is part of KhmerSymbols UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsLao"/>xmlUCSIsLao ()</h3><pre class="programlisting">int  xmlUCSIsLao                     (int code)<br/>
-</pre><p>Check whether the character is part of Lao UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsLatin1Supplement"/>xmlUCSIsLatin1Supplement ()</h3><pre class="programlisting">int        xmlUCSIsLatin1Supplement        (int code)<br/>
-</pre><p>Check whether the character is part of Latin-1Supplement UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsLatinExtendedA"/>xmlUCSIsLatinExtendedA ()</h3><pre class="programlisting">int    xmlUCSIsLatinExtendedA          (int code)<br/>
-</pre><p>Check whether the character is part of LatinExtended-A UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsLatinExtendedAdditional"/>xmlUCSIsLatinExtendedAdditional ()</h3><pre class="programlisting">int  xmlUCSIsLatinExtendedAdditional (int code)<br/>
-</pre><p>Check whether the character is part of LatinExtendedAdditional UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsLatinExtendedB"/>xmlUCSIsLatinExtendedB ()</h3><pre class="programlisting">int    xmlUCSIsLatinExtendedB          (int code)<br/>
-</pre><p>Check whether the character is part of LatinExtended-B UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsLetterlikeSymbols"/>xmlUCSIsLetterlikeSymbols ()</h3><pre class="programlisting">int      xmlUCSIsLetterlikeSymbols       (int code)<br/>
-</pre><p>Check whether the character is part of LetterlikeSymbols UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsLimbu"/>xmlUCSIsLimbu ()</h3><pre class="programlisting">int      xmlUCSIsLimbu                   (int code)<br/>
-</pre><p>Check whether the character is part of Limbu UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsLinearBIdeograms"/>xmlUCSIsLinearBIdeograms ()</h3><pre class="programlisting">int        xmlUCSIsLinearBIdeograms        (int code)<br/>
-</pre><p>Check whether the character is part of LinearBIdeograms UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsLinearBSyllabary"/>xmlUCSIsLinearBSyllabary ()</h3><pre class="programlisting">int        xmlUCSIsLinearBSyllabary        (int code)<br/>
-</pre><p>Check whether the character is part of LinearBSyllabary UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsLowSurrogates"/>xmlUCSIsLowSurrogates ()</h3><pre class="programlisting">int      xmlUCSIsLowSurrogates           (int code)<br/>
-</pre><p>Check whether the character is part of LowSurrogates UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsMalayalam"/>xmlUCSIsMalayalam ()</h3><pre class="programlisting">int      xmlUCSIsMalayalam               (int code)<br/>
-</pre><p>Check whether the character is part of Malayalam UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsMathematicalAlphanumericSymbols"/>xmlUCSIsMathematicalAlphanumericSymbols ()</h3><pre class="programlisting">int  xmlUCSIsMathematicalAlphanumericSymbols (int code)<br/>
-</pre><p>Check whether the character is part of MathematicalAlphanumericSymbols UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsMathematicalOperators"/>xmlUCSIsMathematicalOperators ()</h3><pre class="programlisting">int      xmlUCSIsMathematicalOperators   (int code)<br/>
-</pre><p>Check whether the character is part of MathematicalOperators UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsMiscellaneousMathematicalSymbolsA"/>xmlUCSIsMiscellaneousMathematicalSymbolsA ()</h3><pre class="programlisting">int      xmlUCSIsMiscellaneousMathematicalSymbolsA       (int code)<br/>
-</pre><p>Check whether the character is part of MiscellaneousMathematicalSymbols-A UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsMiscellaneousMathematicalSymbolsB"/>xmlUCSIsMiscellaneousMathematicalSymbolsB ()</h3><pre class="programlisting">int      xmlUCSIsMiscellaneousMathematicalSymbolsB       (int code)<br/>
-</pre><p>Check whether the character is part of MiscellaneousMathematicalSymbols-B UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsMiscellaneousSymbols"/>xmlUCSIsMiscellaneousSymbols ()</h3><pre class="programlisting">int        xmlUCSIsMiscellaneousSymbols    (int code)<br/>
-</pre><p>Check whether the character is part of MiscellaneousSymbols UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsMiscellaneousSymbolsandArrows"/>xmlUCSIsMiscellaneousSymbolsandArrows ()</h3><pre class="programlisting">int      xmlUCSIsMiscellaneousSymbolsandArrows   (int code)<br/>
-</pre><p>Check whether the character is part of MiscellaneousSymbolsandArrows UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsMiscellaneousTechnical"/>xmlUCSIsMiscellaneousTechnical ()</h3><pre class="programlisting">int    xmlUCSIsMiscellaneousTechnical  (int code)<br/>
-</pre><p>Check whether the character is part of MiscellaneousTechnical UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsMongolian"/>xmlUCSIsMongolian ()</h3><pre class="programlisting">int      xmlUCSIsMongolian               (int code)<br/>
-</pre><p>Check whether the character is part of Mongolian UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsMusicalSymbols"/>xmlUCSIsMusicalSymbols ()</h3><pre class="programlisting">int    xmlUCSIsMusicalSymbols          (int code)<br/>
-</pre><p>Check whether the character is part of MusicalSymbols UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsMyanmar"/>xmlUCSIsMyanmar ()</h3><pre class="programlisting">int  xmlUCSIsMyanmar                 (int code)<br/>
-</pre><p>Check whether the character is part of Myanmar UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsNumberForms"/>xmlUCSIsNumberForms ()</h3><pre class="programlisting">int  xmlUCSIsNumberForms             (int code)<br/>
-</pre><p>Check whether the character is part of NumberForms UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsOgham"/>xmlUCSIsOgham ()</h3><pre class="programlisting">int      xmlUCSIsOgham                   (int code)<br/>
-</pre><p>Check whether the character is part of Ogham UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsOldItalic"/>xmlUCSIsOldItalic ()</h3><pre class="programlisting">int      xmlUCSIsOldItalic               (int code)<br/>
-</pre><p>Check whether the character is part of OldItalic UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsOpticalCharacterRecognition"/>xmlUCSIsOpticalCharacterRecognition ()</h3><pre class="programlisting">int  xmlUCSIsOpticalCharacterRecognition     (int code)<br/>
-</pre><p>Check whether the character is part of OpticalCharacterRecognition UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsOriya"/>xmlUCSIsOriya ()</h3><pre class="programlisting">int      xmlUCSIsOriya                   (int code)<br/>
-</pre><p>Check whether the character is part of Oriya UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsOsmanya"/>xmlUCSIsOsmanya ()</h3><pre class="programlisting">int  xmlUCSIsOsmanya                 (int code)<br/>
-</pre><p>Check whether the character is part of Osmanya UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsPhoneticExtensions"/>xmlUCSIsPhoneticExtensions ()</h3><pre class="programlisting">int    xmlUCSIsPhoneticExtensions      (int code)<br/>
-</pre><p>Check whether the character is part of PhoneticExtensions UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsPrivateUse"/>xmlUCSIsPrivateUse ()</h3><pre class="programlisting">int    xmlUCSIsPrivateUse              (int code)<br/>
-</pre><p>Check whether the character is part of PrivateUse UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsPrivateUseArea"/>xmlUCSIsPrivateUseArea ()</h3><pre class="programlisting">int    xmlUCSIsPrivateUseArea          (int code)<br/>
-</pre><p>Check whether the character is part of PrivateUseArea UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsRunic"/>xmlUCSIsRunic ()</h3><pre class="programlisting">int      xmlUCSIsRunic                   (int code)<br/>
-</pre><p>Check whether the character is part of Runic UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsShavian"/>xmlUCSIsShavian ()</h3><pre class="programlisting">int  xmlUCSIsShavian                 (int code)<br/>
-</pre><p>Check whether the character is part of Shavian UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsSinhala"/>xmlUCSIsSinhala ()</h3><pre class="programlisting">int  xmlUCSIsSinhala                 (int code)<br/>
-</pre><p>Check whether the character is part of Sinhala UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsSmallFormVariants"/>xmlUCSIsSmallFormVariants ()</h3><pre class="programlisting">int      xmlUCSIsSmallFormVariants       (int code)<br/>
-</pre><p>Check whether the character is part of SmallFormVariants UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsSpacingModifierLetters"/>xmlUCSIsSpacingModifierLetters ()</h3><pre class="programlisting">int    xmlUCSIsSpacingModifierLetters  (int code)<br/>
-</pre><p>Check whether the character is part of SpacingModifierLetters UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsSpecials"/>xmlUCSIsSpecials ()</h3><pre class="programlisting">int        xmlUCSIsSpecials                (int code)<br/>
-</pre><p>Check whether the character is part of Specials UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsSuperscriptsandSubscripts"/>xmlUCSIsSuperscriptsandSubscripts ()</h3><pre class="programlisting">int      xmlUCSIsSuperscriptsandSubscripts       (int code)<br/>
-</pre><p>Check whether the character is part of SuperscriptsandSubscripts UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsSupplementalArrowsA"/>xmlUCSIsSupplementalArrowsA ()</h3><pre class="programlisting">int  xmlUCSIsSupplementalArrowsA     (int code)<br/>
-</pre><p>Check whether the character is part of SupplementalArrows-A UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsSupplementalArrowsB"/>xmlUCSIsSupplementalArrowsB ()</h3><pre class="programlisting">int  xmlUCSIsSupplementalArrowsB     (int code)<br/>
-</pre><p>Check whether the character is part of SupplementalArrows-B UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsSupplementalMathematicalOperators"/>xmlUCSIsSupplementalMathematicalOperators ()</h3><pre class="programlisting">int      xmlUCSIsSupplementalMathematicalOperators       (int code)<br/>
-</pre><p>Check whether the character is part of SupplementalMathematicalOperators UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsSupplementaryPrivateUseAreaA"/>xmlUCSIsSupplementaryPrivateUseAreaA ()</h3><pre class="programlisting">int        xmlUCSIsSupplementaryPrivateUseAreaA    (int code)<br/>
-</pre><p>Check whether the character is part of SupplementaryPrivateUseArea-A UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsSupplementaryPrivateUseAreaB"/>xmlUCSIsSupplementaryPrivateUseAreaB ()</h3><pre class="programlisting">int        xmlUCSIsSupplementaryPrivateUseAreaB    (int code)<br/>
-</pre><p>Check whether the character is part of SupplementaryPrivateUseArea-B UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsSyriac"/>xmlUCSIsSyriac ()</h3><pre class="programlisting">int    xmlUCSIsSyriac                  (int code)<br/>
-</pre><p>Check whether the character is part of Syriac UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsTagalog"/>xmlUCSIsTagalog ()</h3><pre class="programlisting">int  xmlUCSIsTagalog                 (int code)<br/>
-</pre><p>Check whether the character is part of Tagalog UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsTagbanwa"/>xmlUCSIsTagbanwa ()</h3><pre class="programlisting">int        xmlUCSIsTagbanwa                (int code)<br/>
-</pre><p>Check whether the character is part of Tagbanwa UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsTags"/>xmlUCSIsTags ()</h3><pre class="programlisting">int        xmlUCSIsTags                    (int code)<br/>
-</pre><p>Check whether the character is part of Tags UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsTaiLe"/>xmlUCSIsTaiLe ()</h3><pre class="programlisting">int      xmlUCSIsTaiLe                   (int code)<br/>
-</pre><p>Check whether the character is part of TaiLe UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsTaiXuanJingSymbols"/>xmlUCSIsTaiXuanJingSymbols ()</h3><pre class="programlisting">int    xmlUCSIsTaiXuanJingSymbols      (int code)<br/>
-</pre><p>Check whether the character is part of TaiXuanJingSymbols UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsTamil"/>xmlUCSIsTamil ()</h3><pre class="programlisting">int      xmlUCSIsTamil                   (int code)<br/>
-</pre><p>Check whether the character is part of Tamil UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsTelugu"/>xmlUCSIsTelugu ()</h3><pre class="programlisting">int    xmlUCSIsTelugu                  (int code)<br/>
-</pre><p>Check whether the character is part of Telugu UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsThaana"/>xmlUCSIsThaana ()</h3><pre class="programlisting">int    xmlUCSIsThaana                  (int code)<br/>
-</pre><p>Check whether the character is part of Thaana UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsThai"/>xmlUCSIsThai ()</h3><pre class="programlisting">int        xmlUCSIsThai                    (int code)<br/>
-</pre><p>Check whether the character is part of Thai UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsTibetan"/>xmlUCSIsTibetan ()</h3><pre class="programlisting">int  xmlUCSIsTibetan                 (int code)<br/>
-</pre><p>Check whether the character is part of Tibetan UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsUgaritic"/>xmlUCSIsUgaritic ()</h3><pre class="programlisting">int        xmlUCSIsUgaritic                (int code)<br/>
-</pre><p>Check whether the character is part of Ugaritic UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsUnifiedCanadianAboriginalSyllabics"/>xmlUCSIsUnifiedCanadianAboriginalSyllabics ()</h3><pre class="programlisting">int    xmlUCSIsUnifiedCanadianAboriginalSyllabics      (int code)<br/>
-</pre><p>Check whether the character is part of UnifiedCanadianAboriginalSyllabics UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsVariationSelectors"/>xmlUCSIsVariationSelectors ()</h3><pre class="programlisting">int    xmlUCSIsVariationSelectors      (int code)<br/>
-</pre><p>Check whether the character is part of VariationSelectors UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsVariationSelectorsSupplement"/>xmlUCSIsVariationSelectorsSupplement ()</h3><pre class="programlisting">int        xmlUCSIsVariationSelectorsSupplement    (int code)<br/>
-</pre><p>Check whether the character is part of VariationSelectorsSupplement UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsYiRadicals"/>xmlUCSIsYiRadicals ()</h3><pre class="programlisting">int    xmlUCSIsYiRadicals              (int code)<br/>
-</pre><p>Check whether the character is part of YiRadicals UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsYiSyllables"/>xmlUCSIsYiSyllables ()</h3><pre class="programlisting">int  xmlUCSIsYiSyllables             (int code)<br/>
-</pre><p>Check whether the character is part of YiSyllables UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlUCSIsYijingHexagramSymbols"/>xmlUCSIsYijingHexagramSymbols ()</h3><pre class="programlisting">int      xmlUCSIsYijingHexagramSymbols   (int code)<br/>
-</pre><p>Check whether the character is part of YijingHexagramSymbols UCS Block</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>code</tt></i>:</span></td><td>UCS code point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+<p>Check whether the character is part of YijingHexagramSymbols UCS Block</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>code</tt></i>:</span></td>
+<td>UCS code point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 4ead3d4..98b0819 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlversion: compile-time version information</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlunicode.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xmlwriter.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlversion</span>
-    </h2>
-    <p>xmlversion - compile-time version information</p>
-    <p>compile-time version information for the XML library </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#LIBXML_VERSION_EXTRA">LIBXML_VERSION_EXTRA</a>;
-#define <a href="#LIBXML_MODULES_ENABLED">LIBXML_MODULES_ENABLED</a>;
-#define <a href="#LIBXML_LEGACY_ENABLED">LIBXML_LEGACY_ENABLED</a>;
-#define <a href="#LIBXML_LZMA_ENABLED">LIBXML_LZMA_ENABLED</a>;
-#define <a href="#XML_DEPRECATED">XML_DEPRECATED</a>;
-#define <a href="#LIBXML_READER_ENABLED">LIBXML_READER_ENABLED</a>;
-#define <a href="#LIBXML_THREAD_ENABLED">LIBXML_THREAD_ENABLED</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlversion: compile-time version information</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlunicode.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xmlwriter.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlversion</span></h2>
+<p>xmlversion - compile-time version information</p>
+<p>compile-time version information for the XML library </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#ATTRIBUTE_UNUSED">ATTRIBUTE_UNUSED</a>;
+#define <a href="#DEBUG_MEMORY_LOCATION">DEBUG_MEMORY_LOCATION</a>;
+#define <a href="#LIBXML_ATTR_ALLOC_SIZE">LIBXML_ATTR_ALLOC_SIZE</a>;
+#define <a href="#LIBXML_ATTR_FORMAT">LIBXML_ATTR_FORMAT</a>;
+#define <a href="#LIBXML_AUTOMATA_ENABLED">LIBXML_AUTOMATA_ENABLED</a>;
+#define <a href="#LIBXML_C14N_ENABLED">LIBXML_C14N_ENABLED</a>;
+#define <a href="#LIBXML_CATALOG_ENABLED">LIBXML_CATALOG_ENABLED</a>;
+#define <a href="#LIBXML_DEBUG_ENABLED">LIBXML_DEBUG_ENABLED</a>;
+#define <a href="#LIBXML_DEBUG_RUNTIME">LIBXML_DEBUG_RUNTIME</a>;
 #define <a href="#LIBXML_DOTTED_VERSION">LIBXML_DOTTED_VERSION</a>;
+#define <a href="#LIBXML_EXPR_ENABLED">LIBXML_EXPR_ENABLED</a>;
+#define <a href="#LIBXML_FTP_ENABLED">LIBXML_FTP_ENABLED</a>;
+#define <a href="#LIBXML_HTML_ENABLED">LIBXML_HTML_ENABLED</a>;
+#define <a href="#LIBXML_HTTP_ENABLED">LIBXML_HTTP_ENABLED</a>;
+#define <a href="#LIBXML_ICONV_ENABLED">LIBXML_ICONV_ENABLED</a>;
+#define <a href="#LIBXML_ICU_ENABLED">LIBXML_ICU_ENABLED</a>;
 #define <a href="#LIBXML_ISO8859X_ENABLED">LIBXML_ISO8859X_ENABLED</a>;
-#define <a href="#LIBXML_DEBUG_ENABLED">LIBXML_DEBUG_ENABLED</a>;
-#define <a href="#LIBXML_XINCLUDE_ENABLED">LIBXML_XINCLUDE_ENABLED</a>;
-#define <a href="#ATTRIBUTE_UNUSED">ATTRIBUTE_UNUSED</a>;
-#define <a href="#LIBXML_XPTR_LOCS_ENABLED">LIBXML_XPTR_LOCS_ENABLED</a>;
+#define <a href="#LIBXML_LEGACY_ENABLED">LIBXML_LEGACY_ENABLED</a>;
+#define <a href="#LIBXML_LZMA_ENABLED">LIBXML_LZMA_ENABLED</a>;
+#define <a href="#LIBXML_MODULES_ENABLED">LIBXML_MODULES_ENABLED</a>;
+#define <a href="#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a>;
+#define <a href="#LIBXML_OUTPUT_ENABLED">LIBXML_OUTPUT_ENABLED</a>;
+#define <a href="#LIBXML_PATTERN_ENABLED">LIBXML_PATTERN_ENABLED</a>;
 #define <a href="#LIBXML_PUSH_ENABLED">LIBXML_PUSH_ENABLED</a>;
+#define <a href="#LIBXML_READER_ENABLED">LIBXML_READER_ENABLED</a>;
+#define <a href="#LIBXML_REGEXP_ENABLED">LIBXML_REGEXP_ENABLED</a>;
 #define <a href="#LIBXML_SAX1_ENABLED">LIBXML_SAX1_ENABLED</a>;
-#define <a href="#WITHOUT_TRIO">WITHOUT_TRIO</a>;
+#define <a href="#LIBXML_SCHEMAS_ENABLED">LIBXML_SCHEMAS_ENABLED</a>;
 #define <a href="#LIBXML_SCHEMATRON_ENABLED">LIBXML_SCHEMATRON_ENABLED</a>;
-#define <a href="#LIBXML_HTTP_ENABLED">LIBXML_HTTP_ENABLED</a>;
-#define <a href="#LIBXML_OUTPUT_ENABLED">LIBXML_OUTPUT_ENABLED</a>;
-#define <a href="#WITH_TRIO">WITH_TRIO</a>;
-#define <a href="#LIBXML_DEBUG_RUNTIME">LIBXML_DEBUG_RUNTIME</a>;
+#define <a href="#LIBXML_TEST_VERSION">LIBXML_TEST_VERSION</a>;
+#define <a href="#LIBXML_THREAD_ALLOC_ENABLED">LIBXML_THREAD_ALLOC_ENABLED</a>;
+#define <a href="#LIBXML_THREAD_ENABLED">LIBXML_THREAD_ENABLED</a>;
+#define <a href="#LIBXML_TREE_ENABLED">LIBXML_TREE_ENABLED</a>;
+#define <a href="#LIBXML_UNICODE_ENABLED">LIBXML_UNICODE_ENABLED</a>;
+#define <a href="#LIBXML_VALID_ENABLED">LIBXML_VALID_ENABLED</a>;
 #define <a href="#LIBXML_VERSION">LIBXML_VERSION</a>;
-#define <a href="#LIBXML_XPTR_ENABLED">LIBXML_XPTR_ENABLED</a>;
+#define <a href="#LIBXML_VERSION_EXTRA">LIBXML_VERSION_EXTRA</a>;
 #define <a href="#LIBXML_VERSION_STRING">LIBXML_VERSION_STRING</a>;
-#define <a href="#LIBXML_CATALOG_ENABLED">LIBXML_CATALOG_ENABLED</a>;
-#define <a href="#LIBXML_ATTR_ALLOC_SIZE">LIBXML_ATTR_ALLOC_SIZE</a>;
-#define <a href="#LIBXML_REGEXP_ENABLED">LIBXML_REGEXP_ENABLED</a>;
-#define <a href="#LIBXML_ICU_ENABLED">LIBXML_ICU_ENABLED</a>;
-#define <a href="#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a>;
-#define <a href="#LIBXML_ICONV_ENABLED">LIBXML_ICONV_ENABLED</a>;
-#define <a href="#LIBXML_HTML_ENABLED">LIBXML_HTML_ENABLED</a>;
-#define <a href="#LIBXML_UNICODE_ENABLED">LIBXML_UNICODE_ENABLED</a>;
-#define <a href="#LIBXML_FTP_ENABLED">LIBXML_FTP_ENABLED</a>;
-#define <a href="#LIBXML_AUTOMATA_ENABLED">LIBXML_AUTOMATA_ENABLED</a>;
-#define <a href="#LIBXML_ZLIB_ENABLED">LIBXML_ZLIB_ENABLED</a>;
 #define <a href="#LIBXML_WRITER_ENABLED">LIBXML_WRITER_ENABLED</a>;
-#define <a href="#LIBXML_C14N_ENABLED">LIBXML_C14N_ENABLED</a>;
-#define <a href="#LIBXML_SCHEMAS_ENABLED">LIBXML_SCHEMAS_ENABLED</a>;
-#define <a href="#DEBUG_MEMORY_LOCATION">DEBUG_MEMORY_LOCATION</a>;
-#define <a href="#LIBXML_ATTR_FORMAT">LIBXML_ATTR_FORMAT</a>;
-#define <a href="#LIBXML_TEST_VERSION">LIBXML_TEST_VERSION</a>;
-#define <a href="#LIBXML_THREAD_ALLOC_ENABLED">LIBXML_THREAD_ALLOC_ENABLED</a>;
+#define <a href="#LIBXML_XINCLUDE_ENABLED">LIBXML_XINCLUDE_ENABLED</a>;
 #define <a href="#LIBXML_XPATH_ENABLED">LIBXML_XPATH_ENABLED</a>;
-#define <a href="#LIBXML_PATTERN_ENABLED">LIBXML_PATTERN_ENABLED</a>;
-#define <a href="#LIBXML_VALID_ENABLED">LIBXML_VALID_ENABLED</a>;
-#define <a href="#LIBXML_TREE_ENABLED">LIBXML_TREE_ENABLED</a>;
-#define <a href="#LIBXML_EXPR_ENABLED">LIBXML_EXPR_ENABLED</a>;
+#define <a href="#LIBXML_XPTR_ENABLED">LIBXML_XPTR_ENABLED</a>;
+#define <a href="#LIBXML_XPTR_LOCS_ENABLED">LIBXML_XPTR_LOCS_ENABLED</a>;
+#define <a href="#LIBXML_ZLIB_ENABLED">LIBXML_ZLIB_ENABLED</a>;
+#define <a href="#WITHOUT_TRIO">WITHOUT_TRIO</a>;
+#define <a href="#WITH_TRIO">WITH_TRIO</a>;
+#define <a href="#XML_DEPRECATED">XML_DEPRECATED</a>;
 void   <a href="#xmlCheckVersion">xmlCheckVersion</a>                  (int version);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="ATTRIBUTE_UNUSED">Macro </a>ATTRIBUTE_UNUSED</h3><pre class="programlisting">#define <a href="#ATTRIBUTE_UNUSED">ATTRIBUTE_UNUSED</a>;
-</pre><p>Macro used to signal to GCC unused function parameters</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="DEBUG_MEMORY_LOCATION">Macro </a>DEBUG_MEMORY_LOCATION</h3><pre class="programlisting">#define <a href="#DEBUG_MEMORY_LOCATION">DEBUG_MEMORY_LOCATION</a>;
-</pre><p>Whether the memory debugging is configured in</p>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="ATTRIBUTE_UNUSED">Macro </a>ATTRIBUTE_UNUSED</h3>
+<pre class="programlisting">#define <a href="#ATTRIBUTE_UNUSED">ATTRIBUTE_UNUSED</a>;
+</pre>
+<p>Macro used to signal to GCC unused function parameters</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_ATTR_ALLOC_SIZE">Macro </a>LIBXML_ATTR_ALLOC_SIZE</h3><pre class="programlisting">#define <a href="#LIBXML_ATTR_ALLOC_SIZE">LIBXML_ATTR_ALLOC_SIZE</a>;
-</pre><p>Macro used to indicate to GCC this is an allocator function</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="DEBUG_MEMORY_LOCATION">Macro </a>DEBUG_MEMORY_LOCATION</h3>
+<pre class="programlisting">#define <a href="#DEBUG_MEMORY_LOCATION">DEBUG_MEMORY_LOCATION</a>;
+</pre>
+<p>Whether the memory debugging is configured in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_ATTR_FORMAT">Macro </a>LIBXML_ATTR_FORMAT</h3><pre class="programlisting">#define <a href="#LIBXML_ATTR_FORMAT">LIBXML_ATTR_FORMAT</a>;
-</pre><p>Macro used to indicate to GCC the parameter are printf like</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_ATTR_ALLOC_SIZE">Macro </a>LIBXML_ATTR_ALLOC_SIZE</h3>
+<pre class="programlisting">#define <a href="#LIBXML_ATTR_ALLOC_SIZE">LIBXML_ATTR_ALLOC_SIZE</a>;
+</pre>
+<p>Macro used to indicate to GCC this is an allocator function</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_AUTOMATA_ENABLED">Macro </a>LIBXML_AUTOMATA_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_AUTOMATA_ENABLED">LIBXML_AUTOMATA_ENABLED</a>;
-</pre><p>Whether the automata interfaces are compiled in</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_ATTR_FORMAT">Macro </a>LIBXML_ATTR_FORMAT</h3>
+<pre class="programlisting">#define <a href="#LIBXML_ATTR_FORMAT">LIBXML_ATTR_FORMAT</a>;
+</pre>
+<p>Macro used to indicate to GCC the parameter are printf like</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_AUTOMATA_ENABLED">Macro </a>LIBXML_AUTOMATA_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_AUTOMATA_ENABLED">LIBXML_AUTOMATA_ENABLED</a>;
+</pre>
+<p>Whether the automata interfaces are compiled in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_C14N_ENABLED">Macro </a>LIBXML_C14N_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_C14N_ENABLED">LIBXML_C14N_ENABLED</a>;
+</pre>
+<p>Whether the Canonicalization support is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_CATALOG_ENABLED">Macro </a>LIBXML_CATALOG_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_CATALOG_ENABLED">LIBXML_CATALOG_ENABLED</a>;
+</pre>
+<p>Whether the Catalog support is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_DEBUG_ENABLED">Macro </a>LIBXML_DEBUG_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_DEBUG_ENABLED">LIBXML_DEBUG_ENABLED</a>;
+</pre>
+<p>Whether Debugging module is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_DEBUG_RUNTIME">Macro </a>LIBXML_DEBUG_RUNTIME</h3>
+<pre class="programlisting">#define <a href="#LIBXML_DEBUG_RUNTIME">LIBXML_DEBUG_RUNTIME</a>;
+</pre>
+<p>Whether the runtime debugging is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_DOTTED_VERSION">Macro </a>LIBXML_DOTTED_VERSION</h3>
+<pre class="programlisting">#define <a href="#LIBXML_DOTTED_VERSION">LIBXML_DOTTED_VERSION</a>;
+</pre>
+<p>the version string like "1.2.3"</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_EXPR_ENABLED">Macro </a>LIBXML_EXPR_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_EXPR_ENABLED">LIBXML_EXPR_ENABLED</a>;
+</pre>
+<p>Whether the formal expressions interfaces are compiled in This code is unused and disabled unconditionally for now.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_FTP_ENABLED">Macro </a>LIBXML_FTP_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_FTP_ENABLED">LIBXML_FTP_ENABLED</a>;
+</pre>
+<p>Whether the FTP support is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_HTML_ENABLED">Macro </a>LIBXML_HTML_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_HTML_ENABLED">LIBXML_HTML_ENABLED</a>;
+</pre>
+<p>Whether the HTML support is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_HTTP_ENABLED">Macro </a>LIBXML_HTTP_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_HTTP_ENABLED">LIBXML_HTTP_ENABLED</a>;
+</pre>
+<p>Whether the HTTP support is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_ICONV_ENABLED">Macro </a>LIBXML_ICONV_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_ICONV_ENABLED">LIBXML_ICONV_ENABLED</a>;
+</pre>
+<p>Whether iconv support is available</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_ICU_ENABLED">Macro </a>LIBXML_ICU_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_ICU_ENABLED">LIBXML_ICU_ENABLED</a>;
+</pre>
+<p>Whether icu support is available</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_ISO8859X_ENABLED">Macro </a>LIBXML_ISO8859X_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_ISO8859X_ENABLED">LIBXML_ISO8859X_ENABLED</a>;
+</pre>
+<p>Whether ISO-8859-* support is made available in case iconv is not</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_LEGACY_ENABLED">Macro </a>LIBXML_LEGACY_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_LEGACY_ENABLED">LIBXML_LEGACY_ENABLED</a>;
+</pre>
+<p>Whether the deprecated APIs are compiled in for compatibility</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_LZMA_ENABLED">Macro </a>LIBXML_LZMA_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_LZMA_ENABLED">LIBXML_LZMA_ENABLED</a>;
+</pre>
+<p>Whether the Lzma support is compiled in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_MODULES_ENABLED">Macro </a>LIBXML_MODULES_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_MODULES_ENABLED">LIBXML_MODULES_ENABLED</a>;
+</pre>
+<p>Whether the module interfaces are compiled in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_MODULE_EXTENSION">Macro </a>LIBXML_MODULE_EXTENSION</h3>
+<pre class="programlisting">#define <a href="#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a>;
+</pre>
+<p>the string suffix used by dynamic modules (usually shared libraries)</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_OUTPUT_ENABLED">Macro </a>LIBXML_OUTPUT_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_OUTPUT_ENABLED">LIBXML_OUTPUT_ENABLED</a>;
+</pre>
+<p>Whether the serialization/saving support is configured in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_C14N_ENABLED">Macro </a>LIBXML_C14N_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_C14N_ENABLED">LIBXML_C14N_ENABLED</a>;
-</pre><p>Whether the Canonicalization support is configured in</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_PATTERN_ENABLED">Macro </a>LIBXML_PATTERN_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_PATTERN_ENABLED">LIBXML_PATTERN_ENABLED</a>;
+</pre>
+<p>Whether the <a href="libxml2-pattern.html#xmlPattern">xmlPattern</a> node selection interface is configured in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_CATALOG_ENABLED">Macro </a>LIBXML_CATALOG_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_CATALOG_ENABLED">LIBXML_CATALOG_ENABLED</a>;
-</pre><p>Whether the Catalog support is configured in</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_PUSH_ENABLED">Macro </a>LIBXML_PUSH_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_PUSH_ENABLED">LIBXML_PUSH_ENABLED</a>;
+</pre>
+<p>Whether the push parsing interfaces are configured in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_DEBUG_ENABLED">Macro </a>LIBXML_DEBUG_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_DEBUG_ENABLED">LIBXML_DEBUG_ENABLED</a>;
-</pre><p>Whether Debugging module is configured in</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_READER_ENABLED">Macro </a>LIBXML_READER_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_READER_ENABLED">LIBXML_READER_ENABLED</a>;
+</pre>
+<p>Whether the xmlReader parsing interface is configured in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_DEBUG_RUNTIME">Macro </a>LIBXML_DEBUG_RUNTIME</h3><pre class="programlisting">#define <a href="#LIBXML_DEBUG_RUNTIME">LIBXML_DEBUG_RUNTIME</a>;
-</pre><p>Whether the runtime debugging is configured in</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_REGEXP_ENABLED">Macro </a>LIBXML_REGEXP_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_REGEXP_ENABLED">LIBXML_REGEXP_ENABLED</a>;
+</pre>
+<p>Whether the regular expressions interfaces are compiled in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_DOTTED_VERSION">Macro </a>LIBXML_DOTTED_VERSION</h3><pre class="programlisting">#define <a href="#LIBXML_DOTTED_VERSION">LIBXML_DOTTED_VERSION</a>;
-</pre><p>the version string like "1.2.3"</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_SAX1_ENABLED">Macro </a>LIBXML_SAX1_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_SAX1_ENABLED">LIBXML_SAX1_ENABLED</a>;
+</pre>
+<p>Whether the older SAX1 interface is configured in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_EXPR_ENABLED">Macro </a>LIBXML_EXPR_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_EXPR_ENABLED">LIBXML_EXPR_ENABLED</a>;
-</pre><p>Whether the formal expressions interfaces are compiled in This code is unused and disabled unconditionally for now.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_SCHEMAS_ENABLED">Macro </a>LIBXML_SCHEMAS_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_SCHEMAS_ENABLED">LIBXML_SCHEMAS_ENABLED</a>;
+</pre>
+<p>Whether the Schemas validation interfaces are compiled in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_FTP_ENABLED">Macro </a>LIBXML_FTP_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_FTP_ENABLED">LIBXML_FTP_ENABLED</a>;
-</pre><p>Whether the FTP support is configured in</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_SCHEMATRON_ENABLED">Macro </a>LIBXML_SCHEMATRON_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_SCHEMATRON_ENABLED">LIBXML_SCHEMATRON_ENABLED</a>;
+</pre>
+<p>Whether the Schematron validation interfaces are compiled in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_HTML_ENABLED">Macro </a>LIBXML_HTML_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_HTML_ENABLED">LIBXML_HTML_ENABLED</a>;
-</pre><p>Whether the HTML support is configured in</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_TEST_VERSION">Macro </a>LIBXML_TEST_VERSION</h3>
+<pre class="programlisting">#define <a href="#LIBXML_TEST_VERSION">LIBXML_TEST_VERSION</a>;
+</pre>
+<p>Macro to check that the libxml version in use is compatible with the version the software has been compiled against</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_HTTP_ENABLED">Macro </a>LIBXML_HTTP_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_HTTP_ENABLED">LIBXML_HTTP_ENABLED</a>;
-</pre><p>Whether the HTTP support is configured in</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_THREAD_ALLOC_ENABLED">Macro </a>LIBXML_THREAD_ALLOC_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_THREAD_ALLOC_ENABLED">LIBXML_THREAD_ALLOC_ENABLED</a>;
+</pre>
+<p>Whether the allocation hooks are per-thread</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_ICONV_ENABLED">Macro </a>LIBXML_ICONV_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_ICONV_ENABLED">LIBXML_ICONV_ENABLED</a>;
-</pre><p>Whether iconv support is available</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_THREAD_ENABLED">Macro </a>LIBXML_THREAD_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_THREAD_ENABLED">LIBXML_THREAD_ENABLED</a>;
+</pre>
+<p>Whether the thread support is configured in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_ICU_ENABLED">Macro </a>LIBXML_ICU_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_ICU_ENABLED">LIBXML_ICU_ENABLED</a>;
-</pre><p>Whether icu support is available</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_TREE_ENABLED">Macro </a>LIBXML_TREE_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_TREE_ENABLED">LIBXML_TREE_ENABLED</a>;
+</pre>
+<p>Whether the DOM like tree manipulation API support is configured in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_ISO8859X_ENABLED">Macro </a>LIBXML_ISO8859X_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_ISO8859X_ENABLED">LIBXML_ISO8859X_ENABLED</a>;
-</pre><p>Whether ISO-8859-* support is made available in case iconv is not</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_UNICODE_ENABLED">Macro </a>LIBXML_UNICODE_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_UNICODE_ENABLED">LIBXML_UNICODE_ENABLED</a>;
+</pre>
+<p>Whether the Unicode related interfaces are compiled in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_LEGACY_ENABLED">Macro </a>LIBXML_LEGACY_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_LEGACY_ENABLED">LIBXML_LEGACY_ENABLED</a>;
-</pre><p>Whether the deprecated APIs are compiled in for compatibility</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_VALID_ENABLED">Macro </a>LIBXML_VALID_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_VALID_ENABLED">LIBXML_VALID_ENABLED</a>;
+</pre>
+<p>Whether the DTD validation support is configured in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_LZMA_ENABLED">Macro </a>LIBXML_LZMA_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_LZMA_ENABLED">LIBXML_LZMA_ENABLED</a>;
-</pre><p>Whether the Lzma support is compiled in</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_VERSION">Macro </a>LIBXML_VERSION</h3>
+<pre class="programlisting">#define <a href="#LIBXML_VERSION">LIBXML_VERSION</a>;
+</pre>
+<p>the version number: 1.2.3 value is 10203</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_MODULES_ENABLED">Macro </a>LIBXML_MODULES_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_MODULES_ENABLED">LIBXML_MODULES_ENABLED</a>;
-</pre><p>Whether the module interfaces are compiled in</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_VERSION_EXTRA">Macro </a>LIBXML_VERSION_EXTRA</h3>
+<pre class="programlisting">#define <a href="#LIBXML_VERSION_EXTRA">LIBXML_VERSION_EXTRA</a>;
+</pre>
+<p>extra version information, used to show a git commit description</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_VERSION_STRING">Macro </a>LIBXML_VERSION_STRING</h3>
+<pre class="programlisting">#define <a href="#LIBXML_VERSION_STRING">LIBXML_VERSION_STRING</a>;
+</pre>
+<p>the version number string, 1.2.3 value is "10203"</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_WRITER_ENABLED">Macro </a>LIBXML_WRITER_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_WRITER_ENABLED">LIBXML_WRITER_ENABLED</a>;
+</pre>
+<p>Whether the xmlWriter saving interface is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_XINCLUDE_ENABLED">Macro </a>LIBXML_XINCLUDE_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_XINCLUDE_ENABLED">LIBXML_XINCLUDE_ENABLED</a>;
+</pre>
+<p>Whether XInclude is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_XPATH_ENABLED">Macro </a>LIBXML_XPATH_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_XPATH_ENABLED">LIBXML_XPATH_ENABLED</a>;
+</pre>
+<p>Whether XPath is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_XPTR_ENABLED">Macro </a>LIBXML_XPTR_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_XPTR_ENABLED">LIBXML_XPTR_ENABLED</a>;
+</pre>
+<p>Whether XPointer is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_XPTR_LOCS_ENABLED">Macro </a>LIBXML_XPTR_LOCS_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_XPTR_LOCS_ENABLED">LIBXML_XPTR_LOCS_ENABLED</a>;
+</pre>
+<p>Whether support for XPointer locations is configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="LIBXML_ZLIB_ENABLED">Macro </a>LIBXML_ZLIB_ENABLED</h3>
+<pre class="programlisting">#define <a href="#LIBXML_ZLIB_ENABLED">LIBXML_ZLIB_ENABLED</a>;
+</pre>
+<p>Whether the Zlib support is compiled in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="WITHOUT_TRIO">Macro </a>WITHOUT_TRIO</h3>
+<pre class="programlisting">#define <a href="#WITHOUT_TRIO">WITHOUT_TRIO</a>;
+</pre>
+<p>defined if the trio support should not be configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="WITH_TRIO">Macro </a>WITH_TRIO</h3>
+<pre class="programlisting">#define <a href="#WITH_TRIO">WITH_TRIO</a>;
+</pre>
+<p>defined if the trio support need to be configured in</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_DEPRECATED">Macro </a>XML_DEPRECATED</h3>
+<pre class="programlisting">#define <a href="#XML_DEPRECATED">XML_DEPRECATED</a>;
+</pre>
+<p>Macro used to indicate that a function, variable, type or struct member is deprecated.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlCheckVersion"></a>xmlCheckVersion ()</h3>
+<pre class="programlisting">void       xmlCheckVersion                 (int version)<br>
+</pre>
+<p>check the compiled lib version against the include one. This can warn or immediately kill the application</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>version</tt></i>:</span></td>
+<td>the include version number</td>
+</tr></tbody>
+</table></div>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_MODULE_EXTENSION">Macro </a>LIBXML_MODULE_EXTENSION</h3><pre class="programlisting">#define <a href="#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a>;
-</pre><p>the string suffix used by dynamic modules (usually shared libraries)</p>
+<hr>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_OUTPUT_ENABLED">Macro </a>LIBXML_OUTPUT_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_OUTPUT_ENABLED">LIBXML_OUTPUT_ENABLED</a>;
-</pre><p>Whether the serialization/saving support is configured in</p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_PATTERN_ENABLED">Macro </a>LIBXML_PATTERN_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_PATTERN_ENABLED">LIBXML_PATTERN_ENABLED</a>;
-</pre><p>Whether the <a href="libxml2-pattern.html#xmlPattern">xmlPattern</a> node selection interface is configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_PUSH_ENABLED">Macro </a>LIBXML_PUSH_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_PUSH_ENABLED">LIBXML_PUSH_ENABLED</a>;
-</pre><p>Whether the push parsing interfaces are configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_READER_ENABLED">Macro </a>LIBXML_READER_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_READER_ENABLED">LIBXML_READER_ENABLED</a>;
-</pre><p>Whether the xmlReader parsing interface is configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_REGEXP_ENABLED">Macro </a>LIBXML_REGEXP_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_REGEXP_ENABLED">LIBXML_REGEXP_ENABLED</a>;
-</pre><p>Whether the regular expressions interfaces are compiled in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_SAX1_ENABLED">Macro </a>LIBXML_SAX1_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_SAX1_ENABLED">LIBXML_SAX1_ENABLED</a>;
-</pre><p>Whether the older SAX1 interface is configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_SCHEMAS_ENABLED">Macro </a>LIBXML_SCHEMAS_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_SCHEMAS_ENABLED">LIBXML_SCHEMAS_ENABLED</a>;
-</pre><p>Whether the Schemas validation interfaces are compiled in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_SCHEMATRON_ENABLED">Macro </a>LIBXML_SCHEMATRON_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_SCHEMATRON_ENABLED">LIBXML_SCHEMATRON_ENABLED</a>;
-</pre><p>Whether the Schematron validation interfaces are compiled in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_TEST_VERSION">Macro </a>LIBXML_TEST_VERSION</h3><pre class="programlisting">#define <a href="#LIBXML_TEST_VERSION">LIBXML_TEST_VERSION</a>;
-</pre><p>Macro to check that the libxml version in use is compatible with the version the software has been compiled against</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_THREAD_ALLOC_ENABLED">Macro </a>LIBXML_THREAD_ALLOC_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_THREAD_ALLOC_ENABLED">LIBXML_THREAD_ALLOC_ENABLED</a>;
-</pre><p>Whether the allocation hooks are per-thread</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_THREAD_ENABLED">Macro </a>LIBXML_THREAD_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_THREAD_ENABLED">LIBXML_THREAD_ENABLED</a>;
-</pre><p>Whether the thread support is configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_TREE_ENABLED">Macro </a>LIBXML_TREE_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_TREE_ENABLED">LIBXML_TREE_ENABLED</a>;
-</pre><p>Whether the DOM like tree manipulation API support is configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_UNICODE_ENABLED">Macro </a>LIBXML_UNICODE_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_UNICODE_ENABLED">LIBXML_UNICODE_ENABLED</a>;
-</pre><p>Whether the Unicode related interfaces are compiled in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_VALID_ENABLED">Macro </a>LIBXML_VALID_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_VALID_ENABLED">LIBXML_VALID_ENABLED</a>;
-</pre><p>Whether the DTD validation support is configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_VERSION">Macro </a>LIBXML_VERSION</h3><pre class="programlisting">#define <a href="#LIBXML_VERSION">LIBXML_VERSION</a>;
-</pre><p>the version number: 1.2.3 value is 10203</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_VERSION_EXTRA">Macro </a>LIBXML_VERSION_EXTRA</h3><pre class="programlisting">#define <a href="#LIBXML_VERSION_EXTRA">LIBXML_VERSION_EXTRA</a>;
-</pre><p>extra version information, used to show a git commit description</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_VERSION_STRING">Macro </a>LIBXML_VERSION_STRING</h3><pre class="programlisting">#define <a href="#LIBXML_VERSION_STRING">LIBXML_VERSION_STRING</a>;
-</pre><p>the version number string, 1.2.3 value is "10203"</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_WRITER_ENABLED">Macro </a>LIBXML_WRITER_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_WRITER_ENABLED">LIBXML_WRITER_ENABLED</a>;
-</pre><p>Whether the xmlWriter saving interface is configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_XINCLUDE_ENABLED">Macro </a>LIBXML_XINCLUDE_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_XINCLUDE_ENABLED">LIBXML_XINCLUDE_ENABLED</a>;
-</pre><p>Whether XInclude is configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_XPATH_ENABLED">Macro </a>LIBXML_XPATH_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_XPATH_ENABLED">LIBXML_XPATH_ENABLED</a>;
-</pre><p>Whether XPath is configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_XPTR_ENABLED">Macro </a>LIBXML_XPTR_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_XPTR_ENABLED">LIBXML_XPTR_ENABLED</a>;
-</pre><p>Whether XPointer is configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_XPTR_LOCS_ENABLED">Macro </a>LIBXML_XPTR_LOCS_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_XPTR_LOCS_ENABLED">LIBXML_XPTR_LOCS_ENABLED</a>;
-</pre><p>Whether support for XPointer locations is configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="LIBXML_ZLIB_ENABLED">Macro </a>LIBXML_ZLIB_ENABLED</h3><pre class="programlisting">#define <a href="#LIBXML_ZLIB_ENABLED">LIBXML_ZLIB_ENABLED</a>;
-</pre><p>Whether the Zlib support is compiled in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="WITHOUT_TRIO">Macro </a>WITHOUT_TRIO</h3><pre class="programlisting">#define <a href="#WITHOUT_TRIO">WITHOUT_TRIO</a>;
-</pre><p>defined if the trio support should not be configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="WITH_TRIO">Macro </a>WITH_TRIO</h3><pre class="programlisting">#define <a href="#WITH_TRIO">WITH_TRIO</a>;
-</pre><p>defined if the trio support need to be configured in</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_DEPRECATED">Macro </a>XML_DEPRECATED</h3><pre class="programlisting">#define <a href="#XML_DEPRECATED">XML_DEPRECATED</a>;
-</pre><p>Macro used to indicate that a function, variable, type or struct member is deprecated.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlCheckVersion"/>xmlCheckVersion ()</h3><pre class="programlisting">void xmlCheckVersion                 (int version)<br/>
-</pre><p>check the compiled lib version against the include one. This can warn or immediately kill the application</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>version</tt></i>:</span></td><td>the include version number</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</body>
 </html>
index 61559e6..9418ea8 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xmlwriter: text writing API for XML</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlversion.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xpath.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xmlwriter</span>
-    </h2>
-    <p>xmlwriter - text writing API for XML</p>
-    <p>text writing API for XML </p>
-    <p>Author(s): Alfred Mickautsch &lt;alfred@mickautsch.de&gt; </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#xmlTextWriterWriteProcessingInstruction">xmlTextWriterWriteProcessingInstruction</a>;
-#define <a href="#xmlTextWriterWriteDocType">xmlTextWriterWriteDocType</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xmlwriter: text writing API for XML</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlversion.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xpath.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xmlwriter</span></h2>
+<p>xmlwriter - text writing API for XML</p>
+<p>text writing API for XML </p>
+<p>Author(s): Alfred Mickautsch &lt;alfred@mickautsch.de&gt; </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#xmlTextWriterWriteDocType">xmlTextWriterWriteDocType</a>;
+#define <a href="#xmlTextWriterWriteProcessingInstruction">xmlTextWriterWriteProcessingInstruction</a>;
 typedef struct _xmlTextWriter <a href="#xmlTextWriter">xmlTextWriter</a>;
 typedef <a href="libxml2-xmlwriter.html#xmlTextWriter">xmlTextWriter</a> * <a href="#xmlTextWriterPtr">xmlTextWriterPtr</a>;
-int    <a href="#xmlTextWriterStartDocument">xmlTextWriterStartDocument</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * version, <br/>                                     const char * encoding, <br/>                                    const char * standalone);
-int    <a href="#xmlTextWriterEndPI">xmlTextWriterEndPI</a>            (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-int    <a href="#xmlTextWriterWriteBase64">xmlTextWriterWriteBase64</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * data, <br/>                                        int start, <br/>                                        int len);
-int    <a href="#xmlTextWriterSetIndentString">xmlTextWriterSetIndentString</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
-int    <a href="#xmlTextWriterStartAttribute">xmlTextWriterStartAttribute</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlTextWriterEndComment">xmlTextWriterEndComment</a>          (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-int    <a href="#xmlTextWriterWriteRawLen">xmlTextWriterWriteRawLen</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len);
-int    <a href="#xmlTextWriterWriteDTDExternalEntityContents">xmlTextWriterWriteDTDExternalEntityContents</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid);
-int    <a href="#xmlTextWriterWriteVFormatCDATA">xmlTextWriterWriteVFormatCDATA</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      va_list argptr);
-int    <a href="#xmlTextWriterStartAttributeNS">xmlTextWriterStartAttributeNS</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI);
-<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                                   int compression);
-int    <a href="#xmlTextWriterWriteFormatAttributeNS">xmlTextWriterWriteFormatAttributeNS</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                                const char * format, <br/>                                              ... ...);
-int    <a href="#xmlTextWriterWriteDTDEntity">xmlTextWriterWriteDTDEntity</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    int pe, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlTextWriterWriteVFormatPI">xmlTextWriterWriteVFormatPI</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const char * format, <br/>                                      va_list argptr);
-int    <a href="#xmlTextWriterWriteBinHex">xmlTextWriterWriteBinHex</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * data, <br/>                                        int start, <br/>                                        int len);
+void   <a href="#xmlFreeTextWriter">xmlFreeTextWriter</a>              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
+<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriter">xmlNewTextWriter</a>        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out);
+<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> * doc, <br>                                                 int compression);
+<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriterFilename">xmlNewTextWriterFilename</a>        (const char * uri, <br>                                                  int compression);
+<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a>    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                             int compression);
+<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a>    (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                                    int compression);
+<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriterTree">xmlNewTextWriterTree</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                                int compression);
 int    <a href="#xmlTextWriterEndAttribute">xmlTextWriterEndAttribute</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-int    <a href="#xmlTextWriterSetIndent">xmlTextWriterSetIndent</a>            (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    int indent);
-int    <a href="#xmlTextWriterWriteFormatPI">xmlTextWriterWriteFormatPI</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const char * format, <br/>                                      ... ...);
-int    <a href="#xmlTextWriterEndDocument">xmlTextWriterEndDocument</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-int    <a href="#xmlTextWriterWriteDTDAttlist">xmlTextWriterWriteDTDAttlist</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlTextWriterStartComment">xmlTextWriterStartComment</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-int    <a href="#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                       const char * format, <br/>                                      va_list argptr);
 int    <a href="#xmlTextWriterEndCDATA">xmlTextWriterEndCDATA</a>              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-int    <a href="#xmlTextWriterStartElementNS">xmlTextWriterStartElementNS</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI);
-int    <a href="#xmlTextWriterEndDTDEntity">xmlTextWriterEndDTDEntity</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriter">xmlNewTextWriter</a>        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out);
-void   <a href="#xmlFreeTextWriter">xmlFreeTextWriter</a>              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-int    <a href="#xmlTextWriterWriteVFormatDTDAttlist">xmlTextWriterWriteVFormatDTDAttlist</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              va_list argptr);
-int    <a href="#xmlTextWriterStartPI">xmlTextWriterStartPI</a>                (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target);
-int    <a href="#xmlTextWriterStartElement">xmlTextWriterStartElement</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            int pe, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid);
-int    <a href="#xmlTextWriterWriteFormatRaw">xmlTextWriterWriteFormatRaw</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      ... ...);
-int    <a href="#xmlTextWriterWriteCDATA">xmlTextWriterWriteCDATA</a>          (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlTextWriterWriteVFormatDTDInternalEntity">xmlTextWriterWriteVFormatDTDInternalEntity</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                                    int pe, <br/>                                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const char * format, <br/>                                                      va_list argptr);
-int    <a href="#xmlTextWriterWriteVFormatAttribute">xmlTextWriterWriteVFormatAttribute</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              va_list argptr);
-int    <a href="#xmlTextWriterEndDTDElement">xmlTextWriterEndDTDElement</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
+int    <a href="#xmlTextWriterEndComment">xmlTextWriterEndComment</a>          (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
 int    <a href="#xmlTextWriterEndDTD">xmlTextWriterEndDTD</a>          (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-int    <a href="#xmlTextWriterWriteElement">xmlTextWriterWriteElement</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterEndDTDAttlist">xmlTextWriterEndDTDAttlist</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
+int    <a href="#xmlTextWriterEndDTDElement">xmlTextWriterEndDTDElement</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
+int    <a href="#xmlTextWriterEndDTDEntity">xmlTextWriterEndDTDEntity</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
+int    <a href="#xmlTextWriterEndDocument">xmlTextWriterEndDocument</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
 int    <a href="#xmlTextWriterEndElement">xmlTextWriterEndElement</a>          (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-int    <a href="#xmlTextWriterWriteVFormatComment">xmlTextWriterWriteVFormatComment</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const char * format, <br/>                                              va_list argptr);
-int    <a href="#xmlTextWriterStartCDATA">xmlTextWriterStartCDATA</a>          (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriterFilename">xmlNewTextWriterFilename</a>        (const char * uri, <br/>                                                         int compression);
-int    <a href="#xmlTextWriterWriteVFormatElement">xmlTextWriterWriteVFormatElement</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              va_list argptr);
-int    <a href="#xmlTextWriterWriteFormatComment">xmlTextWriterWriteFormatComment</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      ... ...);
-int    <a href="#xmlTextWriterWriteAttributeNS">xmlTextWriterWriteAttributeNS</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlTextWriterWritePI">xmlTextWriterWritePI</a>                (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlTextWriterWriteFormatDTDInternalEntity">xmlTextWriterWriteFormatDTDInternalEntity</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                                    int pe, <br/>                                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const char * format, <br/>                                                      ... ...);
-int    <a href="#xmlTextWriterWriteVFormatString">xmlTextWriterWriteVFormatString</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      va_list argptr);
-int    <a href="#xmlTextWriterWriteDTDInternalEntity">xmlTextWriterWriteDTDInternalEntity</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            int pe, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlTextWriterWriteVFormatElementNS">xmlTextWriterWriteVFormatElementNS</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                                const char * format, <br/>                                              va_list argptr);
-int    <a href="#xmlTextWriterWriteDTDNotation">xmlTextWriterWriteDTDNotation</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid);
-int    <a href="#xmlTextWriterWriteFormatElement">xmlTextWriterWriteFormatElement</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const char * format, <br/>                                      ... ...);
-int    <a href="#xmlTextWriterSetQuoteChar">xmlTextWriterSetQuoteChar</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> quotechar);
-int    <a href="#xmlTextWriterWriteString">xmlTextWriterWriteString</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlTextWriterWriteElementNS">xmlTextWriterWriteElementNS</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlTextWriterFullEndElement">xmlTextWriterFullEndElement</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-int    <a href="#xmlTextWriterWriteVFormatAttributeNS">xmlTextWriterWriteVFormatAttributeNS</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                                const char * format, <br/>                                              va_list argptr);
+int    <a href="#xmlTextWriterEndPI">xmlTextWriterEndPI</a>            (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
 int    <a href="#xmlTextWriterFlush">xmlTextWriterFlush</a>            (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-int    <a href="#xmlTextWriterStartDTD">xmlTextWriterStartDTD</a>              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid);
-int    <a href="#xmlTextWriterWriteAttribute">xmlTextWriterWriteAttribute</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a>  (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> * doc, <br/>                                                int compression);
-int    <a href="#xmlTextWriterWriteFormatDTDElement">xmlTextWriterWriteFormatDTDElement</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              ... ...);
-int    <a href="#xmlTextWriterEndDTDAttlist">xmlTextWriterEndDTDAttlist</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
-<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriterTree">xmlNewTextWriterTree</a>        (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                               int compression);
-<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> <a href="#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a>    (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                            int compression);
-int    <a href="#xmlTextWriterWriteFormatCDATA">xmlTextWriterWriteFormatCDATA</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      ... ...);
-int    <a href="#xmlTextWriterStartDTDAttlist">xmlTextWriterStartDTDAttlist</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlTextWriterWriteFormatString">xmlTextWriterWriteFormatString</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      ... ...);
-int    <a href="#xmlTextWriterWriteComment">xmlTextWriterWriteComment</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlTextWriterWriteVFormatRaw">xmlTextWriterWriteVFormatRaw</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      va_list argptr);
-int    <a href="#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                       const char * format, <br/>                                      ... ...);
-int    <a href="#xmlTextWriterWriteFormatDTDAttlist">xmlTextWriterWriteFormatDTDAttlist</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              ... ...);
-int    <a href="#xmlTextWriterWriteRaw">xmlTextWriterWriteRaw</a>              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlTextWriterWriteDTDElement">xmlTextWriterWriteDTDElement</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
-int    <a href="#xmlTextWriterWriteDTD">xmlTextWriterWriteDTD</a>              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * subset);
-int    <a href="#xmlTextWriterWriteFormatAttribute">xmlTextWriterWriteFormatAttribute</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              ... ...);
-int    <a href="#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    int pe, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlTextWriterWriteVFormatDTDElement">xmlTextWriterWriteVFormatDTDElement</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              va_list argptr);
-int    <a href="#xmlTextWriterStartDTDElement">xmlTextWriterStartDTDElement</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-int    <a href="#xmlTextWriterWriteFormatElementNS">xmlTextWriterWriteFormatElementNS</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                                const char * format, <br/>                                              ... ...);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteDocType">Macro </a>xmlTextWriterWriteDocType</h3><pre class="programlisting">#define <a href="#xmlTextWriterWriteDocType">xmlTextWriterWriteDocType</a>;
-</pre><p>this macro maps to <a href="libxml2-xmlwriter.html#xmlTextWriterWriteDTD">xmlTextWriterWriteDTD</a></p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteProcessingInstruction">Macro </a>xmlTextWriterWriteProcessingInstruction</h3><pre class="programlisting">#define <a href="#xmlTextWriterWriteProcessingInstruction">xmlTextWriterWriteProcessingInstruction</a>;
-</pre><p>This macro maps to <a href="libxml2-xmlwriter.html#xmlTextWriterWritePI">xmlTextWriterWritePI</a></p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriter">Structure </a>xmlTextWriter</h3><pre class="programlisting">struct _xmlTextWriter {
+int    <a href="#xmlTextWriterFullEndElement">xmlTextWriterFullEndElement</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
+int    <a href="#xmlTextWriterSetIndent">xmlTextWriterSetIndent</a>            (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     int indent);
+int    <a href="#xmlTextWriterSetIndentString">xmlTextWriterSetIndentString</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
+int    <a href="#xmlTextWriterSetQuoteChar">xmlTextWriterSetQuoteChar</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> quotechar);
+int    <a href="#xmlTextWriterStartAttribute">xmlTextWriterStartAttribute</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlTextWriterStartAttributeNS">xmlTextWriterStartAttributeNS</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI);
+int    <a href="#xmlTextWriterStartCDATA">xmlTextWriterStartCDATA</a>          (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
+int    <a href="#xmlTextWriterStartComment">xmlTextWriterStartComment</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer);
+int    <a href="#xmlTextWriterStartDTD">xmlTextWriterStartDTD</a>              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid);
+int    <a href="#xmlTextWriterStartDTDAttlist">xmlTextWriterStartDTDAttlist</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlTextWriterStartDTDElement">xmlTextWriterStartDTDElement</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     int pe, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlTextWriterStartDocument">xmlTextWriterStartDocument</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * version, <br>                                      const char * encoding, <br>                                     const char * standalone);
+int    <a href="#xmlTextWriterStartElement">xmlTextWriterStartElement</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+int    <a href="#xmlTextWriterStartElementNS">xmlTextWriterStartElementNS</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI);
+int    <a href="#xmlTextWriterStartPI">xmlTextWriterStartPI</a>                (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target);
+int    <a href="#xmlTextWriterWriteAttribute">xmlTextWriterWriteAttribute</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteAttributeNS">xmlTextWriterWriteAttributeNS</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteBase64">xmlTextWriterWriteBase64</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * data, <br>                                         int start, <br>                                         int len);
+int    <a href="#xmlTextWriterWriteBinHex">xmlTextWriterWriteBinHex</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * data, <br>                                         int start, <br>                                         int len);
+int    <a href="#xmlTextWriterWriteCDATA">xmlTextWriterWriteCDATA</a>          (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteComment">xmlTextWriterWriteComment</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteDTD">xmlTextWriterWriteDTD</a>              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * subset);
+int    <a href="#xmlTextWriterWriteDTDAttlist">xmlTextWriterWriteDTDAttlist</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteDTDElement">xmlTextWriterWriteDTDElement</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteDTDEntity">xmlTextWriterWriteDTDEntity</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     int pe, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             int pe, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid);
+int    <a href="#xmlTextWriterWriteDTDExternalEntityContents">xmlTextWriterWriteDTDExternalEntityContents</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid);
+int    <a href="#xmlTextWriterWriteDTDInternalEntity">xmlTextWriterWriteDTDInternalEntity</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             int pe, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteDTDNotation">xmlTextWriterWriteDTDNotation</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid);
+int    <a href="#xmlTextWriterWriteElement">xmlTextWriterWriteElement</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteElementNS">xmlTextWriterWriteElementNS</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteFormatAttribute">xmlTextWriterWriteFormatAttribute</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               ... ...);
+int    <a href="#xmlTextWriterWriteFormatAttributeNS">xmlTextWriterWriteFormatAttributeNS</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                                 const char * format, <br>                                               ... ...);
+int    <a href="#xmlTextWriterWriteFormatCDATA">xmlTextWriterWriteFormatCDATA</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       ... ...);
+int    <a href="#xmlTextWriterWriteFormatComment">xmlTextWriterWriteFormatComment</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       ... ...);
+int    <a href="#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                        const char * format, <br>                                       ... ...);
+int    <a href="#xmlTextWriterWriteFormatDTDAttlist">xmlTextWriterWriteFormatDTDAttlist</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               ... ...);
+int    <a href="#xmlTextWriterWriteFormatDTDElement">xmlTextWriterWriteFormatDTDElement</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               ... ...);
+int    <a href="#xmlTextWriterWriteFormatDTDInternalEntity">xmlTextWriterWriteFormatDTDInternalEntity</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                                     int pe, <br>                                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const char * format, <br>                                                       ... ...);
+int    <a href="#xmlTextWriterWriteFormatElement">xmlTextWriterWriteFormatElement</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const char * format, <br>                                       ... ...);
+int    <a href="#xmlTextWriterWriteFormatElementNS">xmlTextWriterWriteFormatElementNS</a>      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                                 const char * format, <br>                                               ... ...);
+int    <a href="#xmlTextWriterWriteFormatPI">xmlTextWriterWriteFormatPI</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const char * format, <br>                                       ... ...);
+int    <a href="#xmlTextWriterWriteFormatRaw">xmlTextWriterWriteFormatRaw</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       ... ...);
+int    <a href="#xmlTextWriterWriteFormatString">xmlTextWriterWriteFormatString</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       ... ...);
+int    <a href="#xmlTextWriterWritePI">xmlTextWriterWritePI</a>                (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteRaw">xmlTextWriterWriteRaw</a>              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteRawLen">xmlTextWriterWriteRawLen</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len);
+int    <a href="#xmlTextWriterWriteString">xmlTextWriterWriteString</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content);
+int    <a href="#xmlTextWriterWriteVFormatAttribute">xmlTextWriterWriteVFormatAttribute</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatAttributeNS">xmlTextWriterWriteVFormatAttributeNS</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                                 const char * format, <br>                                               va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatCDATA">xmlTextWriterWriteVFormatCDATA</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatComment">xmlTextWriterWriteVFormatComment</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const char * format, <br>                                               va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                        const char * format, <br>                                       va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatDTDAttlist">xmlTextWriterWriteVFormatDTDAttlist</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatDTDElement">xmlTextWriterWriteVFormatDTDElement</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatDTDInternalEntity">xmlTextWriterWriteVFormatDTDInternalEntity</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                                     int pe, <br>                                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const char * format, <br>                                                       va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatElement">xmlTextWriterWriteVFormatElement</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatElementNS">xmlTextWriterWriteVFormatElementNS</a>    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                                 const char * format, <br>                                               va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatPI">xmlTextWriterWriteVFormatPI</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const char * format, <br>                                       va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatRaw">xmlTextWriterWriteVFormatRaw</a>        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       va_list argptr);
+int    <a href="#xmlTextWriterWriteVFormatString">xmlTextWriterWriteVFormatString</a>  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       va_list argptr);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteDocType">Macro </a>xmlTextWriterWriteDocType</h3>
+<pre class="programlisting">#define <a href="#xmlTextWriterWriteDocType">xmlTextWriterWriteDocType</a>;
+</pre>
+<p>this macro maps to <a href="libxml2-xmlwriter.html#xmlTextWriterWriteDTD">xmlTextWriterWriteDTD</a></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteProcessingInstruction">Macro </a>xmlTextWriterWriteProcessingInstruction</h3>
+<pre class="programlisting">#define <a href="#xmlTextWriterWriteProcessingInstruction">xmlTextWriterWriteProcessingInstruction</a>;
+</pre>
+<p>This macro maps to <a href="libxml2-xmlwriter.html#xmlTextWriterWritePI">xmlTextWriterWritePI</a></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriter">Structure </a>xmlTextWriter</h3>
+<pre class="programlisting">struct _xmlTextWriter {
 The content of this structure is not made public by the API.
 } xmlTextWriter;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterPtr">Typedef </a>xmlTextWriterPtr</h3><pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriter">xmlTextWriter</a> * xmlTextWriterPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlFreeTextWriter"/>xmlFreeTextWriter ()</h3><pre class="programlisting">void     xmlFreeTextWriter               (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>Deallocate all the resources associated to the writer</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewTextWriter"/>xmlNewTextWriter ()</h3><pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>     xmlNewTextWriter        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out)<br/>
-</pre><p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure using an <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> NOTE: the @out parameter will be deallocated when the writer is closed (if the call succeed.)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>out</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewTextWriterDoc"/>xmlNewTextWriterDoc ()</h3><pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>       xmlNewTextWriterDoc     (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> * doc, <br/>                                                int compression)<br/>
-</pre><p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure with @*doc as output</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>address of a <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> to hold the new XML document tree</td></tr><tr><td><span class="term"><i><tt>compression</tt></i>:</span></td><td>compress the output?</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewTextWriterFilename"/>xmlNewTextWriterFilename ()</h3><pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>     xmlNewTextWriterFilename        (const char * uri, <br/>                                                         int compression)<br/>
-</pre><p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure with @uri as output</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>uri</tt></i>:</span></td><td>the URI of the resource for the output</td></tr><tr><td><span class="term"><i><tt>compression</tt></i>:</span></td><td>compress the output?</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewTextWriterMemory"/>xmlNewTextWriterMemory ()</h3><pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> xmlNewTextWriterMemory  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br/>                                            int compression)<br/>
-</pre><p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure with @buf as output TODO: handle compression</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>buf</tt></i>:</span></td><td><a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a></td></tr><tr><td><span class="term"><i><tt>compression</tt></i>:</span></td><td>compress the output?</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewTextWriterPushParser"/>xmlNewTextWriterPushParser ()</h3><pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> xmlNewTextWriterPushParser      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br/>                                                   int compression)<br/>
-</pre><p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure with @ctxt as output NOTE: the @ctxt context will be freed with the resulting writer (if the call succeeds). TODO: handle compression</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td><a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> to hold the new XML document tree</td></tr><tr><td><span class="term"><i><tt>compression</tt></i>:</span></td><td>compress the output?</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNewTextWriterTree"/>xmlNewTextWriterTree ()</h3><pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>     xmlNewTextWriterTree    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                               int compression)<br/>
-</pre><p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure with @doc as output starting at @node</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a></td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> or NULL for doc-&gt;children</td></tr><tr><td><span class="term"><i><tt>compression</tt></i>:</span></td><td>compress the output?</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterEndAttribute"/>xmlTextWriterEndAttribute ()</h3><pre class="programlisting">int      xmlTextWriterEndAttribute       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>End the current xml element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterEndCDATA"/>xmlTextWriterEndCDATA ()</h3><pre class="programlisting">int      xmlTextWriterEndCDATA           (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>End an xml CDATA section.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterEndComment"/>xmlTextWriterEndComment ()</h3><pre class="programlisting">int  xmlTextWriterEndComment         (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>End the current xml comment.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterEndDTD"/>xmlTextWriterEndDTD ()</h3><pre class="programlisting">int  xmlTextWriterEndDTD             (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>End an xml DTD.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterEndDTDAttlist"/>xmlTextWriterEndDTDAttlist ()</h3><pre class="programlisting">int    xmlTextWriterEndDTDAttlist      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>End an xml DTD <a href="libxml2-SAX.html#attribute">attribute</a> list.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterEndDTDElement"/>xmlTextWriterEndDTDElement ()</h3><pre class="programlisting">int    xmlTextWriterEndDTDElement      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>End an xml DTD element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterEndDTDEntity"/>xmlTextWriterEndDTDEntity ()</h3><pre class="programlisting">int      xmlTextWriterEndDTDEntity       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>End an xml DTD entity.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterEndDocument"/>xmlTextWriterEndDocument ()</h3><pre class="programlisting">int        xmlTextWriterEndDocument        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>End an xml document. All open elements are closed, and the content is flushed to the output.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterEndElement"/>xmlTextWriterEndElement ()</h3><pre class="programlisting">int  xmlTextWriterEndElement         (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>End the current xml element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterEndPI"/>xmlTextWriterEndPI ()</h3><pre class="programlisting">int    xmlTextWriterEndPI              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>End the current xml PI.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterFlush"/>xmlTextWriterFlush ()</h3><pre class="programlisting">int    xmlTextWriterFlush              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>Flush the output buffer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterFullEndElement"/>xmlTextWriterFullEndElement ()</h3><pre class="programlisting">int  xmlTextWriterFullEndElement     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>End the current xml element. Writes an end tag even if the element is empty</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterSetIndent"/>xmlTextWriterSetIndent ()</h3><pre class="programlisting">int    xmlTextWriterSetIndent          (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    int indent)<br/>
-</pre><p>Set indentation output. indent = 0 do not indentation. indent &gt; 0 do indentation.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>indent</tt></i>:</span></td><td>do indentation?</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 on error or 0 otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterSetIndentString"/>xmlTextWriterSetIndentString ()</h3><pre class="programlisting">int        xmlTextWriterSetIndentString    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>Set string indentation.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 on error or 0 otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterSetQuoteChar"/>xmlTextWriterSetQuoteChar ()</h3><pre class="programlisting">int      xmlTextWriterSetQuoteChar       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> quotechar)<br/>
-</pre><p>Set the character used for quoting attributes.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>quotechar</tt></i>:</span></td><td>the quote character</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 on error or 0 otherwise.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartAttribute"/>xmlTextWriterStartAttribute ()</h3><pre class="programlisting">int  xmlTextWriterStartAttribute     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Start an xml attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>element name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartAttributeNS"/>xmlTextWriterStartAttributeNS ()</h3><pre class="programlisting">int      xmlTextWriterStartAttributeNS   (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI)<br/>
-</pre><p>Start an xml <a href="libxml2-SAX.html#attribute">attribute</a> with namespace support.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>namespace prefix or NULL</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>element local name</td></tr><tr><td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td><td>namespace URI or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartCDATA"/>xmlTextWriterStartCDATA ()</h3><pre class="programlisting">int  xmlTextWriterStartCDATA         (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>Start an xml CDATA section.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartComment"/>xmlTextWriterStartComment ()</h3><pre class="programlisting">int      xmlTextWriterStartComment       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br/>
-</pre><p>Start an xml comment.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartDTD"/>xmlTextWriterStartDTD ()</h3><pre class="programlisting">int      xmlTextWriterStartDTD           (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid)<br/>
-</pre><p>Start an xml DTD.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD</td></tr><tr><td><span class="term"><i><tt>pubid</tt></i>:</span></td><td>the public identifier, which is an alternative to the system identifier</td></tr><tr><td><span class="term"><i><tt>sysid</tt></i>:</span></td><td>the system identifier, which is the URI of the DTD</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartDTDAttlist"/>xmlTextWriterStartDTDAttlist ()</h3><pre class="programlisting">int        xmlTextWriterStartDTDAttlist    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Start an xml DTD ATTLIST.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD ATTLIST</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartDTDElement"/>xmlTextWriterStartDTDElement ()</h3><pre class="programlisting">int        xmlTextWriterStartDTDElement    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Start an xml DTD element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD element</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartDTDEntity"/>xmlTextWriterStartDTDEntity ()</h3><pre class="programlisting">int  xmlTextWriterStartDTDEntity     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    int pe, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Start an xml DTD ATTLIST.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>pe</tt></i>:</span></td><td>TRUE if this is a parameter entity, FALSE if not</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD ATTLIST</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartDocument"/>xmlTextWriterStartDocument ()</h3><pre class="programlisting">int    xmlTextWriterStartDocument      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * version, <br/>                                     const char * encoding, <br/>                                    const char * standalone)<br/>
-</pre><p>Start a new xml document</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>version</tt></i>:</span></td><td>the xml version ("1.0") or NULL for default ("1.0")</td></tr><tr><td><span class="term"><i><tt>encoding</tt></i>:</span></td><td>the encoding or NULL for default</td></tr><tr><td><span class="term"><i><tt>standalone</tt></i>:</span></td><td>"yes" or "no" or NULL for default</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartElement"/>xmlTextWriterStartElement ()</h3><pre class="programlisting">int      xmlTextWriterStartElement       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Start an xml element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>element name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartElementNS"/>xmlTextWriterStartElementNS ()</h3><pre class="programlisting">int  xmlTextWriterStartElementNS     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI)<br/>
-</pre><p>Start an xml element with namespace support.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>namespace prefix or NULL</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>element local name</td></tr><tr><td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td><td>namespace URI or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterStartPI"/>xmlTextWriterStartPI ()</h3><pre class="programlisting">int        xmlTextWriterStartPI            (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target)<br/>
-</pre><p>Start an xml PI.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>target</tt></i>:</span></td><td>PI target</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteAttribute"/>xmlTextWriterWriteAttribute ()</h3><pre class="programlisting">int  xmlTextWriterWriteAttribute     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write an xml attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td><a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td><a href="libxml2-SAX.html#attribute">attribute</a> content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteAttributeNS"/>xmlTextWriterWriteAttributeNS ()</h3><pre class="programlisting">int      xmlTextWriterWriteAttributeNS   (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write an xml attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>namespace prefix</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td><a href="libxml2-SAX.html#attribute">attribute</a> local name</td></tr><tr><td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td><td>namespace URI</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td><a href="libxml2-SAX.html#attribute">attribute</a> content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteBase64"/>xmlTextWriterWriteBase64 ()</h3><pre class="programlisting">int        xmlTextWriterWriteBase64        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * data, <br/>                                        int start, <br/>                                        int len)<br/>
-</pre><p>Write an base64 encoded xml text.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>binary data</td></tr><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>the position within the data of the first byte to encode</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of bytes to encode</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteBinHex"/>xmlTextWriterWriteBinHex ()</h3><pre class="programlisting">int        xmlTextWriterWriteBinHex        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * data, <br/>                                        int start, <br/>                                        int len)<br/>
-</pre><p>Write a BinHex encoded xml text.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>binary data</td></tr><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>the position within the data of the first byte to encode</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the number of bytes to encode</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteCDATA"/>xmlTextWriterWriteCDATA ()</h3><pre class="programlisting">int  xmlTextWriterWriteCDATA         (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write an xml CDATA.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>CDATA content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteComment"/>xmlTextWriterWriteComment ()</h3><pre class="programlisting">int      xmlTextWriterWriteComment       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write an xml comment.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td><a href="libxml2-SAX.html#comment">comment</a> string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteDTD"/>xmlTextWriterWriteDTD ()</h3><pre class="programlisting">int      xmlTextWriterWriteDTD           (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * subset)<br/>
-</pre><p>Write a DTD.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD</td></tr><tr><td><span class="term"><i><tt>pubid</tt></i>:</span></td><td>the public identifier, which is an alternative to the system identifier</td></tr><tr><td><span class="term"><i><tt>sysid</tt></i>:</span></td><td>the system identifier, which is the URI of the DTD</td></tr><tr><td><span class="term"><i><tt>subset</tt></i>:</span></td><td>string content of the DTD</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteDTDAttlist"/>xmlTextWriterWriteDTDAttlist ()</h3><pre class="programlisting">int        xmlTextWriterWriteDTDAttlist    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write a DTD ATTLIST.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD ATTLIST</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>content of the ATTLIST</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteDTDElement"/>xmlTextWriterWriteDTDElement ()</h3><pre class="programlisting">int        xmlTextWriterWriteDTDElement    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write a DTD element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD element</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>content of the element</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteDTDEntity"/>xmlTextWriterWriteDTDEntity ()</h3><pre class="programlisting">int  xmlTextWriterWriteDTDEntity     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    int pe, <br/>                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid, <br/>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write a DTD entity.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>pe</tt></i>:</span></td><td>TRUE if this is a parameter entity, FALSE if not</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD entity</td></tr><tr><td><span class="term"><i><tt>pubid</tt></i>:</span></td><td>the public identifier, which is an alternative to the system identifier</td></tr><tr><td><span class="term"><i><tt>sysid</tt></i>:</span></td><td>the system identifier, which is the URI of the DTD</td></tr><tr><td><span class="term"><i><tt>ndataid</tt></i>:</span></td><td>the xml notation name.</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>content of the entity</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteDTDExternalEntity"/>xmlTextWriterWriteDTDExternalEntity ()</h3><pre class="programlisting">int  xmlTextWriterWriteDTDExternalEntity     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            int pe, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid)<br/>
-</pre><p>Write a DTD external entity. The entity must have been started with <a href="libxml2-xmlwriter.html#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>pe</tt></i>:</span></td><td>TRUE if this is a parameter entity, FALSE if not</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD entity</td></tr><tr><td><span class="term"><i><tt>pubid</tt></i>:</span></td><td>the public identifier, which is an alternative to the system identifier</td></tr><tr><td><span class="term"><i><tt>sysid</tt></i>:</span></td><td>the system identifier, which is the URI of the DTD</td></tr><tr><td><span class="term"><i><tt>ndataid</tt></i>:</span></td><td>the xml notation name.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteDTDExternalEntityContents"/>xmlTextWriterWriteDTDExternalEntityContents ()</h3><pre class="programlisting">int  xmlTextWriterWriteDTDExternalEntityContents     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid)<br/>
-</pre><p>Write the contents of a DTD external entity.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>pubid</tt></i>:</span></td><td>the public identifier, which is an alternative to the system identifier</td></tr><tr><td><span class="term"><i><tt>sysid</tt></i>:</span></td><td>the system identifier, which is the URI of the DTD</td></tr><tr><td><span class="term"><i><tt>ndataid</tt></i>:</span></td><td>the xml notation name.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteDTDInternalEntity"/>xmlTextWriterWriteDTDInternalEntity ()</h3><pre class="programlisting">int  xmlTextWriterWriteDTDInternalEntity     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            int pe, <br/>                                           const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write a DTD internal entity.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>pe</tt></i>:</span></td><td>TRUE if this is a parameter entity, FALSE if not</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD entity</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>content of the entity</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteDTDNotation"/>xmlTextWriterWriteDTDNotation ()</h3><pre class="programlisting">int      xmlTextWriterWriteDTDNotation   (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid)<br/>
-</pre><p>Write a DTD entity.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the xml notation</td></tr><tr><td><span class="term"><i><tt>pubid</tt></i>:</span></td><td>the public identifier, which is an alternative to the system identifier</td></tr><tr><td><span class="term"><i><tt>sysid</tt></i>:</span></td><td>the system identifier, which is the URI of the DTD</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteElement"/>xmlTextWriterWriteElement ()</h3><pre class="programlisting">int      xmlTextWriterWriteElement       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write an xml element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>element name</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>element content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteElementNS"/>xmlTextWriterWriteElementNS ()</h3><pre class="programlisting">int  xmlTextWriterWriteElementNS     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write an xml element with namespace support.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>namespace prefix</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>element local name</td></tr><tr><td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td><td>namespace URI</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>element content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatAttribute"/>xmlTextWriterWriteFormatAttribute ()</h3><pre class="programlisting">int      xmlTextWriterWriteFormatAttribute       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              ... ...)<br/>
-</pre><p>Write a formatted xml attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td><a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatAttributeNS"/>xmlTextWriterWriteFormatAttributeNS ()</h3><pre class="programlisting">int  xmlTextWriterWriteFormatAttributeNS     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                                const char * format, <br/>                                              ... ...)<br/>
-</pre><p>Write a formatted xml attribute.with namespace support</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>namespace prefix</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td><a href="libxml2-SAX.html#attribute">attribute</a> local name</td></tr><tr><td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td><td>namespace URI</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatCDATA"/>xmlTextWriterWriteFormatCDATA ()</h3><pre class="programlisting">int      xmlTextWriterWriteFormatCDATA   (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      ... ...)<br/>
-</pre><p>Write a formatted xml CDATA.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatComment"/>xmlTextWriterWriteFormatComment ()</h3><pre class="programlisting">int  xmlTextWriterWriteFormatComment (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      ... ...)<br/>
-</pre><p>Write an xml comment.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatDTD"/>xmlTextWriterWriteFormatDTD ()</h3><pre class="programlisting">int  xmlTextWriterWriteFormatDTD     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                       const char * format, <br/>                                      ... ...)<br/>
-</pre><p>Write a DTD with a formatted markup declarations part.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD</td></tr><tr><td><span class="term"><i><tt>pubid</tt></i>:</span></td><td>the public identifier, which is an alternative to the system identifier</td></tr><tr><td><span class="term"><i><tt>sysid</tt></i>:</span></td><td>the system identifier, which is the URI of the DTD</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatDTDAttlist"/>xmlTextWriterWriteFormatDTDAttlist ()</h3><pre class="programlisting">int    xmlTextWriterWriteFormatDTDAttlist      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              ... ...)<br/>
-</pre><p>Write a formatted DTD ATTLIST.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD ATTLIST</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatDTDElement"/>xmlTextWriterWriteFormatDTDElement ()</h3><pre class="programlisting">int    xmlTextWriterWriteFormatDTDElement      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              ... ...)<br/>
-</pre><p>Write a formatted DTD element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD element</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatDTDInternalEntity"/>xmlTextWriterWriteFormatDTDInternalEntity ()</h3><pre class="programlisting">int      xmlTextWriterWriteFormatDTDInternalEntity       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                                    int pe, <br/>                                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const char * format, <br/>                                                      ... ...)<br/>
-</pre><p>Write a formatted DTD internal entity.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>pe</tt></i>:</span></td><td>TRUE if this is a parameter entity, FALSE if not</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD entity</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatElement"/>xmlTextWriterWriteFormatElement ()</h3><pre class="programlisting">int  xmlTextWriterWriteFormatElement (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const char * format, <br/>                                      ... ...)<br/>
-</pre><p>Write a formatted xml element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>element name</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatElementNS"/>xmlTextWriterWriteFormatElementNS ()</h3><pre class="programlisting">int      xmlTextWriterWriteFormatElementNS       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                                const char * format, <br/>                                              ... ...)<br/>
-</pre><p>Write a formatted xml element with namespace support.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>namespace prefix</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>element local name</td></tr><tr><td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td><td>namespace URI</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatPI"/>xmlTextWriterWriteFormatPI ()</h3><pre class="programlisting">int    xmlTextWriterWriteFormatPI      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const char * format, <br/>                                      ... ...)<br/>
-</pre><p>Write a formatted PI.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>target</tt></i>:</span></td><td>PI target</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatRaw"/>xmlTextWriterWriteFormatRaw ()</h3><pre class="programlisting">int  xmlTextWriterWriteFormatRaw     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      ... ...)<br/>
-</pre><p>Write a formatted raw xml text.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteFormatString"/>xmlTextWriterWriteFormatString ()</h3><pre class="programlisting">int    xmlTextWriterWriteFormatString  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      ... ...)<br/>
-</pre><p>Write a formatted xml text.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td>extra parameters for the format</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWritePI"/>xmlTextWriterWritePI ()</h3><pre class="programlisting">int        xmlTextWriterWritePI            (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write an xml PI.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>target</tt></i>:</span></td><td>PI target</td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>PI content</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteRaw"/>xmlTextWriterWriteRaw ()</h3><pre class="programlisting">int      xmlTextWriterWriteRaw           (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write a raw xml text.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>text string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteRawLen"/>xmlTextWriterWriteRawLen ()</h3><pre class="programlisting">int        xmlTextWriterWriteRawLen        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br/>                                     int len)<br/>
-</pre><p>Write an xml text. TODO: what about entities and special chars??</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>text string</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>length of the text string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteString"/>xmlTextWriterWriteString ()</h3><pre class="programlisting">int        xmlTextWriterWriteString        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br/>
-</pre><p>Write an xml text.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>content</tt></i>:</span></td><td>text string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatAttribute"/>xmlTextWriterWriteVFormatAttribute ()</h3><pre class="programlisting">int    xmlTextWriterWriteVFormatAttribute      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              va_list argptr)<br/>
-</pre><p>Write a formatted xml attribute.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td><a href="libxml2-SAX.html#attribute">attribute</a> name</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatAttributeNS"/>xmlTextWriterWriteVFormatAttributeNS ()</h3><pre class="programlisting">int        xmlTextWriterWriteVFormatAttributeNS    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                                const char * format, <br/>                                              va_list argptr)<br/>
-</pre><p>Write a formatted xml attribute.with namespace support</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>namespace prefix</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td><a href="libxml2-SAX.html#attribute">attribute</a> local name</td></tr><tr><td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td><td>namespace URI</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatCDATA"/>xmlTextWriterWriteVFormatCDATA ()</h3><pre class="programlisting">int    xmlTextWriterWriteVFormatCDATA  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      va_list argptr)<br/>
-</pre><p>Write a formatted xml CDATA.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatComment"/>xmlTextWriterWriteVFormatComment ()</h3><pre class="programlisting">int        xmlTextWriterWriteVFormatComment        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const char * format, <br/>                                              va_list argptr)<br/>
-</pre><p>Write an xml comment.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatDTD"/>xmlTextWriterWriteVFormatDTD ()</h3><pre class="programlisting">int        xmlTextWriterWriteVFormatDTD    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br/>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br/>                                       const char * format, <br/>                                      va_list argptr)<br/>
-</pre><p>Write a DTD with a formatted markup declarations part.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD</td></tr><tr><td><span class="term"><i><tt>pubid</tt></i>:</span></td><td>the public identifier, which is an alternative to the system identifier</td></tr><tr><td><span class="term"><i><tt>sysid</tt></i>:</span></td><td>the system identifier, which is the URI of the DTD</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatDTDAttlist"/>xmlTextWriterWriteVFormatDTDAttlist ()</h3><pre class="programlisting">int  xmlTextWriterWriteVFormatDTDAttlist     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              va_list argptr)<br/>
-</pre><p>Write a formatted DTD ATTLIST.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD ATTLIST</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatDTDElement"/>xmlTextWriterWriteVFormatDTDElement ()</h3><pre class="programlisting">int  xmlTextWriterWriteVFormatDTDElement     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              va_list argptr)<br/>
-</pre><p>Write a formatted DTD element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD element</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatDTDInternalEntity"/>xmlTextWriterWriteVFormatDTDInternalEntity ()</h3><pre class="programlisting">int    xmlTextWriterWriteVFormatDTDInternalEntity      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                                    int pe, <br/>                                                   const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const char * format, <br/>                                                      va_list argptr)<br/>
-</pre><p>Write a formatted DTD internal entity.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>pe</tt></i>:</span></td><td>TRUE if this is a parameter entity, FALSE if not</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the DTD entity</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatElement"/>xmlTextWriterWriteVFormatElement ()</h3><pre class="programlisting">int        xmlTextWriterWriteVFormatElement        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const char * format, <br/>                                              va_list argptr)<br/>
-</pre><p>Write a formatted xml element.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>element name</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatElementNS"/>xmlTextWriterWriteVFormatElementNS ()</h3><pre class="programlisting">int    xmlTextWriterWriteVFormatElementNS      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br/>                                                const char * format, <br/>                                              va_list argptr)<br/>
-</pre><p>Write a formatted xml element with namespace support.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>namespace prefix</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>element local name</td></tr><tr><td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td><td>namespace URI</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatPI"/>xmlTextWriterWriteVFormatPI ()</h3><pre class="programlisting">int  xmlTextWriterWriteVFormatPI     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br/>                                      const char * format, <br/>                                      va_list argptr)<br/>
-</pre><p>Write a formatted xml PI.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>target</tt></i>:</span></td><td>PI target</td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatRaw"/>xmlTextWriterWriteVFormatRaw ()</h3><pre class="programlisting">int        xmlTextWriterWriteVFormatRaw    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      va_list argptr)<br/>
-</pre><p>Write a formatted raw xml text.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlTextWriterWriteVFormatString"/>xmlTextWriterWriteVFormatString ()</h3><pre class="programlisting">int  xmlTextWriterWriteVFormatString (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br/>                                    const char * format, <br/>                                      va_list argptr)<br/>
-</pre><p>Write a formatted xml text.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>writer</tt></i>:</span></td><td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a></td></tr><tr><td><span class="term"><i><tt>format</tt></i>:</span></td><td>format string (see printf)</td></tr><tr><td><span class="term"><i><tt>argptr</tt></i>:</span></td><td>pointer to the first member of the variable argument list.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the bytes written (may be 0 because of buffering) or -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterPtr">Typedef </a>xmlTextWriterPtr</h3>
+<pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriter">xmlTextWriter</a> * xmlTextWriterPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlFreeTextWriter"></a>xmlFreeTextWriter ()</h3>
+<pre class="programlisting">void       xmlFreeTextWriter               (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>Deallocate all the resources associated to the writer</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewTextWriter"></a>xmlNewTextWriter ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>     xmlNewTextWriter        (<a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> out)<br>
+</pre>
+<p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure using an <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a> NOTE: the @out parameter will be deallocated when the writer is closed (if the call succeed.)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>out</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewTextWriterDoc"></a>xmlNewTextWriterDoc ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>     xmlNewTextWriterDoc     (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> * doc, <br>                                                 int compression)<br>
+</pre>
+<p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure with @*doc as output</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>address of a <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> to hold the new XML document tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>compression</tt></i>:</span></td>
+<td>compress the output?</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewTextWriterFilename"></a>xmlNewTextWriterFilename ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>     xmlNewTextWriterFilename        (const char * uri, <br>                                                  int compression)<br>
+</pre>
+<p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure with @uri as output</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>uri</tt></i>:</span></td>
+<td>the URI of the resource for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>compression</tt></i>:</span></td>
+<td>compress the output?</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewTextWriterMemory"></a>xmlNewTextWriterMemory ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>     xmlNewTextWriterMemory  (<a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a> buf, <br>                                             int compression)<br>
+</pre>
+<p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure with @buf as output TODO: handle compression</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>buf</tt></i>:</span></td>
+<td><a href="libxml2-tree.html#xmlBufferPtr">xmlBufferPtr</a></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>compression</tt></i>:</span></td>
+<td>compress the output?</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewTextWriterPushParser"></a>xmlNewTextWriterPushParser ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>     xmlNewTextWriterPushParser      (<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt, <br>                                                    int compression)<br>
+</pre>
+<p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure with @ctxt as output NOTE: the @ctxt context will be freed with the resulting writer (if the call succeeds). TODO: handle compression</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>
+<a href="libxml2-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> to hold the new XML document tree</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>compression</tt></i>:</span></td>
+<td>compress the output?</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNewTextWriterTree"></a>xmlNewTextWriterTree ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>     xmlNewTextWriterTree    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                                int compression)<br>
+</pre>
+<p>Create a new <a href="libxml2-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a> structure with @doc as output starting at @node</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td><a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a></td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> or NULL for doc-&gt;children</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>compression</tt></i>:</span></td>
+<td>compress the output?</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> or NULL in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterEndAttribute"></a>xmlTextWriterEndAttribute ()</h3>
+<pre class="programlisting">int        xmlTextWriterEndAttribute       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>End the current xml element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterEndCDATA"></a>xmlTextWriterEndCDATA ()</h3>
+<pre class="programlisting">int        xmlTextWriterEndCDATA           (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>End an xml CDATA section.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterEndComment"></a>xmlTextWriterEndComment ()</h3>
+<pre class="programlisting">int        xmlTextWriterEndComment         (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>End the current xml comment.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterEndDTD"></a>xmlTextWriterEndDTD ()</h3>
+<pre class="programlisting">int        xmlTextWriterEndDTD             (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>End an xml DTD.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterEndDTDAttlist"></a>xmlTextWriterEndDTDAttlist ()</h3>
+<pre class="programlisting">int        xmlTextWriterEndDTDAttlist      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>End an xml DTD <a href="libxml2-SAX.html#attribute">attribute</a> list.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterEndDTDElement"></a>xmlTextWriterEndDTDElement ()</h3>
+<pre class="programlisting">int        xmlTextWriterEndDTDElement      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>End an xml DTD element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterEndDTDEntity"></a>xmlTextWriterEndDTDEntity ()</h3>
+<pre class="programlisting">int        xmlTextWriterEndDTDEntity       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>End an xml DTD entity.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterEndDocument"></a>xmlTextWriterEndDocument ()</h3>
+<pre class="programlisting">int        xmlTextWriterEndDocument        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>End an xml document. All open elements are closed, and the content is flushed to the output.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterEndElement"></a>xmlTextWriterEndElement ()</h3>
+<pre class="programlisting">int        xmlTextWriterEndElement         (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>End the current xml element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterEndPI"></a>xmlTextWriterEndPI ()</h3>
+<pre class="programlisting">int        xmlTextWriterEndPI              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>End the current xml PI.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterFlush"></a>xmlTextWriterFlush ()</h3>
+<pre class="programlisting">int        xmlTextWriterFlush              (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>Flush the output buffer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterFullEndElement"></a>xmlTextWriterFullEndElement ()</h3>
+<pre class="programlisting">int        xmlTextWriterFullEndElement     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>End the current xml element. Writes an end tag even if the element is empty</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterSetIndent"></a>xmlTextWriterSetIndent ()</h3>
+<pre class="programlisting">int        xmlTextWriterSetIndent          (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     int indent)<br>
+</pre>
+<p>Set indentation output. indent = 0 do not indentation. indent &gt; 0 do indentation.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>indent</tt></i>:</span></td>
+<td>do indentation?</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 on error or 0 otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterSetIndentString"></a>xmlTextWriterSetIndentString ()</h3>
+<pre class="programlisting">int        xmlTextWriterSetIndentString    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>Set string indentation.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 on error or 0 otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterSetQuoteChar"></a>xmlTextWriterSetQuoteChar ()</h3>
+<pre class="programlisting">int        xmlTextWriterSetQuoteChar       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> quotechar)<br>
+</pre>
+<p>Set the character used for quoting attributes.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>quotechar</tt></i>:</span></td>
+<td>the quote character</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 on error or 0 otherwise.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartAttribute"></a>xmlTextWriterStartAttribute ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartAttribute     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Start an xml attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartAttributeNS"></a>xmlTextWriterStartAttributeNS ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartAttributeNS   (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI)<br>
+</pre>
+<p>Start an xml <a href="libxml2-SAX.html#attribute">attribute</a> with namespace support.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>namespace prefix or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>element local name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td>
+<td>namespace URI or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartCDATA"></a>xmlTextWriterStartCDATA ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartCDATA         (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>Start an xml CDATA section.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartComment"></a>xmlTextWriterStartComment ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartComment       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer)<br>
+</pre>
+<p>Start an xml comment.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartDTD"></a>xmlTextWriterStartDTD ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartDTD           (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid)<br>
+</pre>
+<p>Start an xml DTD.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pubid</tt></i>:</span></td>
+<td>the public identifier, which is an alternative to the system identifier</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysid</tt></i>:</span></td>
+<td>the system identifier, which is the URI of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartDTDAttlist"></a>xmlTextWriterStartDTDAttlist ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartDTDAttlist    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Start an xml DTD ATTLIST.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD ATTLIST</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartDTDElement"></a>xmlTextWriterStartDTDElement ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartDTDElement    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Start an xml DTD element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartDTDEntity"></a>xmlTextWriterStartDTDEntity ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartDTDEntity     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     int pe, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Start an xml DTD ATTLIST.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pe</tt></i>:</span></td>
+<td>TRUE if this is a parameter entity, FALSE if not</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD ATTLIST</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartDocument"></a>xmlTextWriterStartDocument ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartDocument      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * version, <br>                                      const char * encoding, <br>                                     const char * standalone)<br>
+</pre>
+<p>Start a new xml document</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>version</tt></i>:</span></td>
+<td>the xml version ("1.0") or NULL for default ("1.0")</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>encoding</tt></i>:</span></td>
+<td>the encoding or NULL for default</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>standalone</tt></i>:</span></td>
+<td>"yes" or "no" or NULL for default</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartElement"></a>xmlTextWriterStartElement ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartElement       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Start an xml element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartElementNS"></a>xmlTextWriterStartElementNS ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartElementNS     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI)<br>
+</pre>
+<p>Start an xml element with namespace support.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>namespace prefix or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>element local name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td>
+<td>namespace URI or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterStartPI"></a>xmlTextWriterStartPI ()</h3>
+<pre class="programlisting">int        xmlTextWriterStartPI            (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target)<br>
+</pre>
+<p>Start an xml PI.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>target</tt></i>:</span></td>
+<td>PI target</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteAttribute"></a>xmlTextWriterWriteAttribute ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteAttribute     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write an xml attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>
+<a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>
+<a href="libxml2-SAX.html#attribute">attribute</a> content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteAttributeNS"></a>xmlTextWriterWriteAttributeNS ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteAttributeNS   (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write an xml attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>
+<a href="libxml2-SAX.html#attribute">attribute</a> local name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td>
+<td>namespace URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>
+<a href="libxml2-SAX.html#attribute">attribute</a> content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteBase64"></a>xmlTextWriterWriteBase64 ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteBase64        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * data, <br>                                         int start, <br>                                         int len)<br>
+</pre>
+<p>Write an base64 encoded xml text.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>binary data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>the position within the data of the first byte to encode</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of bytes to encode</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteBinHex"></a>xmlTextWriterWriteBinHex ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteBinHex        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * data, <br>                                         int start, <br>                                         int len)<br>
+</pre>
+<p>Write a BinHex encoded xml text.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>binary data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>the position within the data of the first byte to encode</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>the number of bytes to encode</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteCDATA"></a>xmlTextWriterWriteCDATA ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteCDATA         (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write an xml CDATA.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>CDATA content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteComment"></a>xmlTextWriterWriteComment ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteComment       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write an xml comment.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>
+<a href="libxml2-SAX.html#comment">comment</a> string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteDTD"></a>xmlTextWriterWriteDTD ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteDTD           (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * subset)<br>
+</pre>
+<p>Write a DTD.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pubid</tt></i>:</span></td>
+<td>the public identifier, which is an alternative to the system identifier</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysid</tt></i>:</span></td>
+<td>the system identifier, which is the URI of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>subset</tt></i>:</span></td>
+<td>string content of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteDTDAttlist"></a>xmlTextWriterWriteDTDAttlist ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteDTDAttlist    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write a DTD ATTLIST.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD ATTLIST</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>content of the ATTLIST</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteDTDElement"></a>xmlTextWriterWriteDTDElement ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteDTDElement    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write a DTD element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>content of the element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteDTDEntity"></a>xmlTextWriterWriteDTDEntity ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteDTDEntity     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     int pe, <br>                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid, <br>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write a DTD entity.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pe</tt></i>:</span></td>
+<td>TRUE if this is a parameter entity, FALSE if not</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pubid</tt></i>:</span></td>
+<td>the public identifier, which is an alternative to the system identifier</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysid</tt></i>:</span></td>
+<td>the system identifier, which is the URI of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ndataid</tt></i>:</span></td>
+<td>the xml notation name.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>content of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteDTDExternalEntity"></a>xmlTextWriterWriteDTDExternalEntity ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteDTDExternalEntity     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             int pe, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid)<br>
+</pre>
+<p>Write a DTD external entity. The entity must have been started with <a href="libxml2-xmlwriter.html#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pe</tt></i>:</span></td>
+<td>TRUE if this is a parameter entity, FALSE if not</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pubid</tt></i>:</span></td>
+<td>the public identifier, which is an alternative to the system identifier</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysid</tt></i>:</span></td>
+<td>the system identifier, which is the URI of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ndataid</tt></i>:</span></td>
+<td>the xml notation name.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteDTDExternalEntityContents"></a>xmlTextWriterWriteDTDExternalEntityContents ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteDTDExternalEntityContents     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ndataid)<br>
+</pre>
+<p>Write the contents of a DTD external entity.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pubid</tt></i>:</span></td>
+<td>the public identifier, which is an alternative to the system identifier</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysid</tt></i>:</span></td>
+<td>the system identifier, which is the URI of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ndataid</tt></i>:</span></td>
+<td>the xml notation name.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteDTDInternalEntity"></a>xmlTextWriterWriteDTDInternalEntity ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteDTDInternalEntity     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             int pe, <br>                                            const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write a DTD internal entity.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pe</tt></i>:</span></td>
+<td>TRUE if this is a parameter entity, FALSE if not</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>content of the entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteDTDNotation"></a>xmlTextWriterWriteDTDNotation ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteDTDNotation   (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid)<br>
+</pre>
+<p>Write a DTD entity.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the xml notation</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pubid</tt></i>:</span></td>
+<td>the public identifier, which is an alternative to the system identifier</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysid</tt></i>:</span></td>
+<td>the system identifier, which is the URI of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteElement"></a>xmlTextWriterWriteElement ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteElement       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write an xml element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>element content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteElementNS"></a>xmlTextWriterWriteElementNS ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteElementNS     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write an xml element with namespace support.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>element local name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td>
+<td>namespace URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>element content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatAttribute"></a>xmlTextWriterWriteFormatAttribute ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatAttribute       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               ... ...)<br>
+</pre>
+<p>Write a formatted xml attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>
+<a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatAttributeNS"></a>xmlTextWriterWriteFormatAttributeNS ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatAttributeNS     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                                 const char * format, <br>                                               ... ...)<br>
+</pre>
+<p>Write a formatted xml attribute.with namespace support</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>
+<a href="libxml2-SAX.html#attribute">attribute</a> local name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td>
+<td>namespace URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatCDATA"></a>xmlTextWriterWriteFormatCDATA ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatCDATA   (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       ... ...)<br>
+</pre>
+<p>Write a formatted xml CDATA.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatComment"></a>xmlTextWriterWriteFormatComment ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatComment (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       ... ...)<br>
+</pre>
+<p>Write an xml comment.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatDTD"></a>xmlTextWriterWriteFormatDTD ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatDTD     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                        const char * format, <br>                                       ... ...)<br>
+</pre>
+<p>Write a DTD with a formatted markup declarations part.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pubid</tt></i>:</span></td>
+<td>the public identifier, which is an alternative to the system identifier</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysid</tt></i>:</span></td>
+<td>the system identifier, which is the URI of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatDTDAttlist"></a>xmlTextWriterWriteFormatDTDAttlist ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatDTDAttlist      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               ... ...)<br>
+</pre>
+<p>Write a formatted DTD ATTLIST.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD ATTLIST</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatDTDElement"></a>xmlTextWriterWriteFormatDTDElement ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatDTDElement      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               ... ...)<br>
+</pre>
+<p>Write a formatted DTD element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatDTDInternalEntity"></a>xmlTextWriterWriteFormatDTDInternalEntity ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatDTDInternalEntity       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                                     int pe, <br>                                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const char * format, <br>                                                       ... ...)<br>
+</pre>
+<p>Write a formatted DTD internal entity.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pe</tt></i>:</span></td>
+<td>TRUE if this is a parameter entity, FALSE if not</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatElement"></a>xmlTextWriterWriteFormatElement ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatElement (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const char * format, <br>                                       ... ...)<br>
+</pre>
+<p>Write a formatted xml element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatElementNS"></a>xmlTextWriterWriteFormatElementNS ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatElementNS       (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                                 const char * format, <br>                                               ... ...)<br>
+</pre>
+<p>Write a formatted xml element with namespace support.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>element local name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td>
+<td>namespace URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatPI"></a>xmlTextWriterWriteFormatPI ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatPI      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const char * format, <br>                                       ... ...)<br>
+</pre>
+<p>Write a formatted PI.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>target</tt></i>:</span></td>
+<td>PI target</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatRaw"></a>xmlTextWriterWriteFormatRaw ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatRaw     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       ... ...)<br>
+</pre>
+<p>Write a formatted raw xml text.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteFormatString"></a>xmlTextWriterWriteFormatString ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteFormatString  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       ... ...)<br>
+</pre>
+<p>Write a formatted xml text.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>...</tt></i>:</span></td>
+<td>extra parameters for the format</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWritePI"></a>xmlTextWriterWritePI ()</h3>
+<pre class="programlisting">int        xmlTextWriterWritePI            (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write an xml PI.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>target</tt></i>:</span></td>
+<td>PI target</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>PI content</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteRaw"></a>xmlTextWriterWriteRaw ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteRaw           (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write a raw xml text.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>text string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteRawLen"></a>xmlTextWriterWriteRawLen ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteRawLen        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content, <br>                                      int len)<br>
+</pre>
+<p>Write an xml text. TODO: what about entities and special chars??</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>text string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>len</tt></i>:</span></td>
+<td>length of the text string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteString"></a>xmlTextWriterWriteString ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteString        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * content)<br>
+</pre>
+<p>Write an xml text.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>content</tt></i>:</span></td>
+<td>text string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatAttribute"></a>xmlTextWriterWriteVFormatAttribute ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatAttribute      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               va_list argptr)<br>
+</pre>
+<p>Write a formatted xml attribute.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>
+<a href="libxml2-SAX.html#attribute">attribute</a> name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatAttributeNS"></a>xmlTextWriterWriteVFormatAttributeNS ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatAttributeNS    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                                 const char * format, <br>                                               va_list argptr)<br>
+</pre>
+<p>Write a formatted xml attribute.with namespace support</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>
+<a href="libxml2-SAX.html#attribute">attribute</a> local name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td>
+<td>namespace URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatCDATA"></a>xmlTextWriterWriteVFormatCDATA ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatCDATA  (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       va_list argptr)<br>
+</pre>
+<p>Write a formatted xml CDATA.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatComment"></a>xmlTextWriterWriteVFormatComment ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatComment        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const char * format, <br>                                               va_list argptr)<br>
+</pre>
+<p>Write an xml comment.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatDTD"></a>xmlTextWriterWriteVFormatDTD ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatDTD    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * pubid, <br>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * sysid, <br>                                        const char * format, <br>                                       va_list argptr)<br>
+</pre>
+<p>Write a DTD with a formatted markup declarations part.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pubid</tt></i>:</span></td>
+<td>the public identifier, which is an alternative to the system identifier</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>sysid</tt></i>:</span></td>
+<td>the system identifier, which is the URI of the DTD</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatDTDAttlist"></a>xmlTextWriterWriteVFormatDTDAttlist ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatDTDAttlist     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               va_list argptr)<br>
+</pre>
+<p>Write a formatted DTD ATTLIST.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD ATTLIST</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatDTDElement"></a>xmlTextWriterWriteVFormatDTDElement ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatDTDElement     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               va_list argptr)<br>
+</pre>
+<p>Write a formatted DTD element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD element</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatDTDInternalEntity"></a>xmlTextWriterWriteVFormatDTDInternalEntity ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatDTDInternalEntity      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                                     int pe, <br>                                                    const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const char * format, <br>                                                       va_list argptr)<br>
+</pre>
+<p>Write a formatted DTD internal entity.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>pe</tt></i>:</span></td>
+<td>TRUE if this is a parameter entity, FALSE if not</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the name of the DTD entity</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatElement"></a>xmlTextWriterWriteVFormatElement ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatElement        (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const char * format, <br>                                               va_list argptr)<br>
+</pre>
+<p>Write a formatted xml element.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>element name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatElementNS"></a>xmlTextWriterWriteVFormatElementNS ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatElementNS      (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                             const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * namespaceURI, <br>                                                 const char * format, <br>                                               va_list argptr)<br>
+</pre>
+<p>Write a formatted xml element with namespace support.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>namespace prefix</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>element local name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>namespaceURI</tt></i>:</span></td>
+<td>namespace URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatPI"></a>xmlTextWriterWriteVFormatPI ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatPI     (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * target, <br>                                       const char * format, <br>                                       va_list argptr)<br>
+</pre>
+<p>Write a formatted xml PI.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>target</tt></i>:</span></td>
+<td>PI target</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatRaw"></a>xmlTextWriterWriteVFormatRaw ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatRaw    (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       va_list argptr)<br>
+</pre>
+<p>Write a formatted raw xml text.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlTextWriterWriteVFormatString"></a>xmlTextWriterWriteVFormatString ()</h3>
+<pre class="programlisting">int        xmlTextWriterWriteVFormatString (<a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a> writer, <br>                                     const char * format, <br>                                       va_list argptr)<br>
+</pre>
+<p>Write a formatted xml text.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>writer</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>format</tt></i>:</span></td>
+<td>format string (see printf)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>argptr</tt></i>:</span></td>
+<td>pointer to the first member of the variable argument list.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the bytes written (may be 0 because of buffering) or -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 7b75930..5b0e1c6 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xpath: XML Path Language implementation</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xmlwriter.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xpathInternals.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xpath</span>
-    </h2>
-    <p>xpath - XML Path Language implementation</p>
-    <p>API for the XML Path Language implementation  XML Path Language implementation XPath is a language for addressing parts of an XML document, designed to be used by both XSLT and XPointer</p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#xmlXPathNodeSetIsEmpty">xmlXPathNodeSetIsEmpty</a>(ns);
-#define <a href="#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a>(ns, index);
-#define <a href="#XML_XPATH_CHECKNS">XML_XPATH_CHECKNS</a>;
-#define <a href="#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a>(ns);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xpath: XML Path Language implementation</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xmlwriter.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xpathInternals.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xpath</span></h2>
+<p>xpath - XML Path Language implementation</p>
+<p>API for the XML Path Language implementation  XML Path Language implementation XPath is a language for addressing parts of an XML document, designed to be used by both XSLT and XPointer</p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#XML_XPATH_CHECKNS">XML_XPATH_CHECKNS</a>;
 #define <a href="#XML_XPATH_NOVAR">XML_XPATH_NOVAR</a>;
-typedef enum <a href="#xmlXPathObjectType">xmlXPathObjectType</a>;
-typedef <a href="libxml2-xpath.html#xmlXPathVariable">xmlXPathVariable</a> * <a href="#xmlXPathVariablePtr">xmlXPathVariablePtr</a>;
+#define <a href="#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a>(ns);
+#define <a href="#xmlXPathNodeSetIsEmpty">xmlXPathNodeSetIsEmpty</a>(ns);
+#define <a href="#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a>(ns, index);
+typedef struct _xmlNodeSet <a href="#xmlNodeSet">xmlNodeSet</a>;
+typedef <a href="libxml2-xpath.html#xmlNodeSet">xmlNodeSet</a> * <a href="#xmlNodeSetPtr">xmlNodeSetPtr</a>;
+typedef struct _xmlXPathAxis <a href="#xmlXPathAxis">xmlXPathAxis</a>;
+typedef <a href="libxml2-xpath.html#xmlXPathAxis">xmlXPathAxis</a> * <a href="#xmlXPathAxisPtr">xmlXPathAxisPtr</a>;
+typedef struct _xmlXPathCompExpr <a href="#xmlXPathCompExpr">xmlXPathCompExpr</a>;
+typedef <a href="libxml2-xpath.html#xmlXPathCompExpr">xmlXPathCompExpr</a> * <a href="#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a>;
 typedef struct _xmlXPathContext <a href="#xmlXPathContext">xmlXPathContext</a>;
+typedef <a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a> * <a href="#xmlXPathContextPtr">xmlXPathContextPtr</a>;
 typedef enum <a href="#xmlXPathError">xmlXPathError</a>;
-typedef struct _xmlXPathFunct <a href="#xmlXPathFunct">xmlXPathFunct</a>;
-typedef <a href="libxml2-xpath.html#xmlXPathType">xmlXPathType</a> * <a href="#xmlXPathTypePtr">xmlXPathTypePtr</a>;
-typedef struct _xmlXPathType <a href="#xmlXPathType">xmlXPathType</a>;
-typedef <a href="libxml2-xpath.html#xmlNodeSet">xmlNodeSet</a> * <a href="#xmlNodeSetPtr">xmlNodeSetPtr</a>;
 typedef <a href="libxml2-xpath.html#xmlXPathFunct">xmlXPathFunct</a> * <a href="#xmlXPathFuncPtr">xmlXPathFuncPtr</a>;
-typedef <a href="libxml2-xpath.html#xmlXPathCompExpr">xmlXPathCompExpr</a> * <a href="#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a>;
+typedef struct _xmlXPathFunct <a href="#xmlXPathFunct">xmlXPathFunct</a>;
 typedef struct _xmlXPathObject <a href="#xmlXPathObject">xmlXPathObject</a>;
-typedef struct _xmlXPathCompExpr <a href="#xmlXPathCompExpr">xmlXPathCompExpr</a>;
-typedef <a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a> * <a href="#xmlXPathContextPtr">xmlXPathContextPtr</a>;
-typedef <a href="libxml2-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a> * <a href="#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a>;
-typedef struct _xmlNodeSet <a href="#xmlNodeSet">xmlNodeSet</a>;
-typedef struct _xmlXPathVariable <a href="#xmlXPathVariable">xmlXPathVariable</a>;
 typedef <a href="libxml2-xpath.html#xmlXPathObject">xmlXPathObject</a> * <a href="#xmlXPathObjectPtr">xmlXPathObjectPtr</a>;
-typedef struct _xmlXPathAxis <a href="#xmlXPathAxis">xmlXPathAxis</a>;
-typedef <a href="libxml2-xpath.html#xmlXPathAxis">xmlXPathAxis</a> * <a href="#xmlXPathAxisPtr">xmlXPathAxisPtr</a>;
+typedef enum <a href="#xmlXPathObjectType">xmlXPathObjectType</a>;
 typedef struct _xmlXPathParserContext <a href="#xmlXPathParserContext">xmlXPathParserContext</a>;
-int    <a href="#xmlXPathCastNodeSetToBoolean">xmlXPathCastNodeSetToBoolean</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns);
-typedef <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> <a href="#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a>        (void * ctxt, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNodeEval">xmlXPathNodeEval</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                                 <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathCastNodeToString">xmlXPathCastNodeToString</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-int    <a href="#xmlXPathIsNaN">xmlXPathIsNaN</a>                      (double val);
-int    <a href="#xmlXPathContextSetCache">xmlXPathContextSetCache</a>          (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      int active, <br/>                                       int value, <br/>                                        int options);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathConvertString">xmlXPathConvertString</a>      (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
-int    <a href="#xmlXPathCompiledEvalToBoolean">xmlXPathCompiledEvalToBoolean</a>      (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br/>                                    <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
-int    <a href="#xmlXPathIsInf">xmlXPathIsInf</a>                      (double val);
-long   <a href="#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeSetCreate">xmlXPathNodeSetCreate</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
+typedef <a href="libxml2-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a> * <a href="#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a>;
+typedef struct _xmlXPathType <a href="#xmlXPathType">xmlXPathType</a>;
+typedef <a href="libxml2-xpath.html#xmlXPathType">xmlXPathType</a> * <a href="#xmlXPathTypePtr">xmlXPathTypePtr</a>;
+typedef struct _xmlXPathVariable <a href="#xmlXPathVariable">xmlXPathVariable</a>;
+typedef <a href="libxml2-xpath.html#xmlXPathVariable">xmlXPathVariable</a> * <a href="#xmlXPathVariablePtr">xmlXPathVariablePtr</a>;
+typedef <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> <a href="#xmlXPathAxisFunc">xmlXPathAxisFunc</a>  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                           <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> cur);
 double <a href="#xmlXPathCastBooleanToNumber">xmlXPathCastBooleanToNumber</a>  (int val);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathCastBooleanToString">xmlXPathCastBooleanToString</a>  (int val);
+int    <a href="#xmlXPathCastNodeSetToBoolean">xmlXPathCastNodeSetToBoolean</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns);
+double <a href="#xmlXPathCastNodeSetToNumber">xmlXPathCastNodeSetToNumber</a>  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathCastNodeSetToString">xmlXPathCastNodeSetToString</a>  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns);
 double <a href="#xmlXPathCastNodeToNumber">xmlXPathCastNodeToNumber</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathCastNodeToString">xmlXPathCastNodeToString</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+int    <a href="#xmlXPathCastNumberToBoolean">xmlXPathCastNumberToBoolean</a>  (double val);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathCastNumberToString">xmlXPathCastNumberToString</a>    (double val);
+int    <a href="#xmlXPathCastStringToBoolean">xmlXPathCastStringToBoolean</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val);
 double <a href="#xmlXPathCastStringToNumber">xmlXPathCastStringToNumber</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val);
-typedef <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> <a href="#xmlXPathAxisFunc">xmlXPathAxisFunc</a>  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                          <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> cur);
+int    <a href="#xmlXPathCastToBoolean">xmlXPathCastToBoolean</a>              (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
 double <a href="#xmlXPathCastToNumber">xmlXPathCastToNumber</a>                (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
-int    <a href="#xmlXPathCastStringToBoolean">xmlXPathCastStringToBoolean</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathCastNumberToString">xmlXPathCastNumberToString</a>    (double val);
-typedef <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> <a href="#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a>      (void * ctxt, <br/>                                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri);
-void   <a href="#xmlXPathFreeObject">xmlXPathFreeObject</a>            (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj);
-int    <a href="#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a>              (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> res);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathCastToString">xmlXPathCastToString</a>        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
+int    <a href="#xmlXPathCmpNodes">xmlXPathCmpNodes</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node1, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
+<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a>       <a href="#xmlXPathCompile">xmlXPathCompile</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathCompiledEval">xmlXPathCompiledEval</a>        (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br>                                             <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx);
+int    <a href="#xmlXPathCompiledEvalToBoolean">xmlXPathCompiledEvalToBoolean</a>      (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br>                                     <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
+int    <a href="#xmlXPathContextSetCache">xmlXPathContextSetCache</a>          (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       int active, <br>                                        int value, <br>                                         int options);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathConvertBoolean">xmlXPathConvertBoolean</a>    (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
+typedef int <a href="#xmlXPathConvertFunc">xmlXPathConvertFunc</a>             (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj, <br>                                  int type);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathConvertNumber">xmlXPathConvertNumber</a>      (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathConvertString">xmlXPathConvertString</a>      (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
+<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a>       <a href="#xmlXPathCtxtCompile">xmlXPathCtxtCompile</a>  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathEval">xmlXPathEval</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathEvalExpression">xmlXPathEvalExpression</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                          <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
+typedef void <a href="#xmlXPathEvalFunc">xmlXPathEvalFunc</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+int    <a href="#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a>              (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> res);
+void   <a href="#xmlXPathFreeCompExpr">xmlXPathFreeCompExpr</a>                (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp);
 void   <a href="#xmlXPathFreeContext">xmlXPathFreeContext</a>          (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathObjectCopy">xmlXPathObjectCopy</a>    (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
+void   <a href="#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a>          (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> obj);
 void   <a href="#xmlXPathFreeNodeSetList">xmlXPathFreeNodeSetList</a>          (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathEval">xmlXPathEval</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathCastNodeSetToString">xmlXPathCastNodeSetToString</a>  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathCompiledEval">xmlXPathCompiledEval</a>        (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br/>                                            <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathEvalExpression">xmlXPathEvalExpression</a>    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                                 <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
+void   <a href="#xmlXPathFreeObject">xmlXPathFreeObject</a>            (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj);
+typedef <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> <a href="#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a>        (void * ctxt, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri);
+typedef void <a href="#xmlXPathFunction">xmlXPathFunction</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
 void   <a href="#xmlXPathInit">xmlXPathInit</a>                        (void);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathConvertBoolean">xmlXPathConvertBoolean</a>    (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
-typedef int <a href="#xmlXPathConvertFunc">xmlXPathConvertFunc</a>             (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj, <br/>                                         int type);
-typedef void <a href="#xmlXPathFunction">xmlXPathFunction</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-int    <a href="#xmlXPathCmpNodes">xmlXPathCmpNodes</a>                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node1, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathCastToString">xmlXPathCastToString</a>        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
-<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a>       <a href="#xmlXPathCtxtCompile">xmlXPathCtxtCompile</a>  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
-typedef void <a href="#xmlXPathEvalFunc">xmlXPathEvalFunc</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathCastBooleanToString">xmlXPathCastBooleanToString</a>  (int val);
-int    <a href="#xmlXPathSetContextNode">xmlXPathSetContextNode</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx);
-int    <a href="#xmlXPathCastNumberToBoolean">xmlXPathCastNumberToBoolean</a>  (double val);
-void   <a href="#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a>          (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> obj);
-void   <a href="#xmlXPathFreeCompExpr">xmlXPathFreeCompExpr</a>                (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp);
+int    <a href="#xmlXPathIsInf">xmlXPathIsInf</a>                      (double val);
+int    <a href="#xmlXPathIsNaN">xmlXPathIsNaN</a>                      (double val);
 <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> <a href="#xmlXPathNewContext">xmlXPathNewContext</a>    (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathConvertNumber">xmlXPathConvertNumber</a>      (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
-<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a>       <a href="#xmlXPathCompile">xmlXPathCompile</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
-double <a href="#xmlXPathCastNodeSetToNumber">xmlXPathCastNodeSetToNumber</a>  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns);
-int    <a href="#xmlXPathCastToBoolean">xmlXPathCastToBoolean</a>              (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNodeEval">xmlXPathNodeEval</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                          <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeSetCreate">xmlXPathNodeSetCreate</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathObjectCopy">xmlXPathObjectCopy</a>    (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
+long   <a href="#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a>              (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc);
+int    <a href="#xmlXPathSetContextNode">xmlXPathSetContextNode</a>            (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx);
+typedef <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> <a href="#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a>      (void * ctxt, <br>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_XPATH_CHECKNS">Macro </a>XML_XPATH_CHECKNS</h3>
+<pre class="programlisting">#define <a href="#XML_XPATH_CHECKNS">XML_XPATH_CHECKNS</a>;
+</pre>
+<p>check namespaces at compilation</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XML_XPATH_NOVAR">Macro </a>XML_XPATH_NOVAR</h3>
+<pre class="programlisting">#define <a href="#XML_XPATH_NOVAR">XML_XPATH_NOVAR</a>;
+</pre>
+<p>forbid variables in expression</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XPATH_LOCATIONSET">Macro </a>XPATH_LOCATIONSET</h3>
+<pre class="programlisting">#define <a href="#XPATH_LOCATIONSET">XPATH_LOCATIONSET</a>;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XPATH_POINT">Macro </a>XPATH_POINT</h3>
+<pre class="programlisting">#define <a href="#XPATH_POINT">XPATH_POINT</a>;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XPATH_RANGE">Macro </a>XPATH_RANGE</h3>
+<pre class="programlisting">#define <a href="#XPATH_RANGE">XPATH_RANGE</a>;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetGetLength">Macro </a>xmlXPathNodeSetGetLength</h3>
+<pre class="programlisting">#define <a href="#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a>(ns);
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="XML_XPATH_CHECKNS">Macro </a>XML_XPATH_CHECKNS</h3><pre class="programlisting">#define <a href="#XML_XPATH_CHECKNS">XML_XPATH_CHECKNS</a>;
-</pre><p>check namespaces at compilation</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XML_XPATH_NOVAR">Macro </a>XML_XPATH_NOVAR</h3><pre class="programlisting">#define <a href="#XML_XPATH_NOVAR">XML_XPATH_NOVAR</a>;
-</pre><p>forbid variables in expression</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XPATH_LOCATIONSET">Macro </a>XPATH_LOCATIONSET</h3><pre class="programlisting">#define <a href="#XPATH_LOCATIONSET">XPATH_LOCATIONSET</a>;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XPATH_POINT">Macro </a>XPATH_POINT</h3><pre class="programlisting">#define <a href="#XPATH_POINT">XPATH_POINT</a>;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XPATH_RANGE">Macro </a>XPATH_RANGE</h3><pre class="programlisting">#define <a href="#XPATH_RANGE">XPATH_RANGE</a>;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetGetLength">Macro </a>xmlXPathNodeSetGetLength</h3><pre class="programlisting">#define <a href="#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a>(ns);
-</pre><p>Implement a functionality similar to the DOM NodeList.length. Returns the number of nodes in the node-set.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a node-set</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetIsEmpty">Macro </a>xmlXPathNodeSetIsEmpty</h3><pre class="programlisting">#define <a href="#xmlXPathNodeSetIsEmpty">xmlXPathNodeSetIsEmpty</a>(ns);
-</pre><p>Checks whether @ns is empty or not. Returns %TRUE if @ns is an empty node-set.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a node-set</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetItem">Macro </a>xmlXPathNodeSetItem</h3><pre class="programlisting">#define <a href="#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a>(ns, index);
-</pre><p>Implements a functionality similar to the DOM NodeList.item(). Returns the <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> at the given @index in @ns or NULL if @index is out of range (0 to length-1)</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>index</tt></i>:</span></td><td>index of a node in the set</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeSet">Structure </a>xmlNodeSet</h3><pre class="programlisting">struct _xmlNodeSet {
+<p>Implement a functionality similar to the DOM NodeList.length. Returns the number of nodes in the node-set.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a node-set</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetIsEmpty">Macro </a>xmlXPathNodeSetIsEmpty</h3>
+<pre class="programlisting">#define <a href="#xmlXPathNodeSetIsEmpty">xmlXPathNodeSetIsEmpty</a>(ns);
+</pre>
+<p>Checks whether @ns is empty or not. Returns %TRUE if @ns is an empty node-set.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a node-set</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetItem">Macro </a>xmlXPathNodeSetItem</h3>
+<pre class="programlisting">#define <a href="#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a>(ns, index);
+</pre>
+<p>Implements a functionality similar to the DOM NodeList.item(). Returns the <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> at the given @index in @ns or NULL if @index is out of range (0 to length-1)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>index</tt></i>:</span></td>
+<td>index of a node in the set</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeSet">Structure </a>xmlNodeSet</h3>
+<pre class="programlisting">struct _xmlNodeSet {
     int        nodeNr  : number of nodes in the set
     int        nodeMax : size of the array as allocated
     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> *    nodeTab : array of nodes in no particular order @@ with_ns to check whether nam
 } xmlNodeSet;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlNodeSetPtr">Typedef </a>xmlNodeSetPtr</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSet">xmlNodeSet</a> * xmlNodeSetPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlNodeSetPtr">Typedef </a>xmlNodeSetPtr</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSet">xmlNodeSet</a> * xmlNodeSetPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathAxis">Structure </a>xmlXPathAxis</h3><pre class="programlisting">struct _xmlXPathAxis {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathAxis">Structure </a>xmlXPathAxis</h3>
+<pre class="programlisting">struct _xmlXPathAxis {
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : the axis name
     <a href="libxml2-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a> func    : the search function
 } xmlXPathAxis;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathAxisPtr">Typedef </a>xmlXPathAxisPtr</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathAxis">xmlXPathAxis</a> * xmlXPathAxisPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathAxisPtr">Typedef </a>xmlXPathAxisPtr</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathAxis">xmlXPathAxis</a> * xmlXPathAxisPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCompExpr">Structure </a>xmlXPathCompExpr</h3><pre class="programlisting">struct _xmlXPathCompExpr {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCompExpr">Structure </a>xmlXPathCompExpr</h3>
+<pre class="programlisting">struct _xmlXPathCompExpr {
 The content of this structure is not made public by the API.
 } xmlXPathCompExpr;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCompExprPtr">Typedef </a>xmlXPathCompExprPtr</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathCompExpr">xmlXPathCompExpr</a> * xmlXPathCompExprPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCompExprPtr">Typedef </a>xmlXPathCompExprPtr</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathCompExpr">xmlXPathCompExpr</a> * xmlXPathCompExprPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathContext">Structure </a>xmlXPathContext</h3><pre class="programlisting">struct _xmlXPathContext {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathContext">Structure </a>xmlXPathContext</h3>
+<pre class="programlisting">struct _xmlXPathContext {
     <a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a>        doc     : The current document
     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      node    : The current node
     int        nb_variables_unused     : unused (hash table)
@@ -231,14 +294,22 @@ The content of this structure is not made public by the API.
     unsigned long      opCount
     int        depth
 } xmlXPathContext;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathContextPtr">Typedef </a>xmlXPathContextPtr</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a> * xmlXPathContextPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathContextPtr">Typedef </a>xmlXPathContextPtr</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a> * xmlXPathContextPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathError">Enum </a>xmlXPathError</h3><pre class="programlisting">enum <a href="#xmlXPathError">xmlXPathError</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathError">Enum </a>xmlXPathError</h3>
+<pre class="programlisting">enum <a href="#xmlXPathError">xmlXPathError</a> {
     <a name="XPATH_EXPRESSION_OK">XPATH_EXPRESSION_OK</a> = 0
     <a name="XPATH_NUMBER_ERROR">XPATH_NUMBER_ERROR</a> = 1
     <a name="XPATH_UNFINISHED_LITERAL_ERROR">XPATH_UNFINISHED_LITERAL_ERROR</a> = 2
@@ -267,21 +338,33 @@ The content of this structure is not made public by the API.
     <a name="XPATH_OP_LIMIT_EXCEEDED">XPATH_OP_LIMIT_EXCEEDED</a> = 25
     <a name="XPATH_RECURSION_LIMIT_EXCEEDED">XPATH_RECURSION_LIMIT_EXCEEDED</a> = 26
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFuncPtr">Typedef </a>xmlXPathFuncPtr</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathFunct">xmlXPathFunct</a> * xmlXPathFuncPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFuncPtr">Typedef </a>xmlXPathFuncPtr</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathFunct">xmlXPathFunct</a> * xmlXPathFuncPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFunct">Structure </a>xmlXPathFunct</h3><pre class="programlisting">struct _xmlXPathFunct {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFunct">Structure </a>xmlXPathFunct</h3>
+<pre class="programlisting">struct _xmlXPathFunct {
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : the function name
     <a href="libxml2-xpath.html#xmlXPathEvalFunc">xmlXPathEvalFunc</a> func    : the evaluation function
 } xmlXPathFunct;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathObject">Structure </a>xmlXPathObject</h3><pre class="programlisting">struct _xmlXPathObject {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathObject">Structure </a>xmlXPathObject</h3>
+<pre class="programlisting">struct _xmlXPathObject {
     <a href="libxml2-xpath.html#xmlXPathObjectType">xmlXPathObjectType</a>     type
     <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       nodesetval
     int        boolval
@@ -292,14 +375,22 @@ The content of this structure is not made public by the API.
     void *     user2
     int        index2
 } xmlXPathObject;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathObjectPtr">Typedef </a>xmlXPathObjectPtr</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObject">xmlXPathObject</a> * xmlXPathObjectPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathObjectPtr">Typedef </a>xmlXPathObjectPtr</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObject">xmlXPathObject</a> * xmlXPathObjectPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathObjectType">Enum </a>xmlXPathObjectType</h3><pre class="programlisting">enum <a href="#xmlXPathObjectType">xmlXPathObjectType</a> {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathObjectType">Enum </a>xmlXPathObjectType</h3>
+<pre class="programlisting">enum <a href="#xmlXPathObjectType">xmlXPathObjectType</a> {
     <a name="XPATH_UNDEFINED">XPATH_UNDEFINED</a> = 0
     <a name="XPATH_NODESET">XPATH_NODESET</a> = 1
     <a name="XPATH_BOOLEAN">XPATH_BOOLEAN</a> = 2
@@ -311,10 +402,14 @@ The content of this structure is not made public by the API.
     <a name="XPATH_USERS">XPATH_USERS</a> = 8
     <a name="XPATH_XSLT_TREE">XPATH_XSLT_TREE</a> = 9 /*  An XSLT value tree, non modifiable */
 };
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathParserContext">Structure </a>xmlXPathParserContext</h3><pre class="programlisting">struct _xmlXPathParserContext {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathParserContext">Structure </a>xmlXPathParserContext</h3>
+<pre class="programlisting">struct _xmlXPathParserContext {
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       cur     : the current char being parsed
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       base    : the full expression
     int        error   : error code
@@ -328,232 +423,1080 @@ The content of this structure is not made public by the API.
     <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      ancestor        : used for walking preceding axis
     int        valueFrame      : used to limit Pop on the stack
 } xmlXPathParserContext;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathParserContextPtr">Typedef </a>xmlXPathParserContextPtr</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a> * xmlXPathParserContextPtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathParserContextPtr">Typedef </a>xmlXPathParserContextPtr</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a> * xmlXPathParserContextPtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathType">Structure </a>xmlXPathType</h3><pre class="programlisting">struct _xmlXPathType {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathType">Structure </a>xmlXPathType</h3>
+<pre class="programlisting">struct _xmlXPathType {
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : the type name
     <a href="libxml2-xpath.html#xmlXPathConvertFunc">xmlXPathConvertFunc</a>   func    : the conversion function
 } xmlXPathType;
-</pre><p/>
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathTypePtr">Typedef </a>xmlXPathTypePtr</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathType">xmlXPathType</a> * xmlXPathTypePtr;
-</pre><p/>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathTypePtr">Typedef </a>xmlXPathTypePtr</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathType">xmlXPathType</a> * xmlXPathTypePtr;
+</pre>
+<p></p>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathVariable">Structure </a>xmlXPathVariable</h3><pre class="programlisting">struct _xmlXPathVariable {
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathVariable">Structure </a>xmlXPathVariable</h3>
+<pre class="programlisting">struct _xmlXPathVariable {
     const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       name    : the variable name
     <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       value   : the value
 } xmlXPathVariable;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathVariablePtr">Typedef </a>xmlXPathVariablePtr</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathVariable">xmlXPathVariable</a> * xmlXPathVariablePtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathAxisFunc"/>Function type xmlXPathAxisFunc</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>    xmlXPathAxisFunc        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                          <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> cur)<br/>
-</pre><p>An axis traversal function. To traverse an axis, the engine calls the first time with cur == NULL and repeat until the function returns NULL indicating the end of the axis traversal.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath interpreter context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the previous node being explored on that axis</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next node in that axis or NULL if at the end of the axis.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathConvertFunc"/>Function type xmlXPathConvertFunc</h3><pre class="programlisting">int       xmlXPathConvertFunc             (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj, <br/>                                         int type)<br/>
-</pre><p>A conversion function is associated to a type and used to cast the new type to primitive values.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>obj</tt></i>:</span></td><td>an XPath object</td></tr><tr><td><span class="term"><i><tt>type</tt></i>:</span></td><td>the number of the target type</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathEvalFunc"/>Function type xmlXPathEvalFunc</h3><pre class="programlisting">void    xmlXPathEvalFunc                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>An XPath evaluation function, the parameters are on the XPath context stack.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments passed to the function</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFuncLookupFunc"/>Function type xmlXPathFuncLookupFunc</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a>  xmlXPathFuncLookupFunc  (void * ctxt, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri)<br/>
-</pre><p>Prototype for callbacks used to plug function lookup in the XPath engine.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>name of the function</td></tr><tr><td><span class="term"><i><tt>ns_uri</tt></i>:</span></td><td>the namespace name hosting this function</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the XPath function or NULL if not found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFunction"/>Function type xmlXPathFunction</h3><pre class="programlisting">void    xmlXPathFunction                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>An XPath function. The arguments (if any) are popped out from the context stack and the result is pushed on the stack.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath interprestation context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathVariableLookupFunc"/>Function type xmlXPathVariableLookupFunc</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>        xmlXPathVariableLookupFunc      (void * ctxt, <br/>                                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri)<br/>
-</pre><p>Prototype for callbacks used to plug variable lookup in the XPath engine.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>name of the variable</td></tr><tr><td><span class="term"><i><tt>ns_uri</tt></i>:</span></td><td>the namespace name hosting this variable</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the XPath object value or NULL if not found.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNAN">Variable </a>xmlXPathNAN</h3><pre class="programlisting">double xmlXPathNAN;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNINF">Variable </a>xmlXPathNINF</h3><pre class="programlisting">double xmlXPathNINF;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathPINF">Variable </a>xmlXPathPINF</h3><pre class="programlisting">double xmlXPathPINF;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastBooleanToNumber"/>xmlXPathCastBooleanToNumber ()</h3><pre class="programlisting">double       xmlXPathCastBooleanToNumber     (int val)<br/>
-</pre><p>Converts a boolean to its number value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a boolean</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastBooleanToString"/>xmlXPathCastBooleanToString ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlXPathCastBooleanToString     (int val)<br/>
-</pre><p>Converts a boolean to its string value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a boolean</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a newly allocated string.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastNodeSetToBoolean"/>xmlXPathCastNodeSetToBoolean ()</h3><pre class="programlisting">int        xmlXPathCastNodeSetToBoolean    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns)<br/>
-</pre><p>Converts a node-set to its boolean value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the boolean value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastNodeSetToNumber"/>xmlXPathCastNodeSetToNumber ()</h3><pre class="programlisting">double       xmlXPathCastNodeSetToNumber     (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns)<br/>
-</pre><p>Converts a node-set to its number value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastNodeSetToString"/>xmlXPathCastNodeSetToString ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlXPathCastNodeSetToString     (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns)<br/>
-</pre><p>Converts a node-set to its string value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a newly allocated string.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastNodeToNumber"/>xmlXPathCastNodeToNumber ()</h3><pre class="programlisting">double     xmlXPathCastNodeToNumber        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Converts a node to its number value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastNodeToString"/>xmlXPathCastNodeToString ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlXPathCastNodeToString        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Converts a node to its string value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a newly allocated string.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastNumberToBoolean"/>xmlXPathCastNumberToBoolean ()</h3><pre class="programlisting">int  xmlXPathCastNumberToBoolean     (double val)<br/>
-</pre><p>Converts a number to its boolean value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a number</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the boolean value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastNumberToString"/>xmlXPathCastNumberToString ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * xmlXPathCastNumberToString      (double val)<br/>
-</pre><p>Converts a number to its string value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a number</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a newly allocated string.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastStringToBoolean"/>xmlXPathCastStringToBoolean ()</h3><pre class="programlisting">int  xmlXPathCastStringToBoolean     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br/>
-</pre><p>Converts a string to its boolean value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the boolean value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastStringToNumber"/>xmlXPathCastStringToNumber ()</h3><pre class="programlisting">double xmlXPathCastStringToNumber      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br/>
-</pre><p>Converts a string to its number value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastToBoolean"/>xmlXPathCastToBoolean ()</h3><pre class="programlisting">int      xmlXPathCastToBoolean           (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br/>
-</pre><p>Converts an XPath object to its boolean value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>an XPath object</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the boolean value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastToNumber"/>xmlXPathCastToNumber ()</h3><pre class="programlisting">double     xmlXPathCastToNumber            (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br/>
-</pre><p>Converts an XPath object to its number value</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>an XPath object</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number value</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCastToString"/>xmlXPathCastToString ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlXPathCastToString    (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br/>
-</pre><p>Converts an existing object to its string() equivalent</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>an XPath object</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the allocated string value of the object, NULL in case of error. It's up to the caller to free the string memory with xmlFree().</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCmpNodes"/>xmlXPathCmpNodes ()</h3><pre class="programlisting">int        xmlXPathCmpNodes                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node1, <br/>                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br/>
-</pre><p>Compare two nodes w.r.t document order</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node1</tt></i>:</span></td><td>the first node</td></tr><tr><td><span class="term"><i><tt>node2</tt></i>:</span></td><td>the second node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-2 in case of error 1 if first point &lt; second point, 0 if it's the same node, -1 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCompile"/>xmlXPathCompile ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a>     xmlXPathCompile (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>Compile an XPath expression</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the XPath expression</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> resulting from the compilation or NULL. the caller has to free the object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCompiledEval"/>xmlXPathCompiledEval ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathCompiledEval    (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br/>                                            <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx)<br/>
-</pre><p>Evaluate the Precompiled XPath expression in the given context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>the compiled XPath expression</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> resulting from the evaluation or NULL. the caller has to free the object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCompiledEvalToBoolean"/>xmlXPathCompiledEvalToBoolean ()</h3><pre class="programlisting">int      xmlXPathCompiledEvalToBoolean   (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br/>                                    <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br/>
-</pre><p>Applies the XPath boolean() function on the result of the given compiled expression.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>the compiled XPath expression</td></tr><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the expression evaluated to true, 0 if to false and -1 in API and internal errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathContextSetCache"/>xmlXPathContextSetCache ()</h3><pre class="programlisting">int  xmlXPathContextSetCache         (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      int active, <br/>                                       int value, <br/>                                        int options)<br/>
-</pre><p>Creates/frees an object cache on the XPath context. If activates XPath objects (xmlXPathObject) will be cached internally to be reused. @options: 0: This will set the XPath object caching: @value: This will set the maximum number of XPath objects to be cached per slot There are 5 slots for: node-set, string, number, boolean, and misc objects. Use &lt;0 for the default number (100). Other values for @options have currently no effect.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>active</tt></i>:</span></td><td>enables/disables (creates/frees) the cache</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>a value with semantics dependent on @options</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>options (currently only the value 0 is used)</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the setting succeeded, and -1 on API or internal errors.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathConvertBoolean"/>xmlXPathConvertBoolean ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   xmlXPathConvertBoolean  (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br/>
-</pre><p>Converts an existing object to its boolean() equivalent</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>an XPath object</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new object, the old one is freed (or the operation is done directly on @val)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathConvertNumber"/>xmlXPathConvertNumber ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>     xmlXPathConvertNumber   (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br/>
-</pre><p>Converts an existing object to its number() equivalent</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>an XPath object</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new object, the old one is freed (or the operation is done directly on @val)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathConvertString"/>xmlXPathConvertString ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>     xmlXPathConvertString   (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br/>
-</pre><p>Converts an existing object to its string() equivalent</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>an XPath object</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new object, the old one is freed (or the operation is done directly on @val)</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCtxtCompile"/>xmlXPathCtxtCompile ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a>     xmlXPathCtxtCompile     (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>Compile an XPath expression</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath context</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the XPath expression</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> resulting from the compilation or NULL. the caller has to free the object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathEval"/>xmlXPathEval ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathEval    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx)<br/>
-</pre><p>Evaluate the XPath Location Path in the given context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the XPath expression</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> resulting from the evaluation or NULL. the caller has to free the object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathEvalExpression"/>xmlXPathEvalExpression ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   xmlXPathEvalExpression  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                                 <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br/>
-</pre><p>Alias for xmlXPathEval().</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the XPath expression</td></tr><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> resulting from the evaluation or NULL. the caller has to free the object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathEvalPredicate"/>xmlXPathEvalPredicate ()</h3><pre class="programlisting">int      xmlXPathEvalPredicate           (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> res)<br/>
-</pre><p>Evaluate a predicate result for the current node. A PredicateExpr is evaluated by evaluating the Expr and converting the result to a boolean. If the result is a number, the result will be converted to true if the number is equal to the position of the context node in the context node list (as returned by the position function) and will be converted to false otherwise; if the result is not a number, then the result will be converted as if by a call to the boolean function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>res</tt></i>:</span></td><td>the Predicate Expression evaluation result</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if predicate is true, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFreeCompExpr"/>xmlXPathFreeCompExpr ()</h3><pre class="programlisting">void       xmlXPathFreeCompExpr            (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp)<br/>
-</pre><p>Free up the memory allocated by @comp</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>an XPATH comp</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFreeContext"/>xmlXPathFreeContext ()</h3><pre class="programlisting">void xmlXPathFreeContext             (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br/>
-</pre><p>Free up an <a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the context to free</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFreeNodeSet"/>xmlXPathFreeNodeSet ()</h3><pre class="programlisting">void xmlXPathFreeNodeSet             (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> obj)<br/>
-</pre><p>Free the NodeSet compound (not the actual nodes !).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>obj</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> to free</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFreeNodeSetList"/>xmlXPathFreeNodeSetList ()</h3><pre class="programlisting">void xmlXPathFreeNodeSetList         (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj)<br/>
-</pre><p>Free up the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> @obj but don't deallocate the objects in the list contrary to xmlXPathFreeObject().</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>obj</tt></i>:</span></td><td>an existing NodeSetList object</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFreeObject"/>xmlXPathFreeObject ()</h3><pre class="programlisting">void   xmlXPathFreeObject              (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj)<br/>
-</pre><p>Free up an <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> object.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>obj</tt></i>:</span></td><td>the object to free</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathInit"/>xmlXPathInit ()</h3><pre class="programlisting">void       xmlXPathInit                    (void)<br/>
-</pre><p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Initialize the XPath environment</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathIsInf"/>xmlXPathIsInf ()</h3><pre class="programlisting">int      xmlXPathIsInf                   (double val)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a double value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the value is +Infinite, -1 if -Infinite, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathIsNaN"/>xmlXPathIsNaN ()</h3><pre class="programlisting">int      xmlXPathIsNaN                   (double val)<br/>
-</pre><p/>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a double value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the value is a NaN, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNewContext"/>xmlXPathNewContext ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> xmlXPathNewContext      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the XML document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a> just allocated. The caller will need to free it.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeEval"/>xmlXPathNodeEval ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathNodeEval        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                                 <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx)<br/>
-</pre><p>Evaluate the XPath Location Path in the given context. The node 'node' is set as the context node. The context node is not restored.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node to to use as the context node</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the XPath expression</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> resulting from the evaluation or NULL. the caller has to free the object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetCreate"/>xmlXPathNodeSetCreate ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>     xmlXPathNodeSetCreate   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> of type double and of value @val</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>an initial xmlNodePtr, or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathObjectCopy"/>xmlXPathObjectCopy ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   xmlXPathObjectCopy      (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br/>
-</pre><p>allocate a new copy of a given object</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the original object</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathOrderDocElems"/>xmlXPathOrderDocElems ()</h3><pre class="programlisting">long     xmlXPathOrderDocElems           (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br/>
-</pre><p>Call this routine to speed up XPath computation on static documents. This stamps all the element nodes with the document order Like for line information, the order is kept in the element-&gt;content field, the value stored is actually - the node number (starting at -1) to be able to differentiate from line numbers.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>an input document</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of elements found in the document or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathSetContextNode"/>xmlXPathSetContextNode ()</h3><pre class="programlisting">int    xmlXPathSetContextNode          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx)<br/>
-</pre><p>Sets 'node' as the context node. The node must be in the same document as that associated with the context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the node to to use as the context node</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error or 0 if successful</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathVariablePtr">Typedef </a>xmlXPathVariablePtr</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathVariable">xmlXPathVariable</a> * xmlXPathVariablePtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathAxisFunc"></a>Function type xmlXPathAxisFunc</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathAxisFunc        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                           <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> cur)<br>
+</pre>
+<p>An axis traversal function. To traverse an axis, the engine calls the first time with cur == NULL and repeat until the function returns NULL indicating the end of the axis traversal.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath interpreter context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the previous node being explored on that axis</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next node in that axis or NULL if at the end of the axis.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathConvertFunc"></a>Function type xmlXPathConvertFunc</h3>
+<pre class="programlisting">int        xmlXPathConvertFunc             (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj, <br>                                  int type)<br>
+</pre>
+<p>A conversion function is associated to a type and used to cast the new type to primitive values.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>obj</tt></i>:</span></td>
+<td>an XPath object</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>type</tt></i>:</span></td>
+<td>the number of the target type</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathEvalFunc"></a>Function type xmlXPathEvalFunc</h3>
+<pre class="programlisting">void       xmlXPathEvalFunc                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>An XPath evaluation function, the parameters are on the XPath context stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments passed to the function</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFuncLookupFunc"></a>Function type xmlXPathFuncLookupFunc</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> xmlXPathFuncLookupFunc  (void * ctxt, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                 const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri)<br>
+</pre>
+<p>Prototype for callbacks used to plug function lookup in the XPath engine.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>name of the function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns_uri</tt></i>:</span></td>
+<td>the namespace name hosting this function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the XPath function or NULL if not found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFunction"></a>Function type xmlXPathFunction</h3>
+<pre class="programlisting">void       xmlXPathFunction                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>An XPath function. The arguments (if any) are popped out from the context stack and the result is pushed on the stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath interprestation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathVariableLookupFunc"></a>Function type xmlXPathVariableLookupFunc</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathVariableLookupFunc      (void * ctxt, <br>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri)<br>
+</pre>
+<p>Prototype for callbacks used to plug variable lookup in the XPath engine.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>name of the variable</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns_uri</tt></i>:</span></td>
+<td>the namespace name hosting this variable</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the XPath object value or NULL if not found.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNAN">Variable </a>xmlXPathNAN</h3>
+<pre class="programlisting">double xmlXPathNAN;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNINF">Variable </a>xmlXPathNINF</h3>
+<pre class="programlisting">double xmlXPathNINF;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathPINF">Variable </a>xmlXPathPINF</h3>
+<pre class="programlisting">double xmlXPathPINF;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastBooleanToNumber"></a>xmlXPathCastBooleanToNumber ()</h3>
+<pre class="programlisting">double     xmlXPathCastBooleanToNumber     (int val)<br>
+</pre>
+<p>Converts a boolean to its number value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a boolean</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastBooleanToString"></a>xmlXPathCastBooleanToString ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlXPathCastBooleanToString     (int val)<br>
+</pre>
+<p>Converts a boolean to its string value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a boolean</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a newly allocated string.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastNodeSetToBoolean"></a>xmlXPathCastNodeSetToBoolean ()</h3>
+<pre class="programlisting">int        xmlXPathCastNodeSetToBoolean    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns)<br>
+</pre>
+<p>Converts a node-set to its boolean value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the boolean value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastNodeSetToNumber"></a>xmlXPathCastNodeSetToNumber ()</h3>
+<pre class="programlisting">double     xmlXPathCastNodeSetToNumber     (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns)<br>
+</pre>
+<p>Converts a node-set to its number value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastNodeSetToString"></a>xmlXPathCastNodeSetToString ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlXPathCastNodeSetToString     (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> ns)<br>
+</pre>
+<p>Converts a node-set to its string value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a newly allocated string.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastNodeToNumber"></a>xmlXPathCastNodeToNumber ()</h3>
+<pre class="programlisting">double     xmlXPathCastNodeToNumber        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Converts a node to its number value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastNodeToString"></a>xmlXPathCastNodeToString ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlXPathCastNodeToString        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Converts a node to its string value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a newly allocated string.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastNumberToBoolean"></a>xmlXPathCastNumberToBoolean ()</h3>
+<pre class="programlisting">int        xmlXPathCastNumberToBoolean     (double val)<br>
+</pre>
+<p>Converts a number to its boolean value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a number</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the boolean value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastNumberToString"></a>xmlXPathCastNumberToString ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlXPathCastNumberToString      (double val)<br>
+</pre>
+<p>Converts a number to its string value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a number</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a newly allocated string.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastStringToBoolean"></a>xmlXPathCastStringToBoolean ()</h3>
+<pre class="programlisting">int        xmlXPathCastStringToBoolean     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br>
+</pre>
+<p>Converts a string to its boolean value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the boolean value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastStringToNumber"></a>xmlXPathCastStringToNumber ()</h3>
+<pre class="programlisting">double     xmlXPathCastStringToNumber      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br>
+</pre>
+<p>Converts a string to its number value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastToBoolean"></a>xmlXPathCastToBoolean ()</h3>
+<pre class="programlisting">int        xmlXPathCastToBoolean           (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br>
+</pre>
+<p>Converts an XPath object to its boolean value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>an XPath object</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the boolean value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastToNumber"></a>xmlXPathCastToNumber ()</h3>
+<pre class="programlisting">double     xmlXPathCastToNumber            (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br>
+</pre>
+<p>Converts an XPath object to its number value</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>an XPath object</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number value</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCastToString"></a>xmlXPathCastToString ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlXPathCastToString    (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br>
+</pre>
+<p>Converts an existing object to its string() equivalent</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>an XPath object</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the allocated string value of the object, NULL in case of error. It's up to the caller to free the string memory with xmlFree().</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCmpNodes"></a>xmlXPathCmpNodes ()</h3>
+<pre class="programlisting">int        xmlXPathCmpNodes                (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node1, <br>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node2)<br>
+</pre>
+<p>Compare two nodes w.r.t document order</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node1</tt></i>:</span></td>
+<td>the first node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node2</tt></i>:</span></td>
+<td>the second node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-2 in case of error 1 if first point &lt; second point, 0 if it's the same node, -1 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCompile"></a>xmlXPathCompile ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a>   xmlXPathCompile (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>Compile an XPath expression</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the XPath expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> resulting from the compilation or NULL. the caller has to free the object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCompiledEval"></a>xmlXPathCompiledEval ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathCompiledEval    (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br>                                             <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx)<br>
+</pre>
+<p>Evaluate the Precompiled XPath expression in the given context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>the compiled XPath expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> resulting from the evaluation or NULL. the caller has to free the object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCompiledEvalToBoolean"></a>xmlXPathCompiledEvalToBoolean ()</h3>
+<pre class="programlisting">int        xmlXPathCompiledEvalToBoolean   (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br>                                     <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br>
+</pre>
+<p>Applies the XPath boolean() function on the result of the given compiled expression.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>the compiled XPath expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the expression evaluated to true, 0 if to false and -1 in API and internal errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathContextSetCache"></a>xmlXPathContextSetCache ()</h3>
+<pre class="programlisting">int        xmlXPathContextSetCache         (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       int active, <br>                                        int value, <br>                                         int options)<br>
+</pre>
+<p>Creates/frees an object cache on the XPath context. If activates XPath objects (xmlXPathObject) will be cached internally to be reused. @options: 0: This will set the XPath object caching: @value: This will set the maximum number of XPath objects to be cached per slot There are 5 slots for: node-set, string, number, boolean, and misc objects. Use &lt;0 for the default number (100). Other values for @options have currently no effect.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>active</tt></i>:</span></td>
+<td>enables/disables (creates/frees) the cache</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>a value with semantics dependent on @options</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>options</tt></i>:</span></td>
+<td>options (currently only the value 0 is used)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 if the setting succeeded, and -1 on API or internal errors.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathConvertBoolean"></a>xmlXPathConvertBoolean ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathConvertBoolean  (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br>
+</pre>
+<p>Converts an existing object to its boolean() equivalent</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>an XPath object</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new object, the old one is freed (or the operation is done directly on @val)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathConvertNumber"></a>xmlXPathConvertNumber ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathConvertNumber   (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br>
+</pre>
+<p>Converts an existing object to its number() equivalent</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>an XPath object</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new object, the old one is freed (or the operation is done directly on @val)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathConvertString"></a>xmlXPathConvertString ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathConvertString   (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br>
+</pre>
+<p>Converts an existing object to its string() equivalent</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>an XPath object</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the new object, the old one is freed (or the operation is done directly on @val)</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCtxtCompile"></a>xmlXPathCtxtCompile ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a>   xmlXPathCtxtCompile     (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>Compile an XPath expression</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the XPath expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> resulting from the compilation or NULL. the caller has to free the object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathEval"></a>xmlXPathEval ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathEval    (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx)<br>
+</pre>
+<p>Evaluate the XPath Location Path in the given context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the XPath expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> resulting from the evaluation or NULL. the caller has to free the object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathEvalExpression"></a>xmlXPathEvalExpression ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathEvalExpression  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                          <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br>
+</pre>
+<p>Alias for xmlXPathEval().</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the XPath expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> resulting from the evaluation or NULL. the caller has to free the object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathEvalPredicate"></a>xmlXPathEvalPredicate ()</h3>
+<pre class="programlisting">int        xmlXPathEvalPredicate           (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> res)<br>
+</pre>
+<p>Evaluate a predicate result for the current node. A PredicateExpr is evaluated by evaluating the Expr and converting the result to a boolean. If the result is a number, the result will be converted to true if the number is equal to the position of the context node in the context node list (as returned by the position function) and will be converted to false otherwise; if the result is not a number, then the result will be converted as if by a call to the boolean function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>res</tt></i>:</span></td>
+<td>the Predicate Expression evaluation result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if predicate is true, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFreeCompExpr"></a>xmlXPathFreeCompExpr ()</h3>
+<pre class="programlisting">void       xmlXPathFreeCompExpr            (<a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp)<br>
+</pre>
+<p>Free up the memory allocated by @comp</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>an XPATH comp</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFreeContext"></a>xmlXPathFreeContext ()</h3>
+<pre class="programlisting">void       xmlXPathFreeContext             (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br>
+</pre>
+<p>Free up an <a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the context to free</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFreeNodeSet"></a>xmlXPathFreeNodeSet ()</h3>
+<pre class="programlisting">void       xmlXPathFreeNodeSet             (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> obj)<br>
+</pre>
+<p>Free the NodeSet compound (not the actual nodes !).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>obj</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> to free</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFreeNodeSetList"></a>xmlXPathFreeNodeSetList ()</h3>
+<pre class="programlisting">void       xmlXPathFreeNodeSetList         (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj)<br>
+</pre>
+<p>Free up the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> @obj but don't deallocate the objects in the list contrary to xmlXPathFreeObject().</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>obj</tt></i>:</span></td>
+<td>an existing NodeSetList object</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFreeObject"></a>xmlXPathFreeObject ()</h3>
+<pre class="programlisting">void       xmlXPathFreeObject              (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj)<br>
+</pre>
+<p>Free up an <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> object.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>obj</tt></i>:</span></td>
+<td>the object to free</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathInit"></a>xmlXPathInit ()</h3>
+<pre class="programlisting">void       xmlXPathInit                    (void)<br>
+</pre>
+<p>DEPRECATED: This function will be made private. Call <a href="libxml2-parser.html#xmlInitParser">xmlInitParser</a> to initialize the library. Initialize the XPath environment</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathIsInf"></a>xmlXPathIsInf ()</h3>
+<pre class="programlisting">int        xmlXPathIsInf                   (double val)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a double value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the value is +Infinite, -1 if -Infinite, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathIsNaN"></a>xmlXPathIsNaN ()</h3>
+<pre class="programlisting">int        xmlXPathIsNaN                   (double val)<br>
+</pre>
+<p></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a double value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the value is a NaN, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNewContext"></a>xmlXPathNewContext ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a>     xmlXPathNewContext      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the XML document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a> just allocated. The caller will need to free it.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeEval"></a>xmlXPathNodeEval ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathNodeEval        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                                const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                          <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx)<br>
+</pre>
+<p>Evaluate the XPath Location Path in the given context. The node 'node' is set as the context node. The context node is not restored.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node to to use as the context node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the XPath expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> resulting from the evaluation or NULL. the caller has to free the object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetCreate"></a>xmlXPathNodeSetCreate ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathNodeSetCreate   (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> of type double and of value @val</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>an initial xmlNodePtr, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathObjectCopy"></a>xmlXPathObjectCopy ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathObjectCopy      (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br>
+</pre>
+<p>allocate a new copy of a given object</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the original object</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathOrderDocElems"></a>xmlXPathOrderDocElems ()</h3>
+<pre class="programlisting">long       xmlXPathOrderDocElems           (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br>
+</pre>
+<p>Call this routine to speed up XPath computation on static documents. This stamps all the element nodes with the document order Like for line information, the order is kept in the element-&gt;content field, the value stored is actually - the node number (starting at -1) to be able to differentiate from line numbers.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>an input document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of elements found in the document or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathSetContextNode"></a>xmlXPathSetContextNode ()</h3>
+<pre class="programlisting">int        xmlXPathSetContextNode          (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx)<br>
+</pre>
+<p>Sets 'node' as the context node. The node must be in the same document as that associated with the context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the node to to use as the context node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>-1 in case of error or 0 if successful</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 45220b1..e5edfac 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xpathInternals: internal interfaces for XML Path Language implementation</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xpath.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="n" href="libxml2-xpointer.html">
-            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xpathInternals</span>
-    </h2>
-    <p>xpathInternals - internal interfaces for XML Path Language implementation</p>
-    <p>internal interfaces for XML Path Language implementation used to build new modules on top of XPath like XPointer and XSLT </p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">#define <a href="#xmlXPathStackIsExternal">xmlXPathStackIsExternal</a>(ctxt);
-#define <a href="#xmlXPathReturnEmptyString">xmlXPathReturnEmptyString</a>(ctxt);
-#define <a href="#XP_ERROR0">XP_ERROR0</a>(X);
-#define <a href="#xmlXPathSetTypeError">xmlXPathSetTypeError</a>(ctxt);
-#define <a href="#xmlXPathReturnEmptyNodeSet">xmlXPathReturnEmptyNodeSet</a>(ctxt);
-#define <a href="#xmlXPathReturnTrue">xmlXPathReturnTrue</a>(ctxt);
-#define <a href="#xmlXPathReturnBoolean">xmlXPathReturnBoolean</a>(ctxt, val);
-#define <a href="#xmlXPathGetContextNode">xmlXPathGetContextNode</a>(ctxt);
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xpathInternals: internal interfaces for XML Path Language implementation</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xpath.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<td><a accesskey="n" href="libxml2-xpointer.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xpathInternals</span></h2>
+<p>xpathInternals - internal interfaces for XML Path Language implementation</p>
+<p>internal interfaces for XML Path Language implementation used to build new modules on top of XPath like XPointer and XSLT </p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">#define <a href="#CAST_TO_BOOLEAN">CAST_TO_BOOLEAN</a>;
 #define <a href="#CAST_TO_NUMBER">CAST_TO_NUMBER</a>;
-#define <a href="#CHECK_ARITY">CHECK_ARITY</a>(x);
-#define <a href="#CHECK_TYPE0">CHECK_TYPE0</a>(typeval);
 #define <a href="#CAST_TO_STRING">CAST_TO_STRING</a>;
-#define <a href="#xmlXPathReturnExternal">xmlXPathReturnExternal</a>(ctxt, val);
-#define <a href="#xmlXPathStackIsNodeSet">xmlXPathStackIsNodeSet</a>(ctxt);
-#define <a href="#xmlXPathCheckError">xmlXPathCheckError</a>(ctxt);
-#define <a href="#xmlXPathSetError">xmlXPathSetError</a>(ctxt, err);
+#define <a href="#CHECK_ARITY">CHECK_ARITY</a>(x);
 #define <a href="#CHECK_ERROR">CHECK_ERROR</a>;
-#define <a href="#xmlXPathReturnString">xmlXPathReturnString</a>(ctxt, str);
-#define <a href="#CAST_TO_BOOLEAN">CAST_TO_BOOLEAN</a>;
-#define <a href="#xmlXPathSetArityError">xmlXPathSetArityError</a>(ctxt);
-#define <a href="#CHECK_TYPE">CHECK_TYPE</a>(typeval);
-#define <a href="#xmlXPathReturnFalse">xmlXPathReturnFalse</a>(ctxt);
-#define <a href="#xmlXPathReturnNumber">xmlXPathReturnNumber</a>(ctxt, val);
 #define <a href="#CHECK_ERROR0">CHECK_ERROR0</a>;
-#define <a href="#xmlXPathGetDocument">xmlXPathGetDocument</a>(ctxt);
-#define <a href="#xmlXPathGetError">xmlXPathGetError</a>(ctxt);
+#define <a href="#CHECK_TYPE">CHECK_TYPE</a>(typeval);
+#define <a href="#CHECK_TYPE0">CHECK_TYPE0</a>(typeval);
 #define <a href="#XP_ERROR">XP_ERROR</a>(X);
+#define <a href="#XP_ERROR0">XP_ERROR0</a>(X);
+#define <a href="#xmlXPathCheckError">xmlXPathCheckError</a>(ctxt);
 #define <a href="#xmlXPathEmptyNodeSet">xmlXPathEmptyNodeSet</a>(ns);
+#define <a href="#xmlXPathGetContextNode">xmlXPathGetContextNode</a>(ctxt);
+#define <a href="#xmlXPathGetDocument">xmlXPathGetDocument</a>(ctxt);
+#define <a href="#xmlXPathGetError">xmlXPathGetError</a>(ctxt);
+#define <a href="#xmlXPathReturnBoolean">xmlXPathReturnBoolean</a>(ctxt, val);
+#define <a href="#xmlXPathReturnEmptyNodeSet">xmlXPathReturnEmptyNodeSet</a>(ctxt);
+#define <a href="#xmlXPathReturnEmptyString">xmlXPathReturnEmptyString</a>(ctxt);
+#define <a href="#xmlXPathReturnExternal">xmlXPathReturnExternal</a>(ctxt, val);
+#define <a href="#xmlXPathReturnFalse">xmlXPathReturnFalse</a>(ctxt);
 #define <a href="#xmlXPathReturnNodeSet">xmlXPathReturnNodeSet</a>(ctxt, ns);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val1, <br/>                                        <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val2);
-void   <a href="#xmlXPathNumberFunction">xmlXPathNumberFunction</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlXPathNsLookup">xmlXPathNsLookup</a>        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
+#define <a href="#xmlXPathReturnNumber">xmlXPathReturnNumber</a>(ctxt, val);
+#define <a href="#xmlXPathReturnString">xmlXPathReturnString</a>(ctxt, str);
+#define <a href="#xmlXPathReturnTrue">xmlXPathReturnTrue</a>(ctxt);
+#define <a href="#xmlXPathSetArityError">xmlXPathSetArityError</a>(ctxt);
+#define <a href="#xmlXPathSetError">xmlXPathSetError</a>(ctxt, err);
+#define <a href="#xmlXPathSetTypeError">xmlXPathSetTypeError</a>(ctxt);
+#define <a href="#xmlXPathStackIsExternal">xmlXPathStackIsExternal</a>(ctxt);
+#define <a href="#xmlXPathStackIsNodeSet">xmlXPathStackIsNodeSet</a>(ctxt);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#valuePop">valuePop</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+int    <a href="#valuePush">valuePush</a>                      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value);
+void   <a href="#xmlXPathAddValues">xmlXPathAddValues</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+void   <a href="#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+int    <a href="#xmlXPathCompareValues">xmlXPathCompareValues</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int inf, <br>                                   int strict);
+void   <a href="#xmlXPathConcatFunction">xmlXPathConcatFunction</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathContainsFunction">xmlXPathContainsFunction</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathCountFunction">xmlXPathCountFunction</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathDebugDumpCompExpr">xmlXPathDebugDumpCompExpr</a>      (FILE * output, <br>                                     <a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br>                                     int depth);
+void   <a href="#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a>          (FILE * output, <br>                                     <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> cur, <br>                                  int depth);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathDifference">xmlXPathDifference</a>    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathDistinct">xmlXPathDistinct</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a>    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes);
+void   <a href="#xmlXPathDivValues">xmlXPathDivValues</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+int    <a href="#xmlXPathEqualValues">xmlXPathEqualValues</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+void   <a href="#xmlXPathErr">xmlXPathErr</a>                  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int error);
+void   <a href="#xmlXPathEvalExpr">xmlXPathEvalExpr</a>                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+int    <a href="#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a>  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> res);
+void   <a href="#xmlXPathFalseFunction">xmlXPathFalseFunction</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathFloorFunction">xmlXPathFloorFunction</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathFreeParserContext">xmlXPathFreeParserContext</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+<a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a>     <a href="#xmlXPathFunctionLookup">xmlXPathFunctionLookup</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a>     <a href="#xmlXPathFunctionLookupNS">xmlXPathFunctionLookupNS</a>        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri);
+int    <a href="#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a>                (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
+void   <a href="#xmlXPathIdFunction">xmlXPathIdFunction</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathIntersection">xmlXPathIntersection</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
+int    <a href="#xmlXPathIsNodeType">xmlXPathIsNodeType</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+void   <a href="#xmlXPathLangFunction">xmlXPathLangFunction</a>                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathLastFunction">xmlXPathLastFunction</a>                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathLeading">xmlXPathLeading</a>          (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a>      (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
+void   <a href="#xmlXPathLocalNameFunction">xmlXPathLocalNameFunction</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathModValues">xmlXPathModValues</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+void   <a href="#xmlXPathMultValues">xmlXPathMultValues</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+void   <a href="#xmlXPathNamespaceURIFunction">xmlXPathNamespaceURIFunction</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNewBoolean">xmlXPathNewBoolean</a>    (int val);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNewCString">xmlXPathNewCString</a>    (const char * val);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNewFloat">xmlXPathNewFloat</a>        (double val);
 <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNewNodeSet">xmlXPathNewNodeSet</a>    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-void   <a href="#xmlXPathNodeSetRemove">xmlXPathNodeSetRemove</a>              (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         int val);
 <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNewNodeSetList">xmlXPathNewNodeSetList</a>    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val);
-int    <a href="#xmlXPathPopBoolean">xmlXPathPopBoolean</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a>     <a href="#xmlXPathNewParserContext">xmlXPathNewParserContext</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                                  <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
 <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNewString">xmlXPathNewString</a>      (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a>      (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                               <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextChild">xmlXPathNextChild</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathPopString">xmlXPathPopString</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-void   <a href="#xmlXPathNamespaceURIFunction">xmlXPathNamespaceURIFunction</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-int    <a href="#xmlXPathCompareValues">xmlXPathCompareValues</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int inf, <br/>                                  int strict);
-void   <a href="#xmlXPathConcatFunction">xmlXPathConcatFunction</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-int    <a href="#xmlXPathNodeSetContains">xmlXPathNodeSetContains</a>          (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
-void   <a href="#xmlXPatherror">xmlXPatherror</a>                      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  const char * file, <br/>                                        int line, <br/>                                         int no);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextAncestor">xmlXPathNextAncestor</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-void   <a href="#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-void   <a href="#xmlXPathRoot">xmlXPathRoot</a>                        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-void   <a href="#xmlXPathRegisteredNsCleanup">xmlXPathRegisteredNsCleanup</a>  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
-int    <a href="#xmlXPathIsNodeType">xmlXPathIsNodeType</a>            (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextFollowing">xmlXPathNextFollowing</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-void   <a href="#xmlXPathAddValues">xmlXPathAddValues</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-int    <a href="#xmlXPathRegisterVariable">xmlXPathRegisterVariable</a>        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#valuePop">valuePop</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-void   <a href="#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathIntersection">xmlXPathIntersection</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
-void   <a href="#xmlXPathContainsFunction">xmlXPathContainsFunction</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNewValueTree">xmlXPathNewValueTree</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextAncestor">xmlXPathNextAncestor</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextAttribute">xmlXPathNextAttribute</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextChild">xmlXPathNextChild</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextDescendant">xmlXPathNextDescendant</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextFollowing">xmlXPathNextFollowing</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextNamespace">xmlXPathNextNamespace</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextParent">xmlXPathNextParent</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextPreceding">xmlXPathNextPreceding</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextSelf">xmlXPathNextSelf</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeLeading">xmlXPathNodeLeading</a>  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a>      (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                                <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+int    <a href="#xmlXPathNodeSetAdd">xmlXPathNodeSetAdd</a>            (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
+int    <a href="#xmlXPathNodeSetAddNs">xmlXPathNodeSetAddNs</a>                (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns);
+int    <a href="#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
+int    <a href="#xmlXPathNodeSetContains">xmlXPathNodeSetContains</a>          (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
+void   <a href="#xmlXPathNodeSetDel">xmlXPathNodeSetDel</a>            (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
+void   <a href="#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a>              (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val1, <br>                                         <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val2);
+void   <a href="#xmlXPathNodeSetRemove">xmlXPathNodeSetRemove</a>              (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  int val);
 void   <a href="#xmlXPathNodeSetSort">xmlXPathNodeSetSort</a>          (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> set);
-void   <a href="#xmlXPathStartsWithFunction">xmlXPathStartsWithFunction</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeLeading">xmlXPathNodeLeading</a>  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-void   <a href="#xmlXPathSumFunction">xmlXPathSumFunction</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a>    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                                <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
+void   <a href="#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
 int    <a href="#xmlXPathNotEqualValues">xmlXPathNotEqualValues</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-int    <a href="#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a>  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> res);
-void   <a href="#xmlXPathErr">xmlXPathErr</a>                  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int error);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextPreceding">xmlXPathNextPreceding</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-<a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a>     <a href="#xmlXPathFunctionLookupNS">xmlXPathFunctionLookupNS</a>        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri);
-void   <a href="#xmlXPathRegisteredFuncsCleanup">xmlXPathRegisteredFuncsCleanup</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
+void   <a href="#xmlXPathNotFunction">xmlXPathNotFunction</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   <a href="#xmlXPathNsLookup">xmlXPathNsLookup</a>        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix);
+void   <a href="#xmlXPathNumberFunction">xmlXPathNumberFunction</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathParseNCName">xmlXPathParseNCName</a>  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathParseName">xmlXPathParseName</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+int    <a href="#xmlXPathPopBoolean">xmlXPathPopBoolean</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+void * <a href="#xmlXPathPopExternal">xmlXPathPopExternal</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathPopNodeSet">xmlXPathPopNodeSet</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+double <a href="#xmlXPathPopNumber">xmlXPathPopNumber</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathPopString">xmlXPathPopString</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+void   <a href="#xmlXPathPositionFunction">xmlXPathPositionFunction</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
 void   <a href="#xmlXPathRegisterAllFunctions">xmlXPathRegisterAllFunctions</a>        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
-<a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a>     <a href="#xmlXPathFunctionLookup">xmlXPathFunctionLookup</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void   <a href="#xmlXPathPositionFunction">xmlXPathPositionFunction</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-void   <a href="#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a>  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
+int    <a href="#xmlXPathRegisterFunc">xmlXPathRegisterFunc</a>                (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> f);
+void   <a href="#xmlXPathRegisterFuncLookup">xmlXPathRegisterFuncLookup</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       <a href="libxml2-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a> f, <br>                                  void * funcCtxt);
+int    <a href="#xmlXPathRegisterFuncNS">xmlXPathRegisterFuncNS</a>            (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri, <br>                                       <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> f);
+int    <a href="#xmlXPathRegisterNs">xmlXPathRegisterNs</a>            (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri);
+int    <a href="#xmlXPathRegisterVariable">xmlXPathRegisterVariable</a>        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value);
+void   <a href="#xmlXPathRegisterVariableLookup">xmlXPathRegisterVariableLookup</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       <a href="libxml2-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a> f, <br>                                  void * data);
+int    <a href="#xmlXPathRegisterVariableNS">xmlXPathRegisterVariableNS</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri, <br>                                       <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value);
+void   <a href="#xmlXPathRegisteredFuncsCleanup">xmlXPathRegisteredFuncsCleanup</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
+void   <a href="#xmlXPathRegisteredNsCleanup">xmlXPathRegisteredNsCleanup</a>  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
 void   <a href="#xmlXPathRegisteredVariablesCleanup">xmlXPathRegisteredVariablesCleanup</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNewFloat">xmlXPathNewFloat</a>        (double val);
-int    <a href="#xmlXPathRegisterNs">xmlXPathRegisterNs</a>            (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextParent">xmlXPathNextParent</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-void   <a href="#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a>              (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns);
-int    <a href="#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a>                (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a>    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes);
-int    <a href="#valuePush">valuePush</a>                      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value);
-void   <a href="#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-void   <a href="#xmlXPathStringFunction">xmlXPathStringFunction</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-void   <a href="#xmlXPathFloorFunction">xmlXPathFloorFunction</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-void   <a href="#xmlXPathIdFunction">xmlXPathIdFunction</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-void   <a href="#xmlXPathLastFunction">xmlXPathLastFunction</a>                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-void   <a href="#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextSelf">xmlXPathNextSelf</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-void   <a href="#xmlXPathDebugDumpCompExpr">xmlXPathDebugDumpCompExpr</a>      (FILE * output, <br/>                                    <a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br/>                                    int depth);
-void   <a href="#xmlXPathFalseFunction">xmlXPathFalseFunction</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-void   <a href="#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-void   <a href="#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-void   <a href="#xmlXPathRegisterFuncLookup">xmlXPathRegisterFuncLookup</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      <a href="libxml2-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a> f, <br/>                                         void * funcCtxt);
-double <a href="#xmlXPathPopNumber">xmlXPathPopNumber</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-void   <a href="#xmlXPathRoundFunction">xmlXPathRoundFunction</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathPopNodeSet">xmlXPathPopNodeSet</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-void   <a href="#xmlXPathCountFunction">xmlXPathCountFunction</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathParseNCName">xmlXPathParseNCName</a>  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-void   <a href="#xmlXPathTrueFunction">xmlXPathTrueFunction</a>                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNewBoolean">xmlXPathNewBoolean</a>    (int val);
+void   <a href="#xmlXPathRoot">xmlXPathRoot</a>                        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+void   <a href="#xmlXPathRoundFunction">xmlXPathRoundFunction</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathStartsWithFunction">xmlXPathStartsWithFunction</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+double <a href="#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
+void   <a href="#xmlXPathStringFunction">xmlXPathStringFunction</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
 void   <a href="#xmlXPathSubValues">xmlXPathSubValues</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-int    <a href="#xmlXPathEqualValues">xmlXPathEqualValues</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a>    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
-void   <a href="#xmlXPathMultValues">xmlXPathMultValues</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-void   <a href="#xmlXPathModValues">xmlXPathModValues</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a>     <a href="#xmlXPathNewParserContext">xmlXPathNewParserContext</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                                         <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathWrapNodeSet">xmlXPathWrapNodeSet</a>  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathWrapString">xmlXPathWrapString</a>    (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val);
-void   <a href="#xmlXPathLangFunction">xmlXPathLangFunction</a>                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-int    <a href="#xmlXPathRegisterFuncNS">xmlXPathRegisterFuncNS</a>            (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri, <br/>                                      <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> f);
-int    <a href="#xmlXPathNodeSetAddNs">xmlXPathNodeSetAddNs</a>                (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns);
-void   <a href="#xmlXPathLocalNameFunction">xmlXPathLocalNameFunction</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathDifference">xmlXPathDifference</a>    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a>      (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-void * <a href="#xmlXPathPopExternal">xmlXPathPopExternal</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-void   <a href="#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-void   <a href="#xmlXPathRegisterVariableLookup">xmlXPathRegisterVariableLookup</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      <a href="libxml2-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a> f, <br/>                                         void * data);
-void   <a href="#xmlXPathNodeSetDel">xmlXPathNodeSetDel</a>            (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a>    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                               <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNewCString">xmlXPathNewCString</a>    (const char * val);
-int    <a href="#xmlXPathRegisterFunc">xmlXPathRegisterFunc</a>                (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> f);
-void   <a href="#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextDescendant">xmlXPathNextDescendant</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextNamespace">xmlXPathNextNamespace</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
+void   <a href="#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a>    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a>  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathSumFunction">xmlXPathSumFunction</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathTrailing">xmlXPathTrailing</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
+<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a>    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
+void   <a href="#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathTrueFunction">xmlXPathTrueFunction</a>                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+void   <a href="#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathVariableLookup">xmlXPathVariableLookup</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathVariableLookupNS">xmlXPathVariableLookupNS</a>        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri);
 <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathWrapCString">xmlXPathWrapCString</a>  (char * val);
-void   <a href="#xmlXPathFreeParserContext">xmlXPathFreeParserContext</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node);
-int    <a href="#xmlXPathNodeSetAdd">xmlXPathNodeSetAdd</a>            (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
-int    <a href="#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathNewValueTree">xmlXPathNewValueTree</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathDistinct">xmlXPathDistinct</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathVariableLookup">xmlXPathVariableLookup</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name);
-void   <a href="#xmlXPathNotFunction">xmlXPathNotFunction</a>          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
-double <a href="#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a>        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a>        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
 <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathWrapExternal">xmlXPathWrapExternal</a>        (void * val);
-<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPathNextAttribute">xmlXPathNextAttribute</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur);
-void   <a href="#xmlXPathDivValues">xmlXPathDivValues</a>              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathVariableLookupNS">xmlXPathVariableLookupNS</a>        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri);
-int    <a href="#xmlXPathRegisterVariableNS">xmlXPathRegisterVariableNS</a>    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri, <br/>                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathTrailing">xmlXPathTrailing</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
-void   <a href="#xmlXPathEvalExpr">xmlXPathEvalExpr</a>                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-void   <a href="#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a>          (FILE * output, <br/>                                    <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> cur, <br/>                                         int depth);
-<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   <a href="#xmlXPathLeading">xmlXPathLeading</a>          (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2);
-<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * <a href="#xmlXPathParseName">xmlXPathParseName</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathWrapNodeSet">xmlXPathWrapNodeSet</a>  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPathWrapString">xmlXPathWrapString</a>    (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val);
+void   <a href="#xmlXPatherror">xmlXPatherror</a>                      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   const char * file, <br>                                         int line, <br>                                  int no);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="CAST_TO_BOOLEAN">Macro </a>CAST_TO_BOOLEAN</h3>
+<pre class="programlisting">#define <a href="#CAST_TO_BOOLEAN">CAST_TO_BOOLEAN</a>;
+</pre>
+<p>Macro to try to cast the value on the top of the XPath stack to a boolean.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="CAST_TO_NUMBER">Macro </a>CAST_TO_NUMBER</h3>
+<pre class="programlisting">#define <a href="#CAST_TO_NUMBER">CAST_TO_NUMBER</a>;
+</pre>
+<p>Macro to try to cast the value on the top of the XPath stack to a number.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="CAST_TO_STRING">Macro </a>CAST_TO_STRING</h3>
+<pre class="programlisting">#define <a href="#CAST_TO_STRING">CAST_TO_STRING</a>;
+</pre>
+<p>Macro to try to cast the value on the top of the XPath stack to a string.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="CHECK_ARITY">Macro </a>CHECK_ARITY</h3>
+<pre class="programlisting">#define <a href="#CHECK_ARITY">CHECK_ARITY</a>(x);
+</pre>
+<p>Macro to check that the number of args passed to an XPath function matches.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>x</tt></i>:</span></td>
+<td>the number of expected args</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="CHECK_ERROR">Macro </a>CHECK_ERROR</h3>
+<pre class="programlisting">#define <a href="#CHECK_ERROR">CHECK_ERROR</a>;
+</pre>
+<p>Macro to return from the function if an XPath error was detected.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="CHECK_ERROR0">Macro </a>CHECK_ERROR0</h3>
+<pre class="programlisting">#define <a href="#CHECK_ERROR0">CHECK_ERROR0</a>;
+</pre>
+<p>Macro to return 0 from the function if an XPath error was detected.</p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="CHECK_TYPE">Macro </a>CHECK_TYPE</h3>
+<pre class="programlisting">#define <a href="#CHECK_TYPE">CHECK_TYPE</a>(typeval);
+</pre>
+<p>Macro to check that the value on top of the XPath stack is of a given type.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>typeval</tt></i>:</span></td>
+<td>the XPath type</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="CHECK_TYPE0">Macro </a>CHECK_TYPE0</h3>
+<pre class="programlisting">#define <a href="#CHECK_TYPE0">CHECK_TYPE0</a>(typeval);
+</pre>
+<p>Macro to check that the value on top of the XPath stack is of a given type. Return(0) in case of failure</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>typeval</tt></i>:</span></td>
+<td>the XPath type</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XP_ERROR">Macro </a>XP_ERROR</h3>
+<pre class="programlisting">#define <a href="#XP_ERROR">XP_ERROR</a>(X);
+</pre>
+<p>Macro to raise an XPath error and return.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>X</tt></i>:</span></td>
+<td>the error code</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="XP_ERROR0">Macro </a>XP_ERROR0</h3>
+<pre class="programlisting">#define <a href="#XP_ERROR0">XP_ERROR0</a>(X);
+</pre>
+<p>Macro to raise an XPath error and return 0.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>X</tt></i>:</span></td>
+<td>the error code</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCheckError">Macro </a>xmlXPathCheckError</h3>
+<pre class="programlisting">#define <a href="#xmlXPathCheckError">xmlXPathCheckError</a>(ctxt);
+</pre>
+<p>Check if an XPath error was raised. Returns true if an error has been raised, false otherwise.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathEmptyNodeSet">Macro </a>xmlXPathEmptyNodeSet</h3>
+<pre class="programlisting">#define <a href="#xmlXPathEmptyNodeSet">xmlXPathEmptyNodeSet</a>(ns);
+</pre>
+<p>Empties a node-set.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a node-set</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathGetContextNode">Macro </a>xmlXPathGetContextNode</h3>
+<pre class="programlisting">#define <a href="#xmlXPathGetContextNode">xmlXPathGetContextNode</a>(ctxt);
+</pre>
+<p>Get the context node of an XPath context. Returns the context node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathGetDocument">Macro </a>xmlXPathGetDocument</h3>
+<pre class="programlisting">#define <a href="#xmlXPathGetDocument">xmlXPathGetDocument</a>(ctxt);
+</pre>
+<p>Get the document of an XPath context. Returns the context document.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathGetError">Macro </a>xmlXPathGetError</h3>
+<pre class="programlisting">#define <a href="#xmlXPathGetError">xmlXPathGetError</a>(ctxt);
+</pre>
+<p>Get the error code of an XPath context. Returns the context error.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathReturnBoolean">Macro </a>xmlXPathReturnBoolean</h3>
+<pre class="programlisting">#define <a href="#xmlXPathReturnBoolean">xmlXPathReturnBoolean</a>(ctxt, val);
+</pre>
+<p>Pushes the boolean @val on the context stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a boolean</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathReturnEmptyNodeSet">Macro </a>xmlXPathReturnEmptyNodeSet</h3>
+<pre class="programlisting">#define <a href="#xmlXPathReturnEmptyNodeSet">xmlXPathReturnEmptyNodeSet</a>(ctxt);
+</pre>
+<p>Pushes an empty node-set on the context stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathReturnEmptyString">Macro </a>xmlXPathReturnEmptyString</h3>
+<pre class="programlisting">#define <a href="#xmlXPathReturnEmptyString">xmlXPathReturnEmptyString</a>(ctxt);
+</pre>
+<p>Pushes an empty string on the stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathReturnExternal">Macro </a>xmlXPathReturnExternal</h3>
+<pre class="programlisting">#define <a href="#xmlXPathReturnExternal">xmlXPathReturnExternal</a>(ctxt, val);
+</pre>
+<p>Pushes user data on the context stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>user data</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathReturnFalse">Macro </a>xmlXPathReturnFalse</h3>
+<pre class="programlisting">#define <a href="#xmlXPathReturnFalse">xmlXPathReturnFalse</a>(ctxt);
+</pre>
+<p>Pushes false on the context stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathReturnNodeSet">Macro </a>xmlXPathReturnNodeSet</h3>
+<pre class="programlisting">#define <a href="#xmlXPathReturnNodeSet">xmlXPathReturnNodeSet</a>(ctxt, ns);
+</pre>
+<p>Pushes the node-set @ns on the context stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathReturnNumber">Macro </a>xmlXPathReturnNumber</h3>
+<pre class="programlisting">#define <a href="#xmlXPathReturnNumber">xmlXPathReturnNumber</a>(ctxt, val);
+</pre>
+<p>Pushes the double @val on the context stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a double</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathReturnString">Macro </a>xmlXPathReturnString</h3>
+<pre class="programlisting">#define <a href="#xmlXPathReturnString">xmlXPathReturnString</a>(ctxt, str);
+</pre>
+<p>Pushes the string @str on the context stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>a string</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathReturnTrue">Macro </a>xmlXPathReturnTrue</h3>
+<pre class="programlisting">#define <a href="#xmlXPathReturnTrue">xmlXPathReturnTrue</a>(ctxt);
+</pre>
+<p>Pushes true on the context stack.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathSetArityError">Macro </a>xmlXPathSetArityError</h3>
+<pre class="programlisting">#define <a href="#xmlXPathSetArityError">xmlXPathSetArityError</a>(ctxt);
+</pre>
+<p>Raises an <a href="libxml2-xpath.html#XPATH_INVALID_ARITY">XPATH_INVALID_ARITY</a> error.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathSetError">Macro </a>xmlXPathSetError</h3>
+<pre class="programlisting">#define <a href="#xmlXPathSetError">xmlXPathSetError</a>(ctxt, err);
+</pre>
+<p>Raises an error.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>err</tt></i>:</span></td>
+<td>an <a href="libxml2-xpath.html#xmlXPathError">xmlXPathError</a> code</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathSetTypeError">Macro </a>xmlXPathSetTypeError</h3>
+<pre class="programlisting">#define <a href="#xmlXPathSetTypeError">xmlXPathSetTypeError</a>(ctxt);
+</pre>
+<p>Raises an <a href="libxml2-xpath.html#XPATH_INVALID_TYPE">XPATH_INVALID_TYPE</a> error.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathStackIsExternal">Macro </a>xmlXPathStackIsExternal</h3>
+<pre class="programlisting">#define <a href="#xmlXPathStackIsExternal">xmlXPathStackIsExternal</a>(ctxt);
+</pre>
+<p>Checks if the current value on the XPath stack is an external object. Returns true if the current object on the stack is an external object.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathStackIsNodeSet">Macro </a>xmlXPathStackIsNodeSet</h3>
+<pre class="programlisting">#define <a href="#xmlXPathStackIsNodeSet">xmlXPathStackIsNodeSet</a>(ctxt);
+</pre>
+<p>Check if the current value on the XPath stack is a node set or an XSLT value tree. Returns true if the current object on the stack is a node-set.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="valuePop"></a>valuePop ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       valuePop        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Pops the top XPath object from the value stack</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath evaluation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the XPath object just removed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="valuePush"></a>valuePush ()</h3>
+<pre class="programlisting">int        valuePush                       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value)<br>
+</pre>
+<p>Pushes a new XPath object on top of the value stack. If value is NULL, a memory error is recorded in the parser context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath evaluation context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the XPath object</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number of items on the value stack, or -1 in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathAddValues"></a>xmlXPathAddValues ()</h3>
+<pre class="programlisting">void       xmlXPathAddValues               (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Implement the add operation on XPath objects: The numeric operators convert their operands to numbers as if by calling the number function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathBooleanFunction"></a>xmlXPathBooleanFunction ()</h3>
+<pre class="programlisting">void       xmlXPathBooleanFunction         (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the boolean() XPath function boolean boolean(object) The boolean function converts its argument to a boolean as follows: - a number is true if and only if it is neither positive or negative zero nor NaN - a node-set is true if and only if it is non-empty - a string is true if and only if its length is non-zero</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCeilingFunction"></a>xmlXPathCeilingFunction ()</h3>
+<pre class="programlisting">void       xmlXPathCeilingFunction         (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the ceiling() XPath function number ceiling(number) The ceiling function returns the smallest (closest to negative infinity) number that is not less than the argument and that is an integer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCompareValues"></a>xmlXPathCompareValues ()</h3>
+<pre class="programlisting">int        xmlXPathCompareValues           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int inf, <br>                                   int strict)<br>
+</pre>
+<p>Implement the compare operation on XPath objects: @arg1 &lt; @arg2 (1, 1, ... @arg1 &lt;= @arg2 (1, 0, ... @arg1 &gt; @arg2 (0, 1, ... @arg1 &gt;= @arg2 (0, 0, ... When neither object to be compared is a node-set and the operator is &lt;=, &lt;, &gt;=, &gt;, then the objects are compared by converted both objects to numbers and comparing the numbers according to IEEE 754. The &lt; comparison will be true if and only if the first number is less than the second number. The &lt;= comparison will be true if and only if the first number is less than or equal to the second number. The &gt; comparison will be true if and only if the first number is greater than the second number. The &gt;= comparison will be true if and only if the first number is greater than or equal to the second number.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>inf</tt></i>:</span></td>
+<td>less than (1) or greater than (0)</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>strict</tt></i>:</span></td>
+<td>is the comparison strict</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if the comparison succeeded, 0 if it failed</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathConcatFunction"></a>xmlXPathConcatFunction ()</h3>
+<pre class="programlisting">void       xmlXPathConcatFunction          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the concat() XPath function string concat(string, string, string*) The concat function returns the concatenation of its arguments.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathContainsFunction"></a>xmlXPathContainsFunction ()</h3>
+<pre class="programlisting">void       xmlXPathContainsFunction        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the contains() XPath function boolean contains(string, string) The contains function returns true if the first argument string contains the second argument string, and otherwise returns false.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathCountFunction"></a>xmlXPathCountFunction ()</h3>
+<pre class="programlisting">void       xmlXPathCountFunction           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the count() XPath function number count(node-set)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathDebugDumpCompExpr"></a>xmlXPathDebugDumpCompExpr ()</h3>
+<pre class="programlisting">void       xmlXPathDebugDumpCompExpr       (FILE * output, <br>                                     <a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br>                                     int depth)<br>
+</pre>
+<p>Dumps the tree of the compiled XPath expression.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * for the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>comp</tt></i>:</span></td>
+<td>the precompiled XPath expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>depth</tt></i>:</span></td>
+<td>the indentation level.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathDebugDumpObject"></a>xmlXPathDebugDumpObject ()</h3>
+<pre class="programlisting">void       xmlXPathDebugDumpObject         (FILE * output, <br>                                     <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> cur, <br>                                  int depth)<br>
+</pre>
+<p>Dump the content of the object for debugging purposes</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>output</tt></i>:</span></td>
+<td>the FILE * to dump the output</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the object to inspect</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>depth</tt></i>:</span></td>
+<td>indentation level</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathDifference"></a>xmlXPathDifference ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathDifference      (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br>
+</pre>
+<p>Implements the EXSLT - Sets difference() function: node-set set:difference (node-set, node-set)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes1</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nodes2</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the difference between the two node sets, or nodes1 if nodes2 is empty</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathDistinct"></a>xmlXPathDistinct ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathDistinct        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes)<br>
+</pre>
+<p>Implements the EXSLT - Sets distinct() function: node-set set:distinct (node-set) @nodes is sorted by document order, then #exslSetsDistinctSorted is called with the sorted node-set</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a subset of the nodes contained in @nodes, or @nodes if it is empty</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathDistinctSorted"></a>xmlXPathDistinctSorted ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathDistinctSorted  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes)<br>
+</pre>
+<p>Implements the EXSLT - Sets distinct() function: node-set set:distinct (node-set)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes</tt></i>:</span></td>
+<td>a node-set, sorted by document order</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a subset of the nodes contained in @nodes, or @nodes if it is empty</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathDivValues"></a>xmlXPathDivValues ()</h3>
+<pre class="programlisting">void       xmlXPathDivValues               (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Implement the div operation on XPath objects @arg1 / @arg2: The numeric operators convert their operands to numbers as if by calling the number function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathEqualValues"></a>xmlXPathEqualValues ()</h3>
+<pre class="programlisting">int        xmlXPathEqualValues             (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Implement the equal operation on XPath objects content: @arg1 == @arg2</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or 1 depending on the results of the test.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathErr"></a>xmlXPathErr ()</h3>
+<pre class="programlisting">void       xmlXPathErr                     (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int error)<br>
+</pre>
+<p>Handle an XPath error</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>a XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>error</tt></i>:</span></td>
+<td>the error code</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathEvalExpr"></a>xmlXPathEvalExpr ()</h3>
+<pre class="programlisting">void       xmlXPathEvalExpr                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Parse and evaluate an XPath expression in the given context, then push the result on the context stack</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathEvaluatePredicateResult"></a>xmlXPathEvaluatePredicateResult ()</h3>
+<pre class="programlisting">int        xmlXPathEvaluatePredicateResult (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> res)<br>
 </pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="CAST_TO_BOOLEAN">Macro </a>CAST_TO_BOOLEAN</h3><pre class="programlisting">#define <a href="#CAST_TO_BOOLEAN">CAST_TO_BOOLEAN</a>;
-</pre><p>Macro to try to cast the value on the top of the XPath stack to a boolean.</p>
+<p>Evaluate a predicate result for the current node. A PredicateExpr is evaluated by evaluating the Expr and converting the result to a boolean. If the result is a number, the result will be converted to true if the number is equal to the position of the context node in the context node list (as returned by the position function) and will be converted to false otherwise; if the result is not a number, then the result will be converted as if by a call to the boolean function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>res</tt></i>:</span></td>
+<td>the Predicate Expression evaluation result</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if predicate is true, 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="CAST_TO_NUMBER">Macro </a>CAST_TO_NUMBER</h3><pre class="programlisting">#define <a href="#CAST_TO_NUMBER">CAST_TO_NUMBER</a>;
-</pre><p>Macro to try to cast the value on the top of the XPath stack to a number.</p>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFalseFunction"></a>xmlXPathFalseFunction ()</h3>
+<pre class="programlisting">void       xmlXPathFalseFunction           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the false() XPath function boolean false()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFloorFunction"></a>xmlXPathFloorFunction ()</h3>
+<pre class="programlisting">void       xmlXPathFloorFunction           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the floor() XPath function number floor(number) The floor function returns the largest (closest to positive infinity) number that is not greater than the argument and that is an integer.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFreeParserContext"></a>xmlXPathFreeParserContext ()</h3>
+<pre class="programlisting">void       xmlXPathFreeParserContext       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Free up an <a href="libxml2-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the context to free</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFunctionLookup"></a>xmlXPathFunctionLookup ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> xmlXPathFunctionLookup  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Search in the Function array of the context for the given function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the function name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> or NULL if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathFunctionLookupNS"></a>xmlXPathFunctionLookupNS ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> xmlXPathFunctionLookupNS        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri)<br>
+</pre>
+<p>Search in the Function array of the context for the given function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the function name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns_uri</tt></i>:</span></td>
+<td>the function namespace URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> or NULL if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathHasSameNodes"></a>xmlXPathHasSameNodes ()</h3>
+<pre class="programlisting">int        xmlXPathHasSameNodes            (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br>
+</pre>
+<p>Implements the EXSLT - Sets has-same-nodes function: boolean set:has-same-node(node-set, node-set)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes1</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nodes2</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>true (1) if @nodes1 shares any node with @nodes2, false (0) otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathIdFunction"></a>xmlXPathIdFunction ()</h3>
+<pre class="programlisting">void       xmlXPathIdFunction              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the id() XPath function node-set id(object) The id function selects elements by their unique ID (see [5.2.1 Unique IDs]). When the argument to id is of type node-set, then the result is the union of the result of applying id to the string value of each of the nodes in the argument node-set. When the argument to id is of any other type, the argument is converted to a string as if by a call to the string function; the string is split into a whitespace-separated list of tokens (whitespace is any sequence of <a href="libxml2-SAX.html#characters">characters</a> matching the production S); the result is a node-set containing the elements in the same document as the context node that have a unique ID equal to any of the tokens in the list.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathIntersection"></a>xmlXPathIntersection ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathIntersection    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br>
+</pre>
+<p>Implements the EXSLT - Sets intersection() function: node-set set:intersection (node-set, node-set)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes1</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nodes2</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a node set comprising the nodes that are within both the node sets passed as arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathIsNodeType"></a>xmlXPathIsNodeType ()</h3>
+<pre class="programlisting">int        xmlXPathIsNodeType              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Is the name given a NodeType one. [38] NodeType ::= 'comment' | 'text' | 'processing-instruction' | 'node'</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>a name string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>1 if true 0 otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathLangFunction"></a>xmlXPathLangFunction ()</h3>
+<pre class="programlisting">void       xmlXPathLangFunction            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the lang() XPath function boolean lang(string) The lang function returns true or false depending on whether the language of the context node as specified by xml:lang attributes is the same as or is a sublanguage of the language specified by the argument string. The language of the context node is determined by the value of the xml:lang <a href="libxml2-SAX.html#attribute">attribute</a> on the context node, or, if the context node has no xml:lang attribute, by the value of the xml:lang <a href="libxml2-SAX.html#attribute">attribute</a> on the nearest ancestor of the context node that has an xml:lang attribute. If there is no such attribute, then lang</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathLastFunction"></a>xmlXPathLastFunction ()</h3>
+<pre class="programlisting">void       xmlXPathLastFunction            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the last() XPath function number last() The last function returns the number of nodes in the context node list.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathLeading"></a>xmlXPathLeading ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathLeading         (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br>
+</pre>
+<p>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set) @nodes1 and @nodes2 are sorted by document order, then #exslSetsLeadingSorted is called.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes1</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nodes2</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the nodes in @nodes1 that precede the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathLeadingSorted"></a>xmlXPathLeadingSorted ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathLeadingSorted   (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br>
+</pre>
+<p>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes1</tt></i>:</span></td>
+<td>a node-set, sorted by document order</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nodes2</tt></i>:</span></td>
+<td>a node-set, sorted by document order</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the nodes in @nodes1 that precede the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathLocalNameFunction"></a>xmlXPathLocalNameFunction ()</h3>
+<pre class="programlisting">void       xmlXPathLocalNameFunction       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the local-name() XPath function string local-name(node-set?) The local-name function returns a string containing the local part of the name of the node in the argument node-set that is first in document order. If the node-set is empty or the first node has no name, an empty string is returned. If the argument is omitted it defaults to the context node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathModValues"></a>xmlXPathModValues ()</h3>
+<pre class="programlisting">void       xmlXPathModValues               (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Implement the mod operation on XPath objects: @arg1 / @arg2 The numeric operators convert their operands to numbers as if by calling the number function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathMultValues"></a>xmlXPathMultValues ()</h3>
+<pre class="programlisting">void       xmlXPathMultValues              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Implement the multiply operation on XPath objects: The numeric operators convert their operands to numbers as if by calling the number function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNamespaceURIFunction"></a>xmlXPathNamespaceURIFunction ()</h3>
+<pre class="programlisting">void       xmlXPathNamespaceURIFunction    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the namespace-uri() XPath function string namespace-uri(node-set?) The namespace-uri function returns a string containing the namespace URI of the expanded name of the node in the argument node-set that is first in document order. If the node-set is empty, the first node has no name, or the expanded name has no namespace URI, an empty string is returned. If the argument is omitted it defaults to the context node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNewBoolean"></a>xmlXPathNewBoolean ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathNewBoolean      (int val)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type boolean and of value @val</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the boolean value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNewCString"></a>xmlXPathNewCString ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathNewCString      (const char * val)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type string and of value @val</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the char * value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNewFloat"></a>xmlXPathNewFloat ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathNewFloat        (double val)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type double and of value @val</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the double value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNewNodeSet"></a>xmlXPathNewNodeSet ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathNewNodeSet      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type NodeSet and initialize it with the single Node @val</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the NodePtr value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNewNodeSetList"></a>xmlXPathNewNodeSetList ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathNewNodeSetList  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type NodeSet and initialize it with the Nodeset @val</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>an existing NodeSet</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNewParserContext"></a>xmlXPathNewParserContext ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> xmlXPathNewParserContext        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                                  <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the XPath expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a> just allocated.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNewString"></a>xmlXPathNewString ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathNewString       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type string and of value @val</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNewValueTree"></a>xmlXPathNewValueTree ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathNewValueTree    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type Value Tree (XSLT) and initialize it with the tree root @val</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the NodePtr value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextAncestor"></a>xmlXPathNextAncestor ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextAncestor    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "ancestor" direction the ancestor axis contains the ancestors of the context node; the ancestors of the context node consist of the parent of context node and the parent's parent and so on; the nodes are ordered in reverse document order; thus the parent is the first node on the axis, and the parent's parent is the second node on the axis</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextAncestorOrSelf"></a>xmlXPathNextAncestorOrSelf ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextAncestorOrSelf      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "ancestor-or-self" direction he ancestor-or-self axis contains the context node and ancestors of the context node in reverse document order; thus the context node is the first node on the axis, and the context node's parent the second; parent here is defined the same as with the parent axis.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextAttribute"></a>xmlXPathNextAttribute ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextAttribute   (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "attribute" direction TODO: support DTD inherited default attributes</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current <a href="libxml2-SAX.html#attribute">attribute</a> in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextChild"></a>xmlXPathNextChild ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextChild       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "child" direction The child axis contains the children of the context node in document order.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextDescendant"></a>xmlXPathNextDescendant ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextDescendant  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "descendant" direction the descendant axis contains the descendants of the context node in document order; a descendant is a child or a child of a child and so on.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextDescendantOrSelf"></a>xmlXPathNextDescendantOrSelf ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextDescendantOrSelf    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "descendant-or-self" direction the descendant-or-self axis contains the context node and the descendants of the context node in document order; thus the context node is the first node on the axis, and the first child of the context node is the second node on the axis</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextFollowing"></a>xmlXPathNextFollowing ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextFollowing   (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "following" direction The following axis contains all nodes in the same document as the context node that are after the context node in document order, excluding any descendants and excluding <a href="libxml2-SAX.html#attribute">attribute</a> nodes and namespace nodes; the nodes are ordered in document order</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextFollowingSibling"></a>xmlXPathNextFollowingSibling ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextFollowingSibling    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "following-sibling" direction The following-sibling axis contains the following siblings of the context node in document order.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextNamespace"></a>xmlXPathNextNamespace ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextNamespace   (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "namespace" direction the namespace axis contains the namespace nodes of the context node; the order of nodes on this axis is implementation-defined; the axis will be empty unless the context node is an element We keep the XML namespace node at the end of the list.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current <a href="libxml2-SAX.html#attribute">attribute</a> in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextParent"></a>xmlXPathNextParent ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextParent      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "parent" direction The parent axis contains the parent of the context node, if there is one.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextPreceding"></a>xmlXPathNextPreceding ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextPreceding   (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "preceding" direction the preceding axis contains all nodes in the same document as the context node that are before the context node in document order, excluding any ancestors and excluding <a href="libxml2-SAX.html#attribute">attribute</a> nodes and namespace nodes; the nodes are ordered in reverse document order</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextPrecedingSibling"></a>xmlXPathNextPrecedingSibling ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextPrecedingSibling    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "preceding-sibling" direction The preceding-sibling axis contains the preceding siblings of the context node in reverse document order; the first preceding sibling is first on the axis; the sibling preceding that node is the second on the axis and so on.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNextSelf"></a>xmlXPathNextSelf ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextSelf        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br>
+</pre>
+<p>Traversal function for the "self" direction The self axis contains just the context node itself</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the current node in the traversal</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the next element following that axis</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeLeading"></a>xmlXPathNodeLeading ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathNodeLeading     (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set) @nodes is sorted by document order, then #exslSetsNodeLeadingSorted is called.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the nodes in @nodes that precede @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeLeadingSorted"></a>xmlXPathNodeLeadingSorted ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathNodeLeadingSorted       (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                                <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes</tt></i>:</span></td>
+<td>a node-set, sorted by document order</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the nodes in @nodes that precede @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetAdd"></a>xmlXPathNodeSetAdd ()</h3>
+<pre class="programlisting">int        xmlXPathNodeSetAdd              (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br>
+</pre>
+<p>add a new <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> to an existing NodeSet</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the initial node set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a new <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetAddNs"></a>xmlXPathNodeSetAddNs ()</h3>
+<pre class="programlisting">int        xmlXPathNodeSetAddNs            (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br>                                        <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns)<br>
+</pre>
+<p>add a new namespace node to an existing NodeSet</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the initial node set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>the hosting node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>a the namespace node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetAddUnique"></a>xmlXPathNodeSetAddUnique ()</h3>
+<pre class="programlisting">int        xmlXPathNodeSetAddUnique        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br>
+</pre>
+<p>add a new <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> to an existing NodeSet, optimized version when we are sure the node is not already in the set.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the initial node set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a new <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>
+</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success and -1 in case of failure</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetContains"></a>xmlXPathNodeSetContains ()</h3>
+<pre class="programlisting">int        xmlXPathNodeSetContains         (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br>
+</pre>
+<p>checks whether @cur contains @val</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>true (1) if @cur contains @val, false (0) otherwise</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetDel"></a>xmlXPathNodeSetDel ()</h3>
+<pre class="programlisting">void       xmlXPathNodeSetDel              (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br>
+</pre>
+<p>Removes an <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> from an existing NodeSet</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the initial node set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetFreeNs"></a>xmlXPathNodeSetFreeNs ()</h3>
+<pre class="programlisting">void       xmlXPathNodeSetFreeNs           (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns)<br>
+</pre>
+<p>Namespace nodes in libxml don't match the XPath semantic. In a node set the namespace nodes are duplicated and the next pointer is set to the parent node in the XPath semantic. Check if such a node needs to be freed</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ns</tt></i>:</span></td>
+<td>the XPath namespace node found in a nodeset.</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetMerge"></a>xmlXPathNodeSetMerge ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathNodeSetMerge    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val1, <br>                                         <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val2)<br>
+</pre>
+<p>Merges two nodesets, all nodes from @val2 are added to @val1 if @val1 is NULL, a new set is created and copied from @val2</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val1</tt></i>:</span></td>
+<td>the first NodeSet or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val2</tt></i>:</span></td>
+<td>the second NodeSet</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>@val1 once extended or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetRemove"></a>xmlXPathNodeSetRemove ()</h3>
+<pre class="programlisting">void       xmlXPathNodeSetRemove           (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br>                                  int val)<br>
+</pre>
+<p>Removes an entry from an existing NodeSet list.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the initial node set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the index to remove</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeSetSort"></a>xmlXPathNodeSetSort ()</h3>
+<pre class="programlisting">void       xmlXPathNodeSetSort             (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> set)<br>
+</pre>
+<p>Sort the node set in document order</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>set</tt></i>:</span></td>
+<td>the node set</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeTrailing"></a>xmlXPathNodeTrailing ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathNodeTrailing    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set) @nodes is sorted by document order, then #xmlXPathNodeTrailingSorted is called.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the nodes in @nodes that follow @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNodeTrailingSorted"></a>xmlXPathNodeTrailingSorted ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathNodeTrailingSorted      (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br>                                                <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br>
+</pre>
+<p>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes</tt></i>:</span></td>
+<td>a node-set, sorted by document order</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>node</tt></i>:</span></td>
+<td>a node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the nodes in @nodes that follow @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNormalizeFunction"></a>xmlXPathNormalizeFunction ()</h3>
+<pre class="programlisting">void       xmlXPathNormalizeFunction       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the normalize-space() XPath function string normalize-space(string?) The normalize-space function returns the argument string with white space normalized by stripping leading and trailing whitespace and replacing sequences of whitespace <a href="libxml2-SAX.html#characters">characters</a> by a single space. Whitespace <a href="libxml2-SAX.html#characters">characters</a> are the same allowed by the S production in XML. If the argument is omitted, it defaults to the context node converted to a string, in other words the value of the context node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNotEqualValues"></a>xmlXPathNotEqualValues ()</h3>
+<pre class="programlisting">int        xmlXPathNotEqualValues          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Implement the equal operation on XPath objects content: @arg1 == @arg2</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 or 1 depending on the results of the test.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNotFunction"></a>xmlXPathNotFunction ()</h3>
+<pre class="programlisting">void       xmlXPathNotFunction             (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the not() XPath function boolean not(boolean) The not function returns true if its argument is false, and false otherwise.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNsLookup"></a>xmlXPathNsLookup ()</h3>
+<pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlXPathNsLookup        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br>
+</pre>
+<p>Search in the namespace declaration array of the context for the given namespace name associated to the given prefix</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the namespace prefix value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the value or NULL if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathNumberFunction"></a>xmlXPathNumberFunction ()</h3>
+<pre class="programlisting">void       xmlXPathNumberFunction          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the number() XPath function number number(object?)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathParseNCName"></a>xmlXPathParseNCName ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlXPathParseNCName     (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML namespace non qualified name. [NS 3] NCName ::= (Letter | '_') (NCNameChar)* [NS 4] NCNameChar ::= Letter | Digit | '.' | '-' | '_' | CombiningChar | Extender</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the namespace name or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathParseName"></a>xmlXPathParseName ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlXPathParseName       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>parse an XML name [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)*</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the namespace name or NULL</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathPopBoolean"></a>xmlXPathPopBoolean ()</h3>
+<pre class="programlisting">int        xmlXPathPopBoolean              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Pops a boolean from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the boolean</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathPopExternal"></a>xmlXPathPopExternal ()</h3>
+<pre class="programlisting">void *     xmlXPathPopExternal             (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Pops an external object from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the object</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathPopNodeSet"></a>xmlXPathPopNodeSet ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathPopNodeSet      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Pops a node-set from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the node-set</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathPopNumber"></a>xmlXPathPopNumber ()</h3>
+<pre class="programlisting">double     xmlXPathPopNumber               (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Pops a number from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the number</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathPopString"></a>xmlXPathPopString ()</h3>
+<pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *     xmlXPathPopString       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Pops a string from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>an XPath parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the string</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathPositionFunction"></a>xmlXPathPositionFunction ()</h3>
+<pre class="programlisting">void       xmlXPathPositionFunction        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the position() XPath function number position() The position function returns the position of the context node in the context node list. The first position is 1, and so the last position will be equal to last().</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRegisterAllFunctions"></a>xmlXPathRegisterAllFunctions ()</h3>
+<pre class="programlisting">void       xmlXPathRegisterAllFunctions    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br>
+</pre>
+<p>Registers all default XPath functions in this context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRegisterFunc"></a>xmlXPathRegisterFunc ()</h3>
+<pre class="programlisting">int        xmlXPathRegisterFunc            (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> f)<br>
+</pre>
+<p>Register a new function. If @f is NULL it unregisters the function</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the function name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the function implementation or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRegisterFuncLookup"></a>xmlXPathRegisterFuncLookup ()</h3>
+<pre class="programlisting">void       xmlXPathRegisterFuncLookup      (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       <a href="libxml2-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a> f, <br>                                  void * funcCtxt)<br>
+</pre>
+<p>Registers an external mechanism to do function lookup.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the lookup function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>funcCtxt</tt></i>:</span></td>
+<td>the lookup data</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRegisterFuncNS"></a>xmlXPathRegisterFuncNS ()</h3>
+<pre class="programlisting">int        xmlXPathRegisterFuncNS          (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri, <br>                                       <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> f)<br>
+</pre>
+<p>Register a new function. If @f is NULL it unregisters the function</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the function name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns_uri</tt></i>:</span></td>
+<td>the function namespace URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the function implementation or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRegisterNs"></a>xmlXPathRegisterNs ()</h3>
+<pre class="programlisting">int        xmlXPathRegisterNs              (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri)<br>
+</pre>
+<p>Register a new namespace. If @ns_uri is NULL it unregisters the namespace</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>prefix</tt></i>:</span></td>
+<td>the namespace prefix cannot be NULL or empty string</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns_uri</tt></i>:</span></td>
+<td>the namespace name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRegisterVariable"></a>xmlXPathRegisterVariable ()</h3>
+<pre class="programlisting">int        xmlXPathRegisterVariable        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value)<br>
+</pre>
+<p>Register a new variable value. If @value is NULL it unregisters the variable</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the variable name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the variable value or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRegisterVariableLookup"></a>xmlXPathRegisterVariableLookup ()</h3>
+<pre class="programlisting">void       xmlXPathRegisterVariableLookup  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       <a href="libxml2-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a> f, <br>                                  void * data)<br>
+</pre>
+<p>register an external mechanism to do variable lookup</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>f</tt></i>:</span></td>
+<td>the lookup function</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>data</tt></i>:</span></td>
+<td>the lookup data</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRegisterVariableNS"></a>xmlXPathRegisterVariableNS ()</h3>
+<pre class="programlisting">int        xmlXPathRegisterVariableNS      (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri, <br>                                       <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value)<br>
+</pre>
+<p>Register a new variable value. If @value is NULL it unregisters the variable</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the variable name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns_uri</tt></i>:</span></td>
+<td>the variable namespace URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>value</tt></i>:</span></td>
+<td>the variable value or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>0 in case of success, -1 in case of error</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRegisteredFuncsCleanup"></a>xmlXPathRegisteredFuncsCleanup ()</h3>
+<pre class="programlisting">void       xmlXPathRegisteredFuncsCleanup  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br>
+</pre>
+<p>Cleanup the XPath context data associated to registered functions</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRegisteredNsCleanup"></a>xmlXPathRegisteredNsCleanup ()</h3>
+<pre class="programlisting">void       xmlXPathRegisteredNsCleanup     (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br>
+</pre>
+<p>Cleanup the XPath context data associated to registered variables</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRegisteredVariablesCleanup"></a>xmlXPathRegisteredVariablesCleanup ()</h3>
+<pre class="programlisting">void       xmlXPathRegisteredVariablesCleanup      (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br>
+</pre>
+<p>Cleanup the XPath context data associated to registered variables</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRoot"></a>xmlXPathRoot ()</h3>
+<pre class="programlisting">void       xmlXPathRoot                    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Initialize the context to the root of the document</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathRoundFunction"></a>xmlXPathRoundFunction ()</h3>
+<pre class="programlisting">void       xmlXPathRoundFunction           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the round() XPath function number round(number) The round function returns the number that is closest to the argument and that is an integer. If there are two such numbers, then the one that is closest to positive infinity is returned.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathStartsWithFunction"></a>xmlXPathStartsWithFunction ()</h3>
+<pre class="programlisting">void       xmlXPathStartsWithFunction      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the starts-with() XPath function boolean starts-with(string, string) The starts-with function returns true if the first argument string starts with the second argument string, and otherwise returns false.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathStringEvalNumber"></a>xmlXPathStringEvalNumber ()</h3>
+<pre class="programlisting">double     xmlXPathStringEvalNumber        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br>
+</pre>
+<p>[30a] Float ::= Number ('e' Digits?)? [30] Number ::= Digits ('.' Digits?)? | '.' Digits [31] Digits ::= [0-9]+ Compile a Number in the string In complement of the Number expression, this function also handles negative values : '-' Number.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>A string to scan</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the double value.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathStringFunction"></a>xmlXPathStringFunction ()</h3>
+<pre class="programlisting">void       xmlXPathStringFunction          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the string() XPath function string string(object?) The string function converts an object to a string as follows: - A node-set is converted to a string by returning the value of the node in the node-set that is first in document order. If the node-set is empty, an empty string is returned. - A number is converted to a string as follows + NaN is converted to the string NaN + positive zero is converted to the string 0 + negative zero is converted to the string 0 + positive infinity is converted to the string Infinity + negative infinity is converted to the string -Infinity + if the number is an integer, the number is represented in decimal form as a Number with no decimal point and no leading zeros, preceded by a minus sign (-) if the number is negative + otherwise, the number is represented in decimal form as a Number including a decimal point with at least one digit before the decimal point and at least one digit after the decimal point, preceded by a minus sign (-) if the number is negative; there must be no leading zeros before the decimal point apart possibly from the one required digit immediately before the decimal point; beyond the one required digit after the decimal point there must be as many, but only as many, more digits as are needed to uniquely distinguish the number from all other IEEE 754 numeric values. - The boolean false value is converted to the string false. The boolean true value is converted to the string true. If the argument is omitted, it defaults to a node-set with the context node as its only member.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathStringLengthFunction"></a>xmlXPathStringLengthFunction ()</h3>
+<pre class="programlisting">void       xmlXPathStringLengthFunction    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the string-length() XPath function number string-length(string?) The string-length returns the number of <a href="libxml2-SAX.html#characters">characters</a> in the string (see [3.6 Strings]). If the argument is omitted, it defaults to the context node converted to a string, in other words the value of the context node.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathSubValues"></a>xmlXPathSubValues ()</h3>
+<pre class="programlisting">void       xmlXPathSubValues               (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Implement the subtraction operation on XPath objects: The numeric operators convert their operands to numbers as if by calling the number function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathSubstringAfterFunction"></a>xmlXPathSubstringAfterFunction ()</h3>
+<pre class="programlisting">void       xmlXPathSubstringAfterFunction  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the substring-after() XPath function string substring-after(string, string) The substring-after function returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty stringi if the first argument string does not contain the second argument string. For example, substring-after("1999/04/01","/") returns 04/01, and substring-after("1999/04/01","19") returns 99/04/01.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathSubstringBeforeFunction"></a>xmlXPathSubstringBeforeFunction ()</h3>
+<pre class="programlisting">void       xmlXPathSubstringBeforeFunction (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the substring-before() XPath function string substring-before(string, string) The substring-before function returns the substring of the first argument string that precedes the first occurrence of the second argument string in the first argument string, or the empty string if the first argument string does not contain the second argument string. For example, substring-before("1999/04/01","/") returns 1999.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathSubstringFunction"></a>xmlXPathSubstringFunction ()</h3>
+<pre class="programlisting">void       xmlXPathSubstringFunction       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the substring() XPath function string substring(string, number, number?) The substring function returns the substring of the first argument starting at the position specified in the second argument with length specified in the third argument. For example, substring("12345",2,3) returns "234". If the third argument is not specified, it returns the substring starting at the position specified in the second argument and continuing to the end of the string. For example, substring("12345",2) returns "2345". More precisely, each character in the string (see [3.6 Strings]) is considered to have a numeric position: the position of the first character is 1, the position of the second character is 2 and so on. The returned substring contains those <a href="libxml2-SAX.html#characters">characters</a> for which the position of the character is greater than or equal to the second argument and, if the third argument is specified, less than the sum of the second and third arguments; the comparisons and addition used for the above follow the standard IEEE 754 rules. Thus: - substring("12345", 1.5, 2.6) returns "234" - substring("12345", 0, 3) returns "12" - substring("12345", 0 div 0, 3) returns "" - substring("12345", 1, 0 div 0) returns "" - substring("12345", -42, 1 div 0) returns "12345" - substring("12345", -1 div 0, 1 div 0) returns ""</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathSumFunction"></a>xmlXPathSumFunction ()</h3>
+<pre class="programlisting">void       xmlXPathSumFunction             (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the sum() XPath function number sum(node-set) The sum function returns the sum of the values of the nodes in the argument node-set.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathTrailing"></a>xmlXPathTrailing ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathTrailing        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br>
+</pre>
+<p>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set) @nodes1 and @nodes2 are sorted by document order, then #xmlXPathTrailingSorted is called.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes1</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nodes2</tt></i>:</span></td>
+<td>a node-set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the nodes in @nodes1 that follow the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathTrailingSorted"></a>xmlXPathTrailingSorted ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathTrailingSorted  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br>                                       <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br>
+</pre>
+<p>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set)</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>nodes1</tt></i>:</span></td>
+<td>a node-set, sorted by document order</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nodes2</tt></i>:</span></td>
+<td>a node-set, sorted by document order</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the nodes in @nodes1 that follow the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathTranslateFunction"></a>xmlXPathTranslateFunction ()</h3>
+<pre class="programlisting">void       xmlXPathTranslateFunction       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the translate() XPath function string translate(string, string, string) The translate function returns the first argument string with occurrences of <a href="libxml2-SAX.html#characters">characters</a> in the second argument string replaced by the character at the corresponding position in the third argument string. For example, translate("bar","abc","ABC") returns the string BAr. If there is a character in the second argument string with no character at a corresponding position in the third argument string (because the second argument string is longer than the third argument string), then occurrences of that character in the first argument string are removed. For example, translate("--aaa--","abc-","ABC")</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathTrueFunction"></a>xmlXPathTrueFunction ()</h3>
+<pre class="programlisting">void       xmlXPathTrueFunction            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the true() XPath function boolean true()</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of arguments</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathValueFlipSign"></a>xmlXPathValueFlipSign ()</h3>
+<pre class="programlisting">void       xmlXPathValueFlipSign           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>Implement the unary - operation on an XPath object The numeric operators convert their operands to numbers as if by calling the number function.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathVariableLookup"></a>xmlXPathVariableLookup ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathVariableLookup  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                               const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br>
+</pre>
+<p>Search in the Variable array of the context for the given variable value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the variable name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>a copy of the value or NULL if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathVariableLookupNS"></a>xmlXPathVariableLookupNS ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathVariableLookupNS        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br>                                                       const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br>                                                         const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri)<br>
+</pre>
+<p>Search in the Variable array of the context for the given variable value.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>name</tt></i>:</span></td>
+<td>the variable name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ns_uri</tt></i>:</span></td>
+<td>the variable namespace URI</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the a copy of the value or NULL if not found</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathWrapCString"></a>xmlXPathWrapCString ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathWrapCString     (char * val)<br>
+</pre>
+<p>Wraps a string into an XPath object.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the char * value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathWrapExternal"></a>xmlXPathWrapExternal ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathWrapExternal    (void * val)<br>
+</pre>
+<p>Wraps the @val data into an XPath object.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the user data</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathWrapNodeSet"></a>xmlXPathWrapNodeSet ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathWrapNodeSet     (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val)<br>
+</pre>
+<p>Wrap the Nodeset @val in a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the NodePtr value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPathWrapString"></a>xmlXPathWrapString ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathWrapString      (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br>
+</pre>
+<p>Wraps the @val string into an XPath object.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPatherror"></a>xmlXPatherror ()</h3>
+<pre class="programlisting">void       xmlXPatherror                   (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   const char * file, <br>                                         int line, <br>                                  int no)<br>
+</pre>
+<p>Formats an error message.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPath Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>file</tt></i>:</span></td>
+<td>the file name</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>line</tt></i>:</span></td>
+<td>the line number</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>no</tt></i>:</span></td>
+<td>the error number</td>
+</tr>
+</tbody>
+</table></div>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="CAST_TO_STRING">Macro </a>CAST_TO_STRING</h3><pre class="programlisting">#define <a href="#CAST_TO_STRING">CAST_TO_STRING</a>;
-</pre><p>Macro to try to cast the value on the top of the XPath stack to a string.</p>
+<hr>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="CHECK_ARITY">Macro </a>CHECK_ARITY</h3><pre class="programlisting">#define <a href="#CHECK_ARITY">CHECK_ARITY</a>(x);
-</pre><p>Macro to check that the number of args passed to an XPath function matches.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>x</tt></i>:</span></td><td>the number of expected args</td></tr></tbody></table></div>
 </div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="CHECK_ERROR">Macro </a>CHECK_ERROR</h3><pre class="programlisting">#define <a href="#CHECK_ERROR">CHECK_ERROR</a>;
-</pre><p>Macro to return from the function if an XPath error was detected.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="CHECK_ERROR0">Macro </a>CHECK_ERROR0</h3><pre class="programlisting">#define <a href="#CHECK_ERROR0">CHECK_ERROR0</a>;
-</pre><p>Macro to return 0 from the function if an XPath error was detected.</p>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="CHECK_TYPE">Macro </a>CHECK_TYPE</h3><pre class="programlisting">#define <a href="#CHECK_TYPE">CHECK_TYPE</a>(typeval);
-</pre><p>Macro to check that the value on top of the XPath stack is of a given type.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>typeval</tt></i>:</span></td><td>the XPath type</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="CHECK_TYPE0">Macro </a>CHECK_TYPE0</h3><pre class="programlisting">#define <a href="#CHECK_TYPE0">CHECK_TYPE0</a>(typeval);
-</pre><p>Macro to check that the value on top of the XPath stack is of a given type. Return(0) in case of failure</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>typeval</tt></i>:</span></td><td>the XPath type</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XP_ERROR">Macro </a>XP_ERROR</h3><pre class="programlisting">#define <a href="#XP_ERROR">XP_ERROR</a>(X);
-</pre><p>Macro to raise an XPath error and return.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>X</tt></i>:</span></td><td>the error code</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="XP_ERROR0">Macro </a>XP_ERROR0</h3><pre class="programlisting">#define <a href="#XP_ERROR0">XP_ERROR0</a>(X);
-</pre><p>Macro to raise an XPath error and return 0.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>X</tt></i>:</span></td><td>the error code</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCheckError">Macro </a>xmlXPathCheckError</h3><pre class="programlisting">#define <a href="#xmlXPathCheckError">xmlXPathCheckError</a>(ctxt);
-</pre><p>Check if an XPath error was raised. Returns true if an error has been raised, false otherwise.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathEmptyNodeSet">Macro </a>xmlXPathEmptyNodeSet</h3><pre class="programlisting">#define <a href="#xmlXPathEmptyNodeSet">xmlXPathEmptyNodeSet</a>(ns);
-</pre><p>Empties a node-set.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a node-set</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathGetContextNode">Macro </a>xmlXPathGetContextNode</h3><pre class="programlisting">#define <a href="#xmlXPathGetContextNode">xmlXPathGetContextNode</a>(ctxt);
-</pre><p>Get the context node of an XPath context. Returns the context node.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathGetDocument">Macro </a>xmlXPathGetDocument</h3><pre class="programlisting">#define <a href="#xmlXPathGetDocument">xmlXPathGetDocument</a>(ctxt);
-</pre><p>Get the document of an XPath context. Returns the context document.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathGetError">Macro </a>xmlXPathGetError</h3><pre class="programlisting">#define <a href="#xmlXPathGetError">xmlXPathGetError</a>(ctxt);
-</pre><p>Get the error code of an XPath context. Returns the context error.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathReturnBoolean">Macro </a>xmlXPathReturnBoolean</h3><pre class="programlisting">#define <a href="#xmlXPathReturnBoolean">xmlXPathReturnBoolean</a>(ctxt, val);
-</pre><p>Pushes the boolean @val on the context stack.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a boolean</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathReturnEmptyNodeSet">Macro </a>xmlXPathReturnEmptyNodeSet</h3><pre class="programlisting">#define <a href="#xmlXPathReturnEmptyNodeSet">xmlXPathReturnEmptyNodeSet</a>(ctxt);
-</pre><p>Pushes an empty node-set on the context stack.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathReturnEmptyString">Macro </a>xmlXPathReturnEmptyString</h3><pre class="programlisting">#define <a href="#xmlXPathReturnEmptyString">xmlXPathReturnEmptyString</a>(ctxt);
-</pre><p>Pushes an empty string on the stack.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathReturnExternal">Macro </a>xmlXPathReturnExternal</h3><pre class="programlisting">#define <a href="#xmlXPathReturnExternal">xmlXPathReturnExternal</a>(ctxt, val);
-</pre><p>Pushes user data on the context stack.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>user data</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathReturnFalse">Macro </a>xmlXPathReturnFalse</h3><pre class="programlisting">#define <a href="#xmlXPathReturnFalse">xmlXPathReturnFalse</a>(ctxt);
-</pre><p>Pushes false on the context stack.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathReturnNodeSet">Macro </a>xmlXPathReturnNodeSet</h3><pre class="programlisting">#define <a href="#xmlXPathReturnNodeSet">xmlXPathReturnNodeSet</a>(ctxt, ns);
-</pre><p>Pushes the node-set @ns on the context stack.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a node-set</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathReturnNumber">Macro </a>xmlXPathReturnNumber</h3><pre class="programlisting">#define <a href="#xmlXPathReturnNumber">xmlXPathReturnNumber</a>(ctxt, val);
-</pre><p>Pushes the double @val on the context stack.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a double</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathReturnString">Macro </a>xmlXPathReturnString</h3><pre class="programlisting">#define <a href="#xmlXPathReturnString">xmlXPathReturnString</a>(ctxt, str);
-</pre><p>Pushes the string @str on the context stack.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>a string</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathReturnTrue">Macro </a>xmlXPathReturnTrue</h3><pre class="programlisting">#define <a href="#xmlXPathReturnTrue">xmlXPathReturnTrue</a>(ctxt);
-</pre><p>Pushes true on the context stack.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathSetArityError">Macro </a>xmlXPathSetArityError</h3><pre class="programlisting">#define <a href="#xmlXPathSetArityError">xmlXPathSetArityError</a>(ctxt);
-</pre><p>Raises an <a href="libxml2-xpath.html#XPATH_INVALID_ARITY">XPATH_INVALID_ARITY</a> error.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathSetError">Macro </a>xmlXPathSetError</h3><pre class="programlisting">#define <a href="#xmlXPathSetError">xmlXPathSetError</a>(ctxt, err);
-</pre><p>Raises an error.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>an <a href="libxml2-xpath.html#xmlXPathError">xmlXPathError</a> code</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathSetTypeError">Macro </a>xmlXPathSetTypeError</h3><pre class="programlisting">#define <a href="#xmlXPathSetTypeError">xmlXPathSetTypeError</a>(ctxt);
-</pre><p>Raises an <a href="libxml2-xpath.html#XPATH_INVALID_TYPE">XPATH_INVALID_TYPE</a> error.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathStackIsExternal">Macro </a>xmlXPathStackIsExternal</h3><pre class="programlisting">#define <a href="#xmlXPathStackIsExternal">xmlXPathStackIsExternal</a>(ctxt);
-</pre><p>Checks if the current value on the XPath stack is an external object. Returns true if the current object on the stack is an external object.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathStackIsNodeSet">Macro </a>xmlXPathStackIsNodeSet</h3><pre class="programlisting">#define <a href="#xmlXPathStackIsNodeSet">xmlXPathStackIsNodeSet</a>(ctxt);
-</pre><p>Check if the current value on the XPath stack is a node set or an XSLT value tree. Returns true if the current object on the stack is a node-set.</p><div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr></tbody></table></div>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="valuePop"/>valuePop ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       valuePop        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Pops the top XPath object from the value stack</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath evaluation context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the XPath object just removed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="valuePush"/>valuePush ()</h3><pre class="programlisting">int      valuePush                       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value)<br/>
-</pre><p>Pushes a new XPath object on top of the value stack. If value is NULL, a memory error is recorded in the parser context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath evaluation context</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the XPath object</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number of items on the value stack, or -1 in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathAddValues"/>xmlXPathAddValues ()</h3><pre class="programlisting">void     xmlXPathAddValues               (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Implement the add operation on XPath objects: The numeric operators convert their operands to numbers as if by calling the number function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathBooleanFunction"/>xmlXPathBooleanFunction ()</h3><pre class="programlisting">void xmlXPathBooleanFunction         (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the boolean() XPath function boolean boolean(object) The boolean function converts its argument to a boolean as follows: - a number is true if and only if it is neither positive or negative zero nor NaN - a node-set is true if and only if it is non-empty - a string is true if and only if its length is non-zero</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCeilingFunction"/>xmlXPathCeilingFunction ()</h3><pre class="programlisting">void xmlXPathCeilingFunction         (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the ceiling() XPath function number ceiling(number) The ceiling function returns the smallest (closest to negative infinity) number that is not less than the argument and that is an integer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCompareValues"/>xmlXPathCompareValues ()</h3><pre class="programlisting">int      xmlXPathCompareValues           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int inf, <br/>                                  int strict)<br/>
-</pre><p>Implement the compare operation on XPath objects: @arg1 &lt; @arg2 (1, 1, ... @arg1 &lt;= @arg2 (1, 0, ... @arg1 &gt; @arg2 (0, 1, ... @arg1 &gt;= @arg2 (0, 0, ... When neither object to be compared is a node-set and the operator is &lt;=, &lt;, &gt;=, &gt;, then the objects are compared by converted both objects to numbers and comparing the numbers according to IEEE 754. The &lt; comparison will be true if and only if the first number is less than the second number. The &lt;= comparison will be true if and only if the first number is less than or equal to the second number. The &gt; comparison will be true if and only if the first number is greater than the second number. The &gt;= comparison will be true if and only if the first number is greater than or equal to the second number.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>inf</tt></i>:</span></td><td>less than (1) or greater than (0)</td></tr><tr><td><span class="term"><i><tt>strict</tt></i>:</span></td><td>is the comparison strict</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if the comparison succeeded, 0 if it failed</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathConcatFunction"/>xmlXPathConcatFunction ()</h3><pre class="programlisting">void   xmlXPathConcatFunction          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the concat() XPath function string concat(string, string, string*) The concat function returns the concatenation of its arguments.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathContainsFunction"/>xmlXPathContainsFunction ()</h3><pre class="programlisting">void       xmlXPathContainsFunction        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the contains() XPath function boolean contains(string, string) The contains function returns true if the first argument string contains the second argument string, and otherwise returns false.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathCountFunction"/>xmlXPathCountFunction ()</h3><pre class="programlisting">void     xmlXPathCountFunction           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the count() XPath function number count(node-set)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathDebugDumpCompExpr"/>xmlXPathDebugDumpCompExpr ()</h3><pre class="programlisting">void     xmlXPathDebugDumpCompExpr       (FILE * output, <br/>                                    <a href="libxml2-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a> comp, <br/>                                    int depth)<br/>
-</pre><p>Dumps the tree of the compiled XPath expression.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * for the output</td></tr><tr><td><span class="term"><i><tt>comp</tt></i>:</span></td><td>the precompiled XPath expression</td></tr><tr><td><span class="term"><i><tt>depth</tt></i>:</span></td><td>the indentation level.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathDebugDumpObject"/>xmlXPathDebugDumpObject ()</h3><pre class="programlisting">void xmlXPathDebugDumpObject         (FILE * output, <br/>                                    <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> cur, <br/>                                         int depth)<br/>
-</pre><p>Dump the content of the object for debugging purposes</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the FILE * to dump the output</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the object to inspect</td></tr><tr><td><span class="term"><i><tt>depth</tt></i>:</span></td><td>indentation level</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathDifference"/>xmlXPathDifference ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   xmlXPathDifference      (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br/>
-</pre><p>Implements the EXSLT - Sets difference() function: node-set set:difference (node-set, node-set)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes1</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>nodes2</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the difference between the two node sets, or nodes1 if nodes2 is empty</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathDistinct"/>xmlXPathDistinct ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathDistinct        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes)<br/>
-</pre><p>Implements the EXSLT - Sets distinct() function: node-set set:distinct (node-set) @nodes is sorted by document order, then #exslSetsDistinctSorted is called with the sorted node-set</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a subset of the nodes contained in @nodes, or @nodes if it is empty</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathDistinctSorted"/>xmlXPathDistinctSorted ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   xmlXPathDistinctSorted  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes)<br/>
-</pre><p>Implements the EXSLT - Sets distinct() function: node-set set:distinct (node-set)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes</tt></i>:</span></td><td>a node-set, sorted by document order</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a subset of the nodes contained in @nodes, or @nodes if it is empty</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathDivValues"/>xmlXPathDivValues ()</h3><pre class="programlisting">void     xmlXPathDivValues               (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Implement the div operation on XPath objects @arg1 / @arg2: The numeric operators convert their operands to numbers as if by calling the number function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathEqualValues"/>xmlXPathEqualValues ()</h3><pre class="programlisting">int  xmlXPathEqualValues             (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Implement the equal operation on XPath objects content: @arg1 == @arg2</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or 1 depending on the results of the test.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathErr"/>xmlXPathErr ()</h3><pre class="programlisting">void xmlXPathErr                     (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int error)<br/>
-</pre><p>Handle an XPath error</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a XPath parser context</td></tr><tr><td><span class="term"><i><tt>error</tt></i>:</span></td><td>the error code</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathEvalExpr"/>xmlXPathEvalExpr ()</h3><pre class="programlisting">void       xmlXPathEvalExpr                (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Parse and evaluate an XPath expression in the given context, then push the result on the context stack</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathEvaluatePredicateResult"/>xmlXPathEvaluatePredicateResult ()</h3><pre class="programlisting">int  xmlXPathEvaluatePredicateResult (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> res)<br/>
-</pre><p>Evaluate a predicate result for the current node. A PredicateExpr is evaluated by evaluating the Expr and converting the result to a boolean. If the result is a number, the result will be converted to true if the number is equal to the position of the context node in the context node list (as returned by the position function) and will be converted to false otherwise; if the result is not a number, then the result will be converted as if by a call to the boolean function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>res</tt></i>:</span></td><td>the Predicate Expression evaluation result</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if predicate is true, 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFalseFunction"/>xmlXPathFalseFunction ()</h3><pre class="programlisting">void     xmlXPathFalseFunction           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the false() XPath function boolean false()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFloorFunction"/>xmlXPathFloorFunction ()</h3><pre class="programlisting">void     xmlXPathFloorFunction           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the floor() XPath function number floor(number) The floor function returns the largest (closest to positive infinity) number that is not greater than the argument and that is an integer.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFreeParserContext"/>xmlXPathFreeParserContext ()</h3><pre class="programlisting">void     xmlXPathFreeParserContext       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Free up an <a href="libxml2-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the context to free</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFunctionLookup"/>xmlXPathFunctionLookup ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a>     xmlXPathFunctionLookup  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Search in the Function array of the context for the given function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the function name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> or NULL if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathFunctionLookupNS"/>xmlXPathFunctionLookupNS ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> xmlXPathFunctionLookupNS        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri)<br/>
-</pre><p>Search in the Function array of the context for the given function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the function name</td></tr><tr><td><span class="term"><i><tt>ns_uri</tt></i>:</span></td><td>the function namespace URI</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> or NULL if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathHasSameNodes"/>xmlXPathHasSameNodes ()</h3><pre class="programlisting">int        xmlXPathHasSameNodes            (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br/>
-</pre><p>Implements the EXSLT - Sets has-same-nodes function: boolean set:has-same-node(node-set, node-set)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes1</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>nodes2</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>true (1) if @nodes1 shares any node with @nodes2, false (0) otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathIdFunction"/>xmlXPathIdFunction ()</h3><pre class="programlisting">void   xmlXPathIdFunction              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the id() XPath function node-set id(object) The id function selects elements by their unique ID (see [5.2.1 Unique IDs]). When the argument to id is of type node-set, then the result is the union of the result of applying id to the string value of each of the nodes in the argument node-set. When the argument to id is of any other type, the argument is converted to a string as if by a call to the string function; the string is split into a whitespace-separated list of tokens (whitespace is any sequence of <a href="libxml2-SAX.html#characters">characters</a> matching the production S); the result is a node-set containing the elements in the same document as the context node that have a unique ID equal to any of the tokens in the list.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathIntersection"/>xmlXPathIntersection ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathIntersection    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br/>
-</pre><p>Implements the EXSLT - Sets intersection() function: node-set set:intersection (node-set, node-set)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes1</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>nodes2</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a node set comprising the nodes that are within both the node sets passed as arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathIsNodeType"/>xmlXPathIsNodeType ()</h3><pre class="programlisting">int    xmlXPathIsNodeType              (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Is the name given a NodeType one. [38] NodeType ::= 'comment' | 'text' | 'processing-instruction' | 'node'</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>a name string</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if true 0 otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathLangFunction"/>xmlXPathLangFunction ()</h3><pre class="programlisting">void       xmlXPathLangFunction            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the lang() XPath function boolean lang(string) The lang function returns true or false depending on whether the language of the context node as specified by xml:lang attributes is the same as or is a sublanguage of the language specified by the argument string. The language of the context node is determined by the value of the xml:lang <a href="libxml2-SAX.html#attribute">attribute</a> on the context node, or, if the context node has no xml:lang attribute, by the value of the xml:lang <a href="libxml2-SAX.html#attribute">attribute</a> on the nearest ancestor of the context node that has an xml:lang attribute. If there is no such attribute, then lang</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathLastFunction"/>xmlXPathLastFunction ()</h3><pre class="programlisting">void       xmlXPathLastFunction            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the last() XPath function number last() The last function returns the number of nodes in the context node list.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathLeading"/>xmlXPathLeading ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> xmlXPathLeading         (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br/>
-</pre><p>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set) @nodes1 and @nodes2 are sorted by document order, then #exslSetsLeadingSorted is called.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes1</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>nodes2</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the nodes in @nodes1 that precede the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathLeadingSorted"/>xmlXPathLeadingSorted ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>     xmlXPathLeadingSorted   (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br/>
-</pre><p>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes1</tt></i>:</span></td><td>a node-set, sorted by document order</td></tr><tr><td><span class="term"><i><tt>nodes2</tt></i>:</span></td><td>a node-set, sorted by document order</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the nodes in @nodes1 that precede the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathLocalNameFunction"/>xmlXPathLocalNameFunction ()</h3><pre class="programlisting">void     xmlXPathLocalNameFunction       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the local-name() XPath function string local-name(node-set?) The local-name function returns a string containing the local part of the name of the node in the argument node-set that is first in document order. If the node-set is empty or the first node has no name, an empty string is returned. If the argument is omitted it defaults to the context node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathModValues"/>xmlXPathModValues ()</h3><pre class="programlisting">void     xmlXPathModValues               (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Implement the mod operation on XPath objects: @arg1 / @arg2 The numeric operators convert their operands to numbers as if by calling the number function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathMultValues"/>xmlXPathMultValues ()</h3><pre class="programlisting">void   xmlXPathMultValues              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Implement the multiply operation on XPath objects: The numeric operators convert their operands to numbers as if by calling the number function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNamespaceURIFunction"/>xmlXPathNamespaceURIFunction ()</h3><pre class="programlisting">void       xmlXPathNamespaceURIFunction    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the namespace-uri() XPath function string namespace-uri(node-set?) The namespace-uri function returns a string containing the namespace URI of the expanded name of the node in the argument node-set that is first in document order. If the node-set is empty, the first node has no name, or the expanded name has no namespace URI, an empty string is returned. If the argument is omitted it defaults to the context node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNewBoolean"/>xmlXPathNewBoolean ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   xmlXPathNewBoolean      (int val)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type boolean and of value @val</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the boolean value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNewCString"/>xmlXPathNewCString ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   xmlXPathNewCString      (const char * val)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type string and of value @val</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the char * value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNewFloat"/>xmlXPathNewFloat ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathNewFloat        (double val)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type double and of value @val</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the double value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNewNodeSet"/>xmlXPathNewNodeSet ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   xmlXPathNewNodeSet      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type NodeSet and initialize it with the single Node @val</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the NodePtr value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNewNodeSetList"/>xmlXPathNewNodeSetList ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   xmlXPathNewNodeSetList  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type NodeSet and initialize it with the Nodeset @val</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>an existing NodeSet</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNewParserContext"/>xmlXPathNewParserContext ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> xmlXPathNewParserContext        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                                         <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the XPath expression</td></tr><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a> just allocated.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNewString"/>xmlXPathNewString ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>     xmlXPathNewString       (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type string and of value @val</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNewValueTree"/>xmlXPathNewValueTree ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathNewValueTree    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type Value Tree (XSLT) and initialize it with the tree root @val</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the NodePtr value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextAncestor"/>xmlXPathNextAncestor ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextAncestor    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "ancestor" direction the ancestor axis contains the ancestors of the context node; the ancestors of the context node consist of the parent of context node and the parent's parent and so on; the nodes are ordered in reverse document order; thus the parent is the first node on the axis, and the parent's parent is the second node on the axis</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextAncestorOrSelf"/>xmlXPathNextAncestorOrSelf ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  xmlXPathNextAncestorOrSelf      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "ancestor-or-self" direction he ancestor-or-self axis contains the context node and ancestors of the context node in reverse document order; thus the context node is the first node on the axis, and the context node's parent the second; parent here is defined the same as with the parent axis.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextAttribute"/>xmlXPathNextAttribute ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlXPathNextAttribute   (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "attribute" direction TODO: support DTD inherited default attributes</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current <a href="libxml2-SAX.html#attribute">attribute</a> in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextChild"/>xmlXPathNextChild ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlXPathNextChild       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "child" direction The child axis contains the children of the context node in document order.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextDescendant"/>xmlXPathNextDescendant ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  xmlXPathNextDescendant  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "descendant" direction the descendant axis contains the descendants of the context node in document order; a descendant is a child or a child of a child and so on.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextDescendantOrSelf"/>xmlXPathNextDescendantOrSelf ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextDescendantOrSelf    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "descendant-or-self" direction the descendant-or-self axis contains the context node and the descendants of the context node in document order; thus the context node is the first node on the axis, and the first child of the context node is the second node on the axis</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextFollowing"/>xmlXPathNextFollowing ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlXPathNextFollowing   (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "following" direction The following axis contains all nodes in the same document as the context node that are after the context node in document order, excluding any descendants and excluding <a href="libxml2-SAX.html#attribute">attribute</a> nodes and namespace nodes; the nodes are ordered in document order</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextFollowingSibling"/>xmlXPathNextFollowingSibling ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextFollowingSibling    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "following-sibling" direction The following-sibling axis contains the following siblings of the context node in document order.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextNamespace"/>xmlXPathNextNamespace ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlXPathNextNamespace   (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "namespace" direction the namespace axis contains the namespace nodes of the context node; the order of nodes on this axis is implementation-defined; the axis will be empty unless the context node is an element We keep the XML namespace node at the end of the list.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current <a href="libxml2-SAX.html#attribute">attribute</a> in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextParent"/>xmlXPathNextParent ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  xmlXPathNextParent      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "parent" direction The parent axis contains the parent of the context node, if there is one.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextPreceding"/>xmlXPathNextPreceding ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>    xmlXPathNextPreceding   (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "preceding" direction the preceding axis contains all nodes in the same document as the context node that are before the context node in document order, excluding any ancestors and excluding <a href="libxml2-SAX.html#attribute">attribute</a> nodes and namespace nodes; the nodes are ordered in reverse document order</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextPrecedingSibling"/>xmlXPathNextPrecedingSibling ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextPrecedingSibling    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "preceding-sibling" direction The preceding-sibling axis contains the preceding siblings of the context node in reverse document order; the first preceding sibling is first on the axis; the sibling preceding that node is the second on the axis and so on.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNextSelf"/>xmlXPathNextSelf ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPathNextSelf        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> cur)<br/>
-</pre><p>Traversal function for the "self" direction The self axis contains just the context node itself</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the current node in the traversal</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the next element following that axis</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeLeading"/>xmlXPathNodeLeading ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> xmlXPathNodeLeading     (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set) @nodes is sorted by document order, then #exslSetsNodeLeadingSorted is called.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the nodes in @nodes that precede @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeLeadingSorted"/>xmlXPathNodeLeadingSorted ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>     xmlXPathNodeLeadingSorted       (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                               <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes</tt></i>:</span></td><td>a node-set, sorted by document order</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the nodes in @nodes that precede @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetAdd"/>xmlXPathNodeSetAdd ()</h3><pre class="programlisting">int    xmlXPathNodeSetAdd              (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br/>
-</pre><p>add a new <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> to an existing NodeSet</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the initial node set</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a new <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetAddNs"/>xmlXPathNodeSetAddNs ()</h3><pre class="programlisting">int        xmlXPathNodeSetAddNs            (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node, <br/>                                       <a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns)<br/>
-</pre><p>add a new namespace node to an existing NodeSet</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the initial node set</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>the hosting node</td></tr><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>a the namespace node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetAddUnique"/>xmlXPathNodeSetAddUnique ()</h3><pre class="programlisting">int        xmlXPathNodeSetAddUnique        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br/>
-</pre><p>add a new <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> to an existing NodeSet, optimized version when we are sure the node is not already in the set.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the initial node set</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a new <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success and -1 in case of failure</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetContains"/>xmlXPathNodeSetContains ()</h3><pre class="programlisting">int  xmlXPathNodeSetContains         (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br/>
-</pre><p>checks whether @cur contains @val</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the node-set</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>true (1) if @cur contains @val, false (0) otherwise</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetDel"/>xmlXPathNodeSetDel ()</h3><pre class="programlisting">void   xmlXPathNodeSetDel              (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> val)<br/>
-</pre><p>Removes an <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> from an existing NodeSet</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the initial node set</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetFreeNs"/>xmlXPathNodeSetFreeNs ()</h3><pre class="programlisting">void     xmlXPathNodeSetFreeNs           (<a href="libxml2-tree.html#xmlNsPtr">xmlNsPtr</a> ns)<br/>
-</pre><p>Namespace nodes in libxml don't match the XPath semantic. In a node set the namespace nodes are duplicated and the next pointer is set to the parent node in the XPath semantic. Check if such a node needs to be freed</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ns</tt></i>:</span></td><td>the XPath namespace node found in a nodeset.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetMerge"/>xmlXPathNodeSetMerge ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathNodeSetMerge    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val1, <br/>                                        <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val2)<br/>
-</pre><p>Merges two nodesets, all nodes from @val2 are added to @val1 if @val1 is NULL, a new set is created and copied from @val2</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val1</tt></i>:</span></td><td>the first NodeSet or NULL</td></tr><tr><td><span class="term"><i><tt>val2</tt></i>:</span></td><td>the second NodeSet</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>@val1 once extended or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetRemove"/>xmlXPathNodeSetRemove ()</h3><pre class="programlisting">void     xmlXPathNodeSetRemove           (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> cur, <br/>                                         int val)<br/>
-</pre><p>Removes an entry from an existing NodeSet list.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the initial node set</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the index to remove</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeSetSort"/>xmlXPathNodeSetSort ()</h3><pre class="programlisting">void xmlXPathNodeSetSort             (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> set)<br/>
-</pre><p>Sort the node set in document order</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>set</tt></i>:</span></td><td>the node set</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeTrailing"/>xmlXPathNodeTrailing ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathNodeTrailing    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set) @nodes is sorted by document order, then #xmlXPathNodeTrailingSorted is called.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the nodes in @nodes that follow @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNodeTrailingSorted"/>xmlXPathNodeTrailingSorted ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   xmlXPathNodeTrailingSorted      (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes, <br/>                                               <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> node)<br/>
-</pre><p>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes</tt></i>:</span></td><td>a node-set, sorted by document order</td></tr><tr><td><span class="term"><i><tt>node</tt></i>:</span></td><td>a node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the nodes in @nodes that follow @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNormalizeFunction"/>xmlXPathNormalizeFunction ()</h3><pre class="programlisting">void     xmlXPathNormalizeFunction       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the normalize-space() XPath function string normalize-space(string?) The normalize-space function returns the argument string with white space normalized by stripping leading and trailing whitespace and replacing sequences of whitespace <a href="libxml2-SAX.html#characters">characters</a> by a single space. Whitespace <a href="libxml2-SAX.html#characters">characters</a> are the same allowed by the S production in XML. If the argument is omitted, it defaults to the context node converted to a string, in other words the value of the context node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNotEqualValues"/>xmlXPathNotEqualValues ()</h3><pre class="programlisting">int    xmlXPathNotEqualValues          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Implement the equal operation on XPath objects content: @arg1 == @arg2</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 or 1 depending on the results of the test.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNotFunction"/>xmlXPathNotFunction ()</h3><pre class="programlisting">void xmlXPathNotFunction             (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the not() XPath function boolean not(boolean) The not function returns true if its argument is false, and false otherwise.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNsLookup"/>xmlXPathNsLookup ()</h3><pre class="programlisting">const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlXPathNsLookup        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix)<br/>
-</pre><p>Search in the namespace declaration array of the context for the given namespace name associated to the given prefix</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the namespace prefix value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the value or NULL if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathNumberFunction"/>xmlXPathNumberFunction ()</h3><pre class="programlisting">void   xmlXPathNumberFunction          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the number() XPath function number number(object?)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathParseNCName"/>xmlXPathParseNCName ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *       xmlXPathParseNCName     (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>parse an XML namespace non qualified name. [NS 3] NCName ::= (Letter | '_') (NCNameChar)* [NS 4] NCNameChar ::= Letter | Digit | '.' | '-' | '_' | CombiningChar | Extender</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the namespace name or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathParseName"/>xmlXPathParseName ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlXPathParseName       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>parse an XML name [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)*</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the namespace name or NULL</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathPopBoolean"/>xmlXPathPopBoolean ()</h3><pre class="programlisting">int    xmlXPathPopBoolean              (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Pops a boolean from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the boolean</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathPopExternal"/>xmlXPathPopExternal ()</h3><pre class="programlisting">void *       xmlXPathPopExternal             (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Pops an external object from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the object</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathPopNodeSet"/>xmlXPathPopNodeSet ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   xmlXPathPopNodeSet      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Pops a node-set from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the node-set</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathPopNumber"/>xmlXPathPopNumber ()</h3><pre class="programlisting">double   xmlXPathPopNumber               (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Pops a number from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the number</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathPopString"/>xmlXPathPopString ()</h3><pre class="programlisting"><a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> *   xmlXPathPopString       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Pops a string from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XPath parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the string</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathPositionFunction"/>xmlXPathPositionFunction ()</h3><pre class="programlisting">void       xmlXPathPositionFunction        (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the position() XPath function number position() The position function returns the position of the context node in the context node list. The first position is 1, and so the last position will be equal to last().</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRegisterAllFunctions"/>xmlXPathRegisterAllFunctions ()</h3><pre class="programlisting">void       xmlXPathRegisterAllFunctions    (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br/>
-</pre><p>Registers all default XPath functions in this context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRegisterFunc"/>xmlXPathRegisterFunc ()</h3><pre class="programlisting">int        xmlXPathRegisterFunc            (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> f)<br/>
-</pre><p>Register a new function. If @f is NULL it unregisters the function</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the function name</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the function implementation or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRegisterFuncLookup"/>xmlXPathRegisterFuncLookup ()</h3><pre class="programlisting">void   xmlXPathRegisterFuncLookup      (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      <a href="libxml2-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a> f, <br/>                                         void * funcCtxt)<br/>
-</pre><p>Registers an external mechanism to do function lookup.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the lookup function</td></tr><tr><td><span class="term"><i><tt>funcCtxt</tt></i>:</span></td><td>the lookup data</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRegisterFuncNS"/>xmlXPathRegisterFuncNS ()</h3><pre class="programlisting">int    xmlXPathRegisterFuncNS          (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri, <br/>                                      <a href="libxml2-xpath.html#xmlXPathFunction">xmlXPathFunction</a> f)<br/>
-</pre><p>Register a new function. If @f is NULL it unregisters the function</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the function name</td></tr><tr><td><span class="term"><i><tt>ns_uri</tt></i>:</span></td><td>the function namespace URI</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the function implementation or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRegisterNs"/>xmlXPathRegisterNs ()</h3><pre class="programlisting">int    xmlXPathRegisterNs              (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * prefix, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri)<br/>
-</pre><p>Register a new namespace. If @ns_uri is NULL it unregisters the namespace</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>prefix</tt></i>:</span></td><td>the namespace prefix cannot be NULL or empty string</td></tr><tr><td><span class="term"><i><tt>ns_uri</tt></i>:</span></td><td>the namespace name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRegisterVariable"/>xmlXPathRegisterVariable ()</h3><pre class="programlisting">int        xmlXPathRegisterVariable        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value)<br/>
-</pre><p>Register a new variable value. If @value is NULL it unregisters the variable</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the variable name</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the variable value or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRegisterVariableLookup"/>xmlXPathRegisterVariableLookup ()</h3><pre class="programlisting">void   xmlXPathRegisterVariableLookup  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      <a href="libxml2-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a> f, <br/>                                         void * data)<br/>
-</pre><p>register an external mechanism to do variable lookup</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>f</tt></i>:</span></td><td>the lookup function</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>the lookup data</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRegisterVariableNS"/>xmlXPathRegisterVariableNS ()</h3><pre class="programlisting">int    xmlXPathRegisterVariableNS      (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri, <br/>                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> value)<br/>
-</pre><p>Register a new variable value. If @value is NULL it unregisters the variable</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the variable name</td></tr><tr><td><span class="term"><i><tt>ns_uri</tt></i>:</span></td><td>the variable namespace URI</td></tr><tr><td><span class="term"><i><tt>value</tt></i>:</span></td><td>the variable value or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of error</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRegisteredFuncsCleanup"/>xmlXPathRegisteredFuncsCleanup ()</h3><pre class="programlisting">void   xmlXPathRegisteredFuncsCleanup  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br/>
-</pre><p>Cleanup the XPath context data associated to registered functions</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRegisteredNsCleanup"/>xmlXPathRegisteredNsCleanup ()</h3><pre class="programlisting">void xmlXPathRegisteredNsCleanup     (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br/>
-</pre><p>Cleanup the XPath context data associated to registered variables</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRegisteredVariablesCleanup"/>xmlXPathRegisteredVariablesCleanup ()</h3><pre class="programlisting">void   xmlXPathRegisteredVariablesCleanup      (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt)<br/>
-</pre><p>Cleanup the XPath context data associated to registered variables</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRoot"/>xmlXPathRoot ()</h3><pre class="programlisting">void       xmlXPathRoot                    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Initialize the context to the root of the document</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathRoundFunction"/>xmlXPathRoundFunction ()</h3><pre class="programlisting">void     xmlXPathRoundFunction           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the round() XPath function number round(number) The round function returns the number that is closest to the argument and that is an integer. If there are two such numbers, then the one that is closest to positive infinity is returned.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathStartsWithFunction"/>xmlXPathStartsWithFunction ()</h3><pre class="programlisting">void   xmlXPathStartsWithFunction      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the starts-with() XPath function boolean starts-with(string, string) The starts-with function returns true if the first argument string starts with the second argument string, and otherwise returns false.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathStringEvalNumber"/>xmlXPathStringEvalNumber ()</h3><pre class="programlisting">double     xmlXPathStringEvalNumber        (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str)<br/>
-</pre><p>[30a] Float ::= Number ('e' Digits?)? [30] Number ::= Digits ('.' Digits?)? | '.' Digits [31] Digits ::= [0-9]+ Compile a Number in the string In complement of the Number expression, this function also handles negative values : '-' Number.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>A string to scan</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the double value.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathStringFunction"/>xmlXPathStringFunction ()</h3><pre class="programlisting">void   xmlXPathStringFunction          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the string() XPath function string string(object?) The string function converts an object to a string as follows: - A node-set is converted to a string by returning the value of the node in the node-set that is first in document order. If the node-set is empty, an empty string is returned. - A number is converted to a string as follows + NaN is converted to the string NaN + positive zero is converted to the string 0 + negative zero is converted to the string 0 + positive infinity is converted to the string Infinity + negative infinity is converted to the string -Infinity + if the number is an integer, the number is represented in decimal form as a Number with no decimal point and no leading zeros, preceded by a minus sign (-) if the number is negative + otherwise, the number is represented in decimal form as a Number including a decimal point with at least one digit before the decimal point and at least one digit after the decimal point, preceded by a minus sign (-) if the number is negative; there must be no leading zeros before the decimal point apart possibly from the one required digit immediately before the decimal point; beyond the one required digit after the decimal point there must be as many, but only as many, more digits as are needed to uniquely distinguish the number from all other IEEE 754 numeric values. - The boolean false value is converted to the string false. The boolean true value is converted to the string true. If the argument is omitted, it defaults to a node-set with the context node as its only member.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathStringLengthFunction"/>xmlXPathStringLengthFunction ()</h3><pre class="programlisting">void       xmlXPathStringLengthFunction    (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the string-length() XPath function number string-length(string?) The string-length returns the number of <a href="libxml2-SAX.html#characters">characters</a> in the string (see [3.6 Strings]). If the argument is omitted, it defaults to the context node converted to a string, in other words the value of the context node.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathSubValues"/>xmlXPathSubValues ()</h3><pre class="programlisting">void     xmlXPathSubValues               (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Implement the subtraction operation on XPath objects: The numeric operators convert their operands to numbers as if by calling the number function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathSubstringAfterFunction"/>xmlXPathSubstringAfterFunction ()</h3><pre class="programlisting">void   xmlXPathSubstringAfterFunction  (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the substring-after() XPath function string substring-after(string, string) The substring-after function returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty stringi if the first argument string does not contain the second argument string. For example, substring-after("1999/04/01","/") returns 04/01, and substring-after("1999/04/01","19") returns 99/04/01.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathSubstringBeforeFunction"/>xmlXPathSubstringBeforeFunction ()</h3><pre class="programlisting">void xmlXPathSubstringBeforeFunction (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the substring-before() XPath function string substring-before(string, string) The substring-before function returns the substring of the first argument string that precedes the first occurrence of the second argument string in the first argument string, or the empty string if the first argument string does not contain the second argument string. For example, substring-before("1999/04/01","/") returns 1999.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathSubstringFunction"/>xmlXPathSubstringFunction ()</h3><pre class="programlisting">void     xmlXPathSubstringFunction       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the substring() XPath function string substring(string, number, number?) The substring function returns the substring of the first argument starting at the position specified in the second argument with length specified in the third argument. For example, substring("12345",2,3) returns "234". If the third argument is not specified, it returns the substring starting at the position specified in the second argument and continuing to the end of the string. For example, substring("12345",2) returns "2345". More precisely, each character in the string (see [3.6 Strings]) is considered to have a numeric position: the position of the first character is 1, the position of the second character is 2 and so on. The returned substring contains those <a href="libxml2-SAX.html#characters">characters</a> for which the position of the character is greater than or equal to the second argument and, if the third argument is specified, less than the sum of the second and third arguments; the comparisons and addition used for the above follow the standard IEEE 754 rules. Thus: - substring("12345", 1.5, 2.6) returns "234" - substring("12345", 0, 3) returns "12" - substring("12345", 0 div 0, 3) returns "" - substring("12345", 1, 0 div 0) returns "" - substring("12345", -42, 1 div 0) returns "12345" - substring("12345", -1 div 0, 1 div 0) returns ""</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathSumFunction"/>xmlXPathSumFunction ()</h3><pre class="programlisting">void xmlXPathSumFunction             (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the sum() XPath function number sum(node-set) The sum function returns the sum of the values of the nodes in the argument node-set.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathTrailing"/>xmlXPathTrailing ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>       xmlXPathTrailing        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br/>
-</pre><p>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set) @nodes1 and @nodes2 are sorted by document order, then #xmlXPathTrailingSorted is called.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes1</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>nodes2</tt></i>:</span></td><td>a node-set</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the nodes in @nodes1 that follow the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathTrailingSorted"/>xmlXPathTrailingSorted ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a>   xmlXPathTrailingSorted  (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes1, <br/>                                      <a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> nodes2)<br/>
-</pre><p>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set)</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>nodes1</tt></i>:</span></td><td>a node-set, sorted by document order</td></tr><tr><td><span class="term"><i><tt>nodes2</tt></i>:</span></td><td>a node-set, sorted by document order</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the nodes in @nodes1 that follow the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathTranslateFunction"/>xmlXPathTranslateFunction ()</h3><pre class="programlisting">void     xmlXPathTranslateFunction       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the translate() XPath function string translate(string, string, string) The translate function returns the first argument string with occurrences of <a href="libxml2-SAX.html#characters">characters</a> in the second argument string replaced by the character at the corresponding position in the third argument string. For example, translate("bar","abc","ABC") returns the string BAr. If there is a character in the second argument string with no character at a corresponding position in the third argument string (because the second argument string is longer than the third argument string), then occurrences of that character in the first argument string are removed. For example, translate("--aaa--","abc-","ABC")</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathTrueFunction"/>xmlXPathTrueFunction ()</h3><pre class="programlisting">void       xmlXPathTrueFunction            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the true() XPath function boolean true()</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of arguments</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathValueFlipSign"/>xmlXPathValueFlipSign ()</h3><pre class="programlisting">void     xmlXPathValueFlipSign           (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>Implement the unary - operation on an XPath object The numeric operators convert their operands to numbers as if by calling the number function.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathVariableLookup"/>xmlXPathVariableLookup ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   xmlXPathVariableLookup  (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                              const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name)<br/>
-</pre><p>Search in the Variable array of the context for the given variable value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the variable name</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a copy of the value or NULL if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathVariableLookupNS"/>xmlXPathVariableLookupNS ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathVariableLookupNS        (<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctxt, <br/>                                                      const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * name, <br/>                                                        const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * ns_uri)<br/>
-</pre><p>Search in the Variable array of the context for the given variable value.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath context</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the variable name</td></tr><tr><td><span class="term"><i><tt>ns_uri</tt></i>:</span></td><td>the variable namespace URI</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the a copy of the value or NULL if not found</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathWrapCString"/>xmlXPathWrapCString ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> xmlXPathWrapCString     (char * val)<br/>
-</pre><p>Wraps a string into an XPath object.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the char * value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathWrapExternal"/>xmlXPathWrapExternal ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPathWrapExternal    (void * val)<br/>
-</pre><p>Wraps the @val data into an XPath object.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the user data</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathWrapNodeSet"/>xmlXPathWrapNodeSet ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> xmlXPathWrapNodeSet     (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> val)<br/>
-</pre><p>Wrap the Nodeset @val in a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the NodePtr value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPathWrapString"/>xmlXPathWrapString ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   xmlXPathWrapString      (<a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * val)<br/>
-</pre><p>Wraps the @val string into an XPath object.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPatherror"/>xmlXPatherror ()</h3><pre class="programlisting">void     xmlXPatherror                   (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  const char * file, <br/>                                        int line, <br/>                                         int no)<br/>
-</pre><p>Formats an error message.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPath Parser context</td></tr><tr><td><span class="term"><i><tt>file</tt></i>:</span></td><td>the file name</td></tr><tr><td><span class="term"><i><tt>line</tt></i>:</span></td><td>the line number</td></tr><tr><td><span class="term"><i><tt>no</tt></i>:</span></td><td>the error number</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</body>
 </html>
index 4d7c337..7f0595f 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-    <title>xpointer: API to handle XML Pointers</title>
-    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
-    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
-    <link rel="up" href="general.html" title="API"/>
-    <link rel="stylesheet" href="style.css" type="text/css"/>
-    <link rel="chapter" href="general.html" title="API"/>
-  </head>
-  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
-    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
-      <tr valign="middle">
-        <td>
-          <a accesskey="p" href="libxml2-xpathInternals.html">
-            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="u" href="general.html">
-            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
-          </a>
-        </td>
-        <td>
-          <a accesskey="h" href="index.html">
-            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
-          </a>
-        </td>
-        <th width="100%" align="center">libxml2 Reference Manual</th>
-      </tr>
-    </table>
-    <h2>
-      <span class="refentrytitle">xpointer</span>
-    </h2>
-    <p>xpointer - API to handle XML Pointers</p>
-    <p>API to handle XML Pointers Base implementation was made accordingly to W3C Candidate Recommendation 7 June 2000</p>
-    <p>Author(s): Daniel Veillard </p>
-    <div class="refsynopsisdiv">
-      <h2>Synopsis</h2>
-      <pre class="synopsis">typedef struct _xmlLocationSet <a href="#xmlLocationSet">xmlLocationSet</a>;
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>xpointer: API to handle XML Pointers</title>
+<meta name="generator" content="Libxml2 devhelp stylesheet">
+<link rel="start" href="index.html" title="libxml2 Reference Manual">
+<link rel="up" href="general.html" title="API">
+<link rel="stylesheet" href="style.css" type="text/css">
+<link rel="chapter" href="general.html" title="API">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
+<td><a accesskey="p" href="libxml2-xpathInternals.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
+<td><a accesskey="u" href="general.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
+<th width="100%" align="center">libxml2 Reference Manual</th>
+</tr></table>
+<h2><span class="refentrytitle">xpointer</span></h2>
+<p>xpointer - API to handle XML Pointers</p>
+<p>API to handle XML Pointers Base implementation was made accordingly to W3C Candidate Recommendation 7 June 2000</p>
+<p>Author(s): Daniel Veillard </p>
+<div class="refsynopsisdiv">
+<h2>Synopsis</h2>
+<pre class="synopsis">typedef struct _xmlLocationSet <a href="#xmlLocationSet">xmlLocationSet</a>;
 typedef <a href="libxml2-xpointer.html#xmlLocationSet">xmlLocationSet</a> * <a href="#xmlLocationSetPtr">xmlLocationSetPtr</a>;
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRange">xmlXPtrNewRange</a>  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br/>                                      int startindex, <br/>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end, <br/>                                        int endindex);
-void   <a href="#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a>            (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> obj);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrWrapLocationSet">xmlXPtrWrapLocationSet</a>    (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val);
 <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>  <a href="#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a>        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrEval">xmlXPtrEval</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRangeNodes">xmlXPtrNewRangeNodes</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br/>                                              <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end);
-void   <a href="#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a>              (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br/>                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
-void   <a href="#xmlXPtrRangeToFunction">xmlXPtrRangeToFunction</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrEval">xmlXPtrEval</a>  (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx);
+void   <a href="#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
+void   <a href="#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a>            (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> obj);
+void   <a href="#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a>              (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br>                                       <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
+<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a>        <a href="#xmlXPtrLocationSetCreate">xmlXPtrLocationSetCreate</a>        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
+void   <a href="#xmlXPtrLocationSetDel">xmlXPtrLocationSetDel</a>              (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br>                                       <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
+<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a>        <a href="#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a>  (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val1, <br>                                              <a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val2);
+void   <a href="#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a>        (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br>                                       int val);
 <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewCollapsedRange">xmlXPtrNewCollapsedRange</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRangePoints">xmlXPtrNewRangePoints</a>      (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> start, <br/>                                               <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end);
+<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> <a href="#xmlXPtrNewContext">xmlXPtrNewContext</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> here, <br>                                                <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> origin);
 <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewLocationSetNodeSet">xmlXPtrNewLocationSetNodeSet</a>        (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> set);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRangePointNode">xmlXPtrNewRangePointNode</a>        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> start, <br/>                                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end);
-<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a>        <a href="#xmlXPtrLocationSetCreate">xmlXPtrLocationSetCreate</a>        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRangeNodeObject">xmlXPtrNewRangeNodeObject</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br/>                                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end);
-<a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> <a href="#xmlXPtrNewContext">xmlXPtrNewContext</a>      (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> here, <br/>                                               <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> origin);
-void   <a href="#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a>        (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br/>                                      int val);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRangeNodePoint">xmlXPtrNewRangeNodePoint</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br/>                                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end);
-void   <a href="#xmlXPtrLocationSetDel">xmlXPtrLocationSetDel</a>              (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br/>                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val);
-<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a>        <a href="#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a>  (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val1, <br/>                                             <a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val2);
-void   <a href="#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a>      (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt);
-<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a>    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br/>                                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end);
-</pre>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Description</h2>
-    </div>
-    <div class="refsect1" lang="en">
-      <h2>Details</h2>
-      <div class="refsect2" lang="en">
-        <div class="refsect2" lang="en"><h3><a name="xmlLocationSet">Structure </a>xmlLocationSet</h3><pre class="programlisting">struct _xmlLocationSet {
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a>    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br>                                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRange">xmlXPtrNewRange</a>  (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br>                                       int startindex, <br>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end, <br>                                         int endindex);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRangeNodeObject">xmlXPtrNewRangeNodeObject</a>      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br                                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRangeNodePoint">xmlXPtrNewRangeNodePoint</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br>                                                       <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRangeNodes">xmlXPtrNewRangeNodes</a>        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br>                                               <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRangePointNode">xmlXPtrNewRangePointNode</a>        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> start, <br>                                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrNewRangePoints">xmlXPtrNewRangePoints</a>      (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> start, <br>                                                <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end);
+void   <a href="#xmlXPtrRangeToFunction">xmlXPtrRangeToFunction</a>            (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs);
+<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   <a href="#xmlXPtrWrapLocationSet">xmlXPtrWrapLocationSet</a>    (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val);
+</pre>
+</div>
+<div class="refsect1" lang="en"><h2>Description</h2></div>
+<div class="refsect1" lang="en">
+<h2>Details</h2>
+<div class="refsect2" lang="en">
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLocationSet">Structure </a>xmlLocationSet</h3>
+<pre class="programlisting">struct _xmlLocationSet {
     int        locNr   : number of locations in the set
     int        locMax  : size of the array as allocated
     <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> *     locTab  : array of locations
 } xmlLocationSet;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlLocationSetPtr">Typedef </a>xmlLocationSetPtr</h3><pre class="programlisting"><a href="libxml2-xpointer.html#xmlLocationSet">xmlLocationSet</a> * xmlLocationSetPtr;
-</pre><p/>
-</div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrBuildNodeList"/>xmlXPtrBuildNodeList ()</h3><pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPtrBuildNodeList    (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj)<br/>
-</pre><p>Build a node list tree copy of the XPointer result. This will drop Attributes and Namespace declarations.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>obj</tt></i>:</span></td><td>the XPointer result from the evaluation.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>an <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> list or NULL. the caller has to free the node tree.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrEval"/>xmlXPtrEval ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> xmlXPtrEval     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br/>                                         <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx)<br/>
-</pre><p>Evaluate the XPath Location Path in the given context.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>str</tt></i>:</span></td><td>the XPointer expression</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the XPointer context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> resulting from the evaluation or NULL. the caller has to free the object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrEvalRangePredicate"/>xmlXPtrEvalRangePredicate ()</h3><pre class="programlisting">void     xmlXPtrEvalRangePredicate       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br/>
-</pre><p>[8] Predicate ::= '[' PredicateExpr ']' [9] PredicateExpr ::= Expr Evaluate a predicate as in xmlXPathEvalPredicate() but for a Location Set instead of a node set</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPointer Parser context</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrFreeLocationSet"/>xmlXPtrFreeLocationSet ()</h3><pre class="programlisting">void   xmlXPtrFreeLocationSet          (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> obj)<br/>
-</pre><p>Free the LocationSet compound (not the actual ranges !).</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>obj</tt></i>:</span></td><td>the <a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> to free</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrLocationSetAdd"/>xmlXPtrLocationSetAdd ()</h3><pre class="programlisting">void     xmlXPtrLocationSetAdd           (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br/>                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br/>
-</pre><p>add a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> to an existing LocationSet If the location already exist in the set @val is freed.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the initial range set</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrLocationSetCreate"/>xmlXPtrLocationSetCreate ()</h3><pre class="programlisting"><a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a>    xmlXPtrLocationSetCreate        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br/>
-</pre><p>Create a new <a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> of type double and of value @val</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>an initial xmlXPathObjectPtr, or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrLocationSetDel"/>xmlXPtrLocationSetDel ()</h3><pre class="programlisting">void     xmlXPtrLocationSetDel           (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br/>                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br/>
-</pre><p>Removes an <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> from an existing LocationSet</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the initial range set</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>an <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a></td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrLocationSetMerge"/>xmlXPtrLocationSetMerge ()</h3><pre class="programlisting"><a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a>      xmlXPtrLocationSetMerge (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val1, <br/>                                             <a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val2)<br/>
-</pre><p>Merges two rangesets, all ranges from @val2 are added to @val1</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val1</tt></i>:</span></td><td>the first LocationSet</td></tr><tr><td><span class="term"><i><tt>val2</tt></i>:</span></td><td>the second LocationSet</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>val1 once extended or NULL in case of error.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrLocationSetRemove"/>xmlXPtrLocationSetRemove ()</h3><pre class="programlisting">void       xmlXPtrLocationSetRemove        (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br/>                                      int val)<br/>
-</pre><p>Removes an entry from an existing LocationSet list.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the initial range set</td></tr><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the index to remove</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrNewCollapsedRange"/>xmlXPtrNewCollapsedRange ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewCollapsedRange        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range using a single nodes</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>the starting and ending node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrNewContext"/>xmlXPtrNewContext ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a>   xmlXPtrNewContext       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br/>                                          <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> here, <br/>                                               <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> origin)<br/>
-</pre><p>Create a new XPointer context</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>the XML document</td></tr><tr><td><span class="term"><i><tt>here</tt></i>:</span></td><td>the node that directly contains the XPointer being evaluated or NULL</td></tr><tr><td><span class="term"><i><tt>origin</tt></i>:</span></td><td>the element from which a user or program initiated traversal of the link, or NULL.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the <a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a> just allocated.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrNewLocationSetNodeSet"/>xmlXPtrNewLocationSetNodeSet ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewLocationSetNodeSet    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> set)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type LocationSet and initialize it with all the nodes from @set</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>set</tt></i>:</span></td><td>a node set</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrNewLocationSetNodes"/>xmlXPtrNewLocationSetNodes ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   xmlXPtrNewLocationSetNodes      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br/>                                                      <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type LocationSet and initialize it with the single range made of the two nodes @start and @end</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>the start NodePtr value</td></tr><tr><td><span class="term"><i><tt>end</tt></i>:</span></td><td>the end NodePtr value or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrNewRange"/>xmlXPtrNewRange ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> xmlXPtrNewRange (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br/>                                      int startindex, <br/>                                   <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end, <br/>                                        int endindex)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>the starting node</td></tr><tr><td><span class="term"><i><tt>startindex</tt></i>:</span></td><td>the start index</td></tr><tr><td><span class="term"><i><tt>end</tt></i>:</span></td><td>the ending point</td></tr><tr><td><span class="term"><i><tt>endindex</tt></i>:</span></td><td>the ending index</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrNewRangeNodeObject"/>xmlXPtrNewRangeNodeObject ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>     xmlXPtrNewRangeNodeObject       (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br/>                                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range from a not to an object</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>the starting node</td></tr><tr><td><span class="term"><i><tt>end</tt></i>:</span></td><td>the ending object</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrNewRangeNodePoint"/>xmlXPtrNewRangeNodePoint ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewRangeNodePoint        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br/>                                                      <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range from a node to a point</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>the starting node</td></tr><tr><td><span class="term"><i><tt>end</tt></i>:</span></td><td>the ending point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrNewRangeNodes"/>xmlXPtrNewRangeNodes ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewRangeNodes    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br/>                                              <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range using 2 nodes</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>the starting node</td></tr><tr><td><span class="term"><i><tt>end</tt></i>:</span></td><td>the ending node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrNewRangePointNode"/>xmlXPtrNewRangePointNode ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewRangePointNode        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> start, <br/>                                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range from a point to a node</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>the starting point</td></tr><tr><td><span class="term"><i><tt>end</tt></i>:</span></td><td>the ending node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrNewRangePoints"/>xmlXPtrNewRangePoints ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>     xmlXPtrNewRangePoints   (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> start, <br/>                                               <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end)<br/>
-</pre><p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range using 2 Points</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>start</tt></i>:</span></td><td>the starting point</td></tr><tr><td><span class="term"><i><tt>end</tt></i>:</span></td><td>the ending point</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrRangeToFunction"/>xmlXPtrRangeToFunction ()</h3><pre class="programlisting">void   xmlXPtrRangeToFunction          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br/>                                  int nargs)<br/>
-</pre><p>Implement the range-to() XPointer function Obsolete. range-to is not a real function but a special type of location step which is handled in xpath.c.</p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the XPointer Parser context</td></tr><tr><td><span class="term"><i><tt>nargs</tt></i>:</span></td><td>the number of args</td></tr></tbody></table></div></div>
-        <hr/>
-        <div class="refsect2" lang="en"><h3><a name="xmlXPtrWrapLocationSet"/>xmlXPtrWrapLocationSet ()</h3><pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>   xmlXPtrWrapLocationSet  (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val)<br/>
-</pre><p>Wrap the LocationSet @val in a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a></p>
-<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>val</tt></i>:</span></td><td>the LocationSet value</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the newly created object.</td></tr></tbody></table></div></div>
-        <hr/>
-      </div>
-    </div>
-  </body>
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlLocationSetPtr">Typedef </a>xmlLocationSetPtr</h3>
+<pre class="programlisting"><a href="libxml2-xpointer.html#xmlLocationSet">xmlLocationSet</a> * xmlLocationSetPtr;
+</pre>
+<p></p>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrBuildNodeList"></a>xmlXPtrBuildNodeList ()</h3>
+<pre class="programlisting"><a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a>      xmlXPtrBuildNodeList    (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> obj)<br>
+</pre>
+<p>Build a node list tree copy of the XPointer result. This will drop Attributes and Namespace declarations.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>obj</tt></i>:</span></td>
+<td>the XPointer result from the evaluation.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>an <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> list or NULL. the caller has to free the node tree.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrEval"></a>xmlXPtrEval ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrEval     (const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * str, <br>                                  <a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a> ctx)<br>
+</pre>
+<p>Evaluate the XPath Location Path in the given context.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>str</tt></i>:</span></td>
+<td>the XPointer expression</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>ctx</tt></i>:</span></td>
+<td>the XPointer context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> resulting from the evaluation or NULL. the caller has to free the object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrEvalRangePredicate"></a>xmlXPtrEvalRangePredicate ()</h3>
+<pre class="programlisting">void       xmlXPtrEvalRangePredicate       (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt)<br>
+</pre>
+<p>[8] Predicate ::= '[' PredicateExpr ']' [9] PredicateExpr ::= Expr Evaluate a predicate as in xmlXPathEvalPredicate() but for a Location Set instead of a node set</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPointer Parser context</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrFreeLocationSet"></a>xmlXPtrFreeLocationSet ()</h3>
+<pre class="programlisting">void       xmlXPtrFreeLocationSet          (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> obj)<br>
+</pre>
+<p>Free the LocationSet compound (not the actual ranges !).</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody><tr>
+<td><span class="term"><i><tt>obj</tt></i>:</span></td>
+<td>the <a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> to free</td>
+</tr></tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrLocationSetAdd"></a>xmlXPtrLocationSetAdd ()</h3>
+<pre class="programlisting">void       xmlXPtrLocationSetAdd           (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br>                                       <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br>
+</pre>
+<p>add a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> to an existing LocationSet If the location already exist in the set @val is freed.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the initial range set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrLocationSetCreate"></a>xmlXPtrLocationSetCreate ()</h3>
+<pre class="programlisting"><a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a>    xmlXPtrLocationSetCreate        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> of type double and of value @val</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>an initial xmlXPathObjectPtr, or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrLocationSetDel"></a>xmlXPtrLocationSetDel ()</h3>
+<pre class="programlisting">void       xmlXPtrLocationSetDel           (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br>                                       <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> val)<br>
+</pre>
+<p>Removes an <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> from an existing LocationSet</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the initial range set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>an <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrLocationSetMerge"></a>xmlXPtrLocationSetMerge ()</h3>
+<pre class="programlisting"><a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a>    xmlXPtrLocationSetMerge (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val1, <br>                                              <a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val2)<br>
+</pre>
+<p>Merges two rangesets, all ranges from @val2 are added to @val1</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val1</tt></i>:</span></td>
+<td>the first LocationSet</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val2</tt></i>:</span></td>
+<td>the second LocationSet</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>val1 once extended or NULL in case of error.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrLocationSetRemove"></a>xmlXPtrLocationSetRemove ()</h3>
+<pre class="programlisting">void       xmlXPtrLocationSetRemove        (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> cur, <br>                                       int val)<br>
+</pre>
+<p>Removes an entry from an existing LocationSet list.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>cur</tt></i>:</span></td>
+<td>the initial range set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the index to remove</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrNewCollapsedRange"></a>xmlXPtrNewCollapsedRange ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewCollapsedRange        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range using a single nodes</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>the starting and ending node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrNewContext"></a>xmlXPtrNewContext ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a>     xmlXPtrNewContext       (<a href="libxml2-tree.html#xmlDocPtr">xmlDocPtr</a> doc, <br>                                           <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> here, <br>                                                <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> origin)<br>
+</pre>
+<p>Create a new XPointer context</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>doc</tt></i>:</span></td>
+<td>the XML document</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>here</tt></i>:</span></td>
+<td>the node that directly contains the XPointer being evaluated or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>origin</tt></i>:</span></td>
+<td>the element from which a user or program initiated traversal of the link, or NULL.</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the <a href="libxml2-xpath.html#xmlXPathContext">xmlXPathContext</a> just allocated.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrNewLocationSetNodeSet"></a>xmlXPtrNewLocationSetNodeSet ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewLocationSetNodeSet    (<a href="libxml2-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a> set)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type LocationSet and initialize it with all the nodes from @set</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>set</tt></i>:</span></td>
+<td>a node set</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrNewLocationSetNodes"></a>xmlXPtrNewLocationSetNodes ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewLocationSetNodes      (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br>                                                       <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type LocationSet and initialize it with the single range made of the two nodes @start and @end</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>the start NodePtr value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end</tt></i>:</span></td>
+<td>the end NodePtr value or NULL</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrNewRange"></a>xmlXPtrNewRange ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewRange (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br>                                       int startindex, <br>                                    <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end, <br>                                         int endindex)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>the starting node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>startindex</tt></i>:</span></td>
+<td>the start index</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end</tt></i>:</span></td>
+<td>the ending point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>endindex</tt></i>:</span></td>
+<td>the ending index</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrNewRangeNodeObject"></a>xmlXPtrNewRangeNodeObject ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewRangeNodeObject       (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br>                                                       <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range from a not to an object</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>the starting node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end</tt></i>:</span></td>
+<td>the ending object</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrNewRangeNodePoint"></a>xmlXPtrNewRangeNodePoint ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewRangeNodePoint        (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br>                                                       <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range from a node to a point</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>the starting node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end</tt></i>:</span></td>
+<td>the ending point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrNewRangeNodes"></a>xmlXPtrNewRangeNodes ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewRangeNodes    (<a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> start, <br>                                               <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range using 2 nodes</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>the starting node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end</tt></i>:</span></td>
+<td>the ending node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrNewRangePointNode"></a>xmlXPtrNewRangePointNode ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewRangePointNode        (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> start, <br>                                                        <a href="libxml2-tree.html#xmlNodePtr">xmlNodePtr</a> end)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range from a point to a node</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>the starting point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end</tt></i>:</span></td>
+<td>the ending node</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrNewRangePoints"></a>xmlXPtrNewRangePoints ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrNewRangePoints   (<a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> start, <br>                                                <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> end)<br>
+</pre>
+<p>Create a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a> of type range using 2 Points</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>start</tt></i>:</span></td>
+<td>the starting point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>end</tt></i>:</span></td>
+<td>the ending point</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrRangeToFunction"></a>xmlXPtrRangeToFunction ()</h3>
+<pre class="programlisting">void       xmlXPtrRangeToFunction          (<a href="libxml2-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a> ctxt, <br>                                   int nargs)<br>
+</pre>
+<p>Implement the range-to() XPointer function Obsolete. range-to is not a real function but a special type of location step which is handled in xpath.c.</p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>ctxt</tt></i>:</span></td>
+<td>the XPointer Parser context</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>nargs</tt></i>:</span></td>
+<td>the number of args</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+<div class="refsect2" lang="en">
+<h3>
+<a name="xmlXPtrWrapLocationSet"></a>xmlXPtrWrapLocationSet ()</h3>
+<pre class="programlisting"><a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a>       xmlXPtrWrapLocationSet  (<a href="libxml2-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a> val)<br>
+</pre>
+<p>Wrap the LocationSet @val in a new <a href="libxml2-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a></p>
+<div class="variablelist"><table border="0">
+<col align="left">
+<tbody>
+<tr>
+<td><span class="term"><i><tt>val</tt></i>:</span></td>
+<td>the LocationSet value</td>
+</tr>
+<tr>
+<td><span class="term"><i><tt>Returns</tt></i>:</span></td>
+<td>the newly created object.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<hr>
+</div>
+</div>
+</body>
 </html>
index 4afbe27..3b26bca 100644 (file)
@@ -8,21 +8,21 @@
     <copy>see Copyright for the status of this software. </copy>
     <section>InputOutput</section>
     <includes>
-      <include>&lt;libxml/parser.h&gt;</include>
-      <include>&lt;libxml/xmlIO.h&gt;</include>
-      <include>&lt;libxml/xinclude.h&gt;</include>
-      <include>&lt;libxml/tree.h&gt;</include>
+      <include line='16'>&lt;libxml/parser.h&gt;</include>
+      <include line='17'>&lt;libxml/tree.h&gt;</include>
+      <include line='18'>&lt;libxml/xinclude.h&gt;</include>
+      <include line='19'>&lt;libxml/xmlIO.h&gt;</include>
     </includes>
     <uses>
+      <macro line='117' file='xmlversion' name='LIBXML_TEST_VERSION'/>
+      <function line='154' file='parser' name='xmlCleanupParser'/>
       <function line='143' file='tree' name='xmlDocDump'/>
-      <function line='158' file='xmlmemory' name='xmlMemoryDump'/>
+      <typedef line='105' file='tree' name='xmlDocPtr'/>
       <function line='149' file='tree' name='xmlFreeDoc'/>
-      <function line='154' file='parser' name='xmlCleanupParser'/>
-      <macro line='117' file='xmlversion' name='LIBXML_TEST_VERSION'/>
-      <function line='134' file='xinclude' name='xmlXIncludeProcess'/>
-      <function line='117' file='xmlIO' name='xmlRegisterInputCallbacks'/>
+      <function line='158' file='xmlmemory' name='xmlMemoryDump'/>
       <function line='124' file='parser' name='xmlReadMemory'/>
-      <typedef line='105' file='tree' name='xmlDocPtr'/>
+      <function line='117' file='xmlIO' name='xmlRegisterInputCallbacks'/>
+      <function line='134' file='xinclude' name='xmlXIncludeProcess'/>
     </uses>
   </example>
   <example filename='io2.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>InputOutput</section>
     <includes>
-      <include>&lt;libxml/parser.h&gt;</include>
+      <include line='12'>&lt;libxml/parser.h&gt;</include>
     </includes>
     <uses>
-      <function line='29' file='tree' name='xmlNodeSetContent'/>
-      <function line='28' file='tree' name='xmlNewDocNode'/>
       <function line='36' file='tree' name='xmlDocDumpFormatMemory'/>
-      <variable line='42' file='globals' name='xmlFree'/>
-      <function line='30' file='tree' name='xmlDocSetRootElement'/>
       <typedef line='20' file='tree' name='xmlDocPtr'/>
+      <function line='30' file='tree' name='xmlDocSetRootElement'/>
+      <variable line='42' file='globals' name='xmlFree'/>
       <function line='43' file='tree' name='xmlFreeDoc'/>
-      <typedef line='19' file='tree' name='xmlNodePtr'/>
       <function line='27' file='tree' name='xmlNewDoc'/>
+      <function line='28' file='tree' name='xmlNewDocNode'/>
+      <typedef line='19' file='tree' name='xmlNodePtr'/>
+      <function line='29' file='tree' name='xmlNodeSetContent'/>
     </uses>
   </example>
   <example filename='parse1.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>Parsing</section>
     <includes>
-      <include>&lt;libxml/tree.h&gt;</include>
-      <include>&lt;libxml/parser.h&gt;</include>
+      <include line='13'>&lt;libxml/parser.h&gt;</include>
+      <include line='14'>&lt;libxml/tree.h&gt;</include>
     </includes>
     <uses>
-      <function line='54' file='xmlmemory' name='xmlMemoryDump'/>
-      <function line='50' file='parser' name='xmlCleanupParser'/>
       <macro line='45' file='xmlversion' name='LIBXML_TEST_VERSION'/>
+      <function line='50' file='parser' name='xmlCleanupParser'/>
       <typedef line='24' file='tree' name='xmlDocPtr'/>
       <function line='31' file='tree' name='xmlFreeDoc'/>
+      <function line='54' file='xmlmemory' name='xmlMemoryDump'/>
       <function line='26' file='parser' name='xmlReadFile'/>
     </uses>
   </example>
     <copy>see Copyright for the status of this software. </copy>
     <section>Parsing</section>
     <includes>
-      <include>&lt;libxml/tree.h&gt;</include>
-      <include>&lt;libxml/parser.h&gt;</include>
+      <include line='14'>&lt;libxml/parser.h&gt;</include>
+      <include line='15'>&lt;libxml/tree.h&gt;</include>
     </includes>
     <uses>
-      <function line='47' file='parser' name='xmlFreeParserCtxt'/>
+      <macro line='61' file='xmlversion' name='LIBXML_TEST_VERSION'/>
       <enum line='35' file='parser' name='XML_PARSE_DTDVALID'/>
-      <function line='29' file='parser' name='xmlNewParserCtxt'/>
-      <typedef line='25' file='tree' name='xmlParserCtxtPtr'/>
-      <function line='35' file='parser' name='xmlCtxtReadFile'/>
       <function line='66' file='parser' name='xmlCleanupParser'/>
-      <macro line='61' file='xmlversion' name='LIBXML_TEST_VERSION'/>
-      <function line='44' file='tree' name='xmlFreeDoc'/>
+      <function line='35' file='parser' name='xmlCtxtReadFile'/>
       <typedef line='26' file='tree' name='xmlDocPtr'/>
+      <function line='44' file='tree' name='xmlFreeDoc'/>
+      <function line='47' file='parser' name='xmlFreeParserCtxt'/>
       <function line='70' file='xmlmemory' name='xmlMemoryDump'/>
+      <function line='29' file='parser' name='xmlNewParserCtxt'/>
+      <typedef line='25' file='tree' name='xmlParserCtxtPtr'/>
     </uses>
   </example>
   <example filename='parse3.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>Parsing</section>
     <includes>
-      <include>&lt;libxml/tree.h&gt;</include>
-      <include>&lt;libxml/parser.h&gt;</include>
+      <include line='13'>&lt;libxml/parser.h&gt;</include>
+      <include line='14'>&lt;libxml/tree.h&gt;</include>
     </includes>
     <uses>
-      <function line='33' file='parser' name='xmlReadMemory'/>
-      <function line='58' file='xmlmemory' name='xmlMemoryDump'/>
-      <function line='54' file='parser' name='xmlCleanupParser'/>
       <macro line='49' file='xmlversion' name='LIBXML_TEST_VERSION'/>
-      <function line='38' file='tree' name='xmlFreeDoc'/>
+      <function line='54' file='parser' name='xmlCleanupParser'/>
       <typedef line='27' file='tree' name='xmlDocPtr'/>
+      <function line='38' file='tree' name='xmlFreeDoc'/>
+      <function line='58' file='xmlmemory' name='xmlMemoryDump'/>
+      <function line='33' file='parser' name='xmlReadMemory'/>
     </uses>
   </example>
   <example filename='parse4.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>Parsing</section>
     <includes>
-      <include>&lt;libxml/tree.h&gt;</include>
-      <include>&lt;libxml/parser.h&gt;</include>
+      <include line='14'>&lt;libxml/parser.h&gt;</include>
+      <include line='15'>&lt;libxml/tree.h&gt;</include>
     </includes>
     <uses>
-      <function line='94' file='parser' name='xmlFreeParserCtxt'/>
-      <function line='86' file='parser' name='xmlParseChunk'/>
+      <macro line='120' file='xmlversion' name='LIBXML_TEST_VERSION'/>
+      <function line='131' file='parser' name='xmlCleanupParser'/>
+      <function line='67' file='parser' name='xmlCreatePushParserCtxt'/>
+      <typedef line='47' file='tree' name='xmlDocPtr'/>
       <function line='103' file='tree' name='xmlFreeDoc'/>
+      <function line='94' file='parser' name='xmlFreeParserCtxt'/>
       <function line='135' file='xmlmemory' name='xmlMemoryDump'/>
-      <function line='67' file='parser' name='xmlCreatePushParserCtxt'/>
-      <function line='131' file='parser' name='xmlCleanupParser'/>
-      <macro line='120' file='xmlversion' name='LIBXML_TEST_VERSION'/>
+      <function line='86' file='parser' name='xmlParseChunk'/>
       <typedef line='45' file='tree' name='xmlParserCtxtPtr'/>
-      <typedef line='47' file='tree' name='xmlDocPtr'/>
     </uses>
   </example>
   <example filename='reader1.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>xmlReader</section>
     <includes>
-      <include>&lt;libxml/xmlreader.h&gt;</include>
+      <include line='15'>&lt;libxml/xmlreader.h&gt;</include>
     </includes>
     <uses>
-      <function line='44' file='xmlstring' name='xmlStrlen'/>
+      <macro line='89' file='xmlversion' name='LIBXML_TEST_VERSION'/>
       <function line='94' file='parser' name='xmlCleanupParser'/>
-      <function line='37' file='xmlreader' name='xmlTextReaderNodeType'/>
-      <typedef line='59' file='xmlreader' name='xmlTextReaderPtr'/>
+      <function line='69' file='xmlreader' name='xmlFreeTextReader'/>
       <function line='98' file='xmlmemory' name='xmlMemoryDump'/>
+      <function line='62' file='xmlreader' name='xmlReaderForFile'/>
+      <function line='44' file='xmlstring' name='xmlStrlen'/>
+      <function line='29' file='xmlreader' name='xmlTextReaderConstName'/>
       <function line='33' file='xmlreader' name='xmlTextReaderConstValue'/>
       <function line='36' file='xmlreader' name='xmlTextReaderDepth'/>
-      <function line='69' file='xmlreader' name='xmlFreeTextReader'/>
-      <macro line='89' file='xmlversion' name='LIBXML_TEST_VERSION'/>
-      <function line='29' file='xmlreader' name='xmlTextReaderConstName'/>
       <function line='40' file='xmlreader' name='xmlTextReaderHasValue'/>
-      <function line='67' file='xmlreader' name='xmlTextReaderRead'/>
       <function line='39' file='xmlreader' name='xmlTextReaderIsEmptyElement'/>
-      <function line='62' file='xmlreader' name='xmlReaderForFile'/>
+      <function line='37' file='xmlreader' name='xmlTextReaderNodeType'/>
+      <typedef line='59' file='xmlreader' name='xmlTextReaderPtr'/>
+      <function line='67' file='xmlreader' name='xmlTextReaderRead'/>
     </uses>
   </example>
   <example filename='reader2.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>xmlReader</section>
     <includes>
-      <include>&lt;libxml/xmlreader.h&gt;</include>
+      <include line='16'>&lt;libxml/xmlreader.h&gt;</include>
     </includes>
     <uses>
-      <function line='45' file='xmlstring' name='xmlStrlen'/>
-      <function line='38' file='xmlreader' name='xmlTextReaderNodeType'/>
-      <typedef line='60' file='xmlreader' name='xmlTextReaderPtr'/>
-      <function line='34' file='xmlreader' name='xmlTextReaderConstValue'/>
-      <enum line='70' file='parser' name='XML_PARSE_NOENT'/>
-      <function line='37' file='xmlreader' name='xmlTextReaderDepth'/>
-      <enum line='71' file='parser' name='XML_PARSE_DTDVALID'/>
       <enum line='69' file='parser' name='XML_PARSE_DTDATTR'/>
+      <enum line='71' file='parser' name='XML_PARSE_DTDVALID'/>
+      <enum line='70' file='parser' name='XML_PARSE_NOENT'/>
       <function line='84' file='xmlreader' name='xmlFreeTextReader'/>
+      <function line='68' file='xmlreader' name='xmlReaderForFile'/>
+      <function line='45' file='xmlstring' name='xmlStrlen'/>
       <function line='30' file='xmlreader' name='xmlTextReaderConstName'/>
+      <function line='34' file='xmlreader' name='xmlTextReaderConstValue'/>
+      <function line='37' file='xmlreader' name='xmlTextReaderDepth'/>
       <function line='41' file='xmlreader' name='xmlTextReaderHasValue'/>
-      <function line='76' file='xmlreader' name='xmlTextReaderRead'/>
       <function line='40' file='xmlreader' name='xmlTextReaderIsEmptyElement'/>
-      <function line='68' file='xmlreader' name='xmlReaderForFile'/>
       <function line='81' file='xmlreader' name='xmlTextReaderIsValid'/>
+      <function line='38' file='xmlreader' name='xmlTextReaderNodeType'/>
+      <typedef line='60' file='xmlreader' name='xmlTextReaderPtr'/>
+      <function line='76' file='xmlreader' name='xmlTextReaderRead'/>
     </uses>
   </example>
   <example filename='reader3.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>xmlReader</section>
     <includes>
-      <include>&lt;libxml/xmlreader.h&gt;</include>
+      <include line='16'>&lt;libxml/xmlreader.h&gt;</include>
     </includes>
     <uses>
-      <typedef line='32' file='xmlreader' name='xmlTextReaderPtr'/>
-      <function line='66' file='xmlreader' name='xmlFreeTextReader'/>
       <function line='96' file='tree' name='xmlDocDump'/>
-      <function line='52' file='xmlreader' name='xmlTextReaderRead'/>
+      <function line='66' file='xmlreader' name='xmlFreeTextReader'/>
+      <function line='38' file='xmlreader' name='xmlReaderForFile'/>
       <function line='62' file='xmlreader' name='xmlTextReaderCurrentDoc'/>
       <function line='43' file='xmlreader' name='xmlTextReaderPreservePattern'/>
-      <function line='38' file='xmlreader' name='xmlReaderForFile'/>
+      <typedef line='32' file='xmlreader' name='xmlTextReaderPtr'/>
+      <function line='52' file='xmlreader' name='xmlTextReaderRead'/>
     </uses>
   </example>
   <example filename='reader4.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>xmlReader</section>
     <includes>
-      <include>&lt;libxml/xmlreader.h&gt;</include>
+      <include line='15'>&lt;libxml/xmlreader.h&gt;</include>
     </includes>
     <uses>
-      <typedef line='54' file='xmlreader' name='xmlTextReaderPtr'/>
-      <function line='83' file='xmlreader' name='xmlReaderNewFile'/>
       <function line='104' file='xmlreader' name='xmlFreeTextReader'/>
-      <function line='26' file='xmlreader' name='xmlTextReaderRead'/>
-      <function line='97' file='xmlreader' name='xmlTextReaderCurrentDoc'/>
       <function line='72' file='xmlreader' name='xmlReaderForFile'/>
+      <function line='83' file='xmlreader' name='xmlReaderNewFile'/>
+      <function line='97' file='xmlreader' name='xmlTextReaderCurrentDoc'/>
+      <typedef line='54' file='xmlreader' name='xmlTextReaderPtr'/>
+      <function line='26' file='xmlreader' name='xmlTextReaderRead'/>
     </uses>
   </example>
   <example filename='testWriter.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>xmlWriter</section>
     <includes>
-      <include>&lt;libxml/encoding.h&gt;</include>
-      <include>&lt;libxml/xmlwriter.h&gt;</include>
+      <include line='16'>&lt;libxml/encoding.h&gt;</include>
+      <include line='17'>&lt;libxml/xmlwriter.h&gt;</include>
     </includes>
     <uses>
-      <function line='913' file='xmlwriter' name='xmlTextWriterStartDocument'/>
-      <function line='1121' file='xmlwriter' name='xmlTextWriterEndDocument'/>
-      <variable line='1183' file='globals' name='xmlRealloc'/>
-      <function line='925' file='xmlwriter' name='xmlTextWriterWriteComment'/>
-      <function line='1156' file='encoding' name='xmlFindCharEncodingHandler'/>
-      <variable line='1166' file='globals' name='xmlMalloc'/>
-      <typedef line='341' file='tree' name='xmlBufferPtr'/>
       <macro line='885' file='parser' name='XML_DEFAULT_VERSION'/>
+      <function line='347' file='tree' name='xmlBufferCreate'/>
+      <function line='613' file='tree' name='xmlBufferFree'/>
+      <typedef line='341' file='tree' name='xmlBufferPtr'/>
+      <typedef line='1151' file='encoding' name='xmlCharEncodingHandlerPtr'/>
       <function line='901' file='tree' name='xmlDocSetRootElement'/>
+      <function line='1156' file='encoding' name='xmlFindCharEncodingHandler'/>
+      <variable line='1180' file='globals' name='xmlFree'/>
       <function line='1127' file='xmlwriter' name='xmlFreeTextWriter'/>
-      <function line='1096' file='xmlwriter' name='xmlTextWriterStartElement'/>
-      <function line='347' file='tree' name='xmlBufferCreate'/>
-      <function line='1111' file='xmlwriter' name='xmlTextWriterEndElement'/>
+      <variable line='1166' file='globals' name='xmlMalloc'/>
+      <function line='885' file='tree' name='xmlNewDoc'/>
+      <function line='894' file='tree' name='xmlNewDocNode'/>
+      <function line='632' file='xmlwriter' name='xmlNewTextWriterDoc'/>
       <function line='76' file='xmlwriter' name='xmlNewTextWriterFilename'/>
-      <function line='959' file='xmlwriter' name='xmlTextWriterWriteFormatComment'/>
-      <function line='1073' file='xmlwriter' name='xmlTextWriterWriteFormatElement'/>
-      <typedef line='1151' file='encoding' name='xmlCharEncodingHandlerPtr'/>
+      <function line='355' file='xmlwriter' name='xmlNewTextWriterMemory'/>
+      <function line='904' file='xmlwriter' name='xmlNewTextWriterTree'/>
       <typedef line='880' file='tree' name='xmlNodePtr'/>
-      <function line='949' file='xmlwriter' name='xmlTextWriterWriteAttribute'/>
-      <function line='632' file='xmlwriter' name='xmlNewTextWriterDoc'/>
-      <function line='894' file='tree' name='xmlNewDocNode'/>
+      <variable line='1183' file='globals' name='xmlRealloc'/>
       <function line='1129' file='tree' name='xmlSaveFileEnc'/>
-      <function line='904' file='xmlwriter' name='xmlNewTextWriterTree'/>
-      <function line='355' file='xmlwriter' name='xmlNewTextWriterMemory'/>
-      <variable line='1180' file='globals' name='xmlFree'/>
-      <function line='613' file='tree' name='xmlBufferFree'/>
+      <function line='1121' file='xmlwriter' name='xmlTextWriterEndDocument'/>
+      <function line='1111' file='xmlwriter' name='xmlTextWriterEndElement'/>
       <typedef line='878' file='xmlwriter' name='xmlTextWriterPtr'/>
+      <function line='913' file='xmlwriter' name='xmlTextWriterStartDocument'/>
+      <function line='1096' file='xmlwriter' name='xmlTextWriterStartElement'/>
+      <function line='949' file='xmlwriter' name='xmlTextWriterWriteAttribute'/>
+      <function line='925' file='xmlwriter' name='xmlTextWriterWriteComment'/>
       <function line='1103' file='xmlwriter' name='xmlTextWriterWriteElement'/>
-      <function line='885' file='tree' name='xmlNewDoc'/>
+      <function line='959' file='xmlwriter' name='xmlTextWriterWriteFormatComment'/>
+      <function line='1073' file='xmlwriter' name='xmlTextWriterWriteFormatElement'/>
     </uses>
   </example>
   <example filename='tree1.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>Tree</section>
     <includes>
-      <include>&lt;libxml/tree.h&gt;</include>
-      <include>&lt;libxml/parser.h&gt;</include>
+      <include line='13'>&lt;libxml/parser.h&gt;</include>
+      <include line='14'>&lt;libxml/tree.h&gt;</include>
     </includes>
     <uses>
       <enum line='36' file='tree' name='XML_ELEMENT_NODE'/>
     <copy>see Copyright for the status of this software </copy>
     <section>Tree</section>
     <includes>
-      <include>&lt;libxml/tree.h&gt;</include>
-      <include>&lt;libxml/parser.h&gt;</include>
+      <include line='12'>&lt;libxml/parser.h&gt;</include>
+      <include line='13'>&lt;libxml/tree.h&gt;</include>
     </includes>
     <uses>
-      <function line='73' file='tree' name='xmlNewDocNode'/>
-      <function line='95' file='tree' name='xmlSaveFormatFileEnc'/>
       <function line='77' file='tree' name='xmlAddChild'/>
+      <function line='45' file='tree' name='xmlCreateIntSubset'/>
       <function line='40' file='tree' name='xmlDocSetRootElement'/>
-      <function line='88' file='tree' name='xmlNewProp'/>
       <function line='87' file='tree' name='xmlNewChild'/>
-      <function line='74' file='tree' name='xmlNewDocText'/>
-      <function line='45' file='tree' name='xmlCreateIntSubset'/>
       <function line='38' file='tree' name='xmlNewDoc'/>
+      <function line='73' file='tree' name='xmlNewDocNode'/>
+      <function line='74' file='tree' name='xmlNewDocText'/>
+      <function line='88' file='tree' name='xmlNewProp'/>
+      <function line='95' file='tree' name='xmlSaveFormatFileEnc'/>
     </uses>
   </example>
   <example filename='xpath1.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>XPath</section>
     <includes>
-      <include>&lt;libxml/parser.h&gt;</include>
-      <include>&lt;libxml/xpath.h&gt;</include>
-      <include>&lt;libxml/xpathInternals.h&gt;</include>
-      <include>&lt;libxml/tree.h&gt;</include>
+      <include line='17'>&lt;libxml/parser.h&gt;</include>
+      <include line='16'>&lt;libxml/tree.h&gt;</include>
+      <include line='18'>&lt;libxml/xpath.h&gt;</include>
+      <include line='19'>&lt;libxml/xpathInternals.h&gt;</include>
     </includes>
     <uses>
       <enum line='229' file='tree' name='XML_ELEMENT_NODE'/>
-      <typedef line='88' file='xpath' name='xmlXPathObjectPtr'/>
-      <function line='117' file='xpath' name='xmlXPathEvalExpression'/>
-      <function line='94' file='parser' name='xmlParseFile'/>
-      <function line='186' file='xpathInternals' name='xmlXPathRegisterNs'/>
-      <function line='129' file='xpath' name='xmlXPathFreeObject'/>
+      <enum line='217' file='tree' name='XML_NAMESPACE_DECL'/>
       <variable line='193' file='globals' name='xmlFree'/>
+      <function line='39' file='parser' name='xmlInitParser'/>
+      <typedef line='206' file='tree' name='xmlNodePtr'/>
       <typedef line='218' file='tree' name='xmlNsPtr'/>
-      <function line='101' file='xpath' name='xmlXPathNewContext'/>
+      <function line='94' file='parser' name='xmlParseFile'/>
+      <function line='180' file='xmlstring' name='xmlStrchr'/>
+      <function line='156' file='xmlstring' name='xmlStrdup'/>
       <typedef line='87' file='xpath' name='xmlXPathContextPtr'/>
+      <function line='117' file='xpath' name='xmlXPathEvalExpression'/>
       <function line='130' file='xpath' name='xmlXPathFreeContext'/>
-      <function line='39' file='parser' name='xmlInitParser'/>
-      <function line='156' file='xmlstring' name='xmlStrdup'/>
-      <function line='180' file='xmlstring' name='xmlStrchr'/>
-      <typedef line='206' file='tree' name='xmlNodePtr'/>
-      <enum line='217' file='tree' name='XML_NAMESPACE_DECL'/>
+      <function line='129' file='xpath' name='xmlXPathFreeObject'/>
+      <function line='101' file='xpath' name='xmlXPathNewContext'/>
+      <typedef line='88' file='xpath' name='xmlXPathObjectPtr'/>
+      <function line='186' file='xpathInternals' name='xmlXPathRegisterNs'/>
     </uses>
   </example>
   <example filename='xpath2.c'>
     <copy>see Copyright for the status of this software. </copy>
     <section>XPath</section>
     <includes>
-      <include>&lt;libxml/parser.h&gt;</include>
-      <include>&lt;libxml/xpath.h&gt;</include>
-      <include>&lt;libxml/xpathInternals.h&gt;</include>
-      <include>&lt;libxml/tree.h&gt;</include>
+      <include line='17'>&lt;libxml/parser.h&gt;</include>
+      <include line='16'>&lt;libxml/tree.h&gt;</include>
+      <include line='18'>&lt;libxml/xpath.h&gt;</include>
+      <include line='19'>&lt;libxml/xpathInternals.h&gt;</include>
     </includes>
     <uses>
-      <function line='162' file='tree' name='xmlNodeSetContent'/>
+      <enum line='180' file='tree' name='XML_NAMESPACE_DECL'/>
       <function line='127' file='tree' name='xmlDocDump'/>
-      <typedef line='88' file='xpath' name='xmlXPathObjectPtr'/>
-      <function line='110' file='xpath' name='xmlXPathEvalExpression'/>
+      <function line='41' file='parser' name='xmlInitParser'/>
+      <function line='162' file='tree' name='xmlNodeSetContent'/>
       <function line='95' file='parser' name='xmlParseFile'/>
-      <function line='123' file='xpath' name='xmlXPathFreeObject'/>
-      <function line='102' file='xpath' name='xmlXPathNewContext'/>
       <typedef line='87' file='xpath' name='xmlXPathContextPtr'/>
+      <function line='110' file='xpath' name='xmlXPathEvalExpression'/>
       <function line='124' file='xpath' name='xmlXPathFreeContext'/>
-      <function line='41' file='parser' name='xmlInitParser'/>
-      <enum line='180' file='tree' name='XML_NAMESPACE_DECL'/>
+      <function line='123' file='xpath' name='xmlXPathFreeObject'/>
+      <function line='102' file='xpath' name='xmlXPathNewContext'/>
+      <typedef line='88' file='xpath' name='xmlXPathObjectPtr'/>
     </uses>
   </example>
   <symbols>
index b3da2ea..c515408 100644 (file)
@@ -37,6 +37,7 @@
     <p>Includes:</p>
     <ul>
     <xsl:for-each select="includes/include">
+      <xsl:sort select="@line" data-type="number"/>
       <xsl:apply-templates select='.'/>
     </xsl:for-each>
     </ul>
index 2e91b95..3f45687 100644 (file)
@@ -69,13 +69,13 @@ install</i> step or when installing the libxml2 development package:</p>
         <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
       </li>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-xmlIO.html">&lt;libxml/xmlIO.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
       </li>
       <li>
         <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-xinclude.html">&lt;libxml/xinclude.h&gt;</a>
       </li>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-xmlIO.html">&lt;libxml/xmlIO.h&gt;</a>
       </li>
     </ul>
     <p>Uses:</p>
@@ -121,10 +121,10 @@ install</i> step or when installing the libxml2 development package:</p>
     <p>Includes:</p>
     <ul>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
       </li>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
       </li>
     </ul>
     <p>Uses:</p>
@@ -144,10 +144,10 @@ install</i> step or when installing the libxml2 development package:</p>
     <p>Includes:</p>
     <ul>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
       </li>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
       </li>
     </ul>
     <p>Uses:</p>
@@ -170,10 +170,10 @@ install</i> step or when installing the libxml2 development package:</p>
     <p>Includes:</p>
     <ul>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
       </li>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
       </li>
     </ul>
     <p>Uses:</p>
@@ -193,10 +193,10 @@ install</i> step or when installing the libxml2 development package:</p>
     <p>Includes:</p>
     <ul>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
       </li>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
       </li>
     </ul>
     <p>Uses:</p>
@@ -220,10 +220,10 @@ install</i> step or when installing the libxml2 development package:</p>
     <p>Includes:</p>
     <ul>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
       </li>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
       </li>
     </ul>
     <p>Uses:</p>
@@ -239,10 +239,10 @@ install</i> step or when installing the libxml2 development package:</p>
     <p>Includes:</p>
     <ul>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
       </li>
       <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
       </li>
     </ul>
     <p>Uses:</p>
@@ -266,6 +266,9 @@ install</i> step or when installing the libxml2 development package:</p>
     <p>Includes:</p>
     <ul>
       <li>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
+      </li>
+      <li>
         <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
       </li>
       <li>
@@ -274,9 +277,6 @@ install</i> step or when installing the libxml2 development package:</p>
       <li>
         <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-xpathInternals.html">&lt;libxml/xpathInternals.h&gt;</a>
       </li>
-      <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
-      </li>
     </ul>
     <p>Uses:</p>
     <ul>
@@ -302,6 +302,9 @@ install</i> step or when installing the libxml2 development package:</p>
     <p>Includes:</p>
     <ul>
       <li>
+        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
+      </li>
+      <li>
         <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-parser.html">&lt;libxml/parser.h&gt;</a>
       </li>
       <li>
@@ -310,9 +313,6 @@ install</i> step or when installing the libxml2 development package:</p>
       <li>
         <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-xpathInternals.html">&lt;libxml/xpathInternals.h&gt;</a>
       </li>
-      <li>
-        <a href="https://gnome.pages.gitlab.gnome.org/libxml2/devhelp/libxml2-tree.html">&lt;libxml/tree.h&gt;</a>
-      </li>
     </ul>
     <p>Uses:</p>
     <ul>
index 9cc2db4..8ce8d12 100755 (executable)
@@ -2,12 +2,12 @@
 #
 # Indexes the examples and build an XML description
 #
-import string
 import glob
 import sys
 try:
     import libxml2
 except:
+    print("libxml2 python bindings not available")
     sys.exit(1)
 sys.path.insert(0, "..")
 from apibuild import CParser, escape
@@ -28,11 +28,11 @@ def load_api():
         return
     api_dict = {}
     try:
-        print "loading ../libxml2-api.xml"
+        print("loading ../libxml2-api.xml")
         api_doc = libxml2.parseFile("../libxml2-api.xml")
     except:
-        print "failed to parse ../libxml2-api.xml"
-       sys.exit(1)
+        print("failed to parse ../libxml2-api.xml")
+        sys.exit(1)
 
 def find_symbol(name):
     global api_dict
@@ -43,50 +43,50 @@ def find_symbol(name):
 
     if name == None:
         return
-    if api_dict.has_key(name):
+    if name in api_dict:
         return api_dict[name]
     ctxt = api_doc.xpathNewContext()
     res = ctxt.xpathEval("/api/symbols/*[@name = '%s']" % (name))
     if type(res) == type([]) and len(res) >= 1:
         if len(res) > 1:
-           print "Found %d references to %s in the API" % (len(res), name)
-       node = res[0]
-       typ = node.name
-       file = node.xpathEval("string(@file)")
-       info = node.xpathEval("string(info)")
+            print("Found %d references to %s in the API" % (len(res), name))
+        node = res[0]
+        typ = node.name
+        file = node.xpathEval("string(@file)")
+        info = node.xpathEval("string(info)")
     else:
-        print "Reference %s not found in the API" % (name)
-       return None
+        print("Reference %s not found in the API" % (name))
+        return None
     ret = (typ, file, info)
     api_dict[name] = ret
     return ret
 
 def parse_top_comment(filename, comment):
     res = {}
-    lines = string.split(comment, "\n")
+    lines = comment.split("\n")
     item = None
     for line in lines:
         while line != "" and (line[0] == ' ' or line[0] == '\t'):
-           line = line[1:]
+            line = line[1:]
         while line != "" and line[0] == '*':
-           line = line[1:]
+            line = line[1:]
         while line != "" and (line[0] == ' ' or line[0] == '\t'):
-           line = line[1:]
-       try:
-           (it, line) = string.split(line, ":", 1)
-           item = it
-           while line != "" and (line[0] == ' ' or line[0] == '\t'):
-               line = line[1:]
-           if res.has_key(item):
-               res[item] = res[item] + " " + line
-           else:
-               res[item] = line
-       except:
-           if item != None:
-               if res.has_key(item):
-                   res[item] = res[item] + " " + line
-               else:
-                   res[item] = line
+            line = line[1:]
+        try:
+            (it, line) = line.split(":", 1)
+            item = it
+            while line != "" and (line[0] == ' ' or line[0] == '\t'):
+                line = line[1:]
+            if item in res:
+                res[item] = res[item] + " " + line
+            else:
+                res[item] = line
+        except:
+            if item != None:
+                if item in res:
+                    res[item] = res[item] + " " + line
+                else:
+                    res[item] = line
     return res
 
 def parse(filename, output):
@@ -100,83 +100,86 @@ def parse(filename, output):
     output.write("  <example filename='%s'>\n" % filename)
     try:
         synopsis = info['synopsis']
-       output.write("    <synopsis>%s</synopsis>\n" % escape(synopsis));
+        output.write("    <synopsis>%s</synopsis>\n" % escape(synopsis));
     except:
-        print "Example %s lacks a synopsis description" % (filename)
+        print("Example %s lacks a synopsis description" % (filename))
     try:
         purpose = info['purpose']
-       output.write("    <purpose>%s</purpose>\n" % escape(purpose));
+        output.write("    <purpose>%s</purpose>\n" % escape(purpose));
     except:
-        print "Example %s lacks a purpose description" % (filename)
+        print("Example %s lacks a purpose description" % (filename))
     try:
         usage = info['usage']
-       output.write("    <usage>%s</usage>\n" % escape(usage));
+        output.write("    <usage>%s</usage>\n" % escape(usage));
     except:
-        print "Example %s lacks an usage description" % (filename)
+        print("Example %s lacks an usage description" % (filename))
     try:
         test = info['test']
-       output.write("    <test>%s</test>\n" % escape(test));
-       progname=filename[0:-2]
-       command=string.replace(test, progname, './' + progname, 1)
-       tests.append(command)
+        output.write("    <test>%s</test>\n" % escape(test));
+        progname=filename[0:-2]
+        command=test.replace(progname, './' + progname, 1)
+        tests.append(command)
     except:
         pass
     try:
         author = info['author']
-       output.write("    <author>%s</author>\n" % escape(author));
+        output.write("    <author>%s</author>\n" % escape(author));
     except:
-        print "Example %s lacks an author description" % (filename)
+        print("Example %s lacks an author description" % (filename))
     try:
         copy = info['copy']
-       output.write("    <copy>%s</copy>\n" % escape(copy));
+        output.write("    <copy>%s</copy>\n" % escape(copy));
     except:
-        print "Example %s lacks a copyright description" % (filename)
+        print("Example %s lacks a copyright description" % (filename))
     try:
         section = info['section']
-       output.write("    <section>%s</section>\n" % escape(section));
-       if sections.has_key(section):
-           sections[section].append(filename)
-       else:
-           sections[section] = [filename]
+        output.write("    <section>%s</section>\n" % escape(section));
+        if section in sections:
+            sections[section].append(filename)
+        else:
+            sections[section] = [filename]
     except:
-        print "Example %s lacks a section description" % (filename)
-    for topic in info.keys():
+        print("Example %s lacks a section description" % (filename))
+    for topic in sorted(info.keys()):
         if topic != "purpose" and topic != "usage" and \
-          topic != "author" and topic != "copy" and \
-          topic != "section" and topic != "synopsis" and topic != "test":
-           str = info[topic]
-           output.write("    <extra topic='%s'>%s</extra>\n" % (
-                        escape(topic), escape(str)))
+           topic != "author" and topic != "copy" and \
+           topic != "section" and topic != "synopsis" and topic != "test":
+            str = info[topic]
+            output.write("    <extra topic='%s'>%s</extra>\n" % (
+                         escape(topic), escape(str)))
     output.write("    <includes>\n")
-    for include in idx.includes.keys():
+    for include in sorted(idx.includes.keys()):
         if include.find("libxml") != -1:
-           output.write("      <include>%s</include>\n" % (escape(include)))
+            id = idx.includes[include]
+            line = id.get_lineno()
+            output.write("      <include line='%d'>%s</include>\n" %
+                         (line, escape(include)))
     output.write("    </includes>\n")
     output.write("    <uses>\n")
-    for ref in idx.references.keys():
+    for ref in sorted(idx.references.keys()):
         id = idx.references[ref]
-       name = id.get_name()
-       line = id.get_lineno()
-       if symbols.has_key(name):
-           sinfo = symbols[name]
-           refs = sinfo[0]
-           # gather at most 5 references per symbols
-           if refs > 5:
-               continue
-           sinfo.append(filename)
-           sinfo[0] = refs + 1
-       else:
-           symbols[name] = [1, filename]
-       info = find_symbol(name)
-       if info != None:
-           type = info[0]
-           file = info[1]
-           output.write("      <%s line='%d' file='%s' name='%s'/>\n" % (type,
-                        line, file, name))
-       else:
-           type = id.get_type()
-           output.write("      <%s line='%d' name='%s'/>\n" % (type,
-                        line, name))
+        name = id.get_name()
+        line = id.get_lineno()
+        if name in symbols:
+            sinfo = symbols[name]
+            refs = sinfo[0]
+            # gather at most 5 references per symbols
+            if refs > 5:
+                continue
+            sinfo.append(filename)
+            sinfo[0] = refs + 1
+        else:
+            symbols[name] = [1, filename]
+        info = find_symbol(name)
+        if info != None:
+            type = info[0]
+            file = info[1]
+            output.write("      <%s line='%d' file='%s' name='%s'/>\n" % (type,
+                         line, file, name))
+        else:
+            type = id.get_type()
+            output.write("      <%s line='%d' name='%s'/>\n" % (type,
+                         line, name))
 
     output.write("    </uses>\n")
     output.write("  </example>\n")
@@ -187,15 +190,13 @@ def dump_symbols(output):
     global symbols
 
     output.write("  <symbols>\n")
-    keys = symbols.keys()
-    keys.sort()
-    for symbol in keys:
+    for symbol in sorted(symbols.keys()):
         output.write("    <symbol name='%s'>\n" % (symbol))
-       info = symbols[symbol]
-       i = 1
-       while i < len(info):
-           output.write("      <ref filename='%s'/>\n" % (info[i]))
-           i = i + 1
+        info = symbols[symbol]
+        i = 1
+        while i < len(info):
+            output.write("      <ref filename='%s'/>\n" % (info[i]))
+            i = i + 1
         output.write("    </symbol>\n")
     output.write("  </symbols>\n")
 
@@ -203,15 +204,13 @@ def dump_sections(output):
     global sections
 
     output.write("  <sections>\n")
-    keys = sections.keys()
-    keys.sort()
-    for section in keys:
+    for section in sorted(sections.keys()):
         output.write("    <section name='%s'>\n" % (section))
-       info = sections[section]
-       i = 0
-       while i < len(info):
-           output.write("      <example filename='%s'/>\n" % (info[i]))
-           i = i + 1
+        info = sections[section]
+        i = 0
+        while i < len(info):
+            output.write("      <example filename='%s'/>\n" % (info[i]))
+            i = i + 1
         output.write("    </section>\n")
     output.write("  </sections>\n")
 
@@ -231,19 +230,19 @@ LDADD = $(top_builddir)/libxml2.la
 CLEANFILES = *.tmp
 
 rebuild:
-       cd $(srcdir) && $(PYTHON) index.py
-       $(MAKE) Makefile
-       cd $(srcdir) && xsltproc examples.xsl examples.xml
-       -cd $(srcdir) && xmllint --valid --noout index.html
+\tcd $(srcdir) && $(PYTHON) index.py
+\t$(MAKE) Makefile
+\tcd $(srcdir) && xsltproc examples.xsl examples.xml
+\t-cd $(srcdir) && xmllint --valid --noout index.html
 
 .PHONY: rebuild
 
 install-data-local: 
-       $(MKDIR_P) $(DESTDIR)$(docdir)/examples
-       -$(INSTALL) -m 0644 $(srcdir)/*.html $(srcdir)/*.c $(DESTDIR)$(docdir)/examples/
+\t$(MKDIR_P) $(DESTDIR)$(docdir)/examples
+\t-$(INSTALL) -m 0644 $(srcdir)/*.html $(srcdir)/*.c $(DESTDIR)$(docdir)/examples/
 
 clean-local:
-       test -f Makefile.am || rm -f test?.xml
+\ttest -f Makefile.am || rm -f test?.xml
 
 """
     examples.sort()
@@ -269,28 +268,12 @@ clean-local:
         Makefile = Makefile + '\t@grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" ; exit 0\n'
     Makefile = Makefile + "\t@rm *.tmp\n"
     try:
-       old = open("Makefile.am", "r").read()
-       if old != Makefile:
-           n = open("Makefile.am", "w").write(Makefile)
-           print "Updated Makefile.am"
+        old = open("Makefile.am", "r").read()
+        if old != Makefile:
+            n = open("Makefile.am", "w").write(Makefile)
+            print("Updated Makefile.am")
     except:
-        print "Failed to read or save Makefile.am"
-#    #
-#    # Autogenerate the .cvsignore too ... DEPRECATED
-#    #
-#    ignore = """.memdump
-#Makefile.in
-#Makefile
-#"""
-#    for example in examples:
-#        ignore = ignore + "%s\n" % (example)
-#    try:
-#      old = open(".cvsignore", "r").read()
-#      if old != ignore:
-#          n = open(".cvsignore", "w").write(ignore)
-#          print "Updated .cvsignore"
-#    except:
-#        print "Failed to read or save .cvsignore"
+        print("Failed to read or save Makefile.am")
 
 if __name__ == "__main__":
     load_api()
@@ -298,8 +281,8 @@ if __name__ == "__main__":
     output.write("<examples>\n")
 
     for file in sorted(glob.glob('*.c')):
-       parse(file, output)
-       examples.append(file[:-2])
+        parse(file, output)
+        examples.append(file[:-2])
 
     dump_symbols(output)
     dump_sections(output)
index 9cc29da..89a4476 100644 (file)
      <exports symbol='htmlDefaultSubelement' type='macro'/>
      <exports symbol='htmlElementAllowedHereDesc' type='macro'/>
      <exports symbol='htmlRequiredAttrs' type='macro'/>
-     <exports symbol='HTML_REQUIRED' type='enum'/>
+     <exports symbol='HTML_DEPRECATED' type='enum'/>
      <exports symbol='HTML_INVALID' type='enum'/>
-     <exports symbol='HTML_PARSE_NONET' type='enum'/>
      <exports symbol='HTML_NA' type='enum'/>
      <exports symbol='HTML_PARSE_COMPACT' type='enum'/>
-     <exports symbol='HTML_VALID' type='enum'/>
+     <exports symbol='HTML_PARSE_IGNORE_ENC' type='enum'/>
      <exports symbol='HTML_PARSE_NOBLANKS' type='enum'/>
      <exports symbol='HTML_PARSE_NODEFDTD' type='enum'/>
-     <exports symbol='HTML_PARSE_RECOVER' type='enum'/>
-     <exports symbol='HTML_DEPRECATED' type='enum'/>
      <exports symbol='HTML_PARSE_NOERROR' type='enum'/>
-     <exports symbol='HTML_PARSE_PEDANTIC' type='enum'/>
-     <exports symbol='HTML_PARSE_IGNORE_ENC' type='enum'/>
      <exports symbol='HTML_PARSE_NOIMPLIED' type='enum'/>
+     <exports symbol='HTML_PARSE_NONET' type='enum'/>
      <exports symbol='HTML_PARSE_NOWARNING' type='enum'/>
-     <exports symbol='htmlParserNodeInfo' type='typedef'/>
-     <exports symbol='htmlParserInput' type='typedef'/>
-     <exports symbol='htmlParserCtxtPtr' type='typedef'/>
-     <exports symbol='htmlEntityDesc' type='typedef'/>
+     <exports symbol='HTML_PARSE_PEDANTIC' type='enum'/>
+     <exports symbol='HTML_PARSE_RECOVER' type='enum'/>
+     <exports symbol='HTML_REQUIRED' type='enum'/>
+     <exports symbol='HTML_VALID' type='enum'/>
      <exports symbol='htmlDocPtr' type='typedef'/>
-     <exports symbol='htmlSAXHandlerPtr' type='typedef'/>
-     <exports symbol='htmlStatus' type='typedef'/>
-     <exports symbol='htmlNodePtr' type='typedef'/>
-     <exports symbol='htmlElemDescPtr' type='typedef'/>
      <exports symbol='htmlElemDesc' type='typedef'/>
-     <exports symbol='htmlSAXHandler' type='typedef'/>
-     <exports symbol='htmlParserInputPtr' type='typedef'/>
-     <exports symbol='htmlParserOption' type='typedef'/>
+     <exports symbol='htmlElemDescPtr' type='typedef'/>
+     <exports symbol='htmlEntityDesc' type='typedef'/>
      <exports symbol='htmlEntityDescPtr' type='typedef'/>
+     <exports symbol='htmlNodePtr' type='typedef'/>
      <exports symbol='htmlParserCtxt' type='typedef'/>
-     <exports symbol='_htmlEntityDesc' type='struct'/>
+     <exports symbol='htmlParserCtxtPtr' type='typedef'/>
+     <exports symbol='htmlParserInput' type='typedef'/>
+     <exports symbol='htmlParserInputPtr' type='typedef'/>
+     <exports symbol='htmlParserNodeInfo' type='typedef'/>
+     <exports symbol='htmlParserOption' type='typedef'/>
+     <exports symbol='htmlSAXHandler' type='typedef'/>
+     <exports symbol='htmlSAXHandlerPtr' type='typedef'/>
+     <exports symbol='htmlStatus' type='typedef'/>
      <exports symbol='_htmlElemDesc' type='struct'/>
-     <exports symbol='htmlIsScriptAttribute' type='function'/>
-     <exports symbol='htmlHandleOmittedElem' type='function'/>
-     <exports symbol='htmlReadFd' type='function'/>
-     <exports symbol='htmlReadIO' type='function'/>
-     <exports symbol='htmlParseFile' type='function'/>
-     <exports symbol='htmlCtxtReadDoc' type='function'/>
+     <exports symbol='_htmlEntityDesc' type='struct'/>
+     <exports symbol='UTF8ToHtml' type='function'/>
+     <exports symbol='htmlAttrAllowed' type='function'/>
      <exports symbol='htmlAutoCloseTag' type='function'/>
-     <exports symbol='htmlParseChunk' type='function'/>
-     <exports symbol='htmlTagLookup' type='function'/>
      <exports symbol='htmlCreateMemoryParserCtxt' type='function'/>
+     <exports symbol='htmlCreatePushParserCtxt' type='function'/>
+     <exports symbol='htmlCtxtReadDoc' type='function'/>
+     <exports symbol='htmlCtxtReadFd' type='function'/>
+     <exports symbol='htmlCtxtReadFile' type='function'/>
+     <exports symbol='htmlCtxtReadIO' type='function'/>
+     <exports symbol='htmlCtxtReadMemory' type='function'/>
      <exports symbol='htmlCtxtReset' type='function'/>
+     <exports symbol='htmlCtxtUseOptions' type='function'/>
      <exports symbol='htmlElementAllowedHere' type='function'/>
-     <exports symbol='htmlCtxtReadIO' type='function'/>
-     <exports symbol='htmlCreatePushParserCtxt' type='function'/>
-     <exports symbol='htmlReadMemory' type='function'/>
-     <exports symbol='htmlIsAutoClosed' type='function'/>
-     <exports symbol='htmlParseCharRef' type='function'/>
-     <exports symbol='htmlReadDoc' type='function'/>
-     <exports symbol='htmlEncodeEntities' type='function'/>
-     <exports symbol='htmlNodeStatus' type='function'/>
-     <exports symbol='htmlAttrAllowed' type='function'/>
-     <exports symbol='htmlSAXParseFile' type='function'/>
-     <exports symbol='htmlParseEntityRef' type='function'/>
      <exports symbol='htmlElementStatusHere' type='function'/>
-     <exports symbol='htmlEntityValueLookup' type='function'/>
-     <exports symbol='htmlParseElement' type='function'/>
-     <exports symbol='UTF8ToHtml' type='function'/>
+     <exports symbol='htmlEncodeEntities' type='function'/>
      <exports symbol='htmlEntityLookup' type='function'/>
+     <exports symbol='htmlEntityValueLookup' type='function'/>
      <exports symbol='htmlFreeParserCtxt' type='function'/>
-     <exports symbol='htmlCtxtReadMemory' type='function'/>
-     <exports symbol='htmlCtxtReadFd' type='function'/>
-     <exports symbol='htmlReadFile' type='function'/>
-     <exports symbol='htmlCtxtReadFile' type='function'/>
-     <exports symbol='htmlParseDocument' type='function'/>
+     <exports symbol='htmlHandleOmittedElem' type='function'/>
+     <exports symbol='htmlIsAutoClosed' type='function'/>
+     <exports symbol='htmlIsScriptAttribute' type='function'/>
      <exports symbol='htmlNewParserCtxt' type='function'/>
-     <exports symbol='htmlSAXParseDoc' type='function'/>
-     <exports symbol='htmlCtxtUseOptions' type='function'/>
+     <exports symbol='htmlNodeStatus' type='function'/>
+     <exports symbol='htmlParseCharRef' type='function'/>
+     <exports symbol='htmlParseChunk' type='function'/>
      <exports symbol='htmlParseDoc' type='function'/>
+     <exports symbol='htmlParseDocument' type='function'/>
+     <exports symbol='htmlParseElement' type='function'/>
+     <exports symbol='htmlParseEntityRef' type='function'/>
+     <exports symbol='htmlParseFile' type='function'/>
+     <exports symbol='htmlReadDoc' type='function'/>
+     <exports symbol='htmlReadFd' type='function'/>
+     <exports symbol='htmlReadFile' type='function'/>
+     <exports symbol='htmlReadIO' type='function'/>
+     <exports symbol='htmlReadMemory' type='function'/>
+     <exports symbol='htmlSAXParseDoc' type='function'/>
+     <exports symbol='htmlSAXParseFile' type='function'/>
+     <exports symbol='htmlTagLookup' type='function'/>
     </file>
     <file name='HTMLtree'>
      <summary>specific APIs to process HTML tree, especially serialization</summary>
      <description>this module implements a few function needed to process tree in an HTML specific way. </description>
      <author>Daniel Veillard </author>
-     <exports symbol='HTML_ENTITY_REF_NODE' type='macro'/>
      <exports symbol='HTML_COMMENT_NODE' type='macro'/>
+     <exports symbol='HTML_ENTITY_REF_NODE' type='macro'/>
+     <exports symbol='HTML_PI_NODE' type='macro'/>
      <exports symbol='HTML_PRESERVE_NODE' type='macro'/>
      <exports symbol='HTML_TEXT_NODE' type='macro'/>
-     <exports symbol='HTML_PI_NODE' type='macro'/>
-     <exports symbol='htmlNodeDumpFileFormat' type='function'/>
-     <exports symbol='htmlDocDumpMemory' type='function'/>
-     <exports symbol='htmlSaveFile' type='function'/>
+     <exports symbol='htmlDocContentDumpFormatOutput' type='function'/>
+     <exports symbol='htmlDocContentDumpOutput' type='function'/>
      <exports symbol='htmlDocDump' type='function'/>
+     <exports symbol='htmlDocDumpMemory' type='function'/>
      <exports symbol='htmlDocDumpMemoryFormat' type='function'/>
+     <exports symbol='htmlGetMetaEncoding' type='function'/>
      <exports symbol='htmlIsBooleanAttr' type='function'/>
-     <exports symbol='htmlSaveFileFormat' type='function'/>
-     <exports symbol='htmlNodeDumpFormatOutput' type='function'/>
-     <exports symbol='htmlSetMetaEncoding' type='function'/>
-     <exports symbol='htmlSaveFileEnc' type='function'/>
-     <exports symbol='htmlNodeDumpOutput' type='function'/>
-     <exports symbol='htmlNodeDump' type='function'/>
      <exports symbol='htmlNewDoc' type='function'/>
-     <exports symbol='htmlGetMetaEncoding' type='function'/>
-     <exports symbol='htmlNodeDumpFile' type='function'/>
-     <exports symbol='htmlDocContentDumpFormatOutput' type='function'/>
      <exports symbol='htmlNewDocNoDtD' type='function'/>
-     <exports symbol='htmlDocContentDumpOutput' type='function'/>
+     <exports symbol='htmlNodeDump' type='function'/>
+     <exports symbol='htmlNodeDumpFile' type='function'/>
+     <exports symbol='htmlNodeDumpFileFormat' type='function'/>
+     <exports symbol='htmlNodeDumpFormatOutput' type='function'/>
+     <exports symbol='htmlNodeDumpOutput' type='function'/>
+     <exports symbol='htmlSaveFile' type='function'/>
+     <exports symbol='htmlSaveFileEnc' type='function'/>
+     <exports symbol='htmlSaveFileFormat' type='function'/>
+     <exports symbol='htmlSetMetaEncoding' type='function'/>
     </file>
     <file name='SAX'>
      <summary>Old SAX version 1 handler, deprecated</summary>
      <description>DEPRECATED set of SAX version 1 interfaces used to build the DOM tree. </description>
      <author>Daniel Veillard </author>
      <deprecated/>
-     <exports symbol='comment' type='function'/>
+     <exports symbol='attribute' type='function'/>
+     <exports symbol='attributeDecl' type='function'/>
+     <exports symbol='cdataBlock' type='function'/>
+     <exports symbol='characters' type='function'/>
      <exports symbol='checkNamespace' type='function'/>
-     <exports symbol='getColumnNumber' type='function'/>
+     <exports symbol='comment' type='function'/>
+     <exports symbol='elementDecl' type='function'/>
+     <exports symbol='endDocument' type='function'/>
+     <exports symbol='endElement' type='function'/>
      <exports symbol='entityDecl' type='function'/>
-     <exports symbol='attribute' type='function'/>
+     <exports symbol='externalSubset' type='function'/>
+     <exports symbol='getColumnNumber' type='function'/>
+     <exports symbol='getEntity' type='function'/>
+     <exports symbol='getLineNumber' type='function'/>
      <exports symbol='getNamespace' type='function'/>
-     <exports symbol='setDocumentLocator' type='function'/>
-     <exports symbol='initxmlDefaultSAXHandler' type='function'/>
-     <exports symbol='ignorableWhitespace' type='function'/>
-     <exports symbol='hasExternalSubset' type='function'/>
-     <exports symbol='unparsedEntityDecl' type='function'/>
+     <exports symbol='getParameterEntity' type='function'/>
+     <exports symbol='getPublicId' type='function'/>
+     <exports symbol='getSystemId' type='function'/>
      <exports symbol='globalNamespace' type='function'/>
+     <exports symbol='hasExternalSubset' type='function'/>
      <exports symbol='hasInternalSubset' type='function'/>
-     <exports symbol='reference' type='function'/>
+     <exports symbol='ignorableWhitespace' type='function'/>
+     <exports symbol='inithtmlDefaultSAXHandler' type='function'/>
+     <exports symbol='initxmlDefaultSAXHandler' type='function'/>
+     <exports symbol='internalSubset' type='function'/>
+     <exports symbol='isStandalone' type='function'/>
+     <exports symbol='namespaceDecl' type='function'/>
      <exports symbol='notationDecl' type='function'/>
-     <exports symbol='getSystemId' type='function'/>
-     <exports symbol='externalSubset' type='function'/>
+     <exports symbol='processingInstruction' type='function'/>
+     <exports symbol='reference' type='function'/>
      <exports symbol='resolveEntity' type='function'/>
-     <exports symbol='startDocument' type='function'/>
+     <exports symbol='setDocumentLocator' type='function'/>
      <exports symbol='setNamespace' type='function'/>
-     <exports symbol='cdataBlock' type='function'/>
-     <exports symbol='getPublicId' type='function'/>
-     <exports symbol='inithtmlDefaultSAXHandler' type='function'/>
-     <exports symbol='processingInstruction' type='function'/>
-     <exports symbol='endElement' type='function'/>
-     <exports symbol='namespaceDecl' type='function'/>
+     <exports symbol='startDocument' type='function'/>
      <exports symbol='startElement' type='function'/>
-     <exports symbol='getEntity' type='function'/>
-     <exports symbol='characters' type='function'/>
-     <exports symbol='elementDecl' type='function'/>
-     <exports symbol='getParameterEntity' type='function'/>
-     <exports symbol='attributeDecl' type='function'/>
-     <exports symbol='isStandalone' type='function'/>
-     <exports symbol='internalSubset' type='function'/>
-     <exports symbol='endDocument' type='function'/>
-     <exports symbol='getLineNumber' type='function'/>
+     <exports symbol='unparsedEntityDecl' type='function'/>
     </file>
     <file name='SAX2'>
      <summary>SAX2 parser interface used to build the DOM tree</summary>
      <description>those are the default SAX2 interfaces used by the library when building DOM tree. </description>
      <author>Daniel Veillard </author>
-     <exports symbol='xmlSAX2EndElementNs' type='function'/>
-     <exports symbol='xmlSAX2Reference' type='function'/>
-     <exports symbol='xmlSAX2ElementDecl' type='function'/>
+     <exports symbol='htmlDefaultSAXHandlerInit' type='function'/>
+     <exports symbol='xmlDefaultSAXHandlerInit' type='function'/>
      <exports symbol='xmlSAX2AttributeDecl' type='function'/>
+     <exports symbol='xmlSAX2CDataBlock' type='function'/>
+     <exports symbol='xmlSAX2Characters' type='function'/>
      <exports symbol='xmlSAX2Comment' type='function'/>
-     <exports symbol='xmlSAX2GetColumnNumber' type='function'/>
-     <exports symbol='xmlSAX2GetEntity' type='function'/>
-     <exports symbol='xmlSAX2UnparsedEntityDecl' type='function'/>
-     <exports symbol='xmlSAXVersion' type='function'/>
-     <exports symbol='xmlSAX2IgnorableWhitespace' type='function'/>
-     <exports symbol='xmlSAX2NotationDecl' type='function'/>
-     <exports symbol='xmlSAX2StartDocument' type='function'/>
+     <exports symbol='xmlSAX2ElementDecl' type='function'/>
+     <exports symbol='xmlSAX2EndDocument' type='function'/>
      <exports symbol='xmlSAX2EndElement' type='function'/>
-     <exports symbol='xmlSAX2ResolveEntity' type='function'/>
+     <exports symbol='xmlSAX2EndElementNs' type='function'/>
+     <exports symbol='xmlSAX2EntityDecl' type='function'/>
      <exports symbol='xmlSAX2ExternalSubset' type='function'/>
+     <exports symbol='xmlSAX2GetColumnNumber' type='function'/>
+     <exports symbol='xmlSAX2GetEntity' type='function'/>
+     <exports symbol='xmlSAX2GetLineNumber' type='function'/>
+     <exports symbol='xmlSAX2GetParameterEntity' type='function'/>
      <exports symbol='xmlSAX2GetPublicId' type='function'/>
+     <exports symbol='xmlSAX2GetSystemId' type='function'/>
+     <exports symbol='xmlSAX2HasExternalSubset' type='function'/>
+     <exports symbol='xmlSAX2HasInternalSubset' type='function'/>
+     <exports symbol='xmlSAX2IgnorableWhitespace' type='function'/>
+     <exports symbol='xmlSAX2InitDefaultSAXHandler' type='function'/>
+     <exports symbol='xmlSAX2InitHtmlDefaultSAXHandler' type='function'/>
+     <exports symbol='xmlSAX2InternalSubset' type='function'/>
      <exports symbol='xmlSAX2IsStandalone' type='function'/>
-     <exports symbol='xmlSAX2EndDocument' type='function'/>
+     <exports symbol='xmlSAX2NotationDecl' type='function'/>
      <exports symbol='xmlSAX2ProcessingInstruction' type='function'/>
-     <exports symbol='xmlSAX2InternalSubset' type='function'/>
-     <exports symbol='xmlSAX2Characters' type='function'/>
-     <exports symbol='xmlSAXDefaultVersion' type='function'/>
-     <exports symbol='xmlSAX2StartElement' type='function'/>
+     <exports symbol='xmlSAX2Reference' type='function'/>
+     <exports symbol='xmlSAX2ResolveEntity' type='function'/>
      <exports symbol='xmlSAX2SetDocumentLocator' type='function'/>
-     <exports symbol='xmlSAX2CDataBlock' type='function'/>
+     <exports symbol='xmlSAX2StartDocument' type='function'/>
+     <exports symbol='xmlSAX2StartElement' type='function'/>
      <exports symbol='xmlSAX2StartElementNs' type='function'/>
-     <exports symbol='xmlSAX2HasExternalSubset' type='function'/>
-     <exports symbol='htmlDefaultSAXHandlerInit' type='function'/>
-     <exports symbol='xmlSAX2GetLineNumber' type='function'/>
-     <exports symbol='xmlSAX2HasInternalSubset' type='function'/>
-     <exports symbol='xmlSAX2InitHtmlDefaultSAXHandler' type='function'/>
-     <exports symbol='xmlDefaultSAXHandlerInit' type='function'/>
-     <exports symbol='xmlSAX2InitDefaultSAXHandler' type='function'/>
-     <exports symbol='xmlSAX2GetParameterEntity' type='function'/>
-     <exports symbol='xmlSAX2GetSystemId' type='function'/>
-     <exports symbol='xmlSAX2EntityDecl' type='function'/>
+     <exports symbol='xmlSAX2UnparsedEntityDecl' type='function'/>
+     <exports symbol='xmlSAXDefaultVersion' type='function'/>
+     <exports symbol='xmlSAXVersion' type='function'/>
     </file>
     <file name='c14n'>
      <summary>Provide Canonical XML and Exclusive XML Canonicalization</summary>
      <description>the c14n modules provides a  &quot;Canonical XML&quot; implementation</description>
      <author>Aleksey Sanin &lt;aleksey@aleksey.com&gt; </author>
-     <exports symbol='XML_C14N_1_1' type='enum'/>
      <exports symbol='XML_C14N_1_0' type='enum'/>
+     <exports symbol='XML_C14N_1_1' type='enum'/>
      <exports symbol='XML_C14N_EXCLUSIVE_1_0' type='enum'/>
      <exports symbol='xmlC14NMode' type='typedef'/>
-     <exports symbol='xmlC14NExecute' type='function'/>
+     <exports symbol='xmlC14NDocDumpMemory' type='function'/>
+     <exports symbol='xmlC14NDocSave' type='function'/>
      <exports symbol='xmlC14NDocSaveTo' type='function'/>
+     <exports symbol='xmlC14NExecute' type='function'/>
      <exports symbol='xmlC14NIsVisibleCallback' type='function'/>
-     <exports symbol='xmlC14NDocSave' type='function'/>
-     <exports symbol='xmlC14NDocDumpMemory' type='function'/>
     </file>
     <file name='catalog'>
      <summary>interfaces to the Catalog handling system</summary>
      <description>the catalog module implements the support for XML Catalogs and SGML catalogs </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_CATALOG_PI' type='macro'/>
      <exports symbol='XML_CATALOGS_NAMESPACE' type='macro'/>
+     <exports symbol='XML_CATALOG_PI' type='macro'/>
+     <exports symbol='XML_CATA_ALLOW_ALL' type='enum'/>
+     <exports symbol='XML_CATA_ALLOW_DOCUMENT' type='enum'/>
+     <exports symbol='XML_CATA_ALLOW_GLOBAL' type='enum'/>
      <exports symbol='XML_CATA_ALLOW_NONE' type='enum'/>
      <exports symbol='XML_CATA_PREFER_NONE' type='enum'/>
-     <exports symbol='XML_CATA_ALLOW_GLOBAL' type='enum'/>
      <exports symbol='XML_CATA_PREFER_PUBLIC' type='enum'/>
-     <exports symbol='XML_CATA_ALLOW_DOCUMENT' type='enum'/>
-     <exports symbol='XML_CATA_ALLOW_ALL' type='enum'/>
      <exports symbol='XML_CATA_PREFER_SYSTEM' type='enum'/>
+     <exports symbol='xmlCatalog' type='typedef'/>
      <exports symbol='xmlCatalogAllow' type='typedef'/>
      <exports symbol='xmlCatalogPrefer' type='typedef'/>
-     <exports symbol='xmlCatalog' type='typedef'/>
      <exports symbol='xmlCatalogPtr' type='typedef'/>
-     <exports symbol='xmlFreeCatalog' type='function'/>
-     <exports symbol='xmlLoadCatalogs' type='function'/>
-     <exports symbol='xmlCatalogLocalResolve' type='function'/>
      <exports symbol='xmlACatalogAdd' type='function'/>
-     <exports symbol='xmlACatalogResolvePublic' type='function'/>
-     <exports symbol='xmlCatalogGetDefaults' type='function'/>
+     <exports symbol='xmlACatalogDump' type='function'/>
      <exports symbol='xmlACatalogRemove' type='function'/>
-     <exports symbol='xmlCatalogSetDefaultPrefer' type='function'/>
+     <exports symbol='xmlACatalogResolve' type='function'/>
+     <exports symbol='xmlACatalogResolvePublic' type='function'/>
+     <exports symbol='xmlACatalogResolveSystem' type='function'/>
      <exports symbol='xmlACatalogResolveURI' type='function'/>
      <exports symbol='xmlCatalogAdd' type='function'/>
-     <exports symbol='xmlCatalogResolvePublic' type='function'/>
-     <exports symbol='xmlCatalogGetSystem' type='function'/>
-     <exports symbol='xmlInitializeCatalog' type='function'/>
-     <exports symbol='xmlLoadCatalog' type='function'/>
-     <exports symbol='xmlCatalogRemove' type='function'/>
-     <exports symbol='xmlCatalogIsEmpty' type='function'/>
-     <exports symbol='xmlACatalogDump' type='function'/>
-     <exports symbol='xmlCatalogFreeLocal' type='function'/>
-     <exports symbol='xmlACatalogResolve' type='function'/>
-     <exports symbol='xmlCatalogResolveSystem' type='function'/>
-     <exports symbol='xmlLoadSGMLSuperCatalog' type='function'/>
+     <exports symbol='xmlCatalogAddLocal' type='function'/>
+     <exports symbol='xmlCatalogCleanup' type='function'/>
      <exports symbol='xmlCatalogConvert' type='function'/>
+     <exports symbol='xmlCatalogDump' type='function'/>
+     <exports symbol='xmlCatalogFreeLocal' type='function'/>
+     <exports symbol='xmlCatalogGetDefaults' type='function'/>
      <exports symbol='xmlCatalogGetPublic' type='function'/>
-     <exports symbol='xmlLoadACatalog' type='function'/>
-     <exports symbol='xmlACatalogResolveSystem' type='function'/>
+     <exports symbol='xmlCatalogGetSystem' type='function'/>
+     <exports symbol='xmlCatalogIsEmpty' type='function'/>
+     <exports symbol='xmlCatalogLocalResolve' type='function'/>
      <exports symbol='xmlCatalogLocalResolveURI' type='function'/>
+     <exports symbol='xmlCatalogRemove' type='function'/>
+     <exports symbol='xmlCatalogResolve' type='function'/>
+     <exports symbol='xmlCatalogResolvePublic' type='function'/>
+     <exports symbol='xmlCatalogResolveSystem' type='function'/>
+     <exports symbol='xmlCatalogResolveURI' type='function'/>
+     <exports symbol='xmlCatalogSetDebug' type='function'/>
+     <exports symbol='xmlCatalogSetDefaultPrefer' type='function'/>
+     <exports symbol='xmlCatalogSetDefaults' type='function'/>
      <exports symbol='xmlConvertSGMLCatalog' type='function'/>
-     <exports symbol='xmlCatalogAddLocal' type='function'/>
+     <exports symbol='xmlFreeCatalog' type='function'/>
+     <exports symbol='xmlInitializeCatalog' type='function'/>
+     <exports symbol='xmlLoadACatalog' type='function'/>
+     <exports symbol='xmlLoadCatalog' type='function'/>
+     <exports symbol='xmlLoadCatalogs' type='function'/>
+     <exports symbol='xmlLoadSGMLSuperCatalog' type='function'/>
      <exports symbol='xmlNewCatalog' type='function'/>
      <exports symbol='xmlParseCatalogFile' type='function'/>
-     <exports symbol='xmlCatalogSetDebug' type='function'/>
-     <exports symbol='xmlCatalogResolve' type='function'/>
-     <exports symbol='xmlCatalogSetDefaults' type='function'/>
-     <exports symbol='xmlCatalogDump' type='function'/>
-     <exports symbol='xmlCatalogCleanup' type='function'/>
-     <exports symbol='xmlCatalogResolveURI' type='function'/>
     </file>
     <file name='chvalid'>
      <summary>Unicode character range checking</summary>
      <description>this module exports interfaces for the character range validation APIs  This file is automatically generated from the cvs source definition files using the genChRanges.py Python script </description>
      <author>William Brack &lt;wbrack@mmm.com.hk&gt; </author>
-     <exports symbol='xmlIsExtender_ch' type='macro'/>
-     <exports symbol='xmlIsPubidCharQ' type='macro'/>
-     <exports symbol='xmlIsPubidChar_ch' type='macro'/>
-     <exports symbol='xmlIsIdeographicQ' type='macro'/>
-     <exports symbol='xmlIsExtenderQ' type='macro'/>
-     <exports symbol='xmlIsChar_ch' type='macro'/>
-     <exports symbol='xmlIsDigitQ' type='macro'/>
-     <exports symbol='xmlIsDigit_ch' type='macro'/>
+     <exports symbol='xmlIsBaseCharQ' type='macro'/>
      <exports symbol='xmlIsBaseChar_ch' type='macro'/>
-     <exports symbol='xmlIsCombiningQ' type='macro'/>
      <exports symbol='xmlIsBlankQ' type='macro'/>
-     <exports symbol='xmlIsCharQ' type='macro'/>
-     <exports symbol='xmlIsBaseCharQ' type='macro'/>
      <exports symbol='xmlIsBlank_ch' type='macro'/>
+     <exports symbol='xmlIsCharQ' type='macro'/>
+     <exports symbol='xmlIsChar_ch' type='macro'/>
+     <exports symbol='xmlIsCombiningQ' type='macro'/>
+     <exports symbol='xmlIsDigitQ' type='macro'/>
+     <exports symbol='xmlIsDigit_ch' type='macro'/>
+     <exports symbol='xmlIsExtenderQ' type='macro'/>
+     <exports symbol='xmlIsExtender_ch' type='macro'/>
+     <exports symbol='xmlIsIdeographicQ' type='macro'/>
+     <exports symbol='xmlIsPubidCharQ' type='macro'/>
+     <exports symbol='xmlIsPubidChar_ch' type='macro'/>
      <exports symbol='xmlChLRange' type='typedef'/>
-     <exports symbol='xmlChSRangePtr' type='typedef'/>
      <exports symbol='xmlChLRangePtr' type='typedef'/>
+     <exports symbol='xmlChRangeGroup' type='typedef'/>
      <exports symbol='xmlChRangeGroupPtr' type='typedef'/>
      <exports symbol='xmlChSRange' type='typedef'/>
-     <exports symbol='xmlChRangeGroup' type='typedef'/>
-     <exports symbol='_xmlChSRange' type='struct'/>
+     <exports symbol='xmlChSRangePtr' type='typedef'/>
      <exports symbol='_xmlChLRange' type='struct'/>
      <exports symbol='_xmlChRangeGroup' type='struct'/>
+     <exports symbol='_xmlChSRange' type='struct'/>
      <exports symbol='xmlIsBaseCharGroup' type='variable'/>
-     <exports symbol='xmlIsIdeographicGroup' type='variable'/>
+     <exports symbol='xmlIsCharGroup' type='variable'/>
+     <exports symbol='xmlIsCombiningGroup' type='variable'/>
      <exports symbol='xmlIsDigitGroup' type='variable'/>
      <exports symbol='xmlIsExtenderGroup' type='variable'/>
+     <exports symbol='xmlIsIdeographicGroup' type='variable'/>
      <exports symbol='xmlIsPubidChar_tab' type='variable'/>
-     <exports symbol='xmlIsCharGroup' type='variable'/>
-     <exports symbol='xmlIsCombiningGroup' type='variable'/>
+     <exports symbol='xmlCharInRange' type='function'/>
+     <exports symbol='xmlIsBaseChar' type='function'/>
+     <exports symbol='xmlIsBlank' type='function'/>
      <exports symbol='xmlIsChar' type='function'/>
+     <exports symbol='xmlIsCombining' type='function'/>
      <exports symbol='xmlIsDigit' type='function'/>
-     <exports symbol='xmlIsBlank' type='function'/>
+     <exports symbol='xmlIsExtender' type='function'/>
      <exports symbol='xmlIsIdeographic' type='function'/>
-     <exports symbol='xmlCharInRange' type='function'/>
      <exports symbol='xmlIsPubidChar' type='function'/>
-     <exports symbol='xmlIsCombining' type='function'/>
-     <exports symbol='xmlIsBaseChar' type='function'/>
-     <exports symbol='xmlIsExtender' type='function'/>
     </file>
     <file name='debugXML'>
      <summary>Tree debugging APIs</summary>
      <exports symbol='xmlShellCtxt' type='typedef'/>
      <exports symbol='xmlShellCtxtPtr' type='typedef'/>
      <exports symbol='_xmlShellCtxt' type='struct'/>
-     <exports symbol='xmlDebugDumpAttrList' type='function'/>
-     <exports symbol='xmlLsOneNode' type='function'/>
-     <exports symbol='xmlShellReadlineFunc' type='function'/>
-     <exports symbol='xmlShellSave' type='function'/>
      <exports symbol='xmlBoolToText' type='function'/>
-     <exports symbol='xmlShellWrite' type='function'/>
-     <exports symbol='xmlShellDu' type='function'/>
-     <exports symbol='xmlShellValidate' type='function'/>
      <exports symbol='xmlDebugCheckDocument' type='function'/>
-     <exports symbol='xmlShellPrintXPathResult' type='function'/>
-     <exports symbol='xmlShellCmd' type='function'/>
-     <exports symbol='xmlShellLoad' type='function'/>
-     <exports symbol='xmlDebugDumpString' type='function'/>
-     <exports symbol='xmlShellBase' type='function'/>
-     <exports symbol='xmlShellCat' type='function'/>
+     <exports symbol='xmlDebugDumpAttr' type='function'/>
+     <exports symbol='xmlDebugDumpAttrList' type='function'/>
      <exports symbol='xmlDebugDumpDTD' type='function'/>
-     <exports symbol='xmlDebugDumpNode' type='function'/>
+     <exports symbol='xmlDebugDumpDocument' type='function'/>
+     <exports symbol='xmlDebugDumpDocumentHead' type='function'/>
      <exports symbol='xmlDebugDumpEntities' type='function'/>
-     <exports symbol='xmlShellPrintNode' type='function'/>
-     <exports symbol='xmlShellPwd' type='function'/>
+     <exports symbol='xmlDebugDumpNode' type='function'/>
      <exports symbol='xmlDebugDumpNodeList' type='function'/>
-     <exports symbol='xmlDebugDumpAttr' type='function'/>
-     <exports symbol='xmlDebugDumpDocument' type='function'/>
+     <exports symbol='xmlDebugDumpOneNode' type='function'/>
+     <exports symbol='xmlDebugDumpString' type='function'/>
      <exports symbol='xmlLsCountNode' type='function'/>
-     <exports symbol='xmlShellPrintXPathError' type='function'/>
+     <exports symbol='xmlLsOneNode' type='function'/>
+     <exports symbol='xmlShell' type='function'/>
+     <exports symbol='xmlShellBase' type='function'/>
+     <exports symbol='xmlShellCat' type='function'/>
+     <exports symbol='xmlShellCmd' type='function'/>
      <exports symbol='xmlShellDir' type='function'/>
-     <exports symbol='xmlDebugDumpOneNode' type='function'/>
+     <exports symbol='xmlShellDu' type='function'/>
      <exports symbol='xmlShellList' type='function'/>
-     <exports symbol='xmlDebugDumpDocumentHead' type='function'/>
-     <exports symbol='xmlShell' type='function'/>
+     <exports symbol='xmlShellLoad' type='function'/>
+     <exports symbol='xmlShellPrintNode' type='function'/>
+     <exports symbol='xmlShellPrintXPathError' type='function'/>
+     <exports symbol='xmlShellPrintXPathResult' type='function'/>
+     <exports symbol='xmlShellPwd' type='function'/>
+     <exports symbol='xmlShellReadlineFunc' type='function'/>
+     <exports symbol='xmlShellSave' type='function'/>
+     <exports symbol='xmlShellValidate' type='function'/>
+     <exports symbol='xmlShellWrite' type='function'/>
     </file>
     <file name='dict'>
      <summary>string dictionary</summary>
      <author>Daniel Veillard </author>
      <exports symbol='xmlDict' type='typedef'/>
      <exports symbol='xmlDictPtr' type='typedef'/>
-     <exports symbol='xmlDictGetUsage' type='function'/>
-     <exports symbol='xmlDictReference' type='function'/>
      <exports symbol='xmlDictCleanup' type='function'/>
-     <exports symbol='xmlDictSize' type='function'/>
+     <exports symbol='xmlDictCreate' type='function'/>
+     <exports symbol='xmlDictCreateSub' type='function'/>
      <exports symbol='xmlDictExists' type='function'/>
-     <exports symbol='xmlDictSetLimit' type='function'/>
+     <exports symbol='xmlDictFree' type='function'/>
+     <exports symbol='xmlDictGetUsage' type='function'/>
+     <exports symbol='xmlDictLookup' type='function'/>
      <exports symbol='xmlDictOwns' type='function'/>
      <exports symbol='xmlDictQLookup' type='function'/>
+     <exports symbol='xmlDictReference' type='function'/>
+     <exports symbol='xmlDictSetLimit' type='function'/>
+     <exports symbol='xmlDictSize' type='function'/>
      <exports symbol='xmlInitializeDict' type='function'/>
-     <exports symbol='xmlDictCreateSub' type='function'/>
-     <exports symbol='xmlDictFree' type='function'/>
-     <exports symbol='xmlDictLookup' type='function'/>
-     <exports symbol='xmlDictCreate' type='function'/>
     </file>
     <file name='encoding'>
      <summary>interface for the encoding conversion functions</summary>
      <description>interface for the encoding conversion functions needed for XML basic encoding and iconv() support.  Related specs are rfc2044        (UTF-8 and UTF-16) F. Yergeau Alis Technologies [ISO-10646]    UTF-8 and UTF-16 in Annexes [ISO-8859-1]   ISO Latin-1 characters codes. [UNICODE]      The Unicode Consortium, &quot;The Unicode Standard -- Worldwide Character Encoding -- Version 1.0&quot;, Addison- Wesley, Volume 1, 1991, Volume 2, 1992.  UTF-8 is described in Unicode Technical Report #4. [US-ASCII]     Coded Character Set--7-bit American Standard Code for Information Interchange, ANSI X3.4-1986. </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_CHAR_ENCODING_UCS4LE' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_ERROR' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_2022_JP' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_8859_1' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_8859_2' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_8859_3' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_8859_4' type='enum'/>
      <exports symbol='XML_CHAR_ENCODING_8859_5' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_EBCDIC' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_8859_6' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_8859_7' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_8859_8' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_8859_9' type='enum'/>
      <exports symbol='XML_CHAR_ENCODING_ASCII' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_UCS4_2143' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_EBCDIC' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_ERROR' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_EUC_JP' type='enum'/>
      <exports symbol='XML_CHAR_ENCODING_NONE' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_UTF16BE' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_2022_JP' type='enum'/>
      <exports symbol='XML_CHAR_ENCODING_SHIFT_JIS' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_UCS2' type='enum'/>
      <exports symbol='XML_CHAR_ENCODING_UCS4BE' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_UTF16LE' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_UCS4LE' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_UCS4_2143' type='enum'/>
      <exports symbol='XML_CHAR_ENCODING_UCS4_3412' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_8859_8' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_8859_9' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_8859_6' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_8859_7' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_8859_4' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_EUC_JP' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_8859_2' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_8859_3' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_8859_1' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_UTF16BE' type='enum'/>
+     <exports symbol='XML_CHAR_ENCODING_UTF16LE' type='enum'/>
      <exports symbol='XML_CHAR_ENCODING_UTF8' type='enum'/>
-     <exports symbol='XML_CHAR_ENCODING_UCS2' type='enum'/>
      <exports symbol='xmlCharEncoding' type='typedef'/>
      <exports symbol='xmlCharEncodingHandler' type='typedef'/>
      <exports symbol='xmlCharEncodingHandlerPtr' type='typedef'/>
      <exports symbol='_xmlCharEncodingHandler' type='struct'/>
-     <exports symbol='xmlDelEncodingAlias' type='function'/>
-     <exports symbol='xmlGetEncodingAlias' type='function'/>
-     <exports symbol='xmlRegisterCharEncodingHandler' type='function'/>
      <exports symbol='UTF8Toisolat1' type='function'/>
-     <exports symbol='xmlInitCharEncodingHandlers' type='function'/>
+     <exports symbol='isolat1ToUTF8' type='function'/>
      <exports symbol='xmlAddEncodingAlias' type='function'/>
-     <exports symbol='xmlCleanupEncodingAliases' type='function'/>
+     <exports symbol='xmlCharEncCloseFunc' type='function'/>
+     <exports symbol='xmlCharEncFirstLine' type='function'/>
+     <exports symbol='xmlCharEncInFunc' type='function'/>
      <exports symbol='xmlCharEncOutFunc' type='function'/>
-     <exports symbol='xmlParseCharEncoding' type='function'/>
      <exports symbol='xmlCharEncodingInputFunc' type='function'/>
-     <exports symbol='xmlCleanupCharEncodingHandlers' type='function'/>
-     <exports symbol='xmlNewCharEncodingHandler' type='function'/>
      <exports symbol='xmlCharEncodingOutputFunc' type='function'/>
-     <exports symbol='isolat1ToUTF8' type='function'/>
+     <exports symbol='xmlCleanupCharEncodingHandlers' type='function'/>
+     <exports symbol='xmlCleanupEncodingAliases' type='function'/>
+     <exports symbol='xmlDelEncodingAlias' type='function'/>
+     <exports symbol='xmlDetectCharEncoding' type='function'/>
      <exports symbol='xmlFindCharEncodingHandler' type='function'/>
-     <exports symbol='xmlCharEncInFunc' type='function'/>
      <exports symbol='xmlGetCharEncodingHandler' type='function'/>
-     <exports symbol='xmlCharEncFirstLine' type='function'/>
-     <exports symbol='xmlDetectCharEncoding' type='function'/>
-     <exports symbol='xmlCharEncCloseFunc' type='function'/>
      <exports symbol='xmlGetCharEncodingName' type='function'/>
+     <exports symbol='xmlGetEncodingAlias' type='function'/>
+     <exports symbol='xmlInitCharEncodingHandlers' type='function'/>
+     <exports symbol='xmlNewCharEncodingHandler' type='function'/>
+     <exports symbol='xmlParseCharEncoding' type='function'/>
+     <exports symbol='xmlRegisterCharEncodingHandler' type='function'/>
     </file>
     <file name='entities'>
      <summary>interface for the XML entities handling</summary>
      <author>Daniel Veillard </author>
      <exports symbol='XML_EXTERNAL_GENERAL_PARSED_ENTITY' type='enum'/>
      <exports symbol='XML_EXTERNAL_GENERAL_UNPARSED_ENTITY' type='enum'/>
-     <exports symbol='XML_INTERNAL_PREDEFINED_ENTITY' type='enum'/>
      <exports symbol='XML_EXTERNAL_PARAMETER_ENTITY' type='enum'/>
-     <exports symbol='XML_INTERNAL_PARAMETER_ENTITY' type='enum'/>
      <exports symbol='XML_INTERNAL_GENERAL_ENTITY' type='enum'/>
-     <exports symbol='xmlEntityType' type='typedef'/>
+     <exports symbol='XML_INTERNAL_PARAMETER_ENTITY' type='enum'/>
+     <exports symbol='XML_INTERNAL_PREDEFINED_ENTITY' type='enum'/>
      <exports symbol='xmlEntitiesTable' type='typedef'/>
      <exports symbol='xmlEntitiesTablePtr' type='typedef'/>
+     <exports symbol='xmlEntityType' type='typedef'/>
      <exports symbol='_xmlEntity' type='struct'/>
      <exports symbol='xmlAddDocEntity' type='function'/>
-     <exports symbol='xmlNewEntity' type='function'/>
-     <exports symbol='xmlEncodeEntitiesReentrant' type='function'/>
-     <exports symbol='xmlGetDocEntity' type='function'/>
-     <exports symbol='xmlGetDtdEntity' type='function'/>
      <exports symbol='xmlAddDtdEntity' type='function'/>
+     <exports symbol='xmlCleanupPredefinedEntities' type='function'/>
      <exports symbol='xmlCopyEntitiesTable' type='function'/>
-     <exports symbol='xmlFreeEntitiesTable' type='function'/>
-     <exports symbol='xmlGetParameterEntity' type='function'/>
+     <exports symbol='xmlCreateEntitiesTable' type='function'/>
      <exports symbol='xmlDumpEntitiesTable' type='function'/>
      <exports symbol='xmlDumpEntityDecl' type='function'/>
-     <exports symbol='xmlCleanupPredefinedEntities' type='function'/>
-     <exports symbol='xmlCreateEntitiesTable' type='function'/>
      <exports symbol='xmlEncodeEntities' type='function'/>
+     <exports symbol='xmlEncodeEntitiesReentrant' type='function'/>
      <exports symbol='xmlEncodeSpecialChars' type='function'/>
+     <exports symbol='xmlFreeEntitiesTable' type='function'/>
+     <exports symbol='xmlGetDocEntity' type='function'/>
+     <exports symbol='xmlGetDtdEntity' type='function'/>
+     <exports symbol='xmlGetParameterEntity' type='function'/>
      <exports symbol='xmlGetPredefinedEntity' type='function'/>
      <exports symbol='xmlInitializePredefinedEntities' type='function'/>
+     <exports symbol='xmlNewEntity' type='function'/>
     </file>
     <file name='globals'>
      <summary>interface for all global variables of the library</summary>
      <description>all the global variables and thread handling for those variables is handled by this module.  The bottom of this file is automatically generated by build_glob.py based on the description file global.data </description>
      <author>Gary Pennington &lt;Gary.Pennington@uk.sun.com&gt;, Daniel Veillard </author>
-     <exports symbol='xmlGlobalStatePtr' type='typedef'/>
      <exports symbol='xmlGlobalState' type='typedef'/>
+     <exports symbol='xmlGlobalStatePtr' type='typedef'/>
      <exports symbol='_xmlGlobalState' type='struct'/>
-     <exports symbol='xmlTreeIndentString' type='variable'/>
-     <exports symbol='xmlIndentTreeOutput' type='variable'/>
+     <exports symbol='htmlDefaultSAXHandler' type='variable'/>
+     <exports symbol='oldXMLWDcompatibility' type='variable'/>
+     <exports symbol='xmlBufferAllocScheme' type='variable'/>
      <exports symbol='xmlDefaultBufferSize' type='variable'/>
-     <exports symbol='xmlRegisterNodeDefaultValue' type='variable'/>
-     <exports symbol='xmlGetWarningsDefaultValue' type='variable'/>
-     <exports symbol='xmlGenericErrorContext' type='variable'/>
+     <exports symbol='xmlDefaultSAXHandler' type='variable'/>
+     <exports symbol='xmlDefaultSAXLocator' type='variable'/>
      <exports symbol='xmlDeregisterNodeDefaultValue' type='variable'/>
+     <exports symbol='xmlDoValidityCheckingDefaultValue' type='variable'/>
+     <exports symbol='xmlFree' type='variable'/>
      <exports symbol='xmlGenericError' type='variable'/>
+     <exports symbol='xmlGenericErrorContext' type='variable'/>
+     <exports symbol='xmlGetWarningsDefaultValue' type='variable'/>
+     <exports symbol='xmlIndentTreeOutput' type='variable'/>
+     <exports symbol='xmlKeepBlanksDefaultValue' type='variable'/>
+     <exports symbol='xmlLastError' type='variable'/>
+     <exports symbol='xmlLineNumbersDefaultValue' type='variable'/>
+     <exports symbol='xmlLoadExtDtdDefaultValue' type='variable'/>
      <exports symbol='xmlMalloc' type='variable'/>
-     <exports symbol='xmlParserVersion' type='variable'/>
-     <exports symbol='xmlStructuredError' type='variable'/>
-     <exports symbol='xmlStructuredErrorContext' type='variable'/>
-     <exports symbol='xmlDoValidityCheckingDefaultValue' type='variable'/>
+     <exports symbol='xmlMallocAtomic' type='variable'/>
+     <exports symbol='xmlMemStrdup' type='variable'/>
      <exports symbol='xmlOutputBufferCreateFilenameValue' type='variable'/>
-     <exports symbol='xmlPedanticParserDefaultValue' type='variable'/>
      <exports symbol='xmlParserDebugEntities' type='variable'/>
+     <exports symbol='xmlParserInputBufferCreateFilenameValue' type='variable'/>
+     <exports symbol='xmlParserVersion' type='variable'/>
+     <exports symbol='xmlPedanticParserDefaultValue' type='variable'/>
      <exports symbol='xmlRealloc' type='variable'/>
-     <exports symbol='xmlMemStrdup' type='variable'/>
-     <exports symbol='htmlDefaultSAXHandler' type='variable'/>
+     <exports symbol='xmlRegisterNodeDefaultValue' type='variable'/>
      <exports symbol='xmlSaveNoEmptyTags' type='variable'/>
-     <exports symbol='xmlParserInputBufferCreateFilenameValue' type='variable'/>
-     <exports symbol='xmlKeepBlanksDefaultValue' type='variable'/>
+     <exports symbol='xmlStructuredError' type='variable'/>
+     <exports symbol='xmlStructuredErrorContext' type='variable'/>
      <exports symbol='xmlSubstituteEntitiesDefaultValue' type='variable'/>
-     <exports symbol='xmlMallocAtomic' type='variable'/>
-     <exports symbol='xmlBufferAllocScheme' type='variable'/>
-     <exports symbol='oldXMLWDcompatibility' type='variable'/>
-     <exports symbol='xmlFree' type='variable'/>
-     <exports symbol='xmlLoadExtDtdDefaultValue' type='variable'/>
-     <exports symbol='xmlLastError' type='variable'/>
-     <exports symbol='xmlLineNumbersDefaultValue' type='variable'/>
-     <exports symbol='xmlDefaultSAXHandler' type='variable'/>
-     <exports symbol='xmlDefaultSAXLocator' type='variable'/>
-     <exports symbol='xmlThrDefSetStructuredErrorFunc' type='function'/>
+     <exports symbol='xmlTreeIndentString' type='variable'/>
+     <exports symbol='xmlCleanupGlobals' type='function'/>
+     <exports symbol='xmlDeregisterNodeDefault' type='function'/>
+     <exports symbol='xmlDeregisterNodeFunc' type='function'/>
+     <exports symbol='xmlInitGlobals' type='function'/>
      <exports symbol='xmlInitializeGlobalState' type='function'/>
-     <exports symbol='xmlThrDefBufferAllocScheme' type='function'/>
-     <exports symbol='xmlThrDefPedanticParserDefaultValue' type='function'/>
-     <exports symbol='xmlRegisterNodeDefault' type='function'/>
+     <exports symbol='xmlOutputBufferCreateFilenameDefault' type='function'/>
+     <exports symbol='xmlOutputBufferCreateFilenameFunc' type='function'/>
+     <exports symbol='xmlParserInputBufferCreateFilenameDefault' type='function'/>
      <exports symbol='xmlParserInputBufferCreateFilenameFunc' type='function'/>
-     <exports symbol='xmlThrDefOutputBufferCreateFilenameDefault' type='function'/>
-     <exports symbol='xmlDeregisterNodeDefault' type='function'/>
+     <exports symbol='xmlRegisterNodeDefault' type='function'/>
+     <exports symbol='xmlRegisterNodeFunc' type='function'/>
+     <exports symbol='xmlThrDefBufferAllocScheme' type='function'/>
      <exports symbol='xmlThrDefDefaultBufferSize' type='function'/>
-     <exports symbol='xmlOutputBufferCreateFilenameDefault' type='function'/>
-     <exports symbol='xmlThrDefLoadExtDtdDefaultValue' type='function'/>
-     <exports symbol='xmlThrDefRegisterNodeDefault' type='function'/>
+     <exports symbol='xmlThrDefDeregisterNodeDefault' type='function'/>
+     <exports symbol='xmlThrDefDoValidityCheckingDefaultValue' type='function'/>
+     <exports symbol='xmlThrDefGetWarningsDefaultValue' type='function'/>
+     <exports symbol='xmlThrDefIndentTreeOutput' type='function'/>
      <exports symbol='xmlThrDefKeepBlanksDefaultValue' type='function'/>
-     <exports symbol='xmlDeregisterNodeFunc' type='function'/>
+     <exports symbol='xmlThrDefLineNumbersDefaultValue' type='function'/>
+     <exports symbol='xmlThrDefLoadExtDtdDefaultValue' type='function'/>
+     <exports symbol='xmlThrDefOutputBufferCreateFilenameDefault' type='function'/>
      <exports symbol='xmlThrDefParserDebugEntities' type='function'/>
      <exports symbol='xmlThrDefParserInputBufferCreateFilenameDefault' type='function'/>
+     <exports symbol='xmlThrDefPedanticParserDefaultValue' type='function'/>
+     <exports symbol='xmlThrDefRegisterNodeDefault' type='function'/>
+     <exports symbol='xmlThrDefSaveNoEmptyTags' type='function'/>
      <exports symbol='xmlThrDefSetGenericErrorFunc' type='function'/>
-     <exports symbol='xmlParserInputBufferCreateFilenameDefault' type='function'/>
-     <exports symbol='xmlThrDefDoValidityCheckingDefaultValue' type='function'/>
-     <exports symbol='xmlCleanupGlobals' type='function'/>
-     <exports symbol='xmlThrDefGetWarningsDefaultValue' type='function'/>
-     <exports symbol='xmlThrDefDeregisterNodeDefault' type='function'/>
+     <exports symbol='xmlThrDefSetStructuredErrorFunc' type='function'/>
      <exports symbol='xmlThrDefSubstituteEntitiesDefaultValue' type='function'/>
-     <exports symbol='xmlRegisterNodeFunc' type='function'/>
-     <exports symbol='xmlThrDefSaveNoEmptyTags' type='function'/>
-     <exports symbol='xmlThrDefIndentTreeOutput' type='function'/>
-     <exports symbol='xmlOutputBufferCreateFilenameFunc' type='function'/>
-     <exports symbol='xmlInitGlobals' type='function'/>
-     <exports symbol='xmlThrDefLineNumbersDefaultValue' type='function'/>
      <exports symbol='xmlThrDefTreeIndentString' type='function'/>
     </file>
     <file name='hash'>
      <exports symbol='XML_CAST_FPTR' type='macro'/>
      <exports symbol='xmlHashTable' type='typedef'/>
      <exports symbol='xmlHashTablePtr' type='typedef'/>
-     <exports symbol='xmlHashScanFull' type='function'/>
-     <exports symbol='xmlHashScan' type='function'/>
-     <exports symbol='xmlHashScannerFull' type='function'/>
-     <exports symbol='xmlHashCreateDict' type='function'/>
      <exports symbol='xmlHashAddEntry' type='function'/>
-     <exports symbol='xmlHashUpdateEntry' type='function'/>
-     <exports symbol='xmlHashQLookup3' type='function'/>
-     <exports symbol='xmlHashQLookup2' type='function'/>
-     <exports symbol='xmlHashScan3' type='function'/>
-     <exports symbol='xmlHashScanner' type='function'/>
-     <exports symbol='xmlHashDeallocator' type='function'/>
+     <exports symbol='xmlHashAddEntry2' type='function'/>
+     <exports symbol='xmlHashAddEntry3' type='function'/>
+     <exports symbol='xmlHashCopier' type='function'/>
+     <exports symbol='xmlHashCopy' type='function'/>
      <exports symbol='xmlHashCreate' type='function'/>
+     <exports symbol='xmlHashCreateDict' type='function'/>
+     <exports symbol='xmlHashDeallocator' type='function'/>
+     <exports symbol='xmlHashDefaultDeallocator' type='function'/>
      <exports symbol='xmlHashFree' type='function'/>
      <exports symbol='xmlHashLookup' type='function'/>
+     <exports symbol='xmlHashLookup2' type='function'/>
+     <exports symbol='xmlHashLookup3' type='function'/>
      <exports symbol='xmlHashQLookup' type='function'/>
-     <exports symbol='xmlHashUpdateEntry2' type='function'/>
+     <exports symbol='xmlHashQLookup2' type='function'/>
+     <exports symbol='xmlHashQLookup3' type='function'/>
+     <exports symbol='xmlHashRemoveEntry' type='function'/>
      <exports symbol='xmlHashRemoveEntry2' type='function'/>
      <exports symbol='xmlHashRemoveEntry3' type='function'/>
-     <exports symbol='xmlHashCopy' type='function'/>
+     <exports symbol='xmlHashScan' type='function'/>
+     <exports symbol='xmlHashScan3' type='function'/>
+     <exports symbol='xmlHashScanFull' type='function'/>
      <exports symbol='xmlHashScanFull3' type='function'/>
-     <exports symbol='xmlHashUpdateEntry3' type='function'/>
-     <exports symbol='xmlHashDefaultDeallocator' type='function'/>
-     <exports symbol='xmlHashLookup3' type='function'/>
-     <exports symbol='xmlHashLookup2' type='function'/>
-     <exports symbol='xmlHashRemoveEntry' type='function'/>
-     <exports symbol='xmlHashCopier' type='function'/>
-     <exports symbol='xmlHashAddEntry2' type='function'/>
-     <exports symbol='xmlHashAddEntry3' type='function'/>
+     <exports symbol='xmlHashScanner' type='function'/>
+     <exports symbol='xmlHashScannerFull' type='function'/>
      <exports symbol='xmlHashSize' type='function'/>
+     <exports symbol='xmlHashUpdateEntry' type='function'/>
+     <exports symbol='xmlHashUpdateEntry2' type='function'/>
+     <exports symbol='xmlHashUpdateEntry3' type='function'/>
     </file>
     <file name='list'>
      <summary>lists interfaces</summary>
      <exports symbol='xmlLinkPtr' type='typedef'/>
      <exports symbol='xmlList' type='typedef'/>
      <exports symbol='xmlListPtr' type='typedef'/>
-     <exports symbol='xmlListInsert' type='function'/>
-     <exports symbol='xmlListEmpty' type='function'/>
-     <exports symbol='xmlListSort' type='function'/>
-     <exports symbol='xmlListDeallocator' type='function'/>
-     <exports symbol='xmlListMerge' type='function'/>
-     <exports symbol='xmlListCreate' type='function'/>
-     <exports symbol='xmlListDup' type='function'/>
-     <exports symbol='xmlListRemoveLast' type='function'/>
-     <exports symbol='xmlListWalk' type='function'/>
-     <exports symbol='xmlListRemoveAll' type='function'/>
-     <exports symbol='xmlListCopy' type='function'/>
-     <exports symbol='xmlListPopFront' type='function'/>
-     <exports symbol='xmlListSearch' type='function'/>
-     <exports symbol='xmlListWalker' type='function'/>
-     <exports symbol='xmlListRemoveFirst' type='function'/>
-     <exports symbol='xmlListReverseWalk' type='function'/>
      <exports symbol='xmlLinkGetData' type='function'/>
-     <exports symbol='xmlListClear' type='function'/>
      <exports symbol='xmlListAppend' type='function'/>
-     <exports symbol='xmlListReverse' type='function'/>
+     <exports symbol='xmlListClear' type='function'/>
+     <exports symbol='xmlListCopy' type='function'/>
+     <exports symbol='xmlListCreate' type='function'/>
      <exports symbol='xmlListDataCompare' type='function'/>
-     <exports symbol='xmlListSize' type='function'/>
-     <exports symbol='xmlListPushFront' type='function'/>
+     <exports symbol='xmlListDeallocator' type='function'/>
+     <exports symbol='xmlListDelete' type='function'/>
+     <exports symbol='xmlListDup' type='function'/>
+     <exports symbol='xmlListEmpty' type='function'/>
      <exports symbol='xmlListEnd' type='function'/>
+     <exports symbol='xmlListFront' type='function'/>
+     <exports symbol='xmlListInsert' type='function'/>
+     <exports symbol='xmlListMerge' type='function'/>
      <exports symbol='xmlListPopBack' type='function'/>
-     <exports symbol='xmlListReverseSearch' type='function'/>
+     <exports symbol='xmlListPopFront' type='function'/>
      <exports symbol='xmlListPushBack' type='function'/>
-     <exports symbol='xmlListFront' type='function'/>
-     <exports symbol='xmlListDelete' type='function'/>
+     <exports symbol='xmlListPushFront' type='function'/>
+     <exports symbol='xmlListRemoveAll' type='function'/>
+     <exports symbol='xmlListRemoveFirst' type='function'/>
+     <exports symbol='xmlListRemoveLast' type='function'/>
+     <exports symbol='xmlListReverse' type='function'/>
+     <exports symbol='xmlListReverseSearch' type='function'/>
+     <exports symbol='xmlListReverseWalk' type='function'/>
+     <exports symbol='xmlListSearch' type='function'/>
+     <exports symbol='xmlListSize' type='function'/>
+     <exports symbol='xmlListSort' type='function'/>
+     <exports symbol='xmlListWalk' type='function'/>
+     <exports symbol='xmlListWalker' type='function'/>
     </file>
     <file name='nanoftp'>
      <summary>minimal FTP implementation</summary>
      <deprecated/>
      <exports symbol='INVALID_SOCKET' type='macro'/>
      <exports symbol='SOCKET' type='macro'/>
-     <exports symbol='xmlNanoFTPQuit' type='function'/>
-     <exports symbol='xmlNanoFTPClose' type='function'/>
+     <exports symbol='ftpDataCallback' type='function'/>
      <exports symbol='ftpListCallback' type='function'/>
+     <exports symbol='xmlNanoFTPCheckResponse' type='function'/>
+     <exports symbol='xmlNanoFTPCleanup' type='function'/>
+     <exports symbol='xmlNanoFTPClose' type='function'/>
      <exports symbol='xmlNanoFTPCloseConnection' type='function'/>
-     <exports symbol='xmlNanoFTPProxy' type='function'/>
-     <exports symbol='xmlNanoFTPUpdateURL' type='function'/>
-     <exports symbol='xmlNanoFTPGetConnection' type='function'/>
+     <exports symbol='xmlNanoFTPConnect' type='function'/>
+     <exports symbol='xmlNanoFTPConnectTo' type='function'/>
+     <exports symbol='xmlNanoFTPCwd' type='function'/>
      <exports symbol='xmlNanoFTPDele' type='function'/>
-     <exports symbol='xmlNanoFTPNewCtxt' type='function'/>
-     <exports symbol='xmlNanoFTPCheckResponse' type='function'/>
-     <exports symbol='xmlNanoFTPScanProxy' type='function'/>
-     <exports symbol='ftpDataCallback' type='function'/>
+     <exports symbol='xmlNanoFTPFreeCtxt' type='function'/>
+     <exports symbol='xmlNanoFTPGet' type='function'/>
+     <exports symbol='xmlNanoFTPGetConnection' type='function'/>
      <exports symbol='xmlNanoFTPGetResponse' type='function'/>
-     <exports symbol='xmlNanoFTPCwd' type='function'/>
+     <exports symbol='xmlNanoFTPGetSocket' type='function'/>
      <exports symbol='xmlNanoFTPInit' type='function'/>
-     <exports symbol='xmlNanoFTPConnectTo' type='function'/>
      <exports symbol='xmlNanoFTPList' type='function'/>
+     <exports symbol='xmlNanoFTPNewCtxt' type='function'/>
      <exports symbol='xmlNanoFTPOpen' type='function'/>
-     <exports symbol='xmlNanoFTPConnect' type='function'/>
-     <exports symbol='xmlNanoFTPGetSocket' type='function'/>
-     <exports symbol='xmlNanoFTPGet' type='function'/>
+     <exports symbol='xmlNanoFTPProxy' type='function'/>
+     <exports symbol='xmlNanoFTPQuit' type='function'/>
      <exports symbol='xmlNanoFTPRead' type='function'/>
-     <exports symbol='xmlNanoFTPFreeCtxt' type='function'/>
-     <exports symbol='xmlNanoFTPCleanup' type='function'/>
+     <exports symbol='xmlNanoFTPScanProxy' type='function'/>
+     <exports symbol='xmlNanoFTPUpdateURL' type='function'/>
     </file>
     <file name='nanohttp'>
      <summary>minimal HTTP implementation</summary>
      <description>minimal HTTP implementation allowing to fetch resources like external subset. </description>
      <author>Daniel Veillard </author>
-     <exports symbol='xmlNanoHTTPRead' type='function'/>
-     <exports symbol='xmlNanoHTTPSave' type='function'/>
-     <exports symbol='xmlNanoHTTPRedir' type='function'/>
      <exports symbol='xmlNanoHTTPAuthHeader' type='function'/>
-     <exports symbol='xmlNanoHTTPFetch' type='function'/>
-     <exports symbol='xmlNanoHTTPContentLength' type='function'/>
-     <exports symbol='xmlNanoHTTPMimeType' type='function'/>
-     <exports symbol='xmlNanoHTTPClose' type='function'/>
      <exports symbol='xmlNanoHTTPCleanup' type='function'/>
-     <exports symbol='xmlNanoHTTPMethod' type='function'/>
+     <exports symbol='xmlNanoHTTPClose' type='function'/>
+     <exports symbol='xmlNanoHTTPContentLength' type='function'/>
+     <exports symbol='xmlNanoHTTPEncoding' type='function'/>
+     <exports symbol='xmlNanoHTTPFetch' type='function'/>
      <exports symbol='xmlNanoHTTPInit' type='function'/>
+     <exports symbol='xmlNanoHTTPMethod' type='function'/>
+     <exports symbol='xmlNanoHTTPMethodRedir' type='function'/>
+     <exports symbol='xmlNanoHTTPMimeType' type='function'/>
      <exports symbol='xmlNanoHTTPOpen' type='function'/>
      <exports symbol='xmlNanoHTTPOpenRedir' type='function'/>
-     <exports symbol='xmlNanoHTTPMethodRedir' type='function'/>
-     <exports symbol='xmlNanoHTTPScanProxy' type='function'/>
-     <exports symbol='xmlNanoHTTPEncoding' type='function'/>
+     <exports symbol='xmlNanoHTTPRead' type='function'/>
+     <exports symbol='xmlNanoHTTPRedir' type='function'/>
      <exports symbol='xmlNanoHTTPReturnCode' type='function'/>
+     <exports symbol='xmlNanoHTTPSave' type='function'/>
+     <exports symbol='xmlNanoHTTPScanProxy' type='function'/>
     </file>
     <file name='parser'>
      <summary>the core parser module</summary>
      <description>Interfaces, constants and types related to the XML parser </description>
      <author>Daniel Veillard </author>
      <exports symbol='XML_COMPLETE_ATTRS' type='macro'/>
-     <exports symbol='XML_SKIP_IDS' type='macro'/>
-     <exports symbol='XML_SAX2_MAGIC' type='macro'/>
-     <exports symbol='XML_DETECT_IDS' type='macro'/>
      <exports symbol='XML_DEFAULT_VERSION' type='macro'/>
-     <exports symbol='XML_WITH_NONE' type='enum'/>
-     <exports symbol='XML_WITH_SCHEMATRON' type='enum'/>
-     <exports symbol='XML_PARSER_ENTITY_DECL' type='enum'/>
+     <exports symbol='XML_DETECT_IDS' type='macro'/>
+     <exports symbol='XML_SAX2_MAGIC' type='macro'/>
+     <exports symbol='XML_SKIP_IDS' type='macro'/>
+     <exports symbol='XML_PARSER_ATTRIBUTE_VALUE' type='enum'/>
+     <exports symbol='XML_PARSER_CDATA_SECTION' type='enum'/>
+     <exports symbol='XML_PARSER_COMMENT' type='enum'/>
      <exports symbol='XML_PARSER_CONTENT' type='enum'/>
-     <exports symbol='XML_PARSE_NOBLANKS' type='enum'/>
-     <exports symbol='XML_WITH_PATTERN' type='enum'/>
-     <exports symbol='XML_PARSE_NODICT' type='enum'/>
-     <exports symbol='XML_PARSER_SYSTEM_LITERAL' type='enum'/>
-     <exports symbol='XML_WITH_REGEXP' type='enum'/>
+     <exports symbol='XML_PARSER_DTD' type='enum'/>
+     <exports symbol='XML_PARSER_END_TAG' type='enum'/>
+     <exports symbol='XML_PARSER_ENTITY_DECL' type='enum'/>
+     <exports symbol='XML_PARSER_ENTITY_VALUE' type='enum'/>
+     <exports symbol='XML_PARSER_EOF' type='enum'/>
+     <exports symbol='XML_PARSER_EPILOG' type='enum'/>
+     <exports symbol='XML_PARSER_IGNORE' type='enum'/>
+     <exports symbol='XML_PARSER_MISC' type='enum'/>
      <exports symbol='XML_PARSER_PI' type='enum'/>
-     <exports symbol='XML_PARSE_UNKNOWN' type='enum'/>
-     <exports symbol='XML_WITH_XPATH' type='enum'/>
-     <exports symbol='XML_WITH_HTML' type='enum'/>
-     <exports symbol='XML_PARSE_OLDSAX' type='enum'/>
-     <exports symbol='XML_WITH_LZMA' type='enum'/>
-     <exports symbol='XML_WITH_ICU' type='enum'/>
-     <exports symbol='XML_WITH_C14N' type='enum'/>
-     <exports symbol='XML_PARSE_PUSH_DOM' type='enum'/>
      <exports symbol='XML_PARSER_PROLOG' type='enum'/>
-     <exports symbol='XML_PARSE_NONET' type='enum'/>
-     <exports symbol='XML_WITH_HTTP' type='enum'/>
-     <exports symbol='XML_PARSER_EPILOG' type='enum'/>
-     <exports symbol='XML_PARSER_END_TAG' type='enum'/>
-     <exports symbol='XML_WITH_DEBUG' type='enum'/>
-     <exports symbol='XML_WITH_READER' type='enum'/>
-     <exports symbol='XML_PARSE_DTDVALID' type='enum'/>
+     <exports symbol='XML_PARSER_PUBLIC_LITERAL' type='enum'/>
+     <exports symbol='XML_PARSER_START' type='enum'/>
+     <exports symbol='XML_PARSER_START_TAG' type='enum'/>
+     <exports symbol='XML_PARSER_SYSTEM_LITERAL' type='enum'/>
+     <exports symbol='XML_PARSE_BIG_LINES' type='enum'/>
+     <exports symbol='XML_PARSE_COMPACT' type='enum'/>
      <exports symbol='XML_PARSE_DOM' type='enum'/>
-     <exports symbol='XML_PARSER_ATTRIBUTE_VALUE' type='enum'/>
-     <exports symbol='XML_PARSE_PUSH_SAX' type='enum'/>
-     <exports symbol='XML_WITH_TREE' type='enum'/>
-     <exports symbol='XML_PARSE_RECOVER' type='enum'/>
-     <exports symbol='XML_WITH_SCHEMAS' type='enum'/>
-     <exports symbol='XML_PARSE_PEDANTIC' type='enum'/>
-     <exports symbol='XML_PARSER_EOF' type='enum'/>
-     <exports symbol='XML_PARSER_CDATA_SECTION' type='enum'/>
-     <exports symbol='XML_WITH_LEGACY' type='enum'/>
-     <exports symbol='XML_WITH_OUTPUT' type='enum'/>
-     <exports symbol='XML_PARSE_XINCLUDE' type='enum'/>
-     <exports symbol='XML_PARSE_NOCDATA' type='enum'/>
+     <exports symbol='XML_PARSE_DTDATTR' type='enum'/>
+     <exports symbol='XML_PARSE_DTDLOAD' type='enum'/>
+     <exports symbol='XML_PARSE_DTDVALID' type='enum'/>
+     <exports symbol='XML_PARSE_HUGE' type='enum'/>
+     <exports symbol='XML_PARSE_IGNORE_ENC' type='enum'/>
      <exports symbol='XML_PARSE_NOBASEFIX' type='enum'/>
-     <exports symbol='XML_PARSE_BIG_LINES' type='enum'/>
-     <exports symbol='XML_WITH_XINCLUDE' type='enum'/>
-     <exports symbol='XML_WITH_PUSH' type='enum'/>
-     <exports symbol='XML_PARSE_READER' type='enum'/>
-     <exports symbol='XML_WITH_THREAD' type='enum'/>
-     <exports symbol='XML_PARSE_SAX' type='enum'/>
+     <exports symbol='XML_PARSE_NOBLANKS' type='enum'/>
+     <exports symbol='XML_PARSE_NOCDATA' type='enum'/>
+     <exports symbol='XML_PARSE_NODICT' type='enum'/>
      <exports symbol='XML_PARSE_NOENT' type='enum'/>
-     <exports symbol='XML_PARSER_ENTITY_VALUE' type='enum'/>
-     <exports symbol='XML_PARSE_DTDLOAD' type='enum'/>
-     <exports symbol='XML_PARSE_DTDATTR' type='enum'/>
-     <exports symbol='XML_PARSE_NOWARNING' type='enum'/>
-     <exports symbol='XML_PARSE_OLD10' type='enum'/>
      <exports symbol='XML_PARSE_NOERROR' type='enum'/>
-     <exports symbol='XML_WITH_ISO8859X' type='enum'/>
-     <exports symbol='XML_WITH_EXPR' type='enum'/>
+     <exports symbol='XML_PARSE_NONET' type='enum'/>
+     <exports symbol='XML_PARSE_NOWARNING' type='enum'/>
+     <exports symbol='XML_PARSE_NOXINCNODE' type='enum'/>
      <exports symbol='XML_PARSE_NSCLEAN' type='enum'/>
-     <exports symbol='XML_WITH_UNICODE' type='enum'/>
-     <exports symbol='XML_WITH_CATALOG' type='enum'/>
-     <exports symbol='XML_WITH_MODULES' type='enum'/>
-     <exports symbol='XML_WITH_XPTR' type='enum'/>
-     <exports symbol='XML_PARSE_IGNORE_ENC' type='enum'/>
-     <exports symbol='XML_PARSE_COMPACT' type='enum'/>
+     <exports symbol='XML_PARSE_OLD10' type='enum'/>
+     <exports symbol='XML_PARSE_OLDSAX' type='enum'/>
+     <exports symbol='XML_PARSE_PEDANTIC' type='enum'/>
+     <exports symbol='XML_PARSE_PUSH_DOM' type='enum'/>
+     <exports symbol='XML_PARSE_PUSH_SAX' type='enum'/>
+     <exports symbol='XML_PARSE_READER' type='enum'/>
+     <exports symbol='XML_PARSE_RECOVER' type='enum'/>
+     <exports symbol='XML_PARSE_SAX' type='enum'/>
      <exports symbol='XML_PARSE_SAX1' type='enum'/>
-     <exports symbol='XML_WITH_ZLIB' type='enum'/>
-     <exports symbol='XML_PARSE_NOXINCNODE' type='enum'/>
-     <exports symbol='XML_PARSER_DTD' type='enum'/>
-     <exports symbol='XML_PARSER_MISC' type='enum'/>
-     <exports symbol='XML_PARSER_START' type='enum'/>
+     <exports symbol='XML_PARSE_UNKNOWN' type='enum'/>
+     <exports symbol='XML_PARSE_XINCLUDE' type='enum'/>
+     <exports symbol='XML_WITH_AUTOMATA' type='enum'/>
+     <exports symbol='XML_WITH_C14N' type='enum'/>
+     <exports symbol='XML_WITH_CATALOG' type='enum'/>
+     <exports symbol='XML_WITH_DEBUG' type='enum'/>
      <exports symbol='XML_WITH_DEBUG_MEM' type='enum'/>
-     <exports symbol='XML_PARSE_HUGE' type='enum'/>
+     <exports symbol='XML_WITH_DEBUG_RUN' type='enum'/>
+     <exports symbol='XML_WITH_EXPR' type='enum'/>
      <exports symbol='XML_WITH_FTP' type='enum'/>
-     <exports symbol='XML_PARSER_START_TAG' type='enum'/>
-     <exports symbol='XML_PARSER_IGNORE' type='enum'/>
-     <exports symbol='XML_PARSER_COMMENT' type='enum'/>
-     <exports symbol='XML_PARSER_PUBLIC_LITERAL' type='enum'/>
+     <exports symbol='XML_WITH_HTML' type='enum'/>
+     <exports symbol='XML_WITH_HTTP' type='enum'/>
      <exports symbol='XML_WITH_ICONV' type='enum'/>
-     <exports symbol='XML_WITH_WRITER' type='enum'/>
-     <exports symbol='XML_WITH_AUTOMATA' type='enum'/>
-     <exports symbol='XML_WITH_DEBUG_RUN' type='enum'/>
+     <exports symbol='XML_WITH_ICU' type='enum'/>
+     <exports symbol='XML_WITH_ISO8859X' type='enum'/>
+     <exports symbol='XML_WITH_LEGACY' type='enum'/>
+     <exports symbol='XML_WITH_LZMA' type='enum'/>
+     <exports symbol='XML_WITH_MODULES' type='enum'/>
+     <exports symbol='XML_WITH_NONE' type='enum'/>
+     <exports symbol='XML_WITH_OUTPUT' type='enum'/>
+     <exports symbol='XML_WITH_PATTERN' type='enum'/>
+     <exports symbol='XML_WITH_PUSH' type='enum'/>
+     <exports symbol='XML_WITH_READER' type='enum'/>
+     <exports symbol='XML_WITH_REGEXP' type='enum'/>
      <exports symbol='XML_WITH_SAX1' type='enum'/>
+     <exports symbol='XML_WITH_SCHEMAS' type='enum'/>
+     <exports symbol='XML_WITH_SCHEMATRON' type='enum'/>
+     <exports symbol='XML_WITH_THREAD' type='enum'/>
+     <exports symbol='XML_WITH_TREE' type='enum'/>
+     <exports symbol='XML_WITH_UNICODE' type='enum'/>
      <exports symbol='XML_WITH_VALID' type='enum'/>
-     <exports symbol='xmlParserNodeInfoSeqPtr' type='typedef'/>
-     <exports symbol='xmlSAXHandlerV1' type='typedef'/>
+     <exports symbol='XML_WITH_WRITER' type='enum'/>
+     <exports symbol='XML_WITH_XINCLUDE' type='enum'/>
+     <exports symbol='XML_WITH_XPATH' type='enum'/>
+     <exports symbol='XML_WITH_XPTR' type='enum'/>
+     <exports symbol='XML_WITH_ZLIB' type='enum'/>
+     <exports symbol='xmlFeature' type='typedef'/>
      <exports symbol='xmlParserInputState' type='typedef'/>
+     <exports symbol='xmlParserMode' type='typedef'/>
+     <exports symbol='xmlParserNodeInfo' type='typedef'/>
      <exports symbol='xmlParserNodeInfoPtr' type='typedef'/>
      <exports symbol='xmlParserNodeInfoSeq' type='typedef'/>
-     <exports symbol='xmlFeature' type='typedef'/>
-     <exports symbol='xmlParserMode' type='typedef'/>
-     <exports symbol='xmlStartTag' type='typedef'/>
+     <exports symbol='xmlParserNodeInfoSeqPtr' type='typedef'/>
      <exports symbol='xmlParserOption' type='typedef'/>
+     <exports symbol='xmlSAXHandlerV1' type='typedef'/>
      <exports symbol='xmlSAXHandlerV1Ptr' type='typedef'/>
-     <exports symbol='xmlParserNodeInfo' type='typedef'/>
-     <exports symbol='_xmlParserNodeInfo' type='struct'/>
+     <exports symbol='xmlStartTag' type='typedef'/>
      <exports symbol='_xmlParserCtxt' type='struct'/>
-     <exports symbol='_xmlSAXHandlerV1' type='struct'/>
      <exports symbol='_xmlParserInput' type='struct'/>
-     <exports symbol='_xmlSAXHandler' type='struct'/>
+     <exports symbol='_xmlParserNodeInfo' type='struct'/>
      <exports symbol='_xmlParserNodeInfoSeq' type='struct'/>
+     <exports symbol='_xmlSAXHandler' type='struct'/>
+     <exports symbol='_xmlSAXHandlerV1' type='struct'/>
      <exports symbol='_xmlSAXLocator' type='struct'/>
-     <exports symbol='xmlSetupParserForBuffer' type='function'/>
-     <exports symbol='xmlCtxtReadFile' type='function'/>
-     <exports symbol='xmlParseCtxtExternalEntity' type='function'/>
      <exports symbol='attributeDeclSAXFunc' type='function'/>
-     <exports symbol='getEntitySAXFunc' type='function'/>
-     <exports symbol='startElementSAXFunc' type='function'/>
+     <exports symbol='attributeSAXFunc' type='function'/>
+     <exports symbol='cdataBlockSAXFunc' type='function'/>
      <exports symbol='charactersSAXFunc' type='function'/>
-     <exports symbol='xmlClearNodeInfoSeq' type='function'/>
-     <exports symbol='xmlParseChunk' type='function'/>
-     <exports symbol='xmlParseEntity' type='function'/>
-     <exports symbol='xmlRecoverFile' type='function'/>
-     <exports symbol='xmlCtxtReadDoc' type='function'/>
-     <exports symbol='startElementNsSAX2Func' type='function'/>
-     <exports symbol='xmlCreateIOParserCtxt' type='function'/>
-     <exports symbol='xmlParseInNodeContext' type='function'/>
-     <exports symbol='referenceSAXFunc' type='function'/>
+     <exports symbol='commentSAXFunc' type='function'/>
+     <exports symbol='elementDeclSAXFunc' type='function'/>
+     <exports symbol='endDocumentSAXFunc' type='function'/>
+     <exports symbol='endElementNsSAX2Func' type='function'/>
+     <exports symbol='endElementSAXFunc' type='function'/>
+     <exports symbol='entityDeclSAXFunc' type='function'/>
+     <exports symbol='errorSAXFunc' type='function'/>
+     <exports symbol='externalSubsetSAXFunc' type='function'/>
+     <exports symbol='fatalErrorSAXFunc' type='function'/>
+     <exports symbol='getEntitySAXFunc' type='function'/>
+     <exports symbol='getParameterEntitySAXFunc' type='function'/>
      <exports symbol='hasExternalSubsetSAXFunc' type='function'/>
-     <exports symbol='xmlSAXParseDoc' type='function'/>
-     <exports symbol='xmlReadMemory' type='function'/>
-     <exports symbol='xmlParseMemory' type='function'/>
-     <exports symbol='xmlNewIOInputStream' type='function'/>
+     <exports symbol='hasInternalSubsetSAXFunc' type='function'/>
+     <exports symbol='ignorableWhitespaceSAXFunc' type='function'/>
+     <exports symbol='internalSubsetSAXFunc' type='function'/>
+     <exports symbol='isStandaloneSAXFunc' type='function'/>
+     <exports symbol='notationDeclSAXFunc' type='function'/>
      <exports symbol='processingInstructionSAXFunc' type='function'/>
-     <exports symbol='xmlParseBalancedChunkMemoryRecover' type='function'/>
-     <exports symbol='xmlInitParser' type='function'/>
+     <exports symbol='referenceSAXFunc' type='function'/>
+     <exports symbol='resolveEntitySAXFunc' type='function'/>
+     <exports symbol='setDocumentLocatorSAXFunc' type='function'/>
+     <exports symbol='startDocumentSAXFunc' type='function'/>
+     <exports symbol='startElementNsSAX2Func' type='function'/>
+     <exports symbol='startElementSAXFunc' type='function'/>
+     <exports symbol='unparsedEntityDeclSAXFunc' type='function'/>
+     <exports symbol='warningSAXFunc' type='function'/>
+     <exports symbol='xmlByteConsumed' type='function'/>
+     <exports symbol='xmlCleanupParser' type='function'/>
+     <exports symbol='xmlClearNodeInfoSeq' type='function'/>
+     <exports symbol='xmlClearParserCtxt' type='function'/>
      <exports symbol='xmlCreateDocParserCtxt' type='function'/>
-     <exports symbol='errorSAXFunc' type='function'/>
-     <exports symbol='xmlSAXParseMemory' type='function'/>
-     <exports symbol='xmlRecoverMemory' type='function'/>
-     <exports symbol='xmlExternalEntityLoader' type='function'/>
-     <exports symbol='hasInternalSubsetSAXFunc' type='function'/>
-     <exports symbol='cdataBlockSAXFunc' type='function'/>
-     <exports symbol='xmlSAXParseFile' type='function'/>
-     <exports symbol='xmlParserInputDeallocate' type='function'/>
+     <exports symbol='xmlCreateIOParserCtxt' type='function'/>
+     <exports symbol='xmlCreatePushParserCtxt' type='function'/>
+     <exports symbol='xmlCtxtReadDoc' type='function'/>
+     <exports symbol='xmlCtxtReadFd' type='function'/>
+     <exports symbol='xmlCtxtReadFile' type='function'/>
      <exports symbol='xmlCtxtReadIO' type='function'/>
-     <exports symbol='xmlSAXParseMemoryWithData' type='function'/>
+     <exports symbol='xmlCtxtReadMemory' type='function'/>
+     <exports symbol='xmlCtxtReset' type='function'/>
+     <exports symbol='xmlCtxtResetPush' type='function'/>
+     <exports symbol='xmlCtxtUseOptions' type='function'/>
+     <exports symbol='xmlExternalEntityLoader' type='function'/>
+     <exports symbol='xmlFreeParserCtxt' type='function'/>
+     <exports symbol='xmlGetExternalEntityLoader' type='function'/>
      <exports symbol='xmlGetFeature' type='function'/>
+     <exports symbol='xmlGetFeaturesList' type='function'/>
+     <exports symbol='xmlHasFeature' type='function'/>
      <exports symbol='xmlIOParseDTD' type='function'/>
-     <exports symbol='xmlFreeParserCtxt' type='function'/>
-     <exports symbol='xmlParseDTD' type='function'/>
-     <exports symbol='xmlRecoverDoc' type='function'/>
-     <exports symbol='commentSAXFunc' type='function'/>
+     <exports symbol='xmlInitNodeInfoSeq' type='function'/>
+     <exports symbol='xmlInitParser' type='function'/>
      <exports symbol='xmlInitParserCtxt' type='function'/>
-     <exports symbol='attributeSAXFunc' type='function'/>
-     <exports symbol='xmlParserInputGrow' type='function'/>
-     <exports symbol='xmlCtxtReadMemory' type='function'/>
-     <exports symbol='externalSubsetSAXFunc' type='function'/>
-     <exports symbol='resolveEntitySAXFunc' type='function'/>
-     <exports symbol='xmlPedanticParserDefault' type='function'/>
-     <exports symbol='xmlSAXParseEntity' type='function'/>
-     <exports symbol='xmlParseDoc' type='function'/>
-     <exports symbol='xmlSAXParseFileWithData' type='function'/>
+     <exports symbol='xmlKeepBlanksDefault' type='function'/>
      <exports symbol='xmlLineNumbersDefault' type='function'/>
-     <exports symbol='xmlGetExternalEntityLoader' type='function'/>
-     <exports symbol='elementDeclSAXFunc' type='function'/>
-     <exports symbol='xmlCtxtUseOptions' type='function'/>
-     <exports symbol='xmlCreatePushParserCtxt' type='function'/>
-     <exports symbol='xmlParserAddNodeInfo' type='function'/>
-     <exports symbol='xmlCtxtReadFd' type='function'/>
-     <exports symbol='internalSubsetSAXFunc' type='function'/>
+     <exports symbol='xmlLoadExternalEntity' type='function'/>
+     <exports symbol='xmlNewIOInputStream' type='function'/>
      <exports symbol='xmlNewParserCtxt' type='function'/>
-     <exports symbol='endDocumentSAXFunc' type='function'/>
-     <exports symbol='xmlParseFile' type='function'/>
+     <exports symbol='xmlParseBalancedChunkMemory' type='function'/>
+     <exports symbol='xmlParseBalancedChunkMemoryRecover' type='function'/>
+     <exports symbol='xmlParseChunk' type='function'/>
+     <exports symbol='xmlParseCtxtExternalEntity' type='function'/>
+     <exports symbol='xmlParseDTD' type='function'/>
+     <exports symbol='xmlParseDoc' type='function'/>
      <exports symbol='xmlParseDocument' type='function'/>
-     <exports symbol='setDocumentLocatorSAXFunc' type='function'/>
-     <exports symbol='getParameterEntitySAXFunc' type='function'/>
-     <exports symbol='ignorableWhitespaceSAXFunc' type='function'/>
-     <exports symbol='xmlInitNodeInfoSeq' type='function'/>
-     <exports symbol='xmlSubstituteEntitiesDefault' type='function'/>
-     <exports symbol='endElementSAXFunc' type='function'/>
+     <exports symbol='xmlParseEntity' type='function'/>
+     <exports symbol='xmlParseExtParsedEnt' type='function'/>
+     <exports symbol='xmlParseExternalEntity' type='function'/>
+     <exports symbol='xmlParseFile' type='function'/>
+     <exports symbol='xmlParseInNodeContext' type='function'/>
+     <exports symbol='xmlParseMemory' type='function'/>
+     <exports symbol='xmlParserAddNodeInfo' type='function'/>
+     <exports symbol='xmlParserFindNodeInfo' type='function'/>
      <exports symbol='xmlParserFindNodeInfoIndex' type='function'/>
-     <exports symbol='xmlByteConsumed' type='function'/>
-     <exports symbol='xmlCtxtReset' type='function'/>
-     <exports symbol='xmlSetFeature' type='function'/>
-     <exports symbol='xmlKeepBlanksDefault' type='function'/>
+     <exports symbol='xmlParserInputDeallocate' type='function'/>
+     <exports symbol='xmlParserInputGrow' type='function'/>
      <exports symbol='xmlParserInputRead' type='function'/>
-     <exports symbol='xmlReadFile' type='function'/>
-     <exports symbol='xmlGetFeaturesList' type='function'/>
-     <exports symbol='xmlHasFeature' type='function'/>
-     <exports symbol='unparsedEntityDeclSAXFunc' type='function'/>
-     <exports symbol='xmlSAXUserParseFile' type='function'/>
-     <exports symbol='fatalErrorSAXFunc' type='function'/>
-     <exports symbol='xmlSAXParseDTD' type='function'/>
-     <exports symbol='xmlParserFindNodeInfo' type='function'/>
-     <exports symbol='entityDeclSAXFunc' type='function'/>
-     <exports symbol='xmlLoadExternalEntity' type='function'/>
-     <exports symbol='xmlStopParser' type='function'/>
+     <exports symbol='xmlPedanticParserDefault' type='function'/>
+     <exports symbol='xmlReadDoc' type='function'/>
      <exports symbol='xmlReadFd' type='function'/>
-     <exports symbol='xmlParseExtParsedEnt' type='function'/>
+     <exports symbol='xmlReadFile' type='function'/>
      <exports symbol='xmlReadIO' type='function'/>
-     <exports symbol='xmlReadDoc' type='function'/>
-     <exports symbol='xmlSAXUserParseMemory' type='function'/>
-     <exports symbol='xmlParseBalancedChunkMemory' type='function'/>
-     <exports symbol='endElementNsSAX2Func' type='function'/>
-     <exports symbol='xmlCleanupParser' type='function'/>
-     <exports symbol='xmlCtxtResetPush' type='function'/>
-     <exports symbol='isStandaloneSAXFunc' type='function'/>
-     <exports symbol='startDocumentSAXFunc' type='function'/>
-     <exports symbol='xmlClearParserCtxt' type='function'/>
-     <exports symbol='xmlParseExternalEntity' type='function'/>
-     <exports symbol='notationDeclSAXFunc' type='function'/>
-     <exports symbol='warningSAXFunc' type='function'/>
+     <exports symbol='xmlReadMemory' type='function'/>
+     <exports symbol='xmlRecoverDoc' type='function'/>
+     <exports symbol='xmlRecoverFile' type='function'/>
+     <exports symbol='xmlRecoverMemory' type='function'/>
+     <exports symbol='xmlSAXParseDTD' type='function'/>
+     <exports symbol='xmlSAXParseDoc' type='function'/>
+     <exports symbol='xmlSAXParseEntity' type='function'/>
+     <exports symbol='xmlSAXParseFile' type='function'/>
+     <exports symbol='xmlSAXParseFileWithData' type='function'/>
+     <exports symbol='xmlSAXParseMemory' type='function'/>
+     <exports symbol='xmlSAXParseMemoryWithData' type='function'/>
+     <exports symbol='xmlSAXUserParseFile' type='function'/>
+     <exports symbol='xmlSAXUserParseMemory' type='function'/>
      <exports symbol='xmlSetExternalEntityLoader' type='function'/>
+     <exports symbol='xmlSetFeature' type='function'/>
+     <exports symbol='xmlSetupParserForBuffer' type='function'/>
+     <exports symbol='xmlStopParser' type='function'/>
+     <exports symbol='xmlSubstituteEntitiesDefault' type='function'/>
     </file>
     <file name='parserInternals'>
      <summary>internals routines and limits exported by the parser.</summary>
      <description>this module exports a number of internal parsing routines they are not really all intended for applications but can prove useful doing low level processing. </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_SUBSTITUTE_REF' type='macro'/>
+     <exports symbol='INPUT_CHUNK' type='macro'/>
+     <exports symbol='IS_ASCII_DIGIT' type='macro'/>
+     <exports symbol='IS_ASCII_LETTER' type='macro'/>
+     <exports symbol='IS_BASECHAR' type='macro'/>
      <exports symbol='IS_BLANK' type='macro'/>
+     <exports symbol='IS_BLANK_CH' type='macro'/>
      <exports symbol='IS_BYTE_CHAR' type='macro'/>
-     <exports symbol='IS_PUBIDCHAR' type='macro'/>
+     <exports symbol='IS_CHAR' type='macro'/>
+     <exports symbol='IS_CHAR_CH' type='macro'/>
+     <exports symbol='IS_COMBINING' type='macro'/>
+     <exports symbol='IS_COMBINING_CH' type='macro'/>
+     <exports symbol='IS_DIGIT' type='macro'/>
      <exports symbol='IS_DIGIT_CH' type='macro'/>
      <exports symbol='IS_EXTENDER' type='macro'/>
-     <exports symbol='IS_ASCII_DIGIT' type='macro'/>
-     <exports symbol='IS_COMBINING_CH' type='macro'/>
-     <exports symbol='IS_CHAR' type='macro'/>
-     <exports symbol='IS_LETTER' type='macro'/>
+     <exports symbol='IS_EXTENDER_CH' type='macro'/>
      <exports symbol='IS_IDEOGRAPHIC' type='macro'/>
-     <exports symbol='MOVETO_STARTTAG' type='macro'/>
-     <exports symbol='XML_MAX_NAME_LENGTH' type='macro'/>
-     <exports symbol='IS_ASCII_LETTER' type='macro'/>
-     <exports symbol='IS_DIGIT' type='macro'/>
-     <exports symbol='XML_MAX_DICTIONARY_LIMIT' type='macro'/>
-     <exports symbol='XML_SUBSTITUTE_PEREF' type='macro'/>
+     <exports symbol='IS_LETTER' type='macro'/>
+     <exports symbol='IS_LETTER_CH' type='macro'/>
+     <exports symbol='IS_PUBIDCHAR' type='macro'/>
+     <exports symbol='IS_PUBIDCHAR_CH' type='macro'/>
      <exports symbol='MOVETO_ENDTAG' type='macro'/>
+     <exports symbol='MOVETO_STARTTAG' type='macro'/>
      <exports symbol='SKIP_EOL' type='macro'/>
-     <exports symbol='IS_EXTENDER_CH' type='macro'/>
-     <exports symbol='IS_BLANK_CH' type='macro'/>
-     <exports symbol='IS_LETTER_CH' type='macro'/>
+     <exports symbol='XML_MAX_DICTIONARY_LIMIT' type='macro'/>
      <exports symbol='XML_MAX_LOOKUP_LIMIT' type='macro'/>
-     <exports symbol='XML_MAX_TEXT_LENGTH' type='macro'/>
-     <exports symbol='XML_SUBSTITUTE_NONE' type='macro'/>
-     <exports symbol='IS_COMBINING' type='macro'/>
      <exports symbol='XML_MAX_NAMELEN' type='macro'/>
-     <exports symbol='IS_BASECHAR' type='macro'/>
-     <exports symbol='INPUT_CHUNK' type='macro'/>
-     <exports symbol='IS_PUBIDCHAR_CH' type='macro'/>
-     <exports symbol='IS_CHAR_CH' type='macro'/>
+     <exports symbol='XML_MAX_NAME_LENGTH' type='macro'/>
+     <exports symbol='XML_MAX_TEXT_LENGTH' type='macro'/>
      <exports symbol='XML_SUBSTITUTE_BOTH' type='macro'/>
-     <exports symbol='xmlStringTextNoenc' type='variable'/>
+     <exports symbol='XML_SUBSTITUTE_NONE' type='macro'/>
+     <exports symbol='XML_SUBSTITUTE_PEREF' type='macro'/>
+     <exports symbol='XML_SUBSTITUTE_REF' type='macro'/>
+     <exports symbol='xmlParserMaxDepth' type='variable'/>
      <exports symbol='xmlStringComment' type='variable'/>
      <exports symbol='xmlStringText' type='variable'/>
-     <exports symbol='xmlParserMaxDepth' type='variable'/>
-     <exports symbol='nodePop' type='function'/>
-     <exports symbol='xmlParseNotationDecl' type='function'/>
-     <exports symbol='xmlParseExternalSubset' type='function'/>
-     <exports symbol='xmlParseMisc' type='function'/>
-     <exports symbol='xmlSwitchInputEncoding' type='function'/>
-     <exports symbol='xmlNewStringInputStream' type='function'/>
-     <exports symbol='xmlParseExternalID' type='function'/>
-     <exports symbol='xmlScanName' type='function'/>
-     <exports symbol='xmlParseElementDecl' type='function'/>
-     <exports symbol='xmlParseMarkupDecl' type='function'/>
+     <exports symbol='xmlStringTextNoenc' type='variable'/>
      <exports symbol='htmlCreateFileParserCtxt' type='function'/>
+     <exports symbol='htmlInitAutoClose' type='function'/>
+     <exports symbol='inputPop' type='function'/>
      <exports symbol='inputPush' type='function'/>
-     <exports symbol='xmlStringLenDecodeEntities' type='function'/>
      <exports symbol='namePop' type='function'/>
-     <exports symbol='xmlParseContent' type='function'/>
-     <exports symbol='xmlNewInputStream' type='function'/>
-     <exports symbol='xmlNamespaceParseQName' type='function'/>
-     <exports symbol='xmlNewInputFromFile' type='function'/>
-     <exports symbol='xmlParserHandlePEReference' type='function'/>
-     <exports symbol='xmlStringDecodeEntities' type='function'/>
-     <exports symbol='xmlCreateFileParserCtxt' type='function'/>
-     <exports symbol='xmlParseCharRef' type='function'/>
-     <exports symbol='xmlParseElement' type='function'/>
-     <exports symbol='xmlParseTextDecl' type='function'/>
-     <exports symbol='xmlNewEntityInputStream' type='function'/>
+     <exports symbol='namePush' type='function'/>
+     <exports symbol='nodePop' type='function'/>
+     <exports symbol='nodePush' type='function'/>
+     <exports symbol='xmlCheckLanguageID' type='function'/>
+     <exports symbol='xmlCopyChar' type='function'/>
      <exports symbol='xmlCopyCharMultiByte' type='function'/>
-     <exports symbol='xmlParseElementChildrenContentDecl' type='function'/>
-     <exports symbol='xmlParseCharData' type='function'/>
-     <exports symbol='xmlParseVersionInfo' type='function'/>
-     <exports symbol='xmlParseSDDecl' type='function'/>
-     <exports symbol='xmlParseEnumeratedType' type='function'/>
-     <exports symbol='xmlHandleEntity' type='function'/>
+     <exports symbol='xmlCreateEntityParserCtxt' type='function'/>
+     <exports symbol='xmlCreateFileParserCtxt' type='function'/>
+     <exports symbol='xmlCreateMemoryParserCtxt' type='function'/>
+     <exports symbol='xmlCreateURLParserCtxt' type='function'/>
      <exports symbol='xmlCurrentChar' type='function'/>
-     <exports symbol='xmlSkipBlankChars' type='function'/>
-     <exports symbol='xmlParseNotationType' type='function'/>
-     <exports symbol='xmlParserInputShrink' type='function'/>
-     <exports symbol='xmlSetEntityReferenceFunc' type='function'/>
+     <exports symbol='xmlDecodeEntities' type='function'/>
+     <exports symbol='xmlEntityReferenceFunc' type='function'/>
+     <exports symbol='xmlErrMemory' type='function'/>
      <exports symbol='xmlFreeInputStream' type='function'/>
-     <exports symbol='xmlParsePEReference' type='function'/>
-     <exports symbol='xmlCreateURLParserCtxt' type='function'/>
+     <exports symbol='xmlHandleEntity' type='function'/>
      <exports symbol='xmlIsLetter' type='function'/>
-     <exports symbol='xmlCheckLanguageID' type='function'/>
+     <exports symbol='xmlNamespaceParseNCName' type='function'/>
+     <exports symbol='xmlNamespaceParseNSDef' type='function'/>
+     <exports symbol='xmlNamespaceParseQName' type='function'/>
+     <exports symbol='xmlNewEntityInputStream' type='function'/>
+     <exports symbol='xmlNewInputFromFile' type='function'/>
+     <exports symbol='xmlNewInputStream' type='function'/>
+     <exports symbol='xmlNewStringInputStream' type='function'/>
      <exports symbol='xmlNextChar' type='function'/>
-     <exports symbol='xmlParseEnumerationType' type='function'/>
-     <exports symbol='xmlParseAttributeType' type='function'/>
-     <exports symbol='xmlParseDefaultDecl' type='function'/>
-     <exports symbol='xmlParseSystemLiteral' type='function'/>
      <exports symbol='xmlParseAttValue' type='function'/>
-     <exports symbol='xmlCreateMemoryParserCtxt' type='function'/>
+     <exports symbol='xmlParseAttribute' type='function'/>
      <exports symbol='xmlParseAttributeListDecl' type='function'/>
-     <exports symbol='xmlParseName' type='function'/>
+     <exports symbol='xmlParseAttributeType' type='function'/>
+     <exports symbol='xmlParseCDSect' type='function'/>
+     <exports symbol='xmlParseCharData' type='function'/>
+     <exports symbol='xmlParseCharRef' type='function'/>
+     <exports symbol='xmlParseComment' type='function'/>
+     <exports symbol='xmlParseContent' type='function'/>
+     <exports symbol='xmlParseDefaultDecl' type='function'/>
+     <exports symbol='xmlParseDocTypeDecl' type='function'/>
+     <exports symbol='xmlParseElement' type='function'/>
+     <exports symbol='xmlParseElementChildrenContentDecl' type='function'/>
+     <exports symbol='xmlParseElementContentDecl' type='function'/>
+     <exports symbol='xmlParseElementDecl' type='function'/>
+     <exports symbol='xmlParseElementMixedContentDecl' type='function'/>
      <exports symbol='xmlParseEncName' type='function'/>
-     <exports symbol='nodePush' type='function'/>
-     <exports symbol='xmlSwitchEncoding' type='function'/>
-     <exports symbol='xmlSwitchToEncoding' type='function'/>
-     <exports symbol='xmlParseEntityRef' type='function'/>
-     <exports symbol='xmlParseAttribute' type='function'/>
-     <exports symbol='xmlParseEndTag' type='function'/>
      <exports symbol='xmlParseEncodingDecl' type='function'/>
-     <exports symbol='htmlInitAutoClose' type='function'/>
-     <exports symbol='xmlCreateEntityParserCtxt' type='function'/>
-     <exports symbol='xmlSplitQName' type='function'/>
-     <exports symbol='xmlParserHandleReference' type='function'/>
+     <exports symbol='xmlParseEndTag' type='function'/>
+     <exports symbol='xmlParseEntityDecl' type='function'/>
+     <exports symbol='xmlParseEntityRef' type='function'/>
+     <exports symbol='xmlParseEntityValue' type='function'/>
+     <exports symbol='xmlParseEnumeratedType' type='function'/>
+     <exports symbol='xmlParseEnumerationType' type='function'/>
+     <exports symbol='xmlParseExternalID' type='function'/>
+     <exports symbol='xmlParseExternalSubset' type='function'/>
+     <exports symbol='xmlParseMarkupDecl' type='function'/>
+     <exports symbol='xmlParseMisc' type='function'/>
+     <exports symbol='xmlParseName' type='function'/>
+     <exports symbol='xmlParseNamespace' type='function'/>
+     <exports symbol='xmlParseNmtoken' type='function'/>
+     <exports symbol='xmlParseNotationDecl' type='function'/>
+     <exports symbol='xmlParseNotationType' type='function'/>
+     <exports symbol='xmlParsePEReference' type='function'/>
+     <exports symbol='xmlParsePI' type='function'/>
      <exports symbol='xmlParsePITarget' type='function'/>
-     <exports symbol='xmlParseElementContentDecl' type='function'/>
-     <exports symbol='inputPop' type='function'/>
-     <exports symbol='xmlPopInput' type='function'/>
      <exports symbol='xmlParsePubidLiteral' type='function'/>
-     <exports symbol='xmlPushInput' type='function'/>
-     <exports symbol='xmlParseEntityValue' type='function'/>
-     <exports symbol='xmlDecodeEntities' type='function'/>
-     <exports symbol='xmlParseVersionNum' type='function'/>
-     <exports symbol='xmlParseXMLDecl' type='function'/>
-     <exports symbol='xmlEntityReferenceFunc' type='function'/>
-     <exports symbol='xmlParseElementMixedContentDecl' type='function'/>
      <exports symbol='xmlParseQuotedString' type='function'/>
-     <exports symbol='xmlNamespaceParseNSDef' type='function'/>
-     <exports symbol='xmlParseCDSect' type='function'/>
-     <exports symbol='xmlStringCurrentChar' type='function'/>
-     <exports symbol='xmlParseComment' type='function'/>
-     <exports symbol='xmlErrMemory' type='function'/>
-     <exports symbol='xmlNamespaceParseNCName' type='function'/>
-     <exports symbol='xmlParseNmtoken' type='function'/>
      <exports symbol='xmlParseReference' type='function'/>
-     <exports symbol='namePush' type='function'/>
-     <exports symbol='xmlParseNamespace' type='function'/>
-     <exports symbol='xmlCopyChar' type='function'/>
-     <exports symbol='xmlParsePI' type='function'/>
-     <exports symbol='xmlParseDocTypeDecl' type='function'/>
+     <exports symbol='xmlParseSDDecl' type='function'/>
      <exports symbol='xmlParseStartTag' type='function'/>
-     <exports symbol='xmlParseEntityDecl' type='function'/>
+     <exports symbol='xmlParseSystemLiteral' type='function'/>
+     <exports symbol='xmlParseTextDecl' type='function'/>
+     <exports symbol='xmlParseVersionInfo' type='function'/>
+     <exports symbol='xmlParseVersionNum' type='function'/>
+     <exports symbol='xmlParseXMLDecl' type='function'/>
+     <exports symbol='xmlParserHandlePEReference' type='function'/>
+     <exports symbol='xmlParserHandleReference' type='function'/>
+     <exports symbol='xmlParserInputShrink' type='function'/>
+     <exports symbol='xmlPopInput' type='function'/>
+     <exports symbol='xmlPushInput' type='function'/>
+     <exports symbol='xmlScanName' type='function'/>
+     <exports symbol='xmlSetEntityReferenceFunc' type='function'/>
+     <exports symbol='xmlSkipBlankChars' type='function'/>
+     <exports symbol='xmlSplitQName' type='function'/>
+     <exports symbol='xmlStringCurrentChar' type='function'/>
+     <exports symbol='xmlStringDecodeEntities' type='function'/>
+     <exports symbol='xmlStringLenDecodeEntities' type='function'/>
+     <exports symbol='xmlSwitchEncoding' type='function'/>
+     <exports symbol='xmlSwitchInputEncoding' type='function'/>
+     <exports symbol='xmlSwitchToEncoding' type='function'/>
     </file>
     <file name='pattern'>
      <summary>pattern expression handling</summary>
      <description>allows to compile and test pattern expressions for nodes either in a tree or based on a parser state. </description>
      <author>Daniel Veillard </author>
      <exports symbol='XML_PATTERN_DEFAULT' type='enum'/>
+     <exports symbol='XML_PATTERN_XPATH' type='enum'/>
      <exports symbol='XML_PATTERN_XSFIELD' type='enum'/>
      <exports symbol='XML_PATTERN_XSSEL' type='enum'/>
-     <exports symbol='XML_PATTERN_XPATH' type='enum'/>
-     <exports symbol='xmlStreamCtxtPtr' type='typedef'/>
-     <exports symbol='xmlPatternFlags' type='typedef'/>
-     <exports symbol='xmlStreamCtxt' type='typedef'/>
      <exports symbol='xmlPattern' type='typedef'/>
+     <exports symbol='xmlPatternFlags' type='typedef'/>
      <exports symbol='xmlPatternPtr' type='typedef'/>
-     <exports symbol='xmlPatternMinDepth' type='function'/>
-     <exports symbol='xmlPatternGetStreamCtxt' type='function'/>
-     <exports symbol='xmlPatternFromRoot' type='function'/>
+     <exports symbol='xmlStreamCtxt' type='typedef'/>
+     <exports symbol='xmlStreamCtxtPtr' type='typedef'/>
+     <exports symbol='xmlFreePattern' type='function'/>
      <exports symbol='xmlFreePatternList' type='function'/>
-     <exports symbol='xmlPatternStreamable' type='function'/>
-     <exports symbol='xmlStreamPushAttr' type='function'/>
+     <exports symbol='xmlFreeStreamCtxt' type='function'/>
+     <exports symbol='xmlPatternFromRoot' type='function'/>
+     <exports symbol='xmlPatternGetStreamCtxt' type='function'/>
      <exports symbol='xmlPatternMatch' type='function'/>
-     <exports symbol='xmlStreamWantsAnyNode' type='function'/>
-     <exports symbol='xmlStreamPop' type='function'/>
-     <exports symbol='xmlFreePattern' type='function'/>
-     <exports symbol='xmlStreamPush' type='function'/>
      <exports symbol='xmlPatternMaxDepth' type='function'/>
+     <exports symbol='xmlPatternMinDepth' type='function'/>
+     <exports symbol='xmlPatternStreamable' type='function'/>
      <exports symbol='xmlPatterncompile' type='function'/>
+     <exports symbol='xmlStreamPop' type='function'/>
+     <exports symbol='xmlStreamPush' type='function'/>
+     <exports symbol='xmlStreamPushAttr' type='function'/>
      <exports symbol='xmlStreamPushNode' type='function'/>
-     <exports symbol='xmlFreeStreamCtxt' type='function'/>
+     <exports symbol='xmlStreamWantsAnyNode' type='function'/>
     </file>
     <file name='relaxng'>
      <summary>implementation of the Relax-NG validation</summary>
      <description>implementation of the Relax-NG validation </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_RELAXNG_ERR_DUPID' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_VALELEM' type='enum'/>
+     <exports symbol='XML_RELAXNGP_CRNG' type='enum'/>
+     <exports symbol='XML_RELAXNGP_FREE_DOC' type='enum'/>
+     <exports symbol='XML_RELAXNGP_NONE' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_ATTREXTRANS' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_ATTRNAME' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_ATTRNONS' type='enum'/>
      <exports symbol='XML_RELAXNG_ERR_ATTRVALID' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_LISTELEM' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_LISTEXTRA' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_ATTRNONS' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_EXTRADATA' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_ELEMNONS' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_ELEMEXTRANS' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_ATTRWRONGNS' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_CONTENTVALID' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_DATAELEM' type='enum'/>
      <exports symbol='XML_RELAXNG_ERR_DATATYPE' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_TYPECMP' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_VALUE' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_NOGRAMMAR' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_INTERSEQ' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_LACKDATA' type='enum'/>
-     <exports symbol='XML_RELAXNGP_FREE_DOC' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_ATTRNAME' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_DUPID' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_ELEMEXTRANS' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_ELEMNAME' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_ELEMNONS' type='enum'/>
      <exports symbol='XML_RELAXNG_ERR_ELEMNOTEMPTY' type='enum'/>
-     <exports symbol='XML_RELAXNG_OK' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_INTERNODATA' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_ATTRWRONGNS' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_EXTRACONTENT' type='enum'/>
-     <exports symbol='XML_RELAXNGP_NONE' type='enum'/>
      <exports symbol='XML_RELAXNG_ERR_ELEMWRONG' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_LISTEMPTY' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_ATTREXTRANS' type='enum'/>
-     <exports symbol='XML_RELAXNGP_CRNG' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_TEXTWRONG' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_INVALIDATTR' type='enum'/>
      <exports symbol='XML_RELAXNG_ERR_ELEMWRONGNS' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_CONTENTVALID' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_TYPEVAL' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_EXTRACONTENT' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_EXTRADATA' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_INTEREXTRA' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_INTERNAL' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_INTERNODATA' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_INTERSEQ' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_INVALIDATTR' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_LACKDATA' type='enum'/>
      <exports symbol='XML_RELAXNG_ERR_LIST' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_TYPE' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_NOELEM' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_LISTELEM' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_LISTEMPTY' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_LISTEXTRA' type='enum'/>
      <exports symbol='XML_RELAXNG_ERR_MEMORY' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_ELEMNAME' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_DATAELEM' type='enum'/>
      <exports symbol='XML_RELAXNG_ERR_NODEFINE' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_NOELEM' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_NOGRAMMAR' type='enum'/>
      <exports symbol='XML_RELAXNG_ERR_NOSTATE' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_INTEREXTRA' type='enum'/>
-     <exports symbol='XML_RELAXNG_ERR_INTERNAL' type='enum'/>
      <exports symbol='XML_RELAXNG_ERR_NOTELEM' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_TEXTWRONG' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_TYPE' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_TYPECMP' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_TYPEVAL' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_VALELEM' type='enum'/>
+     <exports symbol='XML_RELAXNG_ERR_VALUE' type='enum'/>
+     <exports symbol='XML_RELAXNG_OK' type='enum'/>
      <exports symbol='xmlRelaxNG' type='typedef'/>
-     <exports symbol='xmlRelaxNGPtr' type='typedef'/>
-     <exports symbol='xmlRelaxNGValidErr' type='typedef'/>
      <exports symbol='xmlRelaxNGParserCtxt' type='typedef'/>
      <exports symbol='xmlRelaxNGParserCtxtPtr' type='typedef'/>
      <exports symbol='xmlRelaxNGParserFlag' type='typedef'/>
+     <exports symbol='xmlRelaxNGPtr' type='typedef'/>
      <exports symbol='xmlRelaxNGValidCtxt' type='typedef'/>
      <exports symbol='xmlRelaxNGValidCtxtPtr' type='typedef'/>
+     <exports symbol='xmlRelaxNGValidErr' type='typedef'/>
+     <exports symbol='xmlRelaxNGCleanupTypes' type='function'/>
+     <exports symbol='xmlRelaxNGDump' type='function'/>
+     <exports symbol='xmlRelaxNGDumpTree' type='function'/>
+     <exports symbol='xmlRelaxNGFree' type='function'/>
+     <exports symbol='xmlRelaxNGFreeParserCtxt' type='function'/>
      <exports symbol='xmlRelaxNGFreeValidCtxt' type='function'/>
+     <exports symbol='xmlRelaxNGGetParserErrors' type='function'/>
+     <exports symbol='xmlRelaxNGGetValidErrors' type='function'/>
+     <exports symbol='xmlRelaxNGInitTypes' type='function'/>
      <exports symbol='xmlRelaxNGNewDocParserCtxt' type='function'/>
-     <exports symbol='xmlRelaxNGSetValidErrors' type='function'/>
+     <exports symbol='xmlRelaxNGNewMemParserCtxt' type='function'/>
      <exports symbol='xmlRelaxNGNewParserCtxt' type='function'/>
-     <exports symbol='xmlRelaxNGGetParserErrors' type='function'/>
-     <exports symbol='xmlRelaxNGValidatePopElement' type='function'/>
      <exports symbol='xmlRelaxNGNewValidCtxt' type='function'/>
-     <exports symbol='xmlRelaxNGNewMemParserCtxt' type='function'/>
-     <exports symbol='xmlRelaxNGDump' type='function'/>
-     <exports symbol='xmlRelaxNGSetParserErrors' type='function'/>
      <exports symbol='xmlRelaxNGParse' type='function'/>
+     <exports symbol='xmlRelaxNGSetParserErrors' type='function'/>
      <exports symbol='xmlRelaxNGSetParserStructuredErrors' type='function'/>
-     <exports symbol='xmlRelaxNGValidateFullElement' type='function'/>
-     <exports symbol='xmlRelaxNGValidityErrorFunc' type='function'/>
-     <exports symbol='xmlRelaxNGValidatePushElement' type='function'/>
-     <exports symbol='xmlRelaxNGFree' type='function'/>
-     <exports symbol='xmlRelaxNGValidateDoc' type='function'/>
+     <exports symbol='xmlRelaxNGSetValidErrors' type='function'/>
      <exports symbol='xmlRelaxNGSetValidStructuredErrors' type='function'/>
-     <exports symbol='xmlRelaxNGFreeParserCtxt' type='function'/>
-     <exports symbol='xmlRelaxNGGetValidErrors' type='function'/>
-     <exports symbol='xmlRelaxNGInitTypes' type='function'/>
-     <exports symbol='xmlRelaxNGDumpTree' type='function'/>
-     <exports symbol='xmlRelaxNGCleanupTypes' type='function'/>
+     <exports symbol='xmlRelaxNGValidateDoc' type='function'/>
+     <exports symbol='xmlRelaxNGValidateFullElement' type='function'/>
+     <exports symbol='xmlRelaxNGValidatePopElement' type='function'/>
      <exports symbol='xmlRelaxNGValidatePushCData' type='function'/>
-     <exports symbol='xmlRelaxParserSetFlag' type='function'/>
+     <exports symbol='xmlRelaxNGValidatePushElement' type='function'/>
+     <exports symbol='xmlRelaxNGValidityErrorFunc' type='function'/>
      <exports symbol='xmlRelaxNGValidityWarningFunc' type='function'/>
+     <exports symbol='xmlRelaxParserSetFlag' type='function'/>
     </file>
     <file name='schemasInternals'>
      <summary>internal interfaces for XML Schemas</summary>
      <description>internal interfaces for the XML Schemas handling and schema validity checking The Schemas development is a Work In Progress. Some of those interfaces are not guaranteed to be API or ABI stable ! </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_EXTENSION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_FIXUP_1' type='macro'/>
-     <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_CIRCULAR' type='macro'/>
-     <exports symbol='XML_SCHEMAS_QUALIF_ATTR' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ATTR_USE_REQUIRED' type='macro'/>
-     <exports symbol='XML_SCHEMAS_FACET_COLLAPSE' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_VARIETY_UNION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ANYATTR_LAX' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ANYATTR_SKIP' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ANYATTR_STRICT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ANY_LAX' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ANY_SKIP' type='macro'/>
      <exports symbol='XML_SCHEMAS_ANY_STRICT' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_INTERNAL_RESOLVED' type='macro'/>
-     <exports symbol='XML_SCHEMAS_QUALIF_ELEM' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_VARIETY_LIST' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_INTERNAL_CHECKED' type='macro'/>
-     <exports symbol='XML_SCHEMAS_INCLUDING_CONVERT_NS' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ATTRGROUP_GLOBAL' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ATTRGROUP_HAS_REFS' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ATTRGROUP_MARKED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ATTRGROUP_REDEFINED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ATTR_FIXED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ATTR_GLOBAL' type='macro'/>
      <exports symbol='XML_SCHEMAS_ATTR_INTERNAL_RESOLVED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ATTR_NSDEFAULT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ATTR_USE_OPTIONAL' type='macro'/>
      <exports symbol='XML_SCHEMAS_ATTR_USE_PROHIBITED' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_NILLABLE' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ATTR_USE_REQUIRED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION' type='macro'/>
      <exports symbol='XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ATTRGROUP_REDEFINED' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_BLOCK_DEFAULT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_ABSTRACT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_BLOCK_ABSENT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_BLOCK_EXTENSION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION' type='macro'/>
      <exports symbol='XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_FINAL_EXTENSION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_REDEFINED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_CIRCULAR' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_DEFAULT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_FINAL_ABSENT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_FINAL_EXTENSION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_FINAL_RESTRICTION' type='macro'/>
      <exports symbol='XML_SCHEMAS_ELEM_FIXED' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_VARIETY_ATOMIC' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_FINAL_LIST' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ATTR_USE_OPTIONAL' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ATTR_NSDEFAULT' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_WHITESPACE_REPLACE' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_BLOCK_RESTRICTION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ANYATTR_STRICT' type='macro'/>
-     <exports symbol='XML_SCHEMAS_FACET_UNKNOWN' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ATTRGROUP_MARKED' type='macro'/>
-     <exports symbol='XML_SCHEMAS_FACET_PRESERVE' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_BLOCK_EXTENSION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ATTR_GLOBAL' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ANYATTR_SKIP' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ANYATTR_LAX' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_GLOBAL' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_ABSTRACT' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_MIXED' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ATTR_FIXED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_GLOBAL' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_INTERNAL_CHECKED' type='macro'/>
      <exports symbol='XML_SCHEMAS_ELEM_INTERNAL_RESOLVED' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ANY_SKIP' type='macro'/>
-     <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_LIST' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_VARIETY_ABSENT' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_FINAL_RESTRICTION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_WILDCARD_COMPLETE' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_NILLABLE' type='macro'/>
      <exports symbol='XML_SCHEMAS_ELEM_NSDEFAULT' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_GLOBAL' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_REF' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD' type='macro'/>
      <exports symbol='XML_SCHEMAS_ELEM_TOPLEVEL' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ANY_LAX' type='macro'/>
+     <exports symbol='XML_SCHEMAS_FACET_COLLAPSE' type='macro'/>
+     <exports symbol='XML_SCHEMAS_FACET_PRESERVE' type='macro'/>
+     <exports symbol='XML_SCHEMAS_FACET_REPLACE' type='macro'/>
+     <exports symbol='XML_SCHEMAS_FACET_UNKNOWN' type='macro'/>
+     <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_EXTENSION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_LIST' type='macro'/>
+     <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_UNION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_INCLUDING_CONVERT_NS' type='macro'/>
+     <exports symbol='XML_SCHEMAS_QUALIF_ATTR' type='macro'/>
+     <exports symbol='XML_SCHEMAS_QUALIF_ELEM' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_ABSTRACT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_BLOCK_DEFAULT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_BLOCK_EXTENSION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_BLOCK_RESTRICTION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_FACETSNEEDVALUE' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_FINAL_DEFAULT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_FINAL_EXTENSION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_FINAL_LIST' type='macro'/>
      <exports symbol='XML_SCHEMAS_TYPE_FINAL_RESTRICTION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_FINAL_UNION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_FIXUP_1' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_GLOBAL' type='macro'/>
      <exports symbol='XML_SCHEMAS_TYPE_HAS_FACETS' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_FINAL_EXTENSION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_NORMVALUENEEDED' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_FINAL_ABSENT' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_BLOCK_EXTENSION' type='macro'/>
      <exports symbol='XML_SCHEMAS_TYPE_INTERNAL_INVALID' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ATTRGROUP_HAS_REFS' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_ABSTRACT' type='macro'/>
-     <exports symbol='XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_FINAL_UNION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_FINAL_DEFAULT' type='macro'/>
-     <exports symbol='XML_SCHEMAS_TYPE_FACETSNEEDVALUE' type='macro'/>
-     <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_UNION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION' type='macro'/>
-     <exports symbol='XML_SCHEMAS_FACET_REPLACE' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_DEFAULT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_INTERNAL_RESOLVED' type='macro'/>
      <exports symbol='XML_SCHEMAS_TYPE_MARKED' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_BLOCK_ABSENT' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ATTRGROUP_GLOBAL' type='macro'/>
-     <exports symbol='XML_SCHEMAS_ELEM_REF' type='macro'/>
-     <exports symbol='XML_SCHEMA_EXTRA_QNAMEREF' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_EXTENSION' type='enum'/>
-     <exports symbol='XML_SCHEMAS_NMTOKEN' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ID' type='enum'/>
-     <exports symbol='XML_SCHEMAS_TIME' type='enum'/>
-     <exports symbol='XML_SCHEMAS_UBYTE' type='enum'/>
+     <exports symbol='XML_SCHEMAS_TYPE_MIXED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_NORMVALUENEEDED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_REDEFINED' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_VARIETY_ABSENT' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_VARIETY_ATOMIC' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_VARIETY_LIST' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_VARIETY_UNION' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE' type='macro'/>
+     <exports symbol='XML_SCHEMAS_TYPE_WHITESPACE_REPLACE' type='macro'/>
+     <exports symbol='XML_SCHEMAS_WILDCARD_COMPLETE' type='macro'/>
+     <exports symbol='XML_SCHEMAS_ANYSIMPLETYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ANYTYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ANYURI' type='enum'/>
+     <exports symbol='XML_SCHEMAS_BASE64BINARY' type='enum'/>
+     <exports symbol='XML_SCHEMAS_BOOLEAN' type='enum'/>
+     <exports symbol='XML_SCHEMAS_BYTE' type='enum'/>
+     <exports symbol='XML_SCHEMAS_DATE' type='enum'/>
      <exports symbol='XML_SCHEMAS_DATETIME' type='enum'/>
-     <exports symbol='XML_SCHEMAS_NNINTEGER' type='enum'/>
-     <exports symbol='XML_SCHEMAS_HEXBINARY' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_UNION' type='enum'/>
-     <exports symbol='XML_SCHEMAS_UNKNOWN' type='enum'/>
-     <exports symbol='XML_SCHEMAS_UINT' type='enum'/>
-     <exports symbol='XML_SCHEMAS_NPINTEGER' type='enum'/>
-     <exports symbol='XML_SCHEMAS_GMONTHDAY' type='enum'/>
-     <exports symbol='XML_SCHEMA_FACET_MAXEXCLUSIVE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ULONG' type='enum'/>
-     <exports symbol='XML_SCHEMAS_PINTEGER' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_CHOICE' type='enum'/>
      <exports symbol='XML_SCHEMAS_DECIMAL' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_UR' type='enum'/>
      <exports symbol='XML_SCHEMAS_DOUBLE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_NINTEGER' type='enum'/>
-     <exports symbol='XML_SCHEMAS_NORMSTRING' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_PARTICLE' type='enum'/>
-     <exports symbol='XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_SIMPLE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_NCNAME' type='enum'/>
-     <exports symbol='XML_SCHEMAS_LONG' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_ANY_ATTRIBUTE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_BOOLEAN' type='enum'/>
+     <exports symbol='XML_SCHEMAS_DURATION' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ENTITIES' type='enum'/>
      <exports symbol='XML_SCHEMAS_ENTITY' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_GROUP' type='enum'/>
+     <exports symbol='XML_SCHEMAS_FLOAT' type='enum'/>
+     <exports symbol='XML_SCHEMAS_GDAY' type='enum'/>
+     <exports symbol='XML_SCHEMAS_GMONTH' type='enum'/>
+     <exports symbol='XML_SCHEMAS_GMONTHDAY' type='enum'/>
+     <exports symbol='XML_SCHEMAS_GYEAR' type='enum'/>
      <exports symbol='XML_SCHEMAS_GYEARMONTH' type='enum'/>
-     <exports symbol='XML_SCHEMAS_BASE64BINARY' type='enum'/>
-     <exports symbol='XML_SCHEMA_FACET_FRACTIONDIGITS' type='enum'/>
-     <exports symbol='XML_SCHEMA_FACET_WHITESPACE' type='enum'/>
+     <exports symbol='XML_SCHEMAS_HEXBINARY' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ID' type='enum'/>
      <exports symbol='XML_SCHEMAS_IDREF' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_ATTRIBUTE' type='enum'/>
-     <exports symbol='XML_SCHEMA_FACET_TOTALDIGITS' type='enum'/>
+     <exports symbol='XML_SCHEMAS_IDREFS' type='enum'/>
+     <exports symbol='XML_SCHEMAS_INT' type='enum'/>
+     <exports symbol='XML_SCHEMAS_INTEGER' type='enum'/>
+     <exports symbol='XML_SCHEMAS_LANGUAGE' type='enum'/>
+     <exports symbol='XML_SCHEMAS_LONG' type='enum'/>
+     <exports symbol='XML_SCHEMAS_NAME' type='enum'/>
+     <exports symbol='XML_SCHEMAS_NCNAME' type='enum'/>
+     <exports symbol='XML_SCHEMAS_NINTEGER' type='enum'/>
+     <exports symbol='XML_SCHEMAS_NMTOKEN' type='enum'/>
+     <exports symbol='XML_SCHEMAS_NMTOKENS' type='enum'/>
+     <exports symbol='XML_SCHEMAS_NNINTEGER' type='enum'/>
+     <exports symbol='XML_SCHEMAS_NORMSTRING' type='enum'/>
+     <exports symbol='XML_SCHEMAS_NOTATION' type='enum'/>
+     <exports symbol='XML_SCHEMAS_NPINTEGER' type='enum'/>
+     <exports symbol='XML_SCHEMAS_PINTEGER' type='enum'/>
      <exports symbol='XML_SCHEMAS_QNAME' type='enum'/>
+     <exports symbol='XML_SCHEMAS_SHORT' type='enum'/>
+     <exports symbol='XML_SCHEMAS_STRING' type='enum'/>
+     <exports symbol='XML_SCHEMAS_TIME' type='enum'/>
      <exports symbol='XML_SCHEMAS_TOKEN' type='enum'/>
+     <exports symbol='XML_SCHEMAS_UBYTE' type='enum'/>
+     <exports symbol='XML_SCHEMAS_UINT' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ULONG' type='enum'/>
+     <exports symbol='XML_SCHEMAS_UNKNOWN' type='enum'/>
+     <exports symbol='XML_SCHEMAS_USHORT' type='enum'/>
+     <exports symbol='XML_SCHEMA_CONTENT_ANY' type='enum'/>
      <exports symbol='XML_SCHEMA_CONTENT_BASIC' type='enum'/>
+     <exports symbol='XML_SCHEMA_CONTENT_ELEMENTS' type='enum'/>
      <exports symbol='XML_SCHEMA_CONTENT_EMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMA_FACET_ENUMERATION' type='enum'/>
+     <exports symbol='XML_SCHEMA_CONTENT_MIXED' type='enum'/>
+     <exports symbol='XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS' type='enum'/>
+     <exports symbol='XML_SCHEMA_CONTENT_SIMPLE' type='enum'/>
      <exports symbol='XML_SCHEMA_CONTENT_UNKNOWN' type='enum'/>
-     <exports symbol='XML_SCHEMA_FACET_MININCLUSIVE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_GMONTH' type='enum'/>
-     <exports symbol='XML_SCHEMA_CONTENT_ELEMENTS' type='enum'/>
-     <exports symbol='XML_SCHEMAS_GYEAR' type='enum'/>
      <exports symbol='XML_SCHEMA_EXTRA_ATTR_USE_PROHIB' type='enum'/>
-     <exports symbol='XML_SCHEMAS_BYTE' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_ALL' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_IDC_KEYREF' type='enum'/>
-     <exports symbol='XML_SCHEMAS_NOTATION' type='enum'/>
+     <exports symbol='XML_SCHEMA_EXTRA_QNAMEREF' type='enum'/>
+     <exports symbol='XML_SCHEMA_FACET_ENUMERATION' type='enum'/>
+     <exports symbol='XML_SCHEMA_FACET_FRACTIONDIGITS' type='enum'/>
+     <exports symbol='XML_SCHEMA_FACET_LENGTH' type='enum'/>
+     <exports symbol='XML_SCHEMA_FACET_MAXEXCLUSIVE' type='enum'/>
      <exports symbol='XML_SCHEMA_FACET_MAXINCLUSIVE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_NAME' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_LIST' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_ATTRIBUTE_USE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_GDAY' type='enum'/>
+     <exports symbol='XML_SCHEMA_FACET_MAXLENGTH' type='enum'/>
+     <exports symbol='XML_SCHEMA_FACET_MINEXCLUSIVE' type='enum'/>
+     <exports symbol='XML_SCHEMA_FACET_MININCLUSIVE' type='enum'/>
+     <exports symbol='XML_SCHEMA_FACET_MINLENGTH' type='enum'/>
+     <exports symbol='XML_SCHEMA_FACET_PATTERN' type='enum'/>
+     <exports symbol='XML_SCHEMA_FACET_TOTALDIGITS' type='enum'/>
+     <exports symbol='XML_SCHEMA_FACET_WHITESPACE' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_ALL' type='enum'/>
      <exports symbol='XML_SCHEMA_TYPE_ANY' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ANYURI' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_COMPLEX' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_ANY_ATTRIBUTE' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_ATTRIBUTE' type='enum'/>
      <exports symbol='XML_SCHEMA_TYPE_ATTRIBUTEGROUP' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_ATTRIBUTE_USE' type='enum'/>
      <exports symbol='XML_SCHEMA_TYPE_BASIC' type='enum'/>
-     <exports symbol='XML_SCHEMAS_IDREFS' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_IDC_UNIQUE' type='enum'/>
-     <exports symbol='XML_SCHEMA_FACET_LENGTH' type='enum'/>
-     <exports symbol='XML_SCHEMA_CONTENT_SIMPLE' type='enum'/>
-     <exports symbol='XML_SCHEMA_FACET_PATTERN' type='enum'/>
-     <exports symbol='XML_SCHEMAS_SHORT' type='enum'/>
-     <exports symbol='XML_SCHEMAS_LANGUAGE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ANYSIMPLETYPE' type='enum'/>
-     <exports symbol='XML_SCHEMA_CONTENT_MIXED' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ANYTYPE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_DURATION' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_FACET' type='enum'/>
-     <exports symbol='XML_SCHEMAS_NMTOKENS' type='enum'/>
-     <exports symbol='XML_SCHEMAS_USHORT' type='enum'/>
-     <exports symbol='XML_SCHEMAS_INTEGER' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_CHOICE' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_COMPLEX' type='enum'/>
      <exports symbol='XML_SCHEMA_TYPE_COMPLEX_CONTENT' type='enum'/>
-     <exports symbol='XML_SCHEMA_FACET_MINEXCLUSIVE' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_ELEMENT' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_EXTENSION' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_FACET' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_GROUP' type='enum'/>
      <exports symbol='XML_SCHEMA_TYPE_IDC_KEY' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_SIMPLE_CONTENT' type='enum'/>
-     <exports symbol='XML_SCHEMAS_FLOAT' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ENTITIES' type='enum'/>
-     <exports symbol='XML_SCHEMAS_DATE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_STRING' type='enum'/>
-     <exports symbol='XML_SCHEMAS_INT' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_IDC_KEYREF' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_IDC_UNIQUE' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_LIST' type='enum'/>
      <exports symbol='XML_SCHEMA_TYPE_NOTATION' type='enum'/>
-     <exports symbol='XML_SCHEMA_CONTENT_ANY' type='enum'/>
-     <exports symbol='XML_SCHEMA_FACET_MINLENGTH' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_PARTICLE' type='enum'/>
      <exports symbol='XML_SCHEMA_TYPE_RESTRICTION' type='enum'/>
      <exports symbol='XML_SCHEMA_TYPE_SEQUENCE' type='enum'/>
-     <exports symbol='XML_SCHEMA_TYPE_ELEMENT' type='enum'/>
-     <exports symbol='XML_SCHEMA_FACET_MAXLENGTH' type='enum'/>
-     <exports symbol='xmlSchemaAttributeGroupPtr' type='typedef'/>
-     <exports symbol='xmlSchemaElementPtr' type='typedef'/>
-     <exports symbol='xmlSchemaFacetLinkPtr' type='typedef'/>
-     <exports symbol='xmlSchemaVal' type='typedef'/>
-     <exports symbol='xmlSchemaAttributeLinkPtr' type='typedef'/>
-     <exports symbol='xmlSchemaType' type='typedef'/>
+     <exports symbol='XML_SCHEMA_TYPE_SIMPLE' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_SIMPLE_CONTENT' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_UNION' type='enum'/>
+     <exports symbol='XML_SCHEMA_TYPE_UR' type='enum'/>
      <exports symbol='xmlSchemaAnnot' type='typedef'/>
      <exports symbol='xmlSchemaAnnotPtr' type='typedef'/>
+     <exports symbol='xmlSchemaAttribute' type='typedef'/>
+     <exports symbol='xmlSchemaAttributeGroup' type='typedef'/>
+     <exports symbol='xmlSchemaAttributeGroupPtr' type='typedef'/>
+     <exports symbol='xmlSchemaAttributeLink' type='typedef'/>
+     <exports symbol='xmlSchemaAttributeLinkPtr' type='typedef'/>
+     <exports symbol='xmlSchemaAttributePtr' type='typedef'/>
+     <exports symbol='xmlSchemaContentType' type='typedef'/>
      <exports symbol='xmlSchemaElement' type='typedef'/>
-     <exports symbol='xmlSchemaWildcard' type='typedef'/>
-     <exports symbol='xmlSchemaWildcardPtr' type='typedef'/>
+     <exports symbol='xmlSchemaElementPtr' type='typedef'/>
+     <exports symbol='xmlSchemaFacet' type='typedef'/>
+     <exports symbol='xmlSchemaFacetLink' type='typedef'/>
+     <exports symbol='xmlSchemaFacetLinkPtr' type='typedef'/>
      <exports symbol='xmlSchemaFacetPtr' type='typedef'/>
+     <exports symbol='xmlSchemaNotation' type='typedef'/>
+     <exports symbol='xmlSchemaNotationPtr' type='typedef'/>
+     <exports symbol='xmlSchemaType' type='typedef'/>
      <exports symbol='xmlSchemaTypeLink' type='typedef'/>
-     <exports symbol='xmlSchemaAttributeLink' type='typedef'/>
-     <exports symbol='xmlSchemaValPtr' type='typedef'/>
-     <exports symbol='xmlSchemaFacetLink' type='typedef'/>
-     <exports symbol='xmlSchemaWildcardNsPtr' type='typedef'/>
-     <exports symbol='xmlSchemaAttributeGroup' type='typedef'/>
      <exports symbol='xmlSchemaTypeLinkPtr' type='typedef'/>
-     <exports symbol='xmlSchemaWildcardNs' type='typedef'/>
-     <exports symbol='xmlSchemaAttributePtr' type='typedef'/>
-     <exports symbol='xmlSchemaNotationPtr' type='typedef'/>
-     <exports symbol='xmlSchemaValType' type='typedef'/>
      <exports symbol='xmlSchemaTypePtr' type='typedef'/>
-     <exports symbol='xmlSchemaNotation' type='typedef'/>
-     <exports symbol='xmlSchemaFacet' type='typedef'/>
-     <exports symbol='xmlSchemaContentType' type='typedef'/>
      <exports symbol='xmlSchemaTypeType' type='typedef'/>
-     <exports symbol='xmlSchemaAttribute' type='typedef'/>
-     <exports symbol='_xmlSchemaWildcardNs' type='struct'/>
-     <exports symbol='_xmlSchemaNotation' type='struct'/>
+     <exports symbol='xmlSchemaVal' type='typedef'/>
+     <exports symbol='xmlSchemaValPtr' type='typedef'/>
+     <exports symbol='xmlSchemaValType' type='typedef'/>
+     <exports symbol='xmlSchemaWildcard' type='typedef'/>
+     <exports symbol='xmlSchemaWildcardNs' type='typedef'/>
+     <exports symbol='xmlSchemaWildcardNsPtr' type='typedef'/>
+     <exports symbol='xmlSchemaWildcardPtr' type='typedef'/>
+     <exports symbol='_xmlSchema' type='struct'/>
+     <exports symbol='_xmlSchemaAnnot' type='struct'/>
      <exports symbol='_xmlSchemaAttribute' type='struct'/>
-     <exports symbol='_xmlSchemaType' type='struct'/>
      <exports symbol='_xmlSchemaAttributeGroup' type='struct'/>
-     <exports symbol='_xmlSchemaFacetLink' type='struct'/>
-     <exports symbol='_xmlSchemaElement' type='struct'/>
-     <exports symbol='_xmlSchema' type='struct'/>
      <exports symbol='_xmlSchemaAttributeLink' type='struct'/>
+     <exports symbol='_xmlSchemaElement' type='struct'/>
      <exports symbol='_xmlSchemaFacet' type='struct'/>
-     <exports symbol='_xmlSchemaWildcard' type='struct'/>
+     <exports symbol='_xmlSchemaFacetLink' type='struct'/>
+     <exports symbol='_xmlSchemaNotation' type='struct'/>
+     <exports symbol='_xmlSchemaType' type='struct'/>
      <exports symbol='_xmlSchemaTypeLink' type='struct'/>
-     <exports symbol='_xmlSchemaAnnot' type='struct'/>
+     <exports symbol='_xmlSchemaWildcard' type='struct'/>
+     <exports symbol='_xmlSchemaWildcardNs' type='struct'/>
      <exports symbol='xmlSchemaFreeType' type='function'/>
      <exports symbol='xmlSchemaFreeWildcard' type='function'/>
     </file>
      <summary>XML Schematron implementation</summary>
      <description>interface to the XML Schematron validity checking. </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_SCHEMATRON_OUT_IO' type='enum'/>
-     <exports symbol='XML_SCHEMATRON_OUT_ERROR' type='enum'/>
      <exports symbol='XML_SCHEMATRON_OUT_BUFFER' type='enum'/>
+     <exports symbol='XML_SCHEMATRON_OUT_ERROR' type='enum'/>
      <exports symbol='XML_SCHEMATRON_OUT_FILE' type='enum'/>
-     <exports symbol='XML_SCHEMATRON_OUT_XML' type='enum'/>
-     <exports symbol='XML_SCHEMATRON_OUT_TEXT' type='enum'/>
+     <exports symbol='XML_SCHEMATRON_OUT_IO' type='enum'/>
      <exports symbol='XML_SCHEMATRON_OUT_QUIET' type='enum'/>
-     <exports symbol='xmlSchematronValidCtxt' type='typedef'/>
-     <exports symbol='xmlSchematronValidOptions' type='typedef'/>
-     <exports symbol='xmlSchematronPtr' type='typedef'/>
-     <exports symbol='xmlSchematronParserCtxt' type='typedef'/>
+     <exports symbol='XML_SCHEMATRON_OUT_TEXT' type='enum'/>
+     <exports symbol='XML_SCHEMATRON_OUT_XML' type='enum'/>
      <exports symbol='xmlSchematron' type='typedef'/>
-     <exports symbol='xmlSchematronValidCtxtPtr' type='typedef'/>
+     <exports symbol='xmlSchematronParserCtxt' type='typedef'/>
      <exports symbol='xmlSchematronParserCtxtPtr' type='typedef'/>
-     <exports symbol='xmlSchematronValidateDoc' type='function'/>
-     <exports symbol='xmlSchematronFreeParserCtxt' type='function'/>
-     <exports symbol='xmlSchematronNewMemParserCtxt' type='function'/>
-     <exports symbol='xmlSchematronValidityErrorFunc' type='function'/>
-     <exports symbol='xmlSchematronNewParserCtxt' type='function'/>
-     <exports symbol='xmlSchematronValidityWarningFunc' type='function'/>
+     <exports symbol='xmlSchematronPtr' type='typedef'/>
+     <exports symbol='xmlSchematronValidCtxt' type='typedef'/>
+     <exports symbol='xmlSchematronValidCtxtPtr' type='typedef'/>
+     <exports symbol='xmlSchematronValidOptions' type='typedef'/>
      <exports symbol='xmlSchematronFree' type='function'/>
-     <exports symbol='xmlSchematronSetValidStructuredErrors' type='function'/>
+     <exports symbol='xmlSchematronFreeParserCtxt' type='function'/>
      <exports symbol='xmlSchematronFreeValidCtxt' type='function'/>
-     <exports symbol='xmlSchematronParse' type='function'/>
      <exports symbol='xmlSchematronNewDocParserCtxt' type='function'/>
+     <exports symbol='xmlSchematronNewMemParserCtxt' type='function'/>
+     <exports symbol='xmlSchematronNewParserCtxt' type='function'/>
      <exports symbol='xmlSchematronNewValidCtxt' type='function'/>
+     <exports symbol='xmlSchematronParse' type='function'/>
+     <exports symbol='xmlSchematronSetValidStructuredErrors' type='function'/>
+     <exports symbol='xmlSchematronValidateDoc' type='function'/>
+     <exports symbol='xmlSchematronValidityErrorFunc' type='function'/>
+     <exports symbol='xmlSchematronValidityWarningFunc' type='function'/>
     </file>
     <file name='threads'>
      <summary>interfaces for thread handling</summary>
      <description>set of generic threading related routines should work with pthreads, Windows native or TLS threads </description>
      <author>Daniel Veillard </author>
      <exports symbol='xmlMutex' type='typedef'/>
+     <exports symbol='xmlMutexPtr' type='typedef'/>
      <exports symbol='xmlRMutex' type='typedef'/>
      <exports symbol='xmlRMutexPtr' type='typedef'/>
-     <exports symbol='xmlMutexPtr' type='typedef'/>
+     <exports symbol='xmlCleanupThreads' type='function'/>
+     <exports symbol='xmlDllMain' type='function'/>
+     <exports symbol='xmlFreeMutex' type='function'/>
      <exports symbol='xmlFreeRMutex' type='function'/>
+     <exports symbol='xmlGetGlobalState' type='function'/>
      <exports symbol='xmlGetThreadId' type='function'/>
-     <exports symbol='xmlMutexUnlock' type='function'/>
-     <exports symbol='xmlCleanupThreads' type='function'/>
+     <exports symbol='xmlInitThreads' type='function'/>
+     <exports symbol='xmlIsMainThread' type='function'/>
      <exports symbol='xmlLockLibrary' type='function'/>
-     <exports symbol='xmlNewRMutex' type='function'/>
      <exports symbol='xmlMutexLock' type='function'/>
-     <exports symbol='xmlIsMainThread' type='function'/>
-     <exports symbol='xmlRMutexUnlock' type='function'/>
-     <exports symbol='xmlGetGlobalState' type='function'/>
+     <exports symbol='xmlMutexUnlock' type='function'/>
      <exports symbol='xmlNewMutex' type='function'/>
-     <exports symbol='xmlDllMain' type='function'/>
-     <exports symbol='xmlFreeMutex' type='function'/>
-     <exports symbol='xmlUnlockLibrary' type='function'/>
-     <exports symbol='xmlInitThreads' type='function'/>
+     <exports symbol='xmlNewRMutex' type='function'/>
      <exports symbol='xmlRMutexLock' type='function'/>
+     <exports symbol='xmlRMutexUnlock' type='function'/>
+     <exports symbol='xmlUnlockLibrary' type='function'/>
     </file>
     <file name='tree'>
      <summary>interfaces for tree manipulation</summary>
      <description>this module describes the structures found in an tree resulting from an XML or HTML parsing, as well as the API provided for various processing on that tree </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_LOCAL_NAMESPACE' type='macro'/>
-     <exports symbol='XML_DOCB_DOCUMENT_NODE' type='macro'/>
      <exports symbol='BASE_BUFFER_SIZE' type='macro'/>
-     <exports symbol='XML_XML_ID' type='macro'/>
-     <exports symbol='xmlRootNode' type='macro'/>
-     <exports symbol='XML_GET_LINE' type='macro'/>
+     <exports symbol='LIBXML2_NEW_BUFFER' type='macro'/>
+     <exports symbol='XML_DOCB_DOCUMENT_NODE' type='macro'/>
      <exports symbol='XML_GET_CONTENT' type='macro'/>
-     <exports symbol='xmlChildrenNode' type='macro'/>
+     <exports symbol='XML_GET_LINE' type='macro'/>
+     <exports symbol='XML_LOCAL_NAMESPACE' type='macro'/>
+     <exports symbol='XML_XML_ID' type='macro'/>
      <exports symbol='XML_XML_NAMESPACE' type='macro'/>
-     <exports symbol='LIBXML2_NEW_BUFFER' type='macro'/>
-     <exports symbol='XML_ATTRIBUTE_IMPLIED' type='enum'/>
-     <exports symbol='XML_ELEMENT_CONTENT_ELEMENT' type='enum'/>
-     <exports symbol='XML_ENTITY_REF_NODE' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_IDREFS' type='enum'/>
-     <exports symbol='XML_BUFFER_ALLOC_DOUBLEIT' type='enum'/>
-     <exports symbol='XML_XINCLUDE_END' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_NODE' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_NMTOKENS' type='enum'/>
+     <exports symbol='xmlChildrenNode' type='macro'/>
+     <exports symbol='xmlRootNode' type='macro'/>
+     <exports symbol='XML_ATTRIBUTE_CDATA' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_DECL' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_ENTITIES' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_ENTITY' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_ENUMERATION' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_FIXED' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_ID' type='enum'/>
      <exports symbol='XML_ATTRIBUTE_IDREF' type='enum'/>
-     <exports symbol='XML_ELEMENT_TYPE_ELEMENT' type='enum'/>
-     <exports symbol='XML_TEXT_NODE' type='enum'/>
-     <exports symbol='XML_CDATA_SECTION_NODE' type='enum'/>
-     <exports symbol='XML_ELEMENT_NODE' type='enum'/>
-     <exports symbol='XML_ELEMENT_DECL' type='enum'/>
-     <exports symbol='XML_DOC_USERBUILT' type='enum'/>
-     <exports symbol='XML_DOC_INTERNAL' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_IDREFS' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_IMPLIED' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_NMTOKEN' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_NMTOKENS' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_NODE' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_NONE' type='enum'/>
+     <exports symbol='XML_ATTRIBUTE_NOTATION' type='enum'/>
      <exports symbol='XML_ATTRIBUTE_REQUIRED' type='enum'/>
-     <exports symbol='XML_DOCUMENT_FRAG_NODE' type='enum'/>
-     <exports symbol='XML_DOC_DTDVALID' type='enum'/>
-     <exports symbol='XML_ELEMENT_TYPE_ANY' type='enum'/>
-     <exports symbol='XML_DOC_NSVALID' type='enum'/>
      <exports symbol='XML_BUFFER_ALLOC_BOUNDED' type='enum'/>
-     <exports symbol='XML_ELEMENT_CONTENT_PCDATA' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_FIXED' type='enum'/>
+     <exports symbol='XML_BUFFER_ALLOC_DOUBLEIT' type='enum'/>
+     <exports symbol='XML_BUFFER_ALLOC_EXACT' type='enum'/>
+     <exports symbol='XML_BUFFER_ALLOC_HYBRID' type='enum'/>
+     <exports symbol='XML_BUFFER_ALLOC_IMMUTABLE' type='enum'/>
+     <exports symbol='XML_BUFFER_ALLOC_IO' type='enum'/>
+     <exports symbol='XML_CDATA_SECTION_NODE' type='enum'/>
+     <exports symbol='XML_COMMENT_NODE' type='enum'/>
+     <exports symbol='XML_DOCUMENT_FRAG_NODE' type='enum'/>
+     <exports symbol='XML_DOCUMENT_NODE' type='enum'/>
      <exports symbol='XML_DOCUMENT_TYPE_NODE' type='enum'/>
+     <exports symbol='XML_DOC_DTDVALID' type='enum'/>
      <exports symbol='XML_DOC_HTML' type='enum'/>
-     <exports symbol='XML_ELEMENT_CONTENT_ONCE' type='enum'/>
-     <exports symbol='XML_NAMESPACE_DECL' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_NOTATION' type='enum'/>
-     <exports symbol='XML_ELEMENT_TYPE_MIXED' type='enum'/>
-     <exports symbol='XML_XINCLUDE_START' type='enum'/>
-     <exports symbol='XML_BUFFER_ALLOC_HYBRID' type='enum'/>
+     <exports symbol='XML_DOC_INTERNAL' type='enum'/>
+     <exports symbol='XML_DOC_NSVALID' type='enum'/>
+     <exports symbol='XML_DOC_OLD10' type='enum'/>
+     <exports symbol='XML_DOC_USERBUILT' type='enum'/>
+     <exports symbol='XML_DOC_WELLFORMED' type='enum'/>
      <exports symbol='XML_DOC_XINCLUDE' type='enum'/>
-     <exports symbol='XML_BUFFER_ALLOC_EXACT' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_ENTITIES' type='enum'/>
-     <exports symbol='XML_BUFFER_ALLOC_IMMUTABLE' type='enum'/>
-     <exports symbol='XML_NOTATION_NODE' type='enum'/>
+     <exports symbol='XML_DTD_NODE' type='enum'/>
+     <exports symbol='XML_ELEMENT_CONTENT_ELEMENT' type='enum'/>
+     <exports symbol='XML_ELEMENT_CONTENT_MULT' type='enum'/>
+     <exports symbol='XML_ELEMENT_CONTENT_ONCE' type='enum'/>
+     <exports symbol='XML_ELEMENT_CONTENT_OPT' type='enum'/>
+     <exports symbol='XML_ELEMENT_CONTENT_OR' type='enum'/>
+     <exports symbol='XML_ELEMENT_CONTENT_PCDATA' type='enum'/>
+     <exports symbol='XML_ELEMENT_CONTENT_PLUS' type='enum'/>
      <exports symbol='XML_ELEMENT_CONTENT_SEQ' type='enum'/>
+     <exports symbol='XML_ELEMENT_DECL' type='enum'/>
+     <exports symbol='XML_ELEMENT_NODE' type='enum'/>
+     <exports symbol='XML_ELEMENT_TYPE_ANY' type='enum'/>
+     <exports symbol='XML_ELEMENT_TYPE_ELEMENT' type='enum'/>
      <exports symbol='XML_ELEMENT_TYPE_EMPTY' type='enum'/>
-     <exports symbol='XML_ELEMENT_CONTENT_OPT' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_ENUMERATION' type='enum'/>
-     <exports symbol='XML_DOC_OLD10' type='enum'/>
-     <exports symbol='XML_HTML_DOCUMENT_NODE' type='enum'/>
+     <exports symbol='XML_ELEMENT_TYPE_MIXED' type='enum'/>
      <exports symbol='XML_ELEMENT_TYPE_UNDEFINED' type='enum'/>
-     <exports symbol='XML_DOCUMENT_NODE' type='enum'/>
-     <exports symbol='XML_COMMENT_NODE' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_NONE' type='enum'/>
-     <exports symbol='XML_DTD_NODE' type='enum'/>
-     <exports symbol='XML_ELEMENT_CONTENT_OR' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_NMTOKEN' type='enum'/>
-     <exports symbol='XML_PI_NODE' type='enum'/>
-     <exports symbol='XML_BUFFER_ALLOC_IO' type='enum'/>
-     <exports symbol='XML_ENTITY_NODE' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_ENTITY' type='enum'/>
-     <exports symbol='XML_DOC_WELLFORMED' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_DECL' type='enum'/>
      <exports symbol='XML_ENTITY_DECL' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_ID' type='enum'/>
-     <exports symbol='XML_ATTRIBUTE_CDATA' type='enum'/>
-     <exports symbol='XML_ELEMENT_CONTENT_MULT' type='enum'/>
-     <exports symbol='XML_ELEMENT_CONTENT_PLUS' type='enum'/>
-     <exports symbol='xmlNs' type='typedef'/>
-     <exports symbol='xmlElementContent' type='typedef'/>
-     <exports symbol='xmlEnumerationPtr' type='typedef'/>
+     <exports symbol='XML_ENTITY_NODE' type='enum'/>
+     <exports symbol='XML_ENTITY_REF_NODE' type='enum'/>
+     <exports symbol='XML_HTML_DOCUMENT_NODE' type='enum'/>
+     <exports symbol='XML_NAMESPACE_DECL' type='enum'/>
+     <exports symbol='XML_NOTATION_NODE' type='enum'/>
+     <exports symbol='XML_PI_NODE' type='enum'/>
+     <exports symbol='XML_TEXT_NODE' type='enum'/>
+     <exports symbol='XML_XINCLUDE_END' type='enum'/>
+     <exports symbol='XML_XINCLUDE_START' type='enum'/>
+     <exports symbol='xmlAttr' type='typedef'/>
+     <exports symbol='xmlAttrPtr' type='typedef'/>
+     <exports symbol='xmlAttribute' type='typedef'/>
+     <exports symbol='xmlAttributeDefault' type='typedef'/>
+     <exports symbol='xmlAttributePtr' type='typedef'/>
+     <exports symbol='xmlAttributeType' type='typedef'/>
+     <exports symbol='xmlBuf' type='typedef'/>
+     <exports symbol='xmlBufPtr' type='typedef'/>
      <exports symbol='xmlBuffer' type='typedef'/>
-     <exports symbol='xmlParserInputPtr' type='typedef'/>
-     <exports symbol='xmlSAXLocatorPtr' type='typedef'/>
-     <exports symbol='xmlParserInput' type='typedef'/>
-     <exports symbol='xmlElement' type='typedef'/>
-     <exports symbol='xmlNsType' type='typedef'/>
      <exports symbol='xmlBufferAllocationScheme' type='typedef'/>
-     <exports symbol='xmlNode' type='typedef'/>
-     <exports symbol='xmlDocPtr' type='typedef'/>
      <exports symbol='xmlBufferPtr' type='typedef'/>
-     <exports symbol='xmlDOMWrapCtxtPtr' type='typedef'/>
-     <exports symbol='xmlRefPtr' type='typedef'/>
-     <exports symbol='xmlParserInputBuffer' type='typedef'/>
-     <exports symbol='xmlRef' type='typedef'/>
      <exports symbol='xmlDOMWrapCtxt' type='typedef'/>
-     <exports symbol='xmlNodePtr' type='typedef'/>
-     <exports symbol='xmlParserCtxt' type='typedef'/>
+     <exports symbol='xmlDOMWrapCtxtPtr' type='typedef'/>
+     <exports symbol='xmlDoc' type='typedef'/>
+     <exports symbol='xmlDocProperties' type='typedef'/>
+     <exports symbol='xmlDocPtr' type='typedef'/>
+     <exports symbol='xmlDtd' type='typedef'/>
      <exports symbol='xmlDtdPtr' type='typedef'/>
-     <exports symbol='xmlAttributeDefault' type='typedef'/>
-     <exports symbol='xmlBuf' type='typedef'/>
-     <exports symbol='xmlNotation' type='typedef'/>
+     <exports symbol='xmlElement' type='typedef'/>
+     <exports symbol='xmlElementContent' type='typedef'/>
+     <exports symbol='xmlElementContentOccur' type='typedef'/>
+     <exports symbol='xmlElementContentPtr' type='typedef'/>
+     <exports symbol='xmlElementContentType' type='typedef'/>
+     <exports symbol='xmlElementPtr' type='typedef'/>
      <exports symbol='xmlElementType' type='typedef'/>
-     <exports symbol='xmlEntity' type='typedef'/>
-     <exports symbol='xmlAttr' type='typedef'/>
-     <exports symbol='xmlAttributePtr' type='typedef'/>
      <exports symbol='xmlElementTypeVal' type='typedef'/>
-     <exports symbol='xmlNotationPtr' type='typedef'/>
-     <exports symbol='xmlElementPtr' type='typedef'/>
-     <exports symbol='xmlBufPtr' type='typedef'/>
-     <exports symbol='xmlElementContentOccur' type='typedef'/>
-     <exports symbol='xmlAttrPtr' type='typedef'/>
-     <exports symbol='xmlDoc' type='typedef'/>
-     <exports symbol='xmlID' type='typedef'/>
-     <exports symbol='xmlParserCtxtPtr' type='typedef'/>
+     <exports symbol='xmlEntity' type='typedef'/>
      <exports symbol='xmlEntityPtr' type='typedef'/>
      <exports symbol='xmlEnumeration' type='typedef'/>
-     <exports symbol='xmlAttributeType' type='typedef'/>
+     <exports symbol='xmlEnumerationPtr' type='typedef'/>
+     <exports symbol='xmlID' type='typedef'/>
+     <exports symbol='xmlIDPtr' type='typedef'/>
+     <exports symbol='xmlNode' type='typedef'/>
+     <exports symbol='xmlNodePtr' type='typedef'/>
+     <exports symbol='xmlNotation' type='typedef'/>
+     <exports symbol='xmlNotationPtr' type='typedef'/>
+     <exports symbol='xmlNs' type='typedef'/>
      <exports symbol='xmlNsPtr' type='typedef'/>
-     <exports symbol='xmlParserInputBufferPtr' type='typedef'/>
-     <exports symbol='xmlSAXHandler' type='typedef'/>
+     <exports symbol='xmlNsType' type='typedef'/>
      <exports symbol='xmlOutputBuffer' type='typedef'/>
-     <exports symbol='xmlSAXLocator' type='typedef'/>
-     <exports symbol='xmlElementContentPtr' type='typedef'/>
-     <exports symbol='xmlElementContentType' type='typedef'/>
-     <exports symbol='xmlDocProperties' type='typedef'/>
-     <exports symbol='xmlIDPtr' type='typedef'/>
-     <exports symbol='xmlDtd' type='typedef'/>
-     <exports symbol='xmlAttribute' type='typedef'/>
      <exports symbol='xmlOutputBufferPtr' type='typedef'/>
+     <exports symbol='xmlParserCtxt' type='typedef'/>
+     <exports symbol='xmlParserCtxtPtr' type='typedef'/>
+     <exports symbol='xmlParserInput' type='typedef'/>
+     <exports symbol='xmlParserInputBuffer' type='typedef'/>
+     <exports symbol='xmlParserInputBufferPtr' type='typedef'/>
+     <exports symbol='xmlParserInputPtr' type='typedef'/>
+     <exports symbol='xmlRef' type='typedef'/>
+     <exports symbol='xmlRefPtr' type='typedef'/>
+     <exports symbol='xmlSAXHandler' type='typedef'/>
      <exports symbol='xmlSAXHandlerPtr' type='typedef'/>
-     <exports symbol='_xmlBuffer' type='struct'/>
+     <exports symbol='xmlSAXLocator' type='typedef'/>
+     <exports symbol='xmlSAXLocatorPtr' type='typedef'/>
+     <exports symbol='_xmlAttr' type='struct'/>
      <exports symbol='_xmlAttribute' type='struct'/>
-     <exports symbol='_xmlEnumeration' type='struct'/>
-     <exports symbol='_xmlNs' type='struct'/>
-     <exports symbol='_xmlNode' type='struct'/>
+     <exports symbol='_xmlBuffer' type='struct'/>
+     <exports symbol='_xmlDOMWrapCtxt' type='struct'/>
      <exports symbol='_xmlDoc' type='struct'/>
+     <exports symbol='_xmlDtd' type='struct'/>
      <exports symbol='_xmlElement' type='struct'/>
+     <exports symbol='_xmlElementContent' type='struct'/>
+     <exports symbol='_xmlEnumeration' type='struct'/>
      <exports symbol='_xmlID' type='struct'/>
+     <exports symbol='_xmlNode' type='struct'/>
      <exports symbol='_xmlNotation' type='struct'/>
-     <exports symbol='_xmlDtd' type='struct'/>
+     <exports symbol='_xmlNs' type='struct'/>
      <exports symbol='_xmlRef' type='struct'/>
-     <exports symbol='_xmlAttr' type='struct'/>
-     <exports symbol='_xmlDOMWrapCtxt' type='struct'/>
-     <exports symbol='_xmlElementContent' type='struct'/>
-     <exports symbol='xmlDocCopyNode' type='function'/>
-     <exports symbol='xmlNewDocRawNode' type='function'/>
-     <exports symbol='xmlBufContent' type='function'/>
-     <exports symbol='xmlNewNsPropEatName' type='function'/>
-     <exports symbol='xmlStringGetNodeList' type='function'/>
-     <exports symbol='xmlNewCDataBlock' type='function'/>
-     <exports symbol='xmlBufferWriteCHAR' type='function'/>
-     <exports symbol='xmlNodeGetBase' type='function'/>
-     <exports symbol='xmlBufferEmpty' type='function'/>
-     <exports symbol='xmlBuildQName' type='function'/>
-     <exports symbol='xmlValidateNMToken' type='function'/>
-     <exports symbol='xmlSaveFormatFileEnc' type='function'/>
+     <exports symbol='xmlAddChild' type='function'/>
+     <exports symbol='xmlAddChildList' type='function'/>
+     <exports symbol='xmlAddNextSibling' type='function'/>
+     <exports symbol='xmlAddPrevSibling' type='function'/>
      <exports symbol='xmlAddSibling' type='function'/>
-     <exports symbol='xmlBufferCreate' type='function'/>
-     <exports symbol='xmlNewDocFragment' type='function'/>
-     <exports symbol='xmlDocGetRootElement' type='function'/>
-     <exports symbol='xmlGetProp' type='function'/>
-     <exports symbol='xmlValidateName' type='function'/>
+     <exports symbol='xmlAttrSerializeTxtContent' type='function'/>
+     <exports symbol='xmlBufContent' type='function'/>
      <exports symbol='xmlBufEnd' type='function'/>
-     <exports symbol='xmlValidateQName' type='function'/>
-     <exports symbol='xmlHasNsProp' type='function'/>
-     <exports symbol='xmlAddPrevSibling' type='function'/>
+     <exports symbol='xmlBufGetNodeContent' type='function'/>
+     <exports symbol='xmlBufNodeDump' type='function'/>
+     <exports symbol='xmlBufShrink' type='function'/>
+     <exports symbol='xmlBufUse' type='function'/>
+     <exports symbol='xmlBufferAdd' type='function'/>
      <exports symbol='xmlBufferAddHead' type='function'/>
-     <exports symbol='xmlNewPI' type='function'/>
-     <exports symbol='xmlDocDumpFormatMemoryEnc' type='function'/>
-     <exports symbol='xmlSetProp' type='function'/>
-     <exports symbol='xmlChildElementCount' type='function'/>
-     <exports symbol='xmlElemDump' type='function'/>
-     <exports symbol='xmlSaveFormatFileTo' type='function'/>
-     <exports symbol='xmlGetIntSubset' type='function'/>
-     <exports symbol='xmlNodeBufGetContent' type='function'/>
-     <exports symbol='xmlNextElementSibling' type='function'/>
-     <exports symbol='xmlBufferWriteChar' type='function'/>
+     <exports symbol='xmlBufferCCat' type='function'/>
+     <exports symbol='xmlBufferCat' type='function'/>
+     <exports symbol='xmlBufferContent' type='function'/>
+     <exports symbol='xmlBufferCreate' type='function'/>
+     <exports symbol='xmlBufferCreateSize' type='function'/>
+     <exports symbol='xmlBufferCreateStatic' type='function'/>
+     <exports symbol='xmlBufferDetach' type='function'/>
+     <exports symbol='xmlBufferDump' type='function'/>
+     <exports symbol='xmlBufferEmpty' type='function'/>
      <exports symbol='xmlBufferFree' type='function'/>
-     <exports symbol='xmlDOMWrapCloneNode' type='function'/>
-     <exports symbol='xmlNewNode' type='function'/>
-     <exports symbol='xmlSaveFileTo' type='function'/>
-     <exports symbol='xmlNewTextLen' type='function'/>
-     <exports symbol='xmlNewTextChild' type='function'/>
-     <exports symbol='xmlNodeSetContent' type='function'/>
-     <exports symbol='xmlBufferAdd' type='function'/>
-     <exports symbol='xmlNodeDumpOutput' type='function'/>
-     <exports symbol='xmlCopyNamespace' type='function'/>
-     <exports symbol='xmlSearchNsByHref' type='function'/>
-     <exports symbol='xmlAddChild' type='function'/>
-     <exports symbol='xmlReconciliateNs' type='function'/>
-     <exports symbol='xmlValidateNCName' type='function'/>
-     <exports symbol='xmlNewDocComment' type='function'/>
-     <exports symbol='xmlGetCompressMode' type='function'/>
-     <exports symbol='xmlNodeDump' type='function'/>
-     <exports symbol='xmlBufferCreateSize' type='function'/>
-     <exports symbol='xmlNodeListGetString' type='function'/>
-     <exports symbol='xmlSetCompressMode' type='function'/>
-     <exports symbol='xmlSetTreeDoc' type='function'/>
-     <exports symbol='xmlDOMWrapAdoptNode' type='function'/>
-     <exports symbol='xmlCopyNodeList' type='function'/>
-     <exports symbol='xmlNewDocNodeEatName' type='function'/>
-     <exports symbol='xmlAddChildList' type='function'/>
-     <exports symbol='xmlGetNodePath' type='function'/>
-     <exports symbol='xmlFreePropList' type='function'/>
-     <exports symbol='xmlNodeAddContent' type='function'/>
-     <exports symbol='xmlUnsetNsProp' type='function'/>
-     <exports symbol='xmlFirstElementChild' type='function'/>
-     <exports symbol='xmlAddNextSibling' type='function'/>
-     <exports symbol='xmlIsBlankNode' type='function'/>
-     <exports symbol='xmlNewGlobalNs' type='function'/>
-     <exports symbol='xmlBufferDump' type='function'/>
-     <exports symbol='xmlNodeGetContent' type='function'/>
-     <exports symbol='xmlCopyDoc' type='function'/>
-     <exports symbol='xmlDOMWrapNewCtxt' type='function'/>
-     <exports symbol='xmlDocDumpMemoryEnc' type='function'/>
-     <exports symbol='xmlBufGetNodeContent' type='function'/>
-     <exports symbol='xmlTextMerge' type='function'/>
-     <exports symbol='xmlDocDumpMemory' type='function'/>
-     <exports symbol='xmlNewDocPI' type='function'/>
-     <exports symbol='xmlFreeNs' type='function'/>
-     <exports symbol='xmlDocDump' type='function'/>
-     <exports symbol='xmlFreeProp' type='function'/>
-     <exports symbol='xmlGetNoNsProp' type='function'/>
-     <exports symbol='xmlSplitQName2' type='function'/>
-     <exports symbol='xmlNewProp' type='function'/>
-     <exports symbol='xmlTextConcat' type='function'/>
-     <exports symbol='xmlNodeGetSpacePreserve' type='function'/>
+     <exports symbol='xmlBufferGrow' type='function'/>
+     <exports symbol='xmlBufferLength' type='function'/>
+     <exports symbol='xmlBufferResize' type='function'/>
+     <exports symbol='xmlBufferSetAllocationScheme' type='function'/>
      <exports symbol='xmlBufferShrink' type='function'/>
-     <exports symbol='xmlPreviousElementSibling' type='function'/>
-     <exports symbol='xmlNodeSetContentLen' type='function'/>
-     <exports symbol='xmlNodeAddContentLen' type='function'/>
+     <exports symbol='xmlBufferWriteCHAR' type='function'/>
+     <exports symbol='xmlBufferWriteChar' type='function'/>
      <exports symbol='xmlBufferWriteQuotedString' type='function'/>
-     <exports symbol='xmlCopyProp' type='function'/>
-     <exports symbol='xmlReplaceNode' type='function'/>
-     <exports symbol='xmlSetDocCompressMode' type='function'/>
+     <exports symbol='xmlBuildQName' type='function'/>
+     <exports symbol='xmlChildElementCount' type='function'/>
+     <exports symbol='xmlCopyDoc' type='function'/>
+     <exports symbol='xmlCopyDtd' type='function'/>
+     <exports symbol='xmlCopyNamespace' type='function'/>
+     <exports symbol='xmlCopyNamespaceList' type='function'/>
      <exports symbol='xmlCopyNode' type='function'/>
-     <exports symbol='xmlUnlinkNode' type='function'/>
-     <exports symbol='xmlSplitQName3' type='function'/>
+     <exports symbol='xmlCopyNodeList' type='function'/>
+     <exports symbol='xmlCopyProp' type='function'/>
+     <exports symbol='xmlCopyPropList' type='function'/>
+     <exports symbol='xmlCreateIntSubset' type='function'/>
      <exports symbol='xmlDOMWrapAcquireNsFunction' type='function'/>
-     <exports symbol='xmlBufUse' type='function'/>
+     <exports symbol='xmlDOMWrapAdoptNode' type='function'/>
+     <exports symbol='xmlDOMWrapCloneNode' type='function'/>
+     <exports symbol='xmlDOMWrapFreeCtxt' type='function'/>
+     <exports symbol='xmlDOMWrapNewCtxt' type='function'/>
+     <exports symbol='xmlDOMWrapReconcileNamespaces' type='function'/>
+     <exports symbol='xmlDOMWrapRemoveNode' type='function'/>
+     <exports symbol='xmlDocCopyNode' type='function'/>
+     <exports symbol='xmlDocCopyNodeList' type='function'/>
+     <exports symbol='xmlDocDump' type='function'/>
+     <exports symbol='xmlDocDumpFormatMemory' type='function'/>
+     <exports symbol='xmlDocDumpFormatMemoryEnc' type='function'/>
+     <exports symbol='xmlDocDumpMemory' type='function'/>
+     <exports symbol='xmlDocDumpMemoryEnc' type='function'/>
+     <exports symbol='xmlDocFormatDump' type='function'/>
+     <exports symbol='xmlDocGetRootElement' type='function'/>
      <exports symbol='xmlDocSetRootElement' type='function'/>
-     <exports symbol='xmlGetLineNo' type='function'/>
-     <exports symbol='xmlBufferContent' type='function'/>
-     <exports symbol='xmlRemoveProp' type='function'/>
-     <exports symbol='xmlLastElementChild' type='function'/>
-     <exports symbol='xmlNodeGetLang' type='function'/>
+     <exports symbol='xmlElemDump' type='function'/>
+     <exports symbol='xmlFirstElementChild' type='function'/>
+     <exports symbol='xmlFreeDoc' type='function'/>
+     <exports symbol='xmlFreeDtd' type='function'/>
+     <exports symbol='xmlFreeNode' type='function'/>
+     <exports symbol='xmlFreeNodeList' type='function'/>
+     <exports symbol='xmlFreeNs' type='function'/>
+     <exports symbol='xmlFreeNsList' type='function'/>
+     <exports symbol='xmlFreeProp' type='function'/>
+     <exports symbol='xmlFreePropList' type='function'/>
+     <exports symbol='xmlGetBufferAllocationScheme' type='function'/>
+     <exports symbol='xmlGetCompressMode' type='function'/>
      <exports symbol='xmlGetDocCompressMode' type='function'/>
-     <exports symbol='xmlBufNodeDump' type='function'/>
+     <exports symbol='xmlGetIntSubset' type='function'/>
+     <exports symbol='xmlGetLastChild' type='function'/>
+     <exports symbol='xmlGetLineNo' type='function'/>
+     <exports symbol='xmlGetNoNsProp' type='function'/>
+     <exports symbol='xmlGetNodePath' type='function'/>
+     <exports symbol='xmlGetNsList' type='function'/>
      <exports symbol='xmlGetNsProp' type='function'/>
-     <exports symbol='xmlNewDocProp' type='function'/>
-     <exports symbol='xmlFreeNode' type='function'/>
-     <exports symbol='xmlNewNsProp' type='function'/>
-     <exports symbol='xmlDOMWrapFreeCtxt' type='function'/>
-     <exports symbol='xmlBufferDetach' type='function'/>
-     <exports symbol='xmlBufferSetAllocationScheme' type='function'/>
-     <exports symbol='xmlNewChild' type='function'/>
-     <exports symbol='xmlSearchNs' type='function'/>
-     <exports symbol='xmlStringLenGetNodeList' type='function'/>
-     <exports symbol='xmlSaveFormatFile' type='function'/>
-     <exports symbol='xmlCopyPropList' type='function'/>
-     <exports symbol='xmlDocFormatDump' type='function'/>
-     <exports symbol='xmlNodeSetSpacePreserve' type='function'/>
+     <exports symbol='xmlGetProp' type='function'/>
+     <exports symbol='xmlHasNsProp' type='function'/>
      <exports symbol='xmlHasProp' type='function'/>
-     <exports symbol='xmlBufferCat' type='function'/>
-     <exports symbol='xmlCreateIntSubset' type='function'/>
-     <exports symbol='xmlNewDoc' type='function'/>
+     <exports symbol='xmlIsBlankNode' type='function'/>
+     <exports symbol='xmlIsXHTML' type='function'/>
+     <exports symbol='xmlLastElementChild' type='function'/>
+     <exports symbol='xmlNewCDataBlock' type='function'/>
      <exports symbol='xmlNewCharRef' type='function'/>
-     <exports symbol='xmlCopyNamespaceList' type='function'/>
-     <exports symbol='xmlNewNodeEatName' type='function'/>
-     <exports symbol='xmlBufferResize' type='function'/>
-     <exports symbol='xmlNodeSetBase' type='function'/>
+     <exports symbol='xmlNewChild' type='function'/>
      <exports symbol='xmlNewComment' type='function'/>
-     <exports symbol='xmlBufferLength' type='function'/>
-     <exports symbol='xmlNewText' type='function'/>
-     <exports symbol='xmlUnsetProp' type='function'/>
-     <exports symbol='xmlGetBufferAllocationScheme' type='function'/>
-     <exports symbol='xmlSaveFile' type='function'/>
-     <exports symbol='xmlDocCopyNodeList' type='function'/>
-     <exports symbol='xmlSetNs' type='function'/>
-     <exports symbol='xmlNewNs' type='function'/>
-     <exports symbol='xmlDOMWrapRemoveNode' type='function'/>
-     <exports symbol='xmlAttrSerializeTxtContent' type='function'/>
-     <exports symbol='xmlCopyDtd' type='function'/>
+     <exports symbol='xmlNewDoc' type='function'/>
+     <exports symbol='xmlNewDocComment' type='function'/>
+     <exports symbol='xmlNewDocFragment' type='function'/>
+     <exports symbol='xmlNewDocNode' type='function'/>
+     <exports symbol='xmlNewDocNodeEatName' type='function'/>
+     <exports symbol='xmlNewDocPI' type='function'/>
+     <exports symbol='xmlNewDocProp' type='function'/>
+     <exports symbol='xmlNewDocRawNode' type='function'/>
      <exports symbol='xmlNewDocText' type='function'/>
-     <exports symbol='xmlNodeListGetRawString' type='function'/>
-     <exports symbol='xmlBufferCreateStatic' type='function'/>
+     <exports symbol='xmlNewDocTextLen' type='function'/>
+     <exports symbol='xmlNewDtd' type='function'/>
+     <exports symbol='xmlNewGlobalNs' type='function'/>
+     <exports symbol='xmlNewNode' type='function'/>
+     <exports symbol='xmlNewNodeEatName' type='function'/>
+     <exports symbol='xmlNewNs' type='function'/>
+     <exports symbol='xmlNewNsProp' type='function'/>
+     <exports symbol='xmlNewNsPropEatName' type='function'/>
+     <exports symbol='xmlNewPI' type='function'/>
+     <exports symbol='xmlNewProp' type='function'/>
      <exports symbol='xmlNewReference' type='function'/>
-     <exports symbol='xmlDOMWrapReconcileNamespaces' type='function'/>
-     <exports symbol='xmlBufferCCat' type='function'/>
-     <exports symbol='xmlGetNsList' type='function'/>
-     <exports symbol='xmlBufferGrow' type='function'/>
+     <exports symbol='xmlNewText' type='function'/>
+     <exports symbol='xmlNewTextChild' type='function'/>
+     <exports symbol='xmlNewTextLen' type='function'/>
+     <exports symbol='xmlNextElementSibling' type='function'/>
+     <exports symbol='xmlNodeAddContent' type='function'/>
+     <exports symbol='xmlNodeAddContentLen' type='function'/>
+     <exports symbol='xmlNodeBufGetContent' type='function'/>
+     <exports symbol='xmlNodeDump' type='function'/>
+     <exports symbol='xmlNodeDumpOutput' type='function'/>
+     <exports symbol='xmlNodeGetBase' type='function'/>
+     <exports symbol='xmlNodeGetContent' type='function'/>
+     <exports symbol='xmlNodeGetLang' type='function'/>
+     <exports symbol='xmlNodeGetSpacePreserve' type='function'/>
      <exports symbol='xmlNodeIsText' type='function'/>
-     <exports symbol='xmlSetBufferAllocationScheme' type='function'/>
-     <exports symbol='xmlIsXHTML' type='function'/>
+     <exports symbol='xmlNodeListGetRawString' type='function'/>
+     <exports symbol='xmlNodeListGetString' type='function'/>
+     <exports symbol='xmlNodeSetBase' type='function'/>
+     <exports symbol='xmlNodeSetContent' type='function'/>
+     <exports symbol='xmlNodeSetContentLen' type='function'/>
      <exports symbol='xmlNodeSetLang' type='function'/>
-     <exports symbol='xmlFreeDtd' type='function'/>
-     <exports symbol='xmlFreeNodeList' type='function'/>
-     <exports symbol='xmlFreeDoc' type='function'/>
-     <exports symbol='xmlBufShrink' type='function'/>
-     <exports symbol='xmlNewDocNode' type='function'/>
+     <exports symbol='xmlNodeSetName' type='function'/>
+     <exports symbol='xmlNodeSetSpacePreserve' type='function'/>
+     <exports symbol='xmlPreviousElementSibling' type='function'/>
+     <exports symbol='xmlReconciliateNs' type='function'/>
+     <exports symbol='xmlRemoveProp' type='function'/>
+     <exports symbol='xmlReplaceNode' type='function'/>
+     <exports symbol='xmlSaveFile' type='function'/>
      <exports symbol='xmlSaveFileEnc' type='function'/>
-     <exports symbol='xmlSetNsProp' type='function'/>
-     <exports symbol='xmlDocDumpFormatMemory' type='function'/>
+     <exports symbol='xmlSaveFileTo' type='function'/>
+     <exports symbol='xmlSaveFormatFile' type='function'/>
+     <exports symbol='xmlSaveFormatFileEnc' type='function'/>
+     <exports symbol='xmlSaveFormatFileTo' type='function'/>
+     <exports symbol='xmlSearchNs' type='function'/>
+     <exports symbol='xmlSearchNsByHref' type='function'/>
+     <exports symbol='xmlSetBufferAllocationScheme' type='function'/>
+     <exports symbol='xmlSetCompressMode' type='function'/>
+     <exports symbol='xmlSetDocCompressMode' type='function'/>
      <exports symbol='xmlSetListDoc' type='function'/>
-     <exports symbol='xmlNodeSetName' type='function'/>
-     <exports symbol='xmlNewDocTextLen' type='function'/>
-     <exports symbol='xmlNewDtd' type='function'/>
-     <exports symbol='xmlFreeNsList' type='function'/>
-     <exports symbol='xmlGetLastChild' type='function'/>
+     <exports symbol='xmlSetNs' type='function'/>
+     <exports symbol='xmlSetNsProp' type='function'/>
+     <exports symbol='xmlSetProp' type='function'/>
+     <exports symbol='xmlSetTreeDoc' type='function'/>
+     <exports symbol='xmlSplitQName2' type='function'/>
+     <exports symbol='xmlSplitQName3' type='function'/>
+     <exports symbol='xmlStringGetNodeList' type='function'/>
+     <exports symbol='xmlStringLenGetNodeList' type='function'/>
+     <exports symbol='xmlTextConcat' type='function'/>
+     <exports symbol='xmlTextMerge' type='function'/>
+     <exports symbol='xmlUnlinkNode' type='function'/>
+     <exports symbol='xmlUnsetNsProp' type='function'/>
+     <exports symbol='xmlUnsetProp' type='function'/>
+     <exports symbol='xmlValidateNCName' type='function'/>
+     <exports symbol='xmlValidateNMToken' type='function'/>
+     <exports symbol='xmlValidateName' type='function'/>
+     <exports symbol='xmlValidateQName' type='function'/>
     </file>
     <file name='uri'>
      <summary>library of generic URI related routines</summary>
      <exports symbol='xmlURI' type='typedef'/>
      <exports symbol='xmlURIPtr' type='typedef'/>
      <exports symbol='_xmlURI' type='struct'/>
-     <exports symbol='xmlNormalizeURIPath' type='function'/>
-     <exports symbol='xmlPrintURI' type='function'/>
-     <exports symbol='xmlParseURIRaw' type='function'/>
-     <exports symbol='xmlURIUnescapeString' type='function'/>
-     <exports symbol='xmlParseURI' type='function'/>
-     <exports symbol='xmlCreateURI' type='function'/>
-     <exports symbol='xmlURIEscapeStr' type='function'/>
-     <exports symbol='xmlPathToURI' type='function'/>
+     <exports symbol='xmlBuildRelativeURI' type='function'/>
+     <exports symbol='xmlBuildURI' type='function'/>
      <exports symbol='xmlCanonicPath' type='function'/>
+     <exports symbol='xmlCreateURI' type='function'/>
      <exports symbol='xmlFreeURI' type='function'/>
+     <exports symbol='xmlNormalizeURIPath' type='function'/>
+     <exports symbol='xmlParseURI' type='function'/>
+     <exports symbol='xmlParseURIRaw' type='function'/>
      <exports symbol='xmlParseURIReference' type='function'/>
-     <exports symbol='xmlBuildRelativeURI' type='function'/>
+     <exports symbol='xmlPathToURI' type='function'/>
+     <exports symbol='xmlPrintURI' type='function'/>
      <exports symbol='xmlSaveUri' type='function'/>
      <exports symbol='xmlURIEscape' type='function'/>
-     <exports symbol='xmlBuildURI' type='function'/>
+     <exports symbol='xmlURIEscapeStr' type='function'/>
+     <exports symbol='xmlURIUnescapeString' type='function'/>
     </file>
     <file name='valid'>
      <summary>The DTD validation</summary>
      <author>Daniel Veillard </author>
      <exports symbol='XML_VCTXT_DTD_VALIDATED' type='macro'/>
      <exports symbol='XML_VCTXT_USE_PCTXT' type='macro'/>
+     <exports symbol='xmlAttributeTable' type='typedef'/>
+     <exports symbol='xmlAttributeTablePtr' type='typedef'/>
      <exports symbol='xmlElementTable' type='typedef'/>
-     <exports symbol='xmlValidStatePtr' type='typedef'/>
+     <exports symbol='xmlElementTablePtr' type='typedef'/>
+     <exports symbol='xmlIDTable' type='typedef'/>
      <exports symbol='xmlIDTablePtr' type='typedef'/>
+     <exports symbol='xmlNotationTable' type='typedef'/>
      <exports symbol='xmlNotationTablePtr' type='typedef'/>
-     <exports symbol='xmlValidCtxt' type='typedef'/>
-     <exports symbol='xmlElementTablePtr' type='typedef'/>
-     <exports symbol='xmlRefTablePtr' type='typedef'/>
-     <exports symbol='xmlNotationTable' type='typedef'/>
      <exports symbol='xmlRefTable' type='typedef'/>
-     <exports symbol='xmlValidState' type='typedef'/>
-     <exports symbol='xmlAttributeTable' type='typedef'/>
-     <exports symbol='xmlAttributeTablePtr' type='typedef'/>
-     <exports symbol='xmlIDTable' type='typedef'/>
+     <exports symbol='xmlRefTablePtr' type='typedef'/>
+     <exports symbol='xmlValidCtxt' type='typedef'/>
      <exports symbol='xmlValidCtxtPtr' type='typedef'/>
+     <exports symbol='xmlValidState' type='typedef'/>
+     <exports symbol='xmlValidStatePtr' type='typedef'/>
      <exports symbol='_xmlValidCtxt' type='struct'/>
-     <exports symbol='xmlFreeNotationTable' type='function'/>
-     <exports symbol='xmlValidateNameValue' type='function'/>
-     <exports symbol='xmlSnprintfElementContent' type='function'/>
+     <exports symbol='xmlAddAttributeDecl' type='function'/>
+     <exports symbol='xmlAddElementDecl' type='function'/>
+     <exports symbol='xmlAddID' type='function'/>
+     <exports symbol='xmlAddNotationDecl' type='function'/>
      <exports symbol='xmlAddRef' type='function'/>
+     <exports symbol='xmlCopyAttributeTable' type='function'/>
+     <exports symbol='xmlCopyDocElementContent' type='function'/>
+     <exports symbol='xmlCopyElementContent' type='function'/>
+     <exports symbol='xmlCopyElementTable' type='function'/>
+     <exports symbol='xmlCopyEnumeration' type='function'/>
+     <exports symbol='xmlCopyNotationTable' type='function'/>
+     <exports symbol='xmlCreateEnumeration' type='function'/>
      <exports symbol='xmlDumpAttributeDecl' type='function'/>
-     <exports symbol='xmlValidateDocumentFinal' type='function'/>
-     <exports symbol='xmlValidateDtdFinal' type='function'/>
      <exports symbol='xmlDumpAttributeTable' type='function'/>
-     <exports symbol='xmlCreateEnumeration' type='function'/>
-     <exports symbol='xmlValidateOneAttribute' type='function'/>
-     <exports symbol='xmlValidGetValidElements' type='function'/>
-     <exports symbol='xmlIsMixedElement' type='function'/>
+     <exports symbol='xmlDumpElementDecl' type='function'/>
+     <exports symbol='xmlDumpElementTable' type='function'/>
      <exports symbol='xmlDumpNotationDecl' type='function'/>
-     <exports symbol='xmlIsID' type='function'/>
-     <exports symbol='xmlGetDtdQAttrDesc' type='function'/>
-     <exports symbol='xmlNewDocElementContent' type='function'/>
+     <exports symbol='xmlDumpNotationTable' type='function'/>
      <exports symbol='xmlFreeAttributeTable' type='function'/>
-     <exports symbol='xmlValidityErrorFunc' type='function'/>
-     <exports symbol='xmlValidateAttributeDecl' type='function'/>
-     <exports symbol='xmlGetDtdQElementDesc' type='function'/>
-     <exports symbol='xmlCopyNotationTable' type='function'/>
-     <exports symbol='xmlValidateDocument' type='function'/>
-     <exports symbol='xmlValidGetPotentialChildren' type='function'/>
-     <exports symbol='xmlAddNotationDecl' type='function'/>
-     <exports symbol='xmlValidateElementDecl' type='function'/>
-     <exports symbol='xmlAddAttributeDecl' type='function'/>
-     <exports symbol='xmlGetID' type='function'/>
-     <exports symbol='xmlCopyElementTable' type='function'/>
-     <exports symbol='xmlGetRefs' type='function'/>
-     <exports symbol='xmlSprintfElementContent' type='function'/>
-     <exports symbol='xmlValidateOneElement' type='function'/>
-     <exports symbol='xmlValidateNmtokenValue' type='function'/>
-     <exports symbol='xmlDumpElementTable' type='function'/>
-     <exports symbol='xmlValidCtxtNormalizeAttributeValue' type='function'/>
-     <exports symbol='xmlDumpElementDecl' type='function'/>
+     <exports symbol='xmlFreeDocElementContent' type='function'/>
      <exports symbol='xmlFreeElementContent' type='function'/>
-     <exports symbol='xmlValidateOneNamespace' type='function'/>
-     <exports symbol='xmlValidatePushElement' type='function'/>
-     <exports symbol='xmlIsRef' type='function'/>
-     <exports symbol='xmlCopyDocElementContent' type='function'/>
-     <exports symbol='xmlAddID' type='function'/>
-     <exports symbol='xmlFreeRefTable' type='function'/>
-     <exports symbol='xmlValidateNamesValue' type='function'/>
-     <exports symbol='xmlRemoveID' type='function'/>
      <exports symbol='xmlFreeElementTable' type='function'/>
+     <exports symbol='xmlFreeEnumeration' type='function'/>
      <exports symbol='xmlFreeIDTable' type='function'/>
+     <exports symbol='xmlFreeNotationTable' type='function'/>
+     <exports symbol='xmlFreeRefTable' type='function'/>
      <exports symbol='xmlFreeValidCtxt' type='function'/>
-     <exports symbol='xmlCopyAttributeTable' type='function'/>
-     <exports symbol='xmlCopyElementContent' type='function'/>
-     <exports symbol='xmlValidateAttributeValue' type='function'/>
-     <exports symbol='xmlRemoveRef' type='function'/>
-     <exports symbol='xmlValidityWarningFunc' type='function'/>
-     <exports symbol='xmlValidatePopElement' type='function'/>
-     <exports symbol='xmlFreeEnumeration' type='function'/>
-     <exports symbol='xmlCopyEnumeration' type='function'/>
      <exports symbol='xmlGetDtdAttrDesc' type='function'/>
-     <exports symbol='xmlValidateDtd' type='function'/>
+     <exports symbol='xmlGetDtdElementDesc' type='function'/>
+     <exports symbol='xmlGetDtdNotationDesc' type='function'/>
+     <exports symbol='xmlGetDtdQAttrDesc' type='function'/>
+     <exports symbol='xmlGetDtdQElementDesc' type='function'/>
+     <exports symbol='xmlGetID' type='function'/>
+     <exports symbol='xmlGetRefs' type='function'/>
+     <exports symbol='xmlIsID' type='function'/>
+     <exports symbol='xmlIsMixedElement' type='function'/>
+     <exports symbol='xmlIsRef' type='function'/>
+     <exports symbol='xmlNewDocElementContent' type='function'/>
+     <exports symbol='xmlNewElementContent' type='function'/>
      <exports symbol='xmlNewValidCtxt' type='function'/>
-     <exports symbol='xmlDumpNotationTable' type='function'/>
-     <exports symbol='xmlAddElementDecl' type='function'/>
-     <exports symbol='xmlValidNormalizeAttributeValue' type='function'/>
+     <exports symbol='xmlRemoveID' type='function'/>
+     <exports symbol='xmlRemoveRef' type='function'/>
+     <exports symbol='xmlSnprintfElementContent' type='function'/>
+     <exports symbol='xmlSprintfElementContent' type='function'/>
      <exports symbol='xmlValidBuildContentModel' type='function'/>
+     <exports symbol='xmlValidCtxtNormalizeAttributeValue' type='function'/>
+     <exports symbol='xmlValidGetPotentialChildren' type='function'/>
+     <exports symbol='xmlValidGetValidElements' type='function'/>
+     <exports symbol='xmlValidNormalizeAttributeValue' type='function'/>
+     <exports symbol='xmlValidateAttributeDecl' type='function'/>
+     <exports symbol='xmlValidateAttributeValue' type='function'/>
+     <exports symbol='xmlValidateDocument' type='function'/>
+     <exports symbol='xmlValidateDocumentFinal' type='function'/>
+     <exports symbol='xmlValidateDtd' type='function'/>
+     <exports symbol='xmlValidateDtdFinal' type='function'/>
      <exports symbol='xmlValidateElement' type='function'/>
-     <exports symbol='xmlValidateNotationUse' type='function'/>
-     <exports symbol='xmlValidateRoot' type='function'/>
+     <exports symbol='xmlValidateElementDecl' type='function'/>
+     <exports symbol='xmlValidateNameValue' type='function'/>
+     <exports symbol='xmlValidateNamesValue' type='function'/>
+     <exports symbol='xmlValidateNmtokenValue' type='function'/>
+     <exports symbol='xmlValidateNmtokensValue' type='function'/>
      <exports symbol='xmlValidateNotationDecl' type='function'/>
-     <exports symbol='xmlNewElementContent' type='function'/>
-     <exports symbol='xmlGetDtdElementDesc' type='function'/>
-     <exports symbol='xmlGetDtdNotationDesc' type='function'/>
+     <exports symbol='xmlValidateNotationUse' type='function'/>
+     <exports symbol='xmlValidateOneAttribute' type='function'/>
+     <exports symbol='xmlValidateOneElement' type='function'/>
+     <exports symbol='xmlValidateOneNamespace' type='function'/>
+     <exports symbol='xmlValidatePopElement' type='function'/>
      <exports symbol='xmlValidatePushCData' type='function'/>
-     <exports symbol='xmlValidateNmtokensValue' type='function'/>
-     <exports symbol='xmlFreeDocElementContent' type='function'/>
+     <exports symbol='xmlValidatePushElement' type='function'/>
+     <exports symbol='xmlValidateRoot' type='function'/>
+     <exports symbol='xmlValidityErrorFunc' type='function'/>
+     <exports symbol='xmlValidityWarningFunc' type='function'/>
     </file>
     <file name='xinclude'>
      <summary>implementation of XInclude</summary>
      <description>API to handle XInclude processing, implements the World Wide Web Consortium Last Call Working Draft 10 November 2003</description>
      <author>Daniel Veillard </author>
-     <exports symbol='XINCLUDE_PARSE_TEXT' type='macro'/>
-     <exports symbol='XINCLUDE_PARSE_XPOINTER' type='macro'/>
-     <exports symbol='XINCLUDE_HREF' type='macro'/>
      <exports symbol='XINCLUDE_FALLBACK' type='macro'/>
+     <exports symbol='XINCLUDE_HREF' type='macro'/>
+     <exports symbol='XINCLUDE_NODE' type='macro'/>
      <exports symbol='XINCLUDE_NS' type='macro'/>
+     <exports symbol='XINCLUDE_OLD_NS' type='macro'/>
      <exports symbol='XINCLUDE_PARSE' type='macro'/>
-     <exports symbol='XINCLUDE_NODE' type='macro'/>
-     <exports symbol='XINCLUDE_PARSE_XML' type='macro'/>
      <exports symbol='XINCLUDE_PARSE_ENCODING' type='macro'/>
-     <exports symbol='XINCLUDE_OLD_NS' type='macro'/>
+     <exports symbol='XINCLUDE_PARSE_TEXT' type='macro'/>
+     <exports symbol='XINCLUDE_PARSE_XML' type='macro'/>
+     <exports symbol='XINCLUDE_PARSE_XPOINTER' type='macro'/>
      <exports symbol='xmlXIncludeCtxt' type='typedef'/>
      <exports symbol='xmlXIncludeCtxtPtr' type='typedef'/>
-     <exports symbol='xmlXIncludeProcessTreeFlagsData' type='function'/>
-     <exports symbol='xmlXIncludeProcessFlagsData' type='function'/>
-     <exports symbol='xmlXIncludeProcessFlags' type='function'/>
-     <exports symbol='xmlXIncludeProcessTree' type='function'/>
-     <exports symbol='xmlXIncludeProcessNode' type='function'/>
      <exports symbol='xmlXIncludeFreeContext' type='function'/>
-     <exports symbol='xmlXIncludeSetFlags' type='function'/>
-     <exports symbol='xmlXIncludeProcess' type='function'/>
      <exports symbol='xmlXIncludeNewContext' type='function'/>
+     <exports symbol='xmlXIncludeProcess' type='function'/>
+     <exports symbol='xmlXIncludeProcessFlags' type='function'/>
+     <exports symbol='xmlXIncludeProcessFlagsData' type='function'/>
+     <exports symbol='xmlXIncludeProcessNode' type='function'/>
+     <exports symbol='xmlXIncludeProcessTree' type='function'/>
      <exports symbol='xmlXIncludeProcessTreeFlags' type='function'/>
+     <exports symbol='xmlXIncludeProcessTreeFlagsData' type='function'/>
+     <exports symbol='xmlXIncludeSetFlags' type='function'/>
     </file>
     <file name='xlink'>
      <summary>unfinished XLink detection module</summary>
      <description>unfinished XLink detection module </description>
      <author>Daniel Veillard </author>
+     <exports symbol='XLINK_ACTUATE_AUTO' type='enum'/>
      <exports symbol='XLINK_ACTUATE_NONE' type='enum'/>
+     <exports symbol='XLINK_ACTUATE_ONREQUEST' type='enum'/>
+     <exports symbol='XLINK_SHOW_EMBED' type='enum'/>
      <exports symbol='XLINK_SHOW_NEW' type='enum'/>
-     <exports symbol='XLINK_ACTUATE_AUTO' type='enum'/>
-     <exports symbol='XLINK_TYPE_NONE' type='enum'/>
+     <exports symbol='XLINK_SHOW_NONE' type='enum'/>
      <exports symbol='XLINK_SHOW_REPLACE' type='enum'/>
-     <exports symbol='XLINK_ACTUATE_ONREQUEST' type='enum'/>
      <exports symbol='XLINK_TYPE_EXTENDED' type='enum'/>
      <exports symbol='XLINK_TYPE_EXTENDED_SET' type='enum'/>
-     <exports symbol='XLINK_SHOW_NONE' type='enum'/>
-     <exports symbol='XLINK_SHOW_EMBED' type='enum'/>
+     <exports symbol='XLINK_TYPE_NONE' type='enum'/>
      <exports symbol='XLINK_TYPE_SIMPLE' type='enum'/>
-     <exports symbol='xlinkTitle' type='typedef'/>
-     <exports symbol='xlinkShow' type='typedef'/>
-     <exports symbol='xlinkHRef' type='typedef'/>
      <exports symbol='xlinkActuate' type='typedef'/>
+     <exports symbol='xlinkHRef' type='typedef'/>
      <exports symbol='xlinkHandler' type='typedef'/>
-     <exports symbol='xlinkRole' type='typedef'/>
      <exports symbol='xlinkHandlerPtr' type='typedef'/>
+     <exports symbol='xlinkRole' type='typedef'/>
+     <exports symbol='xlinkShow' type='typedef'/>
+     <exports symbol='xlinkTitle' type='typedef'/>
      <exports symbol='xlinkType' type='typedef'/>
      <exports symbol='_xlinkHandler' type='struct'/>
-     <exports symbol='xlinkSetDefaultDetect' type='function'/>
-     <exports symbol='xlinkSetDefaultHandler' type='function'/>
      <exports symbol='xlinkExtendedLinkFunk' type='function'/>
      <exports symbol='xlinkExtendedLinkSetFunk' type='function'/>
-     <exports symbol='xlinkSimpleLinkFunk' type='function'/>
-     <exports symbol='xlinkNodeDetectFunc' type='function'/>
+     <exports symbol='xlinkGetDefaultDetect' type='function'/>
      <exports symbol='xlinkGetDefaultHandler' type='function'/>
      <exports symbol='xlinkIsLink' type='function'/>
-     <exports symbol='xlinkGetDefaultDetect' type='function'/>
+     <exports symbol='xlinkNodeDetectFunc' type='function'/>
+     <exports symbol='xlinkSetDefaultDetect' type='function'/>
+     <exports symbol='xlinkSetDefaultHandler' type='function'/>
+     <exports symbol='xlinkSimpleLinkFunk' type='function'/>
     </file>
     <file name='xmlIO'>
      <summary>interface for the I/O interfaces used by the parser</summary>
      <description>interface for the I/O interfaces used by the parser </description>
      <author>Daniel Veillard </author>
-     <exports symbol='_xmlParserInputBuffer' type='struct'/>
      <exports symbol='_xmlOutputBuffer' type='struct'/>
-     <exports symbol='xmlIOHTTPRead' type='function'/>
-     <exports symbol='xmlInputMatchCallback' type='function'/>
-     <exports symbol='xmlRegisterDefaultOutputCallbacks' type='function'/>
-     <exports symbol='xmlFileClose' type='function'/>
-     <exports symbol='xmlPopOutputCallbacks' type='function'/>
-     <exports symbol='xmlOutputMatchCallback' type='function'/>
-     <exports symbol='xmlParserInputBufferPush' type='function'/>
-     <exports symbol='xmlIOFTPRead' type='function'/>
-     <exports symbol='xmlRegisterHTTPPostCallbacks' type='function'/>
-     <exports symbol='xmlIOFTPOpen' type='function'/>
-     <exports symbol='xmlIOFTPClose' type='function'/>
-     <exports symbol='xmlFileOpen' type='function'/>
-     <exports symbol='xmlOutputBufferCreateFile' type='function'/>
-     <exports symbol='xmlCheckFilename' type='function'/>
-     <exports symbol='xmlOutputOpenCallback' type='function'/>
-     <exports symbol='xmlParserInputBufferCreateFilename' type='function'/>
-     <exports symbol='xmlOutputBufferClose' type='function'/>
+     <exports symbol='_xmlParserInputBuffer' type='struct'/>
+     <exports symbol='xmlAllocOutputBuffer' type='function'/>
      <exports symbol='xmlAllocParserInputBuffer' type='function'/>
-     <exports symbol='xmlOutputBufferCreateIO' type='function'/>
-     <exports symbol='xmlOutputWriteCallback' type='function'/>
-     <exports symbol='xmlOutputBufferFlush' type='function'/>
+     <exports symbol='xmlCheckFilename' type='function'/>
      <exports symbol='xmlCheckHTTPInput' type='function'/>
-     <exports symbol='xmlRegisterOutputCallbacks' type='function'/>
-     <exports symbol='xmlParserInputBufferCreateMem' type='function'/>
-     <exports symbol='xmlIOFTPMatch' type='function'/>
-     <exports symbol='xmlRegisterInputCallbacks' type='function'/>
+     <exports symbol='xmlCleanupInputCallbacks' type='function'/>
+     <exports symbol='xmlCleanupOutputCallbacks' type='function'/>
+     <exports symbol='xmlFileClose' type='function'/>
+     <exports symbol='xmlFileMatch' type='function'/>
+     <exports symbol='xmlFileOpen' type='function'/>
+     <exports symbol='xmlFileRead' type='function'/>
      <exports symbol='xmlFreeParserInputBuffer' type='function'/>
-     <exports symbol='xmlRegisterDefaultInputCallbacks' type='function'/>
-     <exports symbol='xmlParserInputBufferGrow' type='function'/>
-     <exports symbol='xmlOutputCloseCallback' type='function'/>
-     <exports symbol='xmlAllocOutputBuffer' type='function'/>
-     <exports symbol='xmlNoNetExternalEntityLoader' type='function'/>
-     <exports symbol='xmlOutputBufferCreateBuffer' type='function'/>
+     <exports symbol='xmlIOFTPClose' type='function'/>
+     <exports symbol='xmlIOFTPMatch' type='function'/>
+     <exports symbol='xmlIOFTPOpen' type='function'/>
+     <exports symbol='xmlIOFTPRead' type='function'/>
+     <exports symbol='xmlIOHTTPClose' type='function'/>
      <exports symbol='xmlIOHTTPMatch' type='function'/>
      <exports symbol='xmlIOHTTPOpen' type='function'/>
-     <exports symbol='xmlParserInputBufferCreateIO' type='function'/>
-     <exports symbol='xmlOutputBufferCreateFd' type='function'/>
-     <exports symbol='xmlNormalizeWindowsPath' type='function'/>
+     <exports symbol='xmlIOHTTPOpenW' type='function'/>
+     <exports symbol='xmlIOHTTPRead' type='function'/>
+     <exports symbol='xmlInputCloseCallback' type='function'/>
+     <exports symbol='xmlInputMatchCallback' type='function'/>
+     <exports symbol='xmlInputOpenCallback' type='function'/>
      <exports symbol='xmlInputReadCallback' type='function'/>
-     <exports symbol='xmlParserInputBufferCreateStatic' type='function'/>
-     <exports symbol='xmlOutputBufferGetContent' type='function'/>
-     <exports symbol='xmlIOHTTPClose' type='function'/>
-     <exports symbol='xmlOutputBufferWriteEscape' type='function'/>
+     <exports symbol='xmlNoNetExternalEntityLoader' type='function'/>
+     <exports symbol='xmlNormalizeWindowsPath' type='function'/>
+     <exports symbol='xmlOutputBufferClose' type='function'/>
+     <exports symbol='xmlOutputBufferCreateBuffer' type='function'/>
+     <exports symbol='xmlOutputBufferCreateFd' type='function'/>
+     <exports symbol='xmlOutputBufferCreateFile' type='function'/>
      <exports symbol='xmlOutputBufferCreateFilename' type='function'/>
+     <exports symbol='xmlOutputBufferCreateIO' type='function'/>
+     <exports symbol='xmlOutputBufferFlush' type='function'/>
+     <exports symbol='xmlOutputBufferGetContent' type='function'/>
      <exports symbol='xmlOutputBufferGetSize' type='function'/>
-     <exports symbol='xmlCleanupOutputCallbacks' type='function'/>
-     <exports symbol='xmlInputOpenCallback' type='function'/>
-     <exports symbol='xmlParserInputBufferRead' type='function'/>
-     <exports symbol='xmlOutputBufferWriteString' type='function'/>
-     <exports symbol='xmlFileMatch' type='function'/>
-     <exports symbol='xmlPopInputCallbacks' type='function'/>
-     <exports symbol='xmlFileRead' type='function'/>
-     <exports symbol='xmlParserInputBufferCreateFile' type='function'/>
-     <exports symbol='xmlParserGetDirectory' type='function'/>
      <exports symbol='xmlOutputBufferWrite' type='function'/>
-     <exports symbol='xmlCleanupInputCallbacks' type='function'/>
-     <exports symbol='xmlInputCloseCallback' type='function'/>
-     <exports symbol='xmlIOHTTPOpenW' type='function'/>
+     <exports symbol='xmlOutputBufferWriteEscape' type='function'/>
+     <exports symbol='xmlOutputBufferWriteString' type='function'/>
+     <exports symbol='xmlOutputCloseCallback' type='function'/>
+     <exports symbol='xmlOutputMatchCallback' type='function'/>
+     <exports symbol='xmlOutputOpenCallback' type='function'/>
+     <exports symbol='xmlOutputWriteCallback' type='function'/>
+     <exports symbol='xmlParserGetDirectory' type='function'/>
      <exports symbol='xmlParserInputBufferCreateFd' type='function'/>
+     <exports symbol='xmlParserInputBufferCreateFile' type='function'/>
+     <exports symbol='xmlParserInputBufferCreateFilename' type='function'/>
+     <exports symbol='xmlParserInputBufferCreateIO' type='function'/>
+     <exports symbol='xmlParserInputBufferCreateMem' type='function'/>
+     <exports symbol='xmlParserInputBufferCreateStatic' type='function'/>
+     <exports symbol='xmlParserInputBufferGrow' type='function'/>
+     <exports symbol='xmlParserInputBufferPush' type='function'/>
+     <exports symbol='xmlParserInputBufferRead' type='function'/>
+     <exports symbol='xmlPopInputCallbacks' type='function'/>
+     <exports symbol='xmlPopOutputCallbacks' type='function'/>
+     <exports symbol='xmlRegisterDefaultInputCallbacks' type='function'/>
+     <exports symbol='xmlRegisterDefaultOutputCallbacks' type='function'/>
+     <exports symbol='xmlRegisterHTTPPostCallbacks' type='function'/>
+     <exports symbol='xmlRegisterInputCallbacks' type='function'/>
+     <exports symbol='xmlRegisterOutputCallbacks' type='function'/>
     </file>
     <file name='xmlautomata'>
      <summary>API to build regexp automata</summary>
      <description>the API to build regexp automata </description>
      <author>Daniel Veillard </author>
-     <exports symbol='xmlAutomataStatePtr' type='typedef'/>
      <exports symbol='xmlAutomata' type='typedef'/>
      <exports symbol='xmlAutomataPtr' type='typedef'/>
      <exports symbol='xmlAutomataState' type='typedef'/>
-     <exports symbol='xmlFreeAutomata' type='function'/>
-     <exports symbol='xmlAutomataNewCounter' type='function'/>
+     <exports symbol='xmlAutomataStatePtr' type='typedef'/>
+     <exports symbol='xmlAutomataCompile' type='function'/>
      <exports symbol='xmlAutomataGetInitState' type='function'/>
-     <exports symbol='xmlAutomataNewTransition2' type='function'/>
-     <exports symbol='xmlAutomataNewState' type='function'/>
-     <exports symbol='xmlAutomataNewCountTrans' type='function'/>
-     <exports symbol='xmlAutomataNewOnceTrans2' type='function'/>
+     <exports symbol='xmlAutomataIsDeterminist' type='function'/>
      <exports symbol='xmlAutomataNewAllTrans' type='function'/>
+     <exports symbol='xmlAutomataNewCountTrans' type='function'/>
+     <exports symbol='xmlAutomataNewCountTrans2' type='function'/>
      <exports symbol='xmlAutomataNewCountedTrans' type='function'/>
+     <exports symbol='xmlAutomataNewCounter' type='function'/>
      <exports symbol='xmlAutomataNewCounterTrans' type='function'/>
-     <exports symbol='xmlAutomataCompile' type='function'/>
-     <exports symbol='xmlAutomataNewNegTrans' type='function'/>
      <exports symbol='xmlAutomataNewEpsilon' type='function'/>
-     <exports symbol='xmlAutomataNewCountTrans2' type='function'/>
-     <exports symbol='xmlNewAutomata' type='function'/>
-     <exports symbol='xmlAutomataSetFinalState' type='function'/>
+     <exports symbol='xmlAutomataNewNegTrans' type='function'/>
      <exports symbol='xmlAutomataNewOnceTrans' type='function'/>
+     <exports symbol='xmlAutomataNewOnceTrans2' type='function'/>
+     <exports symbol='xmlAutomataNewState' type='function'/>
      <exports symbol='xmlAutomataNewTransition' type='function'/>
-     <exports symbol='xmlAutomataIsDeterminist' type='function'/>
+     <exports symbol='xmlAutomataNewTransition2' type='function'/>
+     <exports symbol='xmlAutomataSetFinalState' type='function'/>
+     <exports symbol='xmlFreeAutomata' type='function'/>
+     <exports symbol='xmlNewAutomata' type='function'/>
     </file>
     <file name='xmlerror'>
      <summary>error handling</summary>
      <description>the API used to report errors </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_DTD_ATTRIBUTE_VALUE' type='enum'/>
-     <exports symbol='XML_RNGP_PARAM_NAME_MISSING' type='enum'/>
-     <exports symbol='XML_RNGP_PARENTREF_NO_PARENT' type='enum'/>
-     <exports symbol='XML_IO_EISCONN' type='enum'/>
-     <exports symbol='XML_RNGP_VALUE_EMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI' type='enum'/>
-     <exports symbol='XML_SCHEMAP_ELEM_NONAME_NOREF' type='enum'/>
-     <exports symbol='XML_CHECK_NOT_DTD' type='enum'/>
-     <exports symbol='XML_SCHEMAP_S4S_ATTR_MISSING' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_IMPORT' type='enum'/>
-     <exports symbol='XML_SCHEMAV_VALUE' type='enum'/>
-     <exports symbol='XML_XPATH_UNKNOWN_FUNC_ERROR' type='enum'/>
-     <exports symbol='XML_ERR_DOCUMENT_START' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_TEXT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_AG_PROPS_CORRECT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_IMPORT_2_1' type='enum'/>
-     <exports symbol='XML_DTD_NOT_STANDALONE' type='enum'/>
-     <exports symbol='XML_HTTP_USE_IP' type='enum'/>
-     <exports symbol='XML_ERR_XMLDECL_NOT_STARTED' type='enum'/>
-     <exports symbol='XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING' type='enum'/>
-     <exports symbol='XML_SCHEMAV_ELEMENT_CONTENT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_IMPORT_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD' type='enum'/>
-     <exports symbol='XML_ERR_LT_IN_ATTRIBUTE' type='enum'/>
-     <exports symbol='XML_XINCLUDE_ENTITY_DEF_MISMATCH' type='enum'/>
-     <exports symbol='XML_SAVE_NOT_UTF8' type='enum'/>
-     <exports symbol='XML_ERR_GT_REQUIRED' type='enum'/>
-     <exports symbol='XML_XPTR_EXTRA_OBJECTS' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_ATTR_USE' type='enum'/>
-     <exports symbol='XML_IO_UNKNOWN' type='enum'/>
-     <exports symbol='XML_RNGP_INTERLEAVE_EMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION' type='enum'/>
-     <exports symbol='XML_IO_ECHILD' type='enum'/>
-     <exports symbol='XML_RNGP_NAME_MISSING' type='enum'/>
-     <exports symbol='XML_ERR_CONDSEC_NOT_STARTED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_2' type='enum'/>
-     <exports symbol='XML_IO_EINTR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_1' type='enum'/>
-     <exports symbol='XML_RNGP_XMLNS_NAME' type='enum'/>
-     <exports symbol='XML_RNGP_ATTRIBUTE_NOOP' type='enum'/>
-     <exports symbol='XML_SCHEMAP_REDEFINED_GROUP' type='enum'/>
-     <exports symbol='XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI' type='enum'/>
-     <exports symbol='XML_ERR_CHARREF_IN_EPILOG' type='enum'/>
-     <exports symbol='XML_DTD_ID_SUBSET' type='enum'/>
-     <exports symbol='XML_SCHEMAP_FAILED_BUILD_IMPORT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD' type='enum'/>
-     <exports symbol='XML_XPTR_CHILDSEQ_START' type='enum'/>
-     <exports symbol='XML_ERR_EXT_SUBSET_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_FROM_DTD' type='enum'/>
+     <exports symbol='XML_BUF_OVERFLOW' type='enum'/>
+     <exports symbol='XML_C14N_CREATE_CTXT' type='enum'/>
+     <exports symbol='XML_C14N_CREATE_STACK' type='enum'/>
+     <exports symbol='XML_C14N_INVALID_NODE' type='enum'/>
+     <exports symbol='XML_C14N_RELATIVE_NAMESPACE' type='enum'/>
+     <exports symbol='XML_C14N_REQUIRES_UTF8' type='enum'/>
+     <exports symbol='XML_C14N_UNKNOW_NODE' type='enum'/>
+     <exports symbol='XML_CATALOG_ENTRY_BROKEN' type='enum'/>
+     <exports symbol='XML_CATALOG_MISSING_ATTR' type='enum'/>
+     <exports symbol='XML_CATALOG_NOT_CATALOG' type='enum'/>
+     <exports symbol='XML_CATALOG_PREFER_VALUE' type='enum'/>
+     <exports symbol='XML_CATALOG_RECURSION' type='enum'/>
+     <exports symbol='XML_CHECK_ENTITY_TYPE' type='enum'/>
+     <exports symbol='XML_CHECK_FOUND_ATTRIBUTE' type='enum'/>
+     <exports symbol='XML_CHECK_FOUND_CDATA' type='enum'/>
+     <exports symbol='XML_CHECK_FOUND_COMMENT' type='enum'/>
+     <exports symbol='XML_CHECK_FOUND_DOCTYPE' type='enum'/>
+     <exports symbol='XML_CHECK_FOUND_ELEMENT' type='enum'/>
+     <exports symbol='XML_CHECK_FOUND_ENTITY' type='enum'/>
+     <exports symbol='XML_CHECK_FOUND_ENTITYREF' type='enum'/>
+     <exports symbol='XML_CHECK_FOUND_FRAGMENT' type='enum'/>
+     <exports symbol='XML_CHECK_FOUND_NOTATION' type='enum'/>
+     <exports symbol='XML_CHECK_FOUND_PI' type='enum'/>
+     <exports symbol='XML_CHECK_FOUND_TEXT' type='enum'/>
+     <exports symbol='XML_CHECK_NAME_NOT_NULL' type='enum'/>
      <exports symbol='XML_CHECK_NOT_ATTR' type='enum'/>
+     <exports symbol='XML_CHECK_NOT_ATTR_DECL' type='enum'/>
+     <exports symbol='XML_CHECK_NOT_DTD' type='enum'/>
+     <exports symbol='XML_CHECK_NOT_ELEM_DECL' type='enum'/>
+     <exports symbol='XML_CHECK_NOT_ENTITY_DECL' type='enum'/>
+     <exports symbol='XML_CHECK_NOT_NCNAME' type='enum'/>
+     <exports symbol='XML_CHECK_NOT_NS_DECL' type='enum'/>
+     <exports symbol='XML_CHECK_NOT_UTF8' type='enum'/>
+     <exports symbol='XML_CHECK_NO_DICT' type='enum'/>
+     <exports symbol='XML_CHECK_NO_DOC' type='enum'/>
+     <exports symbol='XML_CHECK_NO_ELEM' type='enum'/>
+     <exports symbol='XML_CHECK_NO_HREF' type='enum'/>
+     <exports symbol='XML_CHECK_NO_NAME' type='enum'/>
+     <exports symbol='XML_CHECK_NO_NEXT' type='enum'/>
+     <exports symbol='XML_CHECK_NO_PARENT' type='enum'/>
+     <exports symbol='XML_CHECK_NO_PREV' type='enum'/>
+     <exports symbol='XML_CHECK_NS_ANCESTOR' type='enum'/>
+     <exports symbol='XML_CHECK_NS_SCOPE' type='enum'/>
+     <exports symbol='XML_CHECK_OUTSIDE_DICT' type='enum'/>
+     <exports symbol='XML_CHECK_UNKNOWN_NODE' type='enum'/>
+     <exports symbol='XML_CHECK_WRONG_DOC' type='enum'/>
+     <exports symbol='XML_CHECK_WRONG_NAME' type='enum'/>
+     <exports symbol='XML_CHECK_WRONG_NEXT' type='enum'/>
+     <exports symbol='XML_CHECK_WRONG_PARENT' type='enum'/>
+     <exports symbol='XML_CHECK_WRONG_PREV' type='enum'/>
      <exports symbol='XML_DTD_ATTRIBUTE_DEFAULT' type='enum'/>
-     <exports symbol='XML_FROM_MODULE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_EXTRACONTENT' type='enum'/>
-     <exports symbol='XML_RNGP_ELEM_CONTENT_EMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMAP_WARN_UNLOCATED_SCHEMA' type='enum'/>
-     <exports symbol='XML_IO_EMLINK' type='enum'/>
-     <exports symbol='XML_ERR_NMTOKEN_REQUIRED' type='enum'/>
-     <exports symbol='XML_RNGP_ANYNAME_ATTR_ANCESTOR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_3_1' type='enum'/>
-     <exports symbol='XML_ERR_PI_NOT_STARTED' type='enum'/>
-     <exports symbol='XML_RNGP_START_CONTENT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_3_2' type='enum'/>
-     <exports symbol='XML_RNGP_GROUP_ATTR_CONFLICT' type='enum'/>
-     <exports symbol='XML_RNGP_EMPTY' type='enum'/>
-     <exports symbol='XML_ERR_DOCUMENT_EMPTY' type='enum'/>
-     <exports symbol='XML_XINCLUDE_RECURSION' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_RESOLVE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_FACET_VALID' type='enum'/>
-     <exports symbol='XML_SCHEMAP_RESTRICTION_NONAME_NOREF' type='enum'/>
-     <exports symbol='XML_I18N_NO_OUTPUT' type='enum'/>
-     <exports symbol='XML_CHECK_FOUND_ATTRIBUTE' type='enum'/>
-     <exports symbol='XML_ERR_STANDALONE_VALUE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_REDEFINED_ATTR' type='enum'/>
-     <exports symbol='XML_ERR_ENTITY_LOOP' type='enum'/>
-     <exports symbol='XML_IO_EINPROGRESS' type='enum'/>
-     <exports symbol='XML_SCHEMAP_REDEFINED_NOTATION' type='enum'/>
-     <exports symbol='XML_HTML_STRUCURE_ERROR' type='enum'/>
-     <exports symbol='XML_DTD_INVALID_DEFAULT' type='enum'/>
-     <exports symbol='XML_FROM_SCHEMATRONV' type='enum'/>
+     <exports symbol='XML_DTD_ATTRIBUTE_REDEFINED' type='enum'/>
+     <exports symbol='XML_DTD_ATTRIBUTE_VALUE' type='enum'/>
+     <exports symbol='XML_DTD_CONTENT_ERROR' type='enum'/>
+     <exports symbol='XML_DTD_CONTENT_MODEL' type='enum'/>
+     <exports symbol='XML_DTD_CONTENT_NOT_DETERMINIST' type='enum'/>
+     <exports symbol='XML_DTD_DIFFERENT_PREFIX' type='enum'/>
+     <exports symbol='XML_DTD_DUP_TOKEN' type='enum'/>
+     <exports symbol='XML_DTD_ELEM_DEFAULT_NAMESPACE' type='enum'/>
+     <exports symbol='XML_DTD_ELEM_NAMESPACE' type='enum'/>
+     <exports symbol='XML_DTD_ELEM_REDEFINED' type='enum'/>
      <exports symbol='XML_DTD_EMPTY_NOTATION' type='enum'/>
-     <exports symbol='XML_RNGP_ELEMENT_EMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI' type='enum'/>
-     <exports symbol='XML_RNGP_INVALID_VALUE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_1' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD' type='enum'/>
-     <exports symbol='XML_ERR_PEREF_AT_EOF' type='enum'/>
+     <exports symbol='XML_DTD_ENTITY_TYPE' type='enum'/>
+     <exports symbol='XML_DTD_ID_FIXED' type='enum'/>
+     <exports symbol='XML_DTD_ID_REDEFINED' type='enum'/>
+     <exports symbol='XML_DTD_ID_SUBSET' type='enum'/>
+     <exports symbol='XML_DTD_INVALID_CHILD' type='enum'/>
+     <exports symbol='XML_DTD_INVALID_DEFAULT' type='enum'/>
+     <exports symbol='XML_DTD_LOAD_ERROR' type='enum'/>
+     <exports symbol='XML_DTD_MISSING_ATTRIBUTE' type='enum'/>
+     <exports symbol='XML_DTD_MIXED_CORRUPT' type='enum'/>
+     <exports symbol='XML_DTD_MULTIPLE_ID' type='enum'/>
+     <exports symbol='XML_DTD_NOTATION_REDEFINED' type='enum'/>
+     <exports symbol='XML_DTD_NOTATION_VALUE' type='enum'/>
      <exports symbol='XML_DTD_NOT_EMPTY' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_START_LIST' type='enum'/>
-     <exports symbol='XML_ERR_LT_REQUIRED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_AU_PROPS_CORRECT_2' type='enum'/>
+     <exports symbol='XML_DTD_NOT_PCDATA' type='enum'/>
+     <exports symbol='XML_DTD_NOT_STANDALONE' type='enum'/>
+     <exports symbol='XML_DTD_NO_DOC' type='enum'/>
+     <exports symbol='XML_DTD_NO_DTD' type='enum'/>
+     <exports symbol='XML_DTD_NO_ELEM_NAME' type='enum'/>
+     <exports symbol='XML_DTD_NO_PREFIX' type='enum'/>
+     <exports symbol='XML_DTD_NO_ROOT' type='enum'/>
+     <exports symbol='XML_DTD_ROOT_NAME' type='enum'/>
+     <exports symbol='XML_DTD_STANDALONE_DEFAULTED' type='enum'/>
+     <exports symbol='XML_DTD_STANDALONE_WHITE_SPACE' type='enum'/>
+     <exports symbol='XML_DTD_UNKNOWN_ATTRIBUTE' type='enum'/>
+     <exports symbol='XML_DTD_UNKNOWN_ELEM' type='enum'/>
+     <exports symbol='XML_DTD_UNKNOWN_ENTITY' type='enum'/>
+     <exports symbol='XML_DTD_UNKNOWN_ID' type='enum'/>
+     <exports symbol='XML_DTD_UNKNOWN_NOTATION' type='enum'/>
+     <exports symbol='XML_DTD_XMLID_TYPE' type='enum'/>
+     <exports symbol='XML_DTD_XMLID_VALUE' type='enum'/>
+     <exports symbol='XML_ERR_ATTLIST_NOT_FINISHED' type='enum'/>
      <exports symbol='XML_ERR_ATTLIST_NOT_STARTED' type='enum'/>
-     <exports symbol='XML_ERR_PCDATA_REQUIRED' type='enum'/>
-     <exports symbol='XML_SCHEMAV_INTERNAL' type='enum'/>
-     <exports symbol='XML_ERR_STRING_NOT_CLOSED' type='enum'/>
+     <exports symbol='XML_ERR_ATTRIBUTE_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_ATTRIBUTE_NOT_STARTED' type='enum'/>
+     <exports symbol='XML_ERR_ATTRIBUTE_REDEFINED' type='enum'/>
+     <exports symbol='XML_ERR_ATTRIBUTE_WITHOUT_VALUE' type='enum'/>
+     <exports symbol='XML_ERR_CDATA_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_CHARREF_AT_EOF' type='enum'/>
+     <exports symbol='XML_ERR_CHARREF_IN_DTD' type='enum'/>
+     <exports symbol='XML_ERR_CHARREF_IN_EPILOG' type='enum'/>
+     <exports symbol='XML_ERR_CHARREF_IN_PROLOG' type='enum'/>
+     <exports symbol='XML_ERR_COMMENT_ABRUPTLY_ENDED' type='enum'/>
+     <exports symbol='XML_ERR_COMMENT_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_CONDSEC_INVALID' type='enum'/>
+     <exports symbol='XML_ERR_CONDSEC_INVALID_KEYWORD' type='enum'/>
+     <exports symbol='XML_ERR_CONDSEC_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_CONDSEC_NOT_STARTED' type='enum'/>
+     <exports symbol='XML_ERR_DOCTYPE_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_DOCUMENT_EMPTY' type='enum'/>
+     <exports symbol='XML_ERR_DOCUMENT_END' type='enum'/>
+     <exports symbol='XML_ERR_DOCUMENT_START' type='enum'/>
+     <exports symbol='XML_ERR_ELEMCONTENT_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_ELEMCONTENT_NOT_STARTED' type='enum'/>
+     <exports symbol='XML_ERR_ENCODING_NAME' type='enum'/>
+     <exports symbol='XML_ERR_ENTITYREF_AT_EOF' type='enum'/>
      <exports symbol='XML_ERR_ENTITYREF_IN_DTD' type='enum'/>
-     <exports symbol='XML_XPATH_VARIABLE_REF_ERROR' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME' type='enum'/>
-     <exports symbol='XML_IO_ECANCELED' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1' type='enum'/>
-     <exports symbol='XML_SCHEMAV_NOTSIMPLE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID' type='enum'/>
-     <exports symbol='XML_IO_EADDRINUSE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_LIST_CHILD' type='enum'/>
-     <exports symbol='XML_DTD_UNKNOWN_ID' type='enum'/>
-     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3' type='enum'/>
-     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1' type='enum'/>
-     <exports symbol='XML_IO_EDOM' type='enum'/>
-     <exports symbol='XML_CHECK_NOT_ELEM_DECL' type='enum'/>
-     <exports symbol='XML_RNGP_DEFINE_CREATE_FAILED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ELEMENT_2_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ELEMENT_2_1' type='enum'/>
-     <exports symbol='XML_RNGP_INVALID_URI' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_LIST' type='enum'/>
-     <exports symbol='XML_RNGP_EXCEPT_NO_CONTENT' type='enum'/>
-     <exports symbol='XML_RNGP_EXTERNALREF_EMTPY' type='enum'/>
-     <exports symbol='XML_ERR_SPACE_REQUIRED' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_MAXLENGTH_VALID' type='enum'/>
-     <exports symbol='XML_DTD_DIFFERENT_PREFIX' type='enum'/>
-     <exports symbol='XML_SCHEMAV_NOTDETERMINIST' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD' type='enum'/>
-     <exports symbol='XML_SCHEMAV_MISSING' type='enum'/>
-     <exports symbol='XML_IO_EFAULT' type='enum'/>
-     <exports symbol='XML_XINCLUDE_XPTR_FAILED' type='enum'/>
-     <exports symbol='XML_FROM_FTP' type='enum'/>
-     <exports symbol='XML_RNGP_PARENTREF_CREATE_FAILED' type='enum'/>
-     <exports symbol='XML_ERR_RESERVED_XML_NAME' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_IMPORT_3_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_IMPORT_3_1' type='enum'/>
-     <exports symbol='XML_IO_EBADMSG' type='enum'/>
-     <exports symbol='XML_XPTR_RESOURCE_ERROR' type='enum'/>
-     <exports symbol='XML_RNGP_ATTR_CONFLICT' type='enum'/>
-     <exports symbol='XML_DTD_ELEM_REDEFINED' type='enum'/>
-     <exports symbol='XML_XINCLUDE_UNKNOWN_ENCODING' type='enum'/>
-     <exports symbol='XML_CATALOG_PREFER_VALUE' type='enum'/>
-     <exports symbol='XML_ERR_PEREF_SEMICOL_MISSING' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_IMPORT_1_1' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_IMPORT_1_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_TYPE_AND_SUBTYPE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_NO_XMLNS' type='enum'/>
-     <exports symbol='XML_IO_ENOTDIR' type='enum'/>
-     <exports symbol='XML_SAVE_CHAR_INVALID' type='enum'/>
-     <exports symbol='XML_ERR_ENTITYREF_NO_NAME' type='enum'/>
-     <exports symbol='XML_DTD_ID_FIXED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_A_PROPS_CORRECT_3' type='enum'/>
-     <exports symbol='XML_SCHEMAP_A_PROPS_CORRECT_2' type='enum'/>
-     <exports symbol='XML_WAR_NS_COLUMN' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_2_1' type='enum'/>
-     <exports symbol='XML_ERR_EXTRA_CONTENT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_GROUP' type='enum'/>
-     <exports symbol='XML_ERR_LITERAL_NOT_STARTED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_REF_AND_SUBTYPE' type='enum'/>
-     <exports symbol='XML_RNGP_ELEM_TEXT_CONFLICT' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_TYPE_1' type='enum'/>
-     <exports symbol='XML_XPATH_INVALID_CHAR_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3' type='enum'/>
-     <exports symbol='XML_CHECK_NO_DICT' type='enum'/>
-     <exports symbol='XML_XINCLUDE_XPTR_RESULT' type='enum'/>
-     <exports symbol='XML_IO_ENXIO' type='enum'/>
-     <exports symbol='XML_XINCLUDE_FRAGMENT_ID' type='enum'/>
-     <exports symbol='XML_FROM_HTTP' type='enum'/>
-     <exports symbol='XML_DTD_NOTATION_REDEFINED' type='enum'/>
-     <exports symbol='XML_WAR_LANG_VALUE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_AU_PROPS_CORRECT' type='enum'/>
-     <exports symbol='XML_ERR_SEPARATOR_REQUIRED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED' type='enum'/>
-     <exports symbol='XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE' type='enum'/>
-     <exports symbol='XML_RNGP_ATTRIBUTE_CONTENT' type='enum'/>
-     <exports symbol='XML_DTD_XMLID_TYPE' type='enum'/>
-     <exports symbol='XML_RNGP_INTERLEAVE_ADD' type='enum'/>
-     <exports symbol='XML_DTD_ATTRIBUTE_REDEFINED' type='enum'/>
-     <exports symbol='XML_RNGP_UNKNOWN_ATTRIBUTE' type='enum'/>
-     <exports symbol='XML_ERR_UNDECLARED_ENTITY' type='enum'/>
-     <exports symbol='XML_ERR_PUBID_REQUIRED' type='enum'/>
-     <exports symbol='XML_IO_ENOTSOCK' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_START_GROUP' type='enum'/>
-     <exports symbol='XML_RNGP_NOTALLOWED_NOT_EMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_4' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_3' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_2' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_1' type='enum'/>
-     <exports symbol='XML_SCHEMAP_PREFIX_UNDEFINED' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_ATTR_ELEM' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_4_3' type='enum'/>
-     <exports symbol='XML_FTP_ACCNT' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_4_1' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_START_DATA' type='enum'/>
-     <exports symbol='XML_IO_ENOENT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2' type='enum'/>
-     <exports symbol='XML_FROM_C14N' type='enum'/>
-     <exports symbol='XML_IO_EIO' type='enum'/>
-     <exports symbol='XML_DTD_NOT_PCDATA' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_ATTR_COMBINATION' type='enum'/>
-     <exports symbol='XML_RNGP_PARAM_FORBIDDEN' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD' type='enum'/>
-     <exports symbol='XML_FROM_WRITER' type='enum'/>
-     <exports symbol='XML_ERR_UNSUPPORTED_ENCODING' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME' type='enum'/>
+     <exports symbol='XML_ERR_ENTITYREF_IN_EPILOG' type='enum'/>
      <exports symbol='XML_ERR_ENTITYREF_IN_PROLOG' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_IDC' type='enum'/>
-     <exports symbol='XML_IO_ENOTTY' type='enum'/>
-     <exports symbol='XML_SCHEMAP_WARN_SKIP_SCHEMA' type='enum'/>
-     <exports symbol='XML_DTD_UNKNOWN_NOTATION' type='enum'/>
-     <exports symbol='XML_FROM_DATATYPE' type='enum'/>
-     <exports symbol='XML_ERR_WARNING' type='enum'/>
-     <exports symbol='XML_SCHEMAP_ATTRFORMDEFAULT_VALUE' type='enum'/>
-     <exports symbol='XML_IO_EISDIR' type='enum'/>
-     <exports symbol='XML_XINCLUDE_MULTIPLE_ROOT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_UNION_CHILD' type='enum'/>
-     <exports symbol='XML_XPATH_MEMORY_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_NOROOT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_WARN_ATTR_REDECL_PROH' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_3_2_1' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_3_2_2' type='enum'/>
-     <exports symbol='XML_XPATH_UNCLOSED_ERROR' type='enum'/>
-     <exports symbol='XML_CHECK_FOUND_NOTATION' type='enum'/>
-     <exports symbol='XML_CHECK_NO_NEXT' type='enum'/>
-     <exports symbol='XML_CHECK_NOT_ATTR_DECL' type='enum'/>
-     <exports symbol='XML_CHECK_NO_PARENT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_TOTALDIGITS_VALID' type='enum'/>
-     <exports symbol='XML_IO_ENOLCK' type='enum'/>
-     <exports symbol='XML_XINCLUDE_DEPRECATED_NS' type='enum'/>
-     <exports symbol='XML_RNGP_CHOICE_EMPTY' type='enum'/>
-     <exports symbol='XML_ERR_LITERAL_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_ENTITYREF_NO_NAME' type='enum'/>
      <exports symbol='XML_ERR_ENTITYREF_SEMICOL_MISSING' type='enum'/>
-     <exports symbol='XML_DTD_MULTIPLE_ID' type='enum'/>
-     <exports symbol='XML_FROM_XPATH' type='enum'/>
-     <exports symbol='XML_TREE_INVALID_DEC' type='enum'/>
-     <exports symbol='XML_SCHEMAP_EXTENSION_NO_BASE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_5' type='enum'/>
-     <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_4' type='enum'/>
-     <exports symbol='XML_CHECK_FOUND_DOCTYPE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_3' type='enum'/>
-     <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP' type='enum'/>
-     <exports symbol='XML_SCHEMAP_NO_XSI' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_3' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_1' type='enum'/>
-     <exports symbol='XML_CHECK_NO_NAME' type='enum'/>
-     <exports symbol='XML_ERR_CONDSEC_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_CHECK_FOUND_PI' type='enum'/>
-     <exports symbol='XML_ERR_EQUAL_REQUIRED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_WHITE_SPACE' type='enum'/>
-     <exports symbol='XML_DTD_UNKNOWN_ATTRIBUTE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_5_1_2' type='enum'/>
-     <exports symbol='XML_RNGP_INTERLEAVE_CREATE_FAILED' type='enum'/>
-     <exports symbol='XML_IO_EAGAIN' type='enum'/>
-     <exports symbol='XML_ERR_NOTATION_NOT_STARTED' type='enum'/>
-     <exports symbol='XML_DTD_ENTITY_TYPE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_4' type='enum'/>
-     <exports symbol='XML_RNGP_GRAMMAR_CONTENT' type='enum'/>
-     <exports symbol='XML_FTP_URL_SYNTAX' type='enum'/>
-     <exports symbol='XML_ERR_NONE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD' type='enum'/>
-     <exports symbol='XML_XPATH_NUMBER_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_FACET_TYPE' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_START_ONEMORE' type='enum'/>
-     <exports symbol='XML_ERR_CONDSEC_INVALID' type='enum'/>
-     <exports symbol='XML_XINCLUDE_INCLUDE_IN_INCLUDE' type='enum'/>
-     <exports symbol='XML_ERR_ENTITYREF_IN_EPILOG' type='enum'/>
-     <exports symbol='XML_RNGP_GRAMMAR_MISSING' type='enum'/>
-     <exports symbol='XML_RNGP_GRAMMAR_NO_START' type='enum'/>
-     <exports symbol='XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_LIST_INTERLEAVE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ELEMENT_3' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_REF' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_EMPTY' type='enum'/>
-     <exports symbol='XML_FROM_I18N' type='enum'/>
-     <exports symbol='XML_DTD_MISSING_ATTRIBUTE' type='enum'/>
-     <exports symbol='XML_IO_EMFILE' type='enum'/>
-     <exports symbol='XML_RNGP_EMPTY_NOT_EMPTY' type='enum'/>
-     <exports symbol='XML_ERR_VERSION_MISSING' type='enum'/>
-     <exports symbol='XML_IO_NO_INPUT' type='enum'/>
-     <exports symbol='XML_NS_ERR_UNDEFINED_NAMESPACE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_MINLENGTH_VALID' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_WILDCARD' type='enum'/>
-     <exports symbol='XML_IO_WRITE' type='enum'/>
-     <exports symbol='XML_ERR_ENTITY_PE_INTERNAL' type='enum'/>
-     <exports symbol='XML_DTD_XMLID_VALUE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_DERIVED_OK_2_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_DERIVED_OK_2_1' type='enum'/>
-     <exports symbol='XML_CHECK_NOT_NS_DECL' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_ELEM' type='enum'/>
-     <exports symbol='XML_ERR_COMMENT_ABRUPTLY_ENDED' type='enum'/>
-     <exports symbol='XML_IO_NETWORK_ATTEMPT' type='enum'/>
-     <exports symbol='XML_MODULE_CLOSE' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_START_EMPTY' type='enum'/>
-     <exports symbol='XML_ERR_ATTLIST_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_XINCLUDE_TEXT_FRAGMENT' type='enum'/>
-     <exports symbol='XML_C14N_RELATIVE_NAMESPACE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_FAILED_LOAD' type='enum'/>
-     <exports symbol='XML_ERR_ATTRIBUTE_WITHOUT_VALUE' type='enum'/>
-     <exports symbol='XML_ERR_NAME_TOO_LONG' type='enum'/>
-     <exports symbol='XML_XPTR_SYNTAX_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_TYPE' type='enum'/>
-     <exports symbol='XML_CHECK_WRONG_DOC' type='enum'/>
-     <exports symbol='XML_NS_ERR_XML_NAMESPACE' type='enum'/>
-     <exports symbol='XML_ERR_DOCTYPE_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_XINCLUDE_PARSE_VALUE' type='enum'/>
-     <exports symbol='XML_RNGP_NSNAME_NO_NS' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_IMPORT_2_2' type='enum'/>
-     <exports symbol='XML_CHECK_FOUND_ELEMENT' type='enum'/>
-     <exports symbol='XML_RNGP_PARENTREF_NAME_INVALID' type='enum'/>
-     <exports symbol='XML_NS_ERR_QNAME' type='enum'/>
-     <exports symbol='XML_DTD_NOTATION_VALUE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_3' type='enum'/>
-     <exports symbol='XML_I18N_NO_NAME' type='enum'/>
-     <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_1' type='enum'/>
-     <exports symbol='XML_RNGP_EXCEPT_MISSING' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_CT_EXTENDS_1_2' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_ALL_CHILD' type='enum'/>
-     <exports symbol='XML_DTD_MIXED_CORRUPT' type='enum'/>
      <exports symbol='XML_ERR_ENTITY_BOUNDARY' type='enum'/>
-     <exports symbol='XML_SCHEMAP_ELEMFORMDEFAULT_VALUE' type='enum'/>
-     <exports symbol='XML_I18N_EXCESS_HANDLER' type='enum'/>
-     <exports symbol='XML_RNGP_DATA_CONTENT' type='enum'/>
-     <exports symbol='XML_ERR_STRING_NOT_STARTED' type='enum'/>
-     <exports symbol='XML_RNGP_EXCEPT_MULTIPLE' type='enum'/>
-     <exports symbol='XML_IO_EDEADLK' type='enum'/>
-     <exports symbol='XML_ERR_ATTRIBUTE_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE' type='enum'/>
-     <exports symbol='XML_IO_EINVAL' type='enum'/>
-     <exports symbol='XML_IO_ENAMETOOLONG' type='enum'/>
-     <exports symbol='XML_RNGP_EXTERNAL_REF_FAILURE' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_START_TEXT' type='enum'/>
-     <exports symbol='XML_CHECK_NO_DOC' type='enum'/>
-     <exports symbol='XML_DTD_INVALID_CHILD' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_PATTERN_VALID' type='enum'/>
-     <exports symbol='XML_RNGP_TYPE_MISSING' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1' type='enum'/>
-     <exports symbol='XML_ERR_TAG_NAME_MISMATCH' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3' type='enum'/>
-     <exports symbol='XML_ERR_ENCODING_NAME' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5' type='enum'/>
-     <exports symbol='XML_SCHEMAV_MISC' type='enum'/>
-     <exports symbol='XML_IO_ECONNREFUSED' type='enum'/>
-     <exports symbol='XML_ERR_XMLDECL_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_P_PROPS_CORRECT_1' type='enum'/>
-     <exports symbol='XML_CHECK_FOUND_ENTITYREF' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_2_1' type='enum'/>
-     <exports symbol='XML_XINCLUDE_BUILD_FAILED' type='enum'/>
-     <exports symbol='XML_ERR_PEREF_NO_NAME' type='enum'/>
-     <exports symbol='XML_ERR_ENTITYREF_AT_EOF' type='enum'/>
-     <exports symbol='XML_SCHEMAP_NOATTR_NOREF' type='enum'/>
-     <exports symbol='XML_RNGP_ATTRIBUTE_CHILDREN' type='enum'/>
-     <exports symbol='XML_XPATH_UNDEF_PREFIX_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_1' type='enum'/>
-     <exports symbol='XML_SAVE_NO_DOCTYPE' type='enum'/>
-     <exports symbol='XML_ERR_PEREF_IN_EPILOG' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_4' type='enum'/>
-     <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_4' type='enum'/>
-     <exports symbol='XML_ERR_URI_FRAGMENT' type='enum'/>
-     <exports symbol='XML_IO_ESPIPE' type='enum'/>
-     <exports symbol='XML_DTD_NO_DOC' type='enum'/>
-     <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_1' type='enum'/>
-     <exports symbol='XML_SCHEMAP_NOT_SCHEMA' type='enum'/>
-     <exports symbol='XML_FROM_SCHEMASV' type='enum'/>
-     <exports symbol='XML_FROM_SCHEMASP' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_3_1' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_1' type='enum'/>
-     <exports symbol='XML_ERR_MIXED_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_DTD_STANDALONE_WHITE_SPACE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_FACET' type='enum'/>
-     <exports symbol='XML_IO_ENOTEMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMAV_WRONGELEM' type='enum'/>
-     <exports symbol='XML_RNGP_TYPE_NOT_FOUND' type='enum'/>
-     <exports symbol='XML_IO_BUFFER_FULL' type='enum'/>
-     <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_6' type='enum'/>
-     <exports symbol='XML_DTD_CONTENT_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_MEMBER_TYPE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_NOROOT' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_6' type='enum'/>
-     <exports symbol='XML_SCHEMAP_REDEFINED_TYPE' type='enum'/>
-     <exports symbol='XML_ERR_CDATA_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_TYPE_3_1_2' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_TYPE_3_1_1' type='enum'/>
-     <exports symbol='XML_CHECK_NS_ANCESTOR' type='enum'/>
-     <exports symbol='XML_ERR_DOCUMENT_END' type='enum'/>
+     <exports symbol='XML_ERR_ENTITY_CHAR_ERROR' type='enum'/>
+     <exports symbol='XML_ERR_ENTITY_IS_EXTERNAL' type='enum'/>
+     <exports symbol='XML_ERR_ENTITY_IS_PARAMETER' type='enum'/>
+     <exports symbol='XML_ERR_ENTITY_LOOP' type='enum'/>
+     <exports symbol='XML_ERR_ENTITY_NOT_FINISHED' type='enum'/>
      <exports symbol='XML_ERR_ENTITY_NOT_STARTED' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ENUMERATION_VALID' type='enum'/>
-     <exports symbol='XML_ERR_CHARREF_IN_PROLOG' type='enum'/>
-     <exports symbol='XML_RNGP_INVALID_DEFINE_NAME' type='enum'/>
-     <exports symbol='XML_SAVE_UNKNOWN_ENCODING' type='enum'/>
-     <exports symbol='XML_ERR_CONDSEC_INVALID_KEYWORD' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_7' type='enum'/>
-     <exports symbol='XML_SCHEMAV_NOTYPE' type='enum'/>
-     <exports symbol='XML_ERR_NO_MEMORY' type='enum'/>
-     <exports symbol='XML_FROM_IO' type='enum'/>
-     <exports symbol='XML_HTML_UNKNOWN_TAG' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_ATTR_NAME' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_START_ATTR' type='enum'/>
-     <exports symbol='XML_CHECK_WRONG_NAME' type='enum'/>
-     <exports symbol='XML_SCHEMAV_NOTEMPTY' type='enum'/>
-     <exports symbol='XML_IO_EROFS' type='enum'/>
-     <exports symbol='XML_IO_EXDEV' type='enum'/>
-     <exports symbol='XML_XINCLUDE_NO_FALLBACK' type='enum'/>
-     <exports symbol='XML_RNGP_URI_FRAGMENT' type='enum'/>
-     <exports symbol='XML_FROM_MEMORY' type='enum'/>
+     <exports symbol='XML_ERR_ENTITY_PE_INTERNAL' type='enum'/>
+     <exports symbol='XML_ERR_ENTITY_PROCESSING' type='enum'/>
+     <exports symbol='XML_ERR_EQUAL_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_ERROR' type='enum'/>
+     <exports symbol='XML_ERR_EXTRA_CONTENT' type='enum'/>
+     <exports symbol='XML_ERR_EXT_ENTITY_STANDALONE' type='enum'/>
+     <exports symbol='XML_ERR_EXT_SUBSET_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_FATAL' type='enum'/>
+     <exports symbol='XML_ERR_GT_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_HYPHEN_IN_COMMENT' type='enum'/>
+     <exports symbol='XML_ERR_INTERNAL_ERROR' type='enum'/>
+     <exports symbol='XML_ERR_INVALID_CHAR' type='enum'/>
+     <exports symbol='XML_ERR_INVALID_CHARREF' type='enum'/>
+     <exports symbol='XML_ERR_INVALID_DEC_CHARREF' type='enum'/>
+     <exports symbol='XML_ERR_INVALID_ENCODING' type='enum'/>
+     <exports symbol='XML_ERR_INVALID_HEX_CHARREF' type='enum'/>
+     <exports symbol='XML_ERR_INVALID_URI' type='enum'/>
+     <exports symbol='XML_ERR_LITERAL_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_LITERAL_NOT_STARTED' type='enum'/>
+     <exports symbol='XML_ERR_LTSLASH_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_LT_IN_ATTRIBUTE' type='enum'/>
+     <exports symbol='XML_ERR_LT_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_MISPLACED_CDATA_END' type='enum'/>
      <exports symbol='XML_ERR_MISSING_ENCODING' type='enum'/>
-     <exports symbol='XML_RNGP_ELEMENT_CONTENT' type='enum'/>
-     <exports symbol='XML_RNGP_UNKNOWN_TYPE_LIB' type='enum'/>
-     <exports symbol='XML_SCHEMAP_NOT_DETERMINISTIC' type='enum'/>
-     <exports symbol='XML_XPATH_EXPRESSION_OK' type='enum'/>
-     <exports symbol='XML_HTTP_UNKNOWN_HOST' type='enum'/>
-     <exports symbol='XML_ERR_ENTITY_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_DTD_NO_DTD' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_ONEMORE_GROUP_ATTR' type='enum'/>
-     <exports symbol='XML_ERR_VALUE_REQUIRED' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_LIST_TEXT' type='enum'/>
-     <exports symbol='XML_RNGP_URI_NOT_ABSOLUTE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNION_NOT_EXPRESSIBLE' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_ATTR' type='enum'/>
-     <exports symbol='XML_FTP_PASV_ANSWER' type='enum'/>
-     <exports symbol='XML_ERR_VERSION_MISMATCH' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_BOOLEAN' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_4_2' type='enum'/>
-     <exports symbol='XML_DTD_ELEM_DEFAULT_NAMESPACE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_4' type='enum'/>
-     <exports symbol='XML_SCHEMAP_REGEXP_INVALID' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_1' type='enum'/>
-     <exports symbol='XML_C14N_CREATE_STACK' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_1' type='enum'/>
-     <exports symbol='XML_FROM_RELAXNGV' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME' type='enum'/>
-     <exports symbol='XML_CHECK_ENTITY_TYPE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CONSTRUCT' type='enum'/>
-     <exports symbol='XML_RNGP_EXTERNALREF_RECURSE' type='enum'/>
-     <exports symbol='XML_RNGP_CHOICE_CONTENT' type='enum'/>
-     <exports symbol='XML_RNGP_UNKNOWN_COMBINE' type='enum'/>
-     <exports symbol='XML_RNGP_START_EMPTY' type='enum'/>
-     <exports symbol='XML_IO_ENCODER' type='enum'/>
-     <exports symbol='XML_WAR_NS_URI' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES' type='enum'/>
-     <exports symbol='XML_SCHEMAP_ATTRGRP_NONAME_NOREF' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1' type='enum'/>
-     <exports symbol='XML_ERR_ENTITY_IS_EXTERNAL' type='enum'/>
-     <exports symbol='XML_WAR_UNDECLARED_ENTITY' type='enum'/>
-     <exports symbol='XML_SCHEMAV_ATTRUNKNOWN' type='enum'/>
-     <exports symbol='XML_IO_ENODEV' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_REF' type='enum'/>
-     <exports symbol='XML_FROM_PARSER' type='enum'/>
-     <exports symbol='XML_C14N_CREATE_CTXT' type='enum'/>
-     <exports symbol='XML_XINCLUDE_TEXT_DOCUMENT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_PREFIX' type='enum'/>
-     <exports symbol='XML_XINCLUDE_FALLBACKS_IN_INCLUDE' type='enum'/>
-     <exports symbol='XML_XPATH_INVALID_TYPE' type='enum'/>
-     <exports symbol='XML_CHECK_NS_SCOPE' type='enum'/>
-     <exports symbol='XML_IO_FLUSH' type='enum'/>
-     <exports symbol='XML_CATALOG_ENTRY_BROKEN' type='enum'/>
-     <exports symbol='XML_XPATH_INVALID_CTXT_POSITION' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_LENGTH_VALID' type='enum'/>
-     <exports symbol='XML_DTD_STANDALONE_DEFAULTED' type='enum'/>
-     <exports symbol='XML_DTD_UNKNOWN_ELEM' type='enum'/>
-     <exports symbol='XML_WAR_SPACE_VALUE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_FACET_CHILD' type='enum'/>
-     <exports symbol='XML_SCHEMAP_NOTATION_NO_NAME' type='enum'/>
-     <exports symbol='XML_XPATH_START_LITERAL_ERROR' type='enum'/>
-     <exports symbol='XML_ERR_ELEMCONTENT_NOT_STARTED' type='enum'/>
-     <exports symbol='XML_RNGP_INCLUDE_FAILURE' type='enum'/>
-     <exports symbol='XML_ERR_COMMENT_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2' type='enum'/>
-     <exports symbol='XML_BUF_OVERFLOW' type='enum'/>
-     <exports symbol='XML_IO_EMSGSIZE' type='enum'/>
+     <exports symbol='XML_ERR_MIXED_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_MIXED_NOT_STARTED' type='enum'/>
+     <exports symbol='XML_ERR_NAME_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_NAME_TOO_LONG' type='enum'/>
+     <exports symbol='XML_ERR_NMTOKEN_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_NONE' type='enum'/>
+     <exports symbol='XML_ERR_NOTATION_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_NOTATION_NOT_STARTED' type='enum'/>
+     <exports symbol='XML_ERR_NOTATION_PROCESSING' type='enum'/>
+     <exports symbol='XML_ERR_NOT_STANDALONE' type='enum'/>
+     <exports symbol='XML_ERR_NOT_WELL_BALANCED' type='enum'/>
+     <exports symbol='XML_ERR_NO_DTD' type='enum'/>
+     <exports symbol='XML_ERR_NO_MEMORY' type='enum'/>
+     <exports symbol='XML_ERR_NS_DECL_ERROR' type='enum'/>
+     <exports symbol='XML_ERR_OK' type='enum'/>
+     <exports symbol='XML_ERR_PCDATA_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_PEREF_AT_EOF' type='enum'/>
+     <exports symbol='XML_ERR_PEREF_IN_EPILOG' type='enum'/>
+     <exports symbol='XML_ERR_PEREF_IN_INT_SUBSET' type='enum'/>
+     <exports symbol='XML_ERR_PEREF_IN_PROLOG' type='enum'/>
+     <exports symbol='XML_ERR_PEREF_NO_NAME' type='enum'/>
+     <exports symbol='XML_ERR_PEREF_SEMICOL_MISSING' type='enum'/>
+     <exports symbol='XML_ERR_PI_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_PI_NOT_STARTED' type='enum'/>
+     <exports symbol='XML_ERR_PUBID_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_RESERVED_XML_NAME' type='enum'/>
+     <exports symbol='XML_ERR_SEPARATOR_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_SPACE_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_STANDALONE_VALUE' type='enum'/>
+     <exports symbol='XML_ERR_STRING_NOT_CLOSED' type='enum'/>
+     <exports symbol='XML_ERR_STRING_NOT_STARTED' type='enum'/>
+     <exports symbol='XML_ERR_TAG_NAME_MISMATCH' type='enum'/>
+     <exports symbol='XML_ERR_TAG_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_UNDECLARED_ENTITY' type='enum'/>
+     <exports symbol='XML_ERR_UNKNOWN_ENCODING' type='enum'/>
+     <exports symbol='XML_ERR_UNKNOWN_VERSION' type='enum'/>
+     <exports symbol='XML_ERR_UNPARSED_ENTITY' type='enum'/>
+     <exports symbol='XML_ERR_UNSUPPORTED_ENCODING' type='enum'/>
+     <exports symbol='XML_ERR_URI_FRAGMENT' type='enum'/>
+     <exports symbol='XML_ERR_URI_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_USER_STOP' type='enum'/>
+     <exports symbol='XML_ERR_VALUE_REQUIRED' type='enum'/>
+     <exports symbol='XML_ERR_VERSION_MISMATCH' type='enum'/>
+     <exports symbol='XML_ERR_VERSION_MISSING' type='enum'/>
+     <exports symbol='XML_ERR_WARNING' type='enum'/>
+     <exports symbol='XML_ERR_XMLDECL_NOT_FINISHED' type='enum'/>
+     <exports symbol='XML_ERR_XMLDECL_NOT_STARTED' type='enum'/>
+     <exports symbol='XML_FROM_BUFFER' type='enum'/>
+     <exports symbol='XML_FROM_C14N' type='enum'/>
      <exports symbol='XML_FROM_CATALOG' type='enum'/>
-     <exports symbol='XML_SCHEMAV_ATTRINVALID' type='enum'/>
-     <exports symbol='XML_NS_ERR_EMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_2' type='enum'/>
+     <exports symbol='XML_FROM_CHECK' type='enum'/>
+     <exports symbol='XML_FROM_DATATYPE' type='enum'/>
+     <exports symbol='XML_FROM_DTD' type='enum'/>
+     <exports symbol='XML_FROM_FTP' type='enum'/>
      <exports symbol='XML_FROM_HTML' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_MAXOCCURS' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD' type='enum'/>
-     <exports symbol='XML_RNGP_ELEMENT_NAME' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_START_VALUE' type='enum'/>
-     <exports symbol='XML_XPATH_INVALID_ARITY' type='enum'/>
-     <exports symbol='XML_RNGP_ERROR_TYPE_LIB' type='enum'/>
-     <exports symbol='XML_XPTR_EVAL_FAILED' type='enum'/>
-     <exports symbol='XML_DTD_NO_ROOT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_IMPORT_REDEFINE_NSNAME' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_ATTR_CHILD' type='enum'/>
-     <exports symbol='XML_ERR_UNKNOWN_ENCODING' type='enum'/>
+     <exports symbol='XML_FROM_HTTP' type='enum'/>
+     <exports symbol='XML_FROM_I18N' type='enum'/>
+     <exports symbol='XML_FROM_IO' type='enum'/>
+     <exports symbol='XML_FROM_MEMORY' type='enum'/>
+     <exports symbol='XML_FROM_MODULE' type='enum'/>
+     <exports symbol='XML_FROM_NAMESPACE' type='enum'/>
+     <exports symbol='XML_FROM_NONE' type='enum'/>
+     <exports symbol='XML_FROM_OUTPUT' type='enum'/>
+     <exports symbol='XML_FROM_PARSER' type='enum'/>
+     <exports symbol='XML_FROM_REGEXP' type='enum'/>
+     <exports symbol='XML_FROM_RELAXNGP' type='enum'/>
+     <exports symbol='XML_FROM_RELAXNGV' type='enum'/>
+     <exports symbol='XML_FROM_SCHEMASP' type='enum'/>
+     <exports symbol='XML_FROM_SCHEMASV' type='enum'/>
+     <exports symbol='XML_FROM_SCHEMATRONV' type='enum'/>
+     <exports symbol='XML_FROM_TREE' type='enum'/>
+     <exports symbol='XML_FROM_URI' type='enum'/>
+     <exports symbol='XML_FROM_VALID' type='enum'/>
+     <exports symbol='XML_FROM_WRITER' type='enum'/>
+     <exports symbol='XML_FROM_XINCLUDE' type='enum'/>
+     <exports symbol='XML_FROM_XPATH' type='enum'/>
+     <exports symbol='XML_FROM_XPOINTER' type='enum'/>
+     <exports symbol='XML_FROM_XSLT' type='enum'/>
+     <exports symbol='XML_FTP_ACCNT' type='enum'/>
+     <exports symbol='XML_FTP_EPSV_ANSWER' type='enum'/>
+     <exports symbol='XML_FTP_PASV_ANSWER' type='enum'/>
+     <exports symbol='XML_FTP_URL_SYNTAX' type='enum'/>
      <exports symbol='XML_HTML_INCORRECTLY_OPENED_COMMENT' type='enum'/>
-     <exports symbol='XML_C14N_UNKNOW_NODE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_REF_AND_SUBTYPE' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR' type='enum'/>
-     <exports symbol='XML_C14N_INVALID_NODE' type='enum'/>
-     <exports symbol='XML_RNGP_TEXT_EXPECTED' type='enum'/>
-     <exports symbol='XML_XPATH_UNDEF_VARIABLE_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAV_NOROLLBACK' type='enum'/>
-     <exports symbol='XML_SCHEMAV_FACET' type='enum'/>
-     <exports symbol='XML_ERR_INVALID_DEC_CHARREF' type='enum'/>
-     <exports symbol='XML_RNGP_NEED_COMBINE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_NOTTOPLEVEL' type='enum'/>
-     <exports symbol='XML_CATALOG_MISSING_ATTR' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_LIST_LIST' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_TYPE_2' type='enum'/>
-     <exports symbol='XML_RNGP_EXCEPT_EMPTY' type='enum'/>
-     <exports symbol='XML_XPATH_UNFINISHED_LITERAL_ERROR' type='enum'/>
-     <exports symbol='XML_RNGP_INTERLEAVE_NO_CONTENT' type='enum'/>
-     <exports symbol='XML_ERR_INVALID_HEX_CHARREF' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF' type='enum'/>
-     <exports symbol='XML_ERR_CHARREF_IN_DTD' type='enum'/>
-     <exports symbol='XML_IO_ENFILE' type='enum'/>
-     <exports symbol='XML_ERR_ENTITY_IS_PARAMETER' type='enum'/>
+     <exports symbol='XML_HTML_STRUCURE_ERROR' type='enum'/>
+     <exports symbol='XML_HTML_UNKNOWN_TAG' type='enum'/>
+     <exports symbol='XML_HTTP_UNKNOWN_HOST' type='enum'/>
+     <exports symbol='XML_HTTP_URL_SYNTAX' type='enum'/>
+     <exports symbol='XML_HTTP_USE_IP' type='enum'/>
      <exports symbol='XML_I18N_CONV_FAILED' type='enum'/>
-     <exports symbol='XML_CHECK_WRONG_PARENT' type='enum'/>
-     <exports symbol='XML_RNGP_PARENTREF_NO_NAME' type='enum'/>
-     <exports symbol='XML_IO_EPERM' type='enum'/>
+     <exports symbol='XML_I18N_EXCESS_HANDLER' type='enum'/>
+     <exports symbol='XML_I18N_NO_HANDLER' type='enum'/>
+     <exports symbol='XML_I18N_NO_NAME' type='enum'/>
+     <exports symbol='XML_I18N_NO_OUTPUT' type='enum'/>
+     <exports symbol='XML_IO_BUFFER_FULL' type='enum'/>
+     <exports symbol='XML_IO_EACCES' type='enum'/>
+     <exports symbol='XML_IO_EADDRINUSE' type='enum'/>
+     <exports symbol='XML_IO_EAFNOSUPPORT' type='enum'/>
+     <exports symbol='XML_IO_EAGAIN' type='enum'/>
+     <exports symbol='XML_IO_EALREADY' type='enum'/>
+     <exports symbol='XML_IO_EBADF' type='enum'/>
+     <exports symbol='XML_IO_EBADMSG' type='enum'/>
+     <exports symbol='XML_IO_EBUSY' type='enum'/>
+     <exports symbol='XML_IO_ECANCELED' type='enum'/>
+     <exports symbol='XML_IO_ECHILD' type='enum'/>
+     <exports symbol='XML_IO_ECONNREFUSED' type='enum'/>
+     <exports symbol='XML_IO_EDEADLK' type='enum'/>
+     <exports symbol='XML_IO_EDOM' type='enum'/>
+     <exports symbol='XML_IO_EEXIST' type='enum'/>
+     <exports symbol='XML_IO_EFAULT' type='enum'/>
+     <exports symbol='XML_IO_EFBIG' type='enum'/>
+     <exports symbol='XML_IO_EINPROGRESS' type='enum'/>
+     <exports symbol='XML_IO_EINTR' type='enum'/>
+     <exports symbol='XML_IO_EINVAL' type='enum'/>
+     <exports symbol='XML_IO_EIO' type='enum'/>
+     <exports symbol='XML_IO_EISCONN' type='enum'/>
+     <exports symbol='XML_IO_EISDIR' type='enum'/>
+     <exports symbol='XML_IO_EMFILE' type='enum'/>
+     <exports symbol='XML_IO_EMLINK' type='enum'/>
+     <exports symbol='XML_IO_EMSGSIZE' type='enum'/>
+     <exports symbol='XML_IO_ENAMETOOLONG' type='enum'/>
+     <exports symbol='XML_IO_ENCODER' type='enum'/>
      <exports symbol='XML_IO_ENETUNREACH' type='enum'/>
-     <exports symbol='XML_ERR_CHARREF_AT_EOF' type='enum'/>
+     <exports symbol='XML_IO_ENFILE' type='enum'/>
+     <exports symbol='XML_IO_ENODEV' type='enum'/>
+     <exports symbol='XML_IO_ENOENT' type='enum'/>
+     <exports symbol='XML_IO_ENOEXEC' type='enum'/>
+     <exports symbol='XML_IO_ENOLCK' type='enum'/>
      <exports symbol='XML_IO_ENOMEM' type='enum'/>
      <exports symbol='XML_IO_ENOSPC' type='enum'/>
-     <exports symbol='XML_FROM_NONE' type='enum'/>
-     <exports symbol='XML_RNGP_TYPE_VALUE' type='enum'/>
-     <exports symbol='XML_FROM_REGEXP' type='enum'/>
+     <exports symbol='XML_IO_ENOSYS' type='enum'/>
+     <exports symbol='XML_IO_ENOTDIR' type='enum'/>
+     <exports symbol='XML_IO_ENOTEMPTY' type='enum'/>
+     <exports symbol='XML_IO_ENOTSOCK' type='enum'/>
+     <exports symbol='XML_IO_ENOTSUP' type='enum'/>
+     <exports symbol='XML_IO_ENOTTY' type='enum'/>
+     <exports symbol='XML_IO_ENXIO' type='enum'/>
+     <exports symbol='XML_IO_EPERM' type='enum'/>
+     <exports symbol='XML_IO_EPIPE' type='enum'/>
+     <exports symbol='XML_IO_ERANGE' type='enum'/>
+     <exports symbol='XML_IO_EROFS' type='enum'/>
+     <exports symbol='XML_IO_ESPIPE' type='enum'/>
+     <exports symbol='XML_IO_ESRCH' type='enum'/>
+     <exports symbol='XML_IO_ETIMEDOUT' type='enum'/>
+     <exports symbol='XML_IO_EXDEV' type='enum'/>
+     <exports symbol='XML_IO_FLUSH' type='enum'/>
+     <exports symbol='XML_IO_LOAD_ERROR' type='enum'/>
+     <exports symbol='XML_IO_NETWORK_ATTEMPT' type='enum'/>
+     <exports symbol='XML_IO_NO_INPUT' type='enum'/>
+     <exports symbol='XML_IO_UNKNOWN' type='enum'/>
+     <exports symbol='XML_IO_WRITE' type='enum'/>
+     <exports symbol='XML_MODULE_CLOSE' type='enum'/>
+     <exports symbol='XML_MODULE_OPEN' type='enum'/>
+     <exports symbol='XML_NS_ERR_ATTRIBUTE_REDEFINED' type='enum'/>
+     <exports symbol='XML_NS_ERR_COLON' type='enum'/>
+     <exports symbol='XML_NS_ERR_EMPTY' type='enum'/>
+     <exports symbol='XML_NS_ERR_QNAME' type='enum'/>
+     <exports symbol='XML_NS_ERR_UNDEFINED_NAMESPACE' type='enum'/>
+     <exports symbol='XML_NS_ERR_XML_NAMESPACE' type='enum'/>
+     <exports symbol='XML_REGEXP_COMPILE_ERROR' type='enum'/>
+     <exports symbol='XML_RNGP_ANYNAME_ATTR_ANCESTOR' type='enum'/>
+     <exports symbol='XML_RNGP_ATTRIBUTE_CHILDREN' type='enum'/>
+     <exports symbol='XML_RNGP_ATTRIBUTE_CONTENT' type='enum'/>
+     <exports symbol='XML_RNGP_ATTRIBUTE_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_ATTRIBUTE_NOOP' type='enum'/>
+     <exports symbol='XML_RNGP_ATTR_CONFLICT' type='enum'/>
+     <exports symbol='XML_RNGP_CHOICE_CONTENT' type='enum'/>
+     <exports symbol='XML_RNGP_CHOICE_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_CREATE_FAILURE' type='enum'/>
+     <exports symbol='XML_RNGP_DATA_CONTENT' type='enum'/>
+     <exports symbol='XML_RNGP_DEFINE_CREATE_FAILED' type='enum'/>
+     <exports symbol='XML_RNGP_DEFINE_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_DEFINE_MISSING' type='enum'/>
+     <exports symbol='XML_RNGP_DEFINE_NAME_MISSING' type='enum'/>
      <exports symbol='XML_RNGP_DEF_CHOICE_AND_INTERLEAVE' type='enum'/>
-     <exports symbol='XML_TREE_UNTERMINATED_ENTITY' type='enum'/>
-     <exports symbol='XML_ERR_URI_REQUIRED' type='enum'/>
-     <exports symbol='XML_FROM_TREE' type='enum'/>
-     <exports symbol='XML_ERR_EXT_ENTITY_STANDALONE' type='enum'/>
-     <exports symbol='XML_TREE_INVALID_HEX' type='enum'/>
-     <exports symbol='XML_C14N_REQUIRES_UTF8' type='enum'/>
-     <exports symbol='XML_ERR_ENTITY_PROCESSING' type='enum'/>
-     <exports symbol='XML_FROM_XINCLUDE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_CVC_SIMPLE_TYPE' type='enum'/>
-     <exports symbol='XML_RNGP_GRAMMAR_EMPTY' type='enum'/>
-     <exports symbol='XML_CHECK_NOT_NCNAME' type='enum'/>
+     <exports symbol='XML_RNGP_ELEMENT_CONTENT' type='enum'/>
+     <exports symbol='XML_RNGP_ELEMENT_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_ELEMENT_NAME' type='enum'/>
      <exports symbol='XML_RNGP_ELEMENT_NO_CONTENT' type='enum'/>
-     <exports symbol='XML_XINCLUDE_NO_HREF' type='enum'/>
-     <exports symbol='XML_XPATH_INVALID_OPERAND' type='enum'/>
-     <exports symbol='XML_IO_ENOEXEC' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_LIST_REF' type='enum'/>
-     <exports symbol='XML_XINCLUDE_HREF_URI' type='enum'/>
-     <exports symbol='XML_SCHEMAP_FAILED_PARSE' type='enum'/>
+     <exports symbol='XML_RNGP_ELEM_CONTENT_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_ELEM_CONTENT_ERROR' type='enum'/>
+     <exports symbol='XML_RNGP_ELEM_TEXT_CONFLICT' type='enum'/>
+     <exports symbol='XML_RNGP_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_EMPTY_CONSTRUCT' type='enum'/>
+     <exports symbol='XML_RNGP_EMPTY_CONTENT' type='enum'/>
+     <exports symbol='XML_RNGP_EMPTY_NOT_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_ERROR_TYPE_LIB' type='enum'/>
+     <exports symbol='XML_RNGP_EXCEPT_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_EXCEPT_MISSING' type='enum'/>
+     <exports symbol='XML_RNGP_EXCEPT_MULTIPLE' type='enum'/>
+     <exports symbol='XML_RNGP_EXCEPT_NO_CONTENT' type='enum'/>
+     <exports symbol='XML_RNGP_EXTERNALREF_EMTPY' type='enum'/>
+     <exports symbol='XML_RNGP_EXTERNALREF_RECURSE' type='enum'/>
+     <exports symbol='XML_RNGP_EXTERNAL_REF_FAILURE' type='enum'/>
+     <exports symbol='XML_RNGP_FORBIDDEN_ATTRIBUTE' type='enum'/>
+     <exports symbol='XML_RNGP_FOREIGN_ELEMENT' type='enum'/>
+     <exports symbol='XML_RNGP_GRAMMAR_CONTENT' type='enum'/>
+     <exports symbol='XML_RNGP_GRAMMAR_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_GRAMMAR_MISSING' type='enum'/>
+     <exports symbol='XML_RNGP_GRAMMAR_NO_START' type='enum'/>
+     <exports symbol='XML_RNGP_GROUP_ATTR_CONFLICT' type='enum'/>
      <exports symbol='XML_RNGP_HREF_ERROR' type='enum'/>
-     <exports symbol='XML_ERR_ATTRIBUTE_NOT_STARTED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_ATTR_NONAME_NOREF' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_ELEMENT_1' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE' type='enum'/>
-     <exports symbol='XML_MODULE_OPEN' type='enum'/>
-     <exports symbol='XML_ERR_ENTITY_CHAR_ERROR' type='enum'/>
-     <exports symbol='XML_DTD_UNKNOWN_ENTITY' type='enum'/>
+     <exports symbol='XML_RNGP_INCLUDE_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_INCLUDE_FAILURE' type='enum'/>
+     <exports symbol='XML_RNGP_INCLUDE_RECURSE' type='enum'/>
+     <exports symbol='XML_RNGP_INTERLEAVE_ADD' type='enum'/>
+     <exports symbol='XML_RNGP_INTERLEAVE_CREATE_FAILED' type='enum'/>
+     <exports symbol='XML_RNGP_INTERLEAVE_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_INTERLEAVE_NO_CONTENT' type='enum'/>
+     <exports symbol='XML_RNGP_INVALID_DEFINE_NAME' type='enum'/>
+     <exports symbol='XML_RNGP_INVALID_URI' type='enum'/>
+     <exports symbol='XML_RNGP_INVALID_VALUE' type='enum'/>
+     <exports symbol='XML_RNGP_MISSING_HREF' type='enum'/>
+     <exports symbol='XML_RNGP_NAME_MISSING' type='enum'/>
+     <exports symbol='XML_RNGP_NEED_COMBINE' type='enum'/>
+     <exports symbol='XML_RNGP_NOTALLOWED_NOT_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_NSNAME_ATTR_ANCESTOR' type='enum'/>
+     <exports symbol='XML_RNGP_NSNAME_NO_NS' type='enum'/>
+     <exports symbol='XML_RNGP_PARAM_FORBIDDEN' type='enum'/>
+     <exports symbol='XML_RNGP_PARAM_NAME_MISSING' type='enum'/>
+     <exports symbol='XML_RNGP_PARENTREF_CREATE_FAILED' type='enum'/>
+     <exports symbol='XML_RNGP_PARENTREF_NAME_INVALID' type='enum'/>
+     <exports symbol='XML_RNGP_PARENTREF_NOT_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_PARENTREF_NO_NAME' type='enum'/>
+     <exports symbol='XML_RNGP_PARENTREF_NO_PARENT' type='enum'/>
      <exports symbol='XML_RNGP_PARSE_ERROR' type='enum'/>
-     <exports symbol='XML_ERR_NOTATION_PROCESSING' type='enum'/>
-     <exports symbol='XML_RNGP_XML_NS' type='enum'/>
-     <exports symbol='XML_ERR_MISPLACED_CDATA_END' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_ATTR_ATTR' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_ATTR_ELEM' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_ATTR' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_ELEM' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_GROUP' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_LIST' type='enum'/>
      <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_ONEMORE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_CT_EXTENDS_1_1' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_REF' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_TEXT' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_LIST_ATTR' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_LIST_ELEM' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_LIST_INTERLEAVE' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_LIST_LIST' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_LIST_REF' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_LIST_TEXT' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_ONEMORE_GROUP_ATTR' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_START_ATTR' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_START_DATA' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_START_EMPTY' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_START_GROUP' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_START_INTERLEAVE' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_START_LIST' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_START_ONEMORE' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_START_TEXT' type='enum'/>
+     <exports symbol='XML_RNGP_PAT_START_VALUE' type='enum'/>
+     <exports symbol='XML_RNGP_PREFIX_UNDEFINED' type='enum'/>
      <exports symbol='XML_RNGP_REF_CREATE_FAILED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_CT_EXTENDS_1_3' type='enum'/>
-     <exports symbol='XML_DTD_ROOT_NAME' type='enum'/>
+     <exports symbol='XML_RNGP_REF_CYCLE' type='enum'/>
+     <exports symbol='XML_RNGP_REF_NAME_INVALID' type='enum'/>
      <exports symbol='XML_RNGP_REF_NOT_EMPTY' type='enum'/>
-     <exports symbol='XML_CHECK_NO_HREF' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_CHOICE_CHILD' type='enum'/>
-     <exports symbol='XML_RNGP_ELEM_CONTENT_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAV_HAVEDEFAULT' type='enum'/>
-     <exports symbol='XML_I18N_NO_HANDLER' type='enum'/>
-     <exports symbol='XML_RNGP_MISSING_HREF' type='enum'/>
-     <exports symbol='XML_ERR_PI_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_ERR_UNKNOWN_VERSION' type='enum'/>
-     <exports symbol='XML_FROM_RELAXNGP' type='enum'/>
-     <exports symbol='XML_FROM_VALID' type='enum'/>
-     <exports symbol='XML_SCHEMAP_S4S_ATTR_INVALID_VALUE' type='enum'/>
-     <exports symbol='XML_CHECK_FOUND_TEXT' type='enum'/>
-     <exports symbol='XML_ERR_NO_DTD' type='enum'/>
+     <exports symbol='XML_RNGP_REF_NO_DEF' type='enum'/>
+     <exports symbol='XML_RNGP_REF_NO_NAME' type='enum'/>
      <exports symbol='XML_RNGP_START_CHOICE_AND_INTERLEAVE' type='enum'/>
-     <exports symbol='XML_FROM_XSLT' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_LIST_ATTR' type='enum'/>
-     <exports symbol='XML_IO_EACCES' type='enum'/>
-     <exports symbol='XML_ERR_NOTATION_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_SCHEMATRONV_ASSERT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2' type='enum'/>
-     <exports symbol='XML_SCHEMAV_INVALIDATTR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_RECURSIVE' type='enum'/>
-     <exports symbol='XML_HTTP_URL_SYNTAX' type='enum'/>
-     <exports symbol='XML_SCHEMAP_GROUP_NONAME_NOREF' type='enum'/>
-     <exports symbol='XML_DTD_DUP_TOKEN' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4' type='enum'/>
-     <exports symbol='XML_SCHEMAP_S4S_ELEM_MISSING' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_5_1_1' type='enum'/>
-     <exports symbol='XML_CHECK_FOUND_FRAGMENT' type='enum'/>
-     <exports symbol='XML_DTD_LOAD_ERROR' type='enum'/>
-     <exports symbol='XML_CHECK_UNKNOWN_NODE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_NOTATION_CHILD' type='enum'/>
-     <exports symbol='XML_SCHEMAP_C_PROPS_CORRECT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_CT_1' type='enum'/>
-     <exports symbol='XML_RNGP_EMPTY_CONTENT' type='enum'/>
-     <exports symbol='XML_IO_EALREADY' type='enum'/>
-     <exports symbol='XML_IO_ERANGE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1' type='enum'/>
-     <exports symbol='XML_IO_ENOSYS' type='enum'/>
-     <exports symbol='XML_SCHEMAP_NOTHING_TO_PARSE' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1' type='enum'/>
-     <exports symbol='XML_XPATH_INVALID_CTXT_SIZE' type='enum'/>
-     <exports symbol='XML_CHECK_NO_ELEM' type='enum'/>
-     <exports symbol='XML_XPATH_EXPR_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI' type='enum'/>
-     <exports symbol='XML_RNGP_DEFINE_EMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2' type='enum'/>
-     <exports symbol='XML_CHECK_FOUND_ENTITY' type='enum'/>
-     <exports symbol='XML_CHECK_NAME_NOT_NULL' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_MINOCCURS' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_1' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ALL_LIMITED' type='enum'/>
-     <exports symbol='XML_SCHEMATRONV_REPORT' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID' type='enum'/>
-     <exports symbol='XML_IO_EPIPE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_NOTYPE_NOREF' type='enum'/>
-     <exports symbol='XML_RNGP_ATTRIBUTE_EMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD' type='enum'/>
-     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1' type='enum'/>
-     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3' type='enum'/>
-     <exports symbol='XML_IO_LOAD_ERROR' type='enum'/>
-     <exports symbol='XML_CHECK_NOT_ENTITY_DECL' type='enum'/>
-     <exports symbol='XML_RNGP_CREATE_FAILURE' type='enum'/>
-     <exports symbol='XML_IO_EBADF' type='enum'/>
-     <exports symbol='XML_RNGP_PREFIX_UNDEFINED' type='enum'/>
-     <exports symbol='XML_ERR_HYPHEN_IN_COMMENT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE' type='enum'/>
-     <exports symbol='XML_RNGP_INCLUDE_EMPTY' type='enum'/>
-     <exports symbol='XML_RNGP_PARENTREF_NOT_EMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMAP_FACET_NO_VALUE' type='enum'/>
-     <exports symbol='XML_XPTR_SUB_RESOURCE_ERROR' type='enum'/>
-     <exports symbol='XML_ERR_NOT_STANDALONE' type='enum'/>
+     <exports symbol='XML_RNGP_START_CONTENT' type='enum'/>
+     <exports symbol='XML_RNGP_START_EMPTY' type='enum'/>
      <exports symbol='XML_RNGP_START_MISSING' type='enum'/>
-     <exports symbol='XML_DTD_NO_PREFIX' type='enum'/>
-     <exports symbol='XML_CATALOG_RECURSION' type='enum'/>
+     <exports symbol='XML_RNGP_TEXT_EXPECTED' type='enum'/>
+     <exports symbol='XML_RNGP_TEXT_HAS_CHILD' type='enum'/>
+     <exports symbol='XML_RNGP_TYPE_MISSING' type='enum'/>
+     <exports symbol='XML_RNGP_TYPE_NOT_FOUND' type='enum'/>
+     <exports symbol='XML_RNGP_TYPE_VALUE' type='enum'/>
+     <exports symbol='XML_RNGP_UNKNOWN_ATTRIBUTE' type='enum'/>
+     <exports symbol='XML_RNGP_UNKNOWN_COMBINE' type='enum'/>
      <exports symbol='XML_RNGP_UNKNOWN_CONSTRUCT' type='enum'/>
-     <exports symbol='XML_ERR_UNPARSED_ENTITY' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_IMPORT_CHILD' type='enum'/>
-     <exports symbol='XML_FTP_EPSV_ANSWER' type='enum'/>
-     <exports symbol='XML_CHECK_NOT_UTF8' type='enum'/>
-     <exports symbol='XML_ERR_FATAL' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_1' type='enum'/>
-     <exports symbol='XML_DTD_ID_REDEFINED' type='enum'/>
-     <exports symbol='XML_XPATH_ENCODING_ERROR' type='enum'/>
-     <exports symbol='XML_RNGP_REF_NO_NAME' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_INCLUDE' type='enum'/>
-     <exports symbol='XML_RNGP_NSNAME_ATTR_ANCESTOR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SRC_REDEFINE' type='enum'/>
-     <exports symbol='XML_RNGP_REF_CYCLE' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_ATTR_ATTR' type='enum'/>
-     <exports symbol='XML_XPTR_UNKNOWN_SCHEME' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_FACET_VALUE' type='enum'/>
-     <exports symbol='XML_FROM_CHECK' type='enum'/>
-     <exports symbol='XML_SCHEMAV_ELEMCONT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_REF_AND_CONTENT' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_START_INTERLEAVE' type='enum'/>
-     <exports symbol='XML_DTD_CONTENT_NOT_DETERMINIST' type='enum'/>
-     <exports symbol='XML_DTD_NO_ELEM_NAME' type='enum'/>
-     <exports symbol='XML_CHECK_NO_PREV' type='enum'/>
+     <exports symbol='XML_RNGP_UNKNOWN_TYPE_LIB' type='enum'/>
+     <exports symbol='XML_RNGP_URI_FRAGMENT' type='enum'/>
+     <exports symbol='XML_RNGP_URI_NOT_ABSOLUTE' type='enum'/>
+     <exports symbol='XML_RNGP_VALUE_EMPTY' type='enum'/>
      <exports symbol='XML_RNGP_VALUE_NO_CONTENT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD' type='enum'/>
-     <exports symbol='XML_TREE_NOT_UTF8' type='enum'/>
-     <exports symbol='XML_IO_EAFNOSUPPORT' type='enum'/>
+     <exports symbol='XML_RNGP_XMLNS_NAME' type='enum'/>
+     <exports symbol='XML_RNGP_XML_NS' type='enum'/>
+     <exports symbol='XML_SAVE_CHAR_INVALID' type='enum'/>
+     <exports symbol='XML_SAVE_NOT_UTF8' type='enum'/>
+     <exports symbol='XML_SAVE_NO_DOCTYPE' type='enum'/>
+     <exports symbol='XML_SAVE_UNKNOWN_ENCODING' type='enum'/>
+     <exports symbol='XML_SCHEMAP_AG_PROPS_CORRECT' type='enum'/>
+     <exports symbol='XML_SCHEMAP_ATTRFORMDEFAULT_VALUE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_ATTRGRP_NONAME_NOREF' type='enum'/>
+     <exports symbol='XML_SCHEMAP_ATTR_NONAME_NOREF' type='enum'/>
+     <exports symbol='XML_SCHEMAP_AU_PROPS_CORRECT' type='enum'/>
+     <exports symbol='XML_SCHEMAP_AU_PROPS_CORRECT_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_A_PROPS_CORRECT_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_A_PROPS_CORRECT_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ALL_LIMITED' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_CT_EXTENDS_1_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_CT_EXTENDS_1_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_CT_EXTENDS_1_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_DERIVED_OK_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_DERIVED_OK_2_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2' type='enum'/>
      <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1' type='enum'/>
-     <exports symbol='XML_CATALOG_NOT_CATALOG' type='enum'/>
      <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3' type='enum'/>
      <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4' type='enum'/>
-     <exports symbol='XML_IO_EFBIG' type='enum'/>
-     <exports symbol='XML_CHECK_FOUND_COMMENT' type='enum'/>
-     <exports symbol='XML_RNGP_REF_NAME_INVALID' type='enum'/>
-     <exports symbol='XML_ERR_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1' type='enum'/>
-     <exports symbol='XML_DTD_ELEM_NAMESPACE' type='enum'/>
-     <exports symbol='XML_CHECK_OUTSIDE_DICT' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_4' type='enum'/>
+     <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_5' type='enum'/>
+     <exports symbol='XML_SCHEMAP_CVC_SIMPLE_TYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_C_PROPS_CORRECT' type='enum'/>
+     <exports symbol='XML_SCHEMAP_DEF_AND_PREFIX' type='enum'/>
+     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_ELEMFORMDEFAULT_VALUE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_ELEM_DEFAULT_FIXED' type='enum'/>
+     <exports symbol='XML_SCHEMAP_ELEM_NONAME_NOREF' type='enum'/>
+     <exports symbol='XML_SCHEMAP_EXTENSION_NO_BASE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_4' type='enum'/>
+     <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_5' type='enum'/>
+     <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_6' type='enum'/>
+     <exports symbol='XML_SCHEMAP_FACET_NO_VALUE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_FAILED_BUILD_IMPORT' type='enum'/>
+     <exports symbol='XML_SCHEMAP_FAILED_LOAD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_FAILED_PARSE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_GROUP_NONAME_NOREF' type='enum'/>
+     <exports symbol='XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI' type='enum'/>
+     <exports symbol='XML_SCHEMAP_IMPORT_REDEFINE_NSNAME' type='enum'/>
+     <exports symbol='XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INTERNAL' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_ATTR_COMBINATION' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_ATTR_NAME' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_ATTR_USE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_BOOLEAN' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_ENUM' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_FACET' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_FACET_VALUE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_MAXOCCURS' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_MINOCCURS' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_REF_AND_SUBTYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_INVALID_WHITE_SPACE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_MG_PROPS_CORRECT_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_MG_PROPS_CORRECT_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_NOATTR_NOREF' type='enum'/>
+     <exports symbol='XML_SCHEMAP_NOROOT' type='enum'/>
+     <exports symbol='XML_SCHEMAP_NOTATION_NO_NAME' type='enum'/>
+     <exports symbol='XML_SCHEMAP_NOTHING_TO_PARSE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_NOTYPE_NOREF' type='enum'/>
+     <exports symbol='XML_SCHEMAP_NOT_DETERMINISTIC' type='enum'/>
+     <exports symbol='XML_SCHEMAP_NOT_SCHEMA' type='enum'/>
+     <exports symbol='XML_SCHEMAP_NO_XMLNS' type='enum'/>
+     <exports symbol='XML_SCHEMAP_NO_XSI' type='enum'/>
+     <exports symbol='XML_SCHEMAP_PREFIX_UNDEFINED' type='enum'/>
+     <exports symbol='XML_SCHEMAP_P_PROPS_CORRECT_1' type='enum'/>
      <exports symbol='XML_SCHEMAP_P_PROPS_CORRECT_2_1' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_2_2_2' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_2_2_1' type='enum'/>
      <exports symbol='XML_SCHEMAP_P_PROPS_CORRECT_2_2' type='enum'/>
-     <exports symbol='XML_WAR_CATALOG_PI' type='enum'/>
-     <exports symbol='XML_REGEXP_COMPILE_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_MININCLUSIVE_VALID' type='enum'/>
-     <exports symbol='XML_SCHEMAV_ISABSTRACT' type='enum'/>
-     <exports symbol='XML_RNGP_DEFINE_MISSING' type='enum'/>
-     <exports symbol='XML_ERR_NS_DECL_ERROR' type='enum'/>
-     <exports symbol='XML_ERR_INTERNAL_ERROR' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1' type='enum'/>
-     <exports symbol='XML_ERR_ELEMCONTENT_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_FROM_NAMESPACE' type='enum'/>
-     <exports symbol='XML_IO_EBUSY' type='enum'/>
-     <exports symbol='XML_RNGP_INCLUDE_RECURSE' type='enum'/>
-     <exports symbol='XML_ERR_INVALID_URI' type='enum'/>
-     <exports symbol='XML_IO_ESRCH' type='enum'/>
-     <exports symbol='XML_FROM_XPOINTER' type='enum'/>
-     <exports symbol='XML_FROM_BUFFER' type='enum'/>
-     <exports symbol='XML_ERR_PEREF_IN_PROLOG' type='enum'/>
-     <exports symbol='XML_RNGP_TEXT_HAS_CHILD' type='enum'/>
-     <exports symbol='XML_SCHEMAV_NOTNILLABLE' type='enum'/>
-     <exports symbol='XML_SCHEMAP_ELEM_DEFAULT_FIXED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_REDEFINED_ELEMENT' type='enum'/>
-     <exports symbol='XML_RNGP_REF_NO_DEF' type='enum'/>
-     <exports symbol='XML_ERR_NOT_WELL_BALANCED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_5' type='enum'/>
-     <exports symbol='XML_ERR_INVALID_CHARREF' type='enum'/>
-     <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_2' type='enum'/>
-     <exports symbol='XML_ERR_INVALID_CHAR' type='enum'/>
-     <exports symbol='XML_RNGP_FOREIGN_ELEMENT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_DEF_AND_PREFIX' type='enum'/>
-     <exports symbol='XML_ERR_MIXED_NOT_STARTED' type='enum'/>
-     <exports symbol='XML_ERR_USER_STOP' type='enum'/>
-     <exports symbol='XML_CHECK_FOUND_CDATA' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INTERNAL' type='enum'/>
-     <exports symbol='XML_SCHEMAV_INVALIDELEM' type='enum'/>
-     <exports symbol='XML_ERR_INVALID_ENCODING' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_AU' type='enum'/>
-     <exports symbol='XML_CHECK_WRONG_NEXT' type='enum'/>
-     <exports symbol='XML_ERR_TAG_NOT_FINISHED' type='enum'/>
-     <exports symbol='XML_ERR_LTSLASH_REQUIRED' type='enum'/>
+     <exports symbol='XML_SCHEMAP_RECURSIVE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_REDEFINED_ATTR' type='enum'/>
      <exports symbol='XML_SCHEMAP_REDEFINED_ATTRGROUP' type='enum'/>
-     <exports symbol='XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH' type='enum'/>
-     <exports symbol='XML_ERR_PEREF_IN_INT_SUBSET' type='enum'/>
-     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3' type='enum'/>
-     <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_REDEFINED_ELEMENT' type='enum'/>
+     <exports symbol='XML_SCHEMAP_REDEFINED_GROUP' type='enum'/>
+     <exports symbol='XML_SCHEMAP_REDEFINED_NOTATION' type='enum'/>
+     <exports symbol='XML_SCHEMAP_REDEFINED_TYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_REF_AND_CONTENT' type='enum'/>
+     <exports symbol='XML_SCHEMAP_REF_AND_SUBTYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_REGEXP_INVALID' type='enum'/>
+     <exports symbol='XML_SCHEMAP_RESTRICTION_NONAME_NOREF' type='enum'/>
+     <exports symbol='XML_SCHEMAP_S4S_ATTR_INVALID_VALUE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_S4S_ATTR_MISSING' type='enum'/>
+     <exports symbol='XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED' type='enum'/>
+     <exports symbol='XML_SCHEMAP_S4S_ELEM_MISSING' type='enum'/>
+     <exports symbol='XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SIMPLETYPE_NONAME' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_3_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_3_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_4' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_CT_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ELEMENT_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ELEMENT_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ELEMENT_2_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_ELEMENT_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_IMPORT' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_IMPORT_1_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_IMPORT_1_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_IMPORT_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_IMPORT_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_IMPORT_2_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_IMPORT_3_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_IMPORT_3_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_INCLUDE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_REDEFINE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_RESOLVE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_4' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES' type='enum'/>
+     <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_1' type='enum'/>
+     <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_2' type='enum'/>
+     <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_3' type='enum'/>
+     <exports symbol='XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_TYPE_AND_SUBTYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNION_NOT_EXPRESSIBLE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_ALL_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_ATTR_CHILD' type='enum'/>
      <exports symbol='XML_SCHEMAP_UNKNOWN_BASE_TYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_CHOICE_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD' type='enum'/>
      <exports symbol='XML_SCHEMAP_UNKNOWN_ELEM_CHILD' type='enum'/>
-     <exports symbol='XML_WAR_UNKNOWN_VERSION' type='enum'/>
-     <exports symbol='XML_DTD_CONTENT_MODEL' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1' type='enum'/>
-     <exports symbol='XML_ERR_OK' type='enum'/>
-     <exports symbol='XML_NS_ERR_COLON' type='enum'/>
-     <exports symbol='XML_WAR_ENTITY_REDEFINED' type='enum'/>
-     <exports symbol='XML_ERR_ATTRIBUTE_REDEFINED' type='enum'/>
-     <exports symbol='XML_SCHEMAP_SIMPLETYPE_NONAME' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_FACET_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_FACET_TYPE' type='enum'/>
      <exports symbol='XML_SCHEMAP_UNKNOWN_GROUP_CHILD' type='enum'/>
-     <exports symbol='XML_IO_ENOTSUP' type='enum'/>
-     <exports symbol='XML_WAR_NS_URI_RELATIVE' type='enum'/>
-     <exports symbol='XML_NS_ERR_ATTRIBUTE_REDEFINED' type='enum'/>
-     <exports symbol='XML_ERR_NAME_REQUIRED' type='enum'/>
-     <exports symbol='XML_IO_ETIMEDOUT' type='enum'/>
-     <exports symbol='XML_SCHEMAP_INVALID_ENUM' type='enum'/>
-     <exports symbol='XML_RNGP_DEFINE_NAME_MISSING' type='enum'/>
-     <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2' type='enum'/>
-     <exports symbol='XML_RNGP_EMPTY_CONSTRUCT' type='enum'/>
-     <exports symbol='XML_RNGP_FORBIDDEN_ATTRIBUTE' type='enum'/>
-     <exports symbol='XML_FROM_OUTPUT' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_IMPORT_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_LIST_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_MEMBER_TYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_NOTATION_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_PREFIX' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_REF' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_TYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAP_UNKNOWN_UNION_CHILD' type='enum'/>
+     <exports symbol='XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH' type='enum'/>
+     <exports symbol='XML_SCHEMAP_WARN_ATTR_REDECL_PROH' type='enum'/>
+     <exports symbol='XML_SCHEMAP_WARN_SKIP_SCHEMA' type='enum'/>
+     <exports symbol='XML_SCHEMAP_WARN_UNLOCATED_SCHEMA' type='enum'/>
+     <exports symbol='XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER' type='enum'/>
+     <exports symbol='XML_SCHEMATRONV_ASSERT' type='enum'/>
+     <exports symbol='XML_SCHEMATRONV_REPORT' type='enum'/>
+     <exports symbol='XML_SCHEMAV_ATTRINVALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_ATTRUNKNOWN' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CONSTRUCT' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_2' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_3' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_4' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_AU' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_1' type='enum'/>
      <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1' type='enum'/>
-     <exports symbol='XML_CHECK_WRONG_PREV' type='enum'/>
-     <exports symbol='XML_IO_EEXIST' type='enum'/>
-     <exports symbol='XML_SCHEMAP_MG_PROPS_CORRECT_2' type='enum'/>
-     <exports symbol='XML_SCHEMAP_MG_PROPS_CORRECT_1' type='enum'/>
-     <exports symbol='XML_FROM_URI' type='enum'/>
-     <exports symbol='XML_RNGP_PAT_LIST_ELEM' type='enum'/>
-     <exports symbol='XML_SCHEMAV_UNDECLAREDELEM' type='enum'/>
      <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2' type='enum'/>
      <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3' type='enum'/>
-     <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_3' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_4' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_2' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_3_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_3_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_3_2_2' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_4_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_4_2' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_4_3' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_5_1_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_5_1_2' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_2_2_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_2_2_2' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_6' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ELT_7' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_ENUMERATION_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_FACET_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_IDC' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_LENGTH_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_MAXLENGTH_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_MININCLUSIVE_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_MINLENGTH_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_PATTERN_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_TOTALDIGITS_VALID' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_TYPE_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_TYPE_2' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_TYPE_3_1_1' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_TYPE_3_1_2' type='enum'/>
+     <exports symbol='XML_SCHEMAV_CVC_WILDCARD' type='enum'/>
+     <exports symbol='XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING' type='enum'/>
+     <exports symbol='XML_SCHEMAV_ELEMCONT' type='enum'/>
+     <exports symbol='XML_SCHEMAV_ELEMENT_CONTENT' type='enum'/>
+     <exports symbol='XML_SCHEMAV_EXTRACONTENT' type='enum'/>
+     <exports symbol='XML_SCHEMAV_FACET' type='enum'/>
+     <exports symbol='XML_SCHEMAV_HAVEDEFAULT' type='enum'/>
+     <exports symbol='XML_SCHEMAV_INTERNAL' type='enum'/>
+     <exports symbol='XML_SCHEMAV_INVALIDATTR' type='enum'/>
+     <exports symbol='XML_SCHEMAV_INVALIDELEM' type='enum'/>
+     <exports symbol='XML_SCHEMAV_ISABSTRACT' type='enum'/>
+     <exports symbol='XML_SCHEMAV_MISC' type='enum'/>
+     <exports symbol='XML_SCHEMAV_MISSING' type='enum'/>
+     <exports symbol='XML_SCHEMAV_NOROLLBACK' type='enum'/>
+     <exports symbol='XML_SCHEMAV_NOROOT' type='enum'/>
+     <exports symbol='XML_SCHEMAV_NOTDETERMINIST' type='enum'/>
+     <exports symbol='XML_SCHEMAV_NOTEMPTY' type='enum'/>
+     <exports symbol='XML_SCHEMAV_NOTNILLABLE' type='enum'/>
+     <exports symbol='XML_SCHEMAV_NOTSIMPLE' type='enum'/>
+     <exports symbol='XML_SCHEMAV_NOTTOPLEVEL' type='enum'/>
+     <exports symbol='XML_SCHEMAV_NOTYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAV_UNDECLAREDELEM' type='enum'/>
+     <exports symbol='XML_SCHEMAV_VALUE' type='enum'/>
+     <exports symbol='XML_SCHEMAV_WRONGELEM' type='enum'/>
+     <exports symbol='XML_TREE_INVALID_DEC' type='enum'/>
+     <exports symbol='XML_TREE_INVALID_HEX' type='enum'/>
+     <exports symbol='XML_TREE_NOT_UTF8' type='enum'/>
+     <exports symbol='XML_TREE_UNTERMINATED_ENTITY' type='enum'/>
+     <exports symbol='XML_WAR_CATALOG_PI' type='enum'/>
+     <exports symbol='XML_WAR_ENTITY_REDEFINED' type='enum'/>
+     <exports symbol='XML_WAR_LANG_VALUE' type='enum'/>
+     <exports symbol='XML_WAR_NS_COLUMN' type='enum'/>
+     <exports symbol='XML_WAR_NS_URI' type='enum'/>
+     <exports symbol='XML_WAR_NS_URI_RELATIVE' type='enum'/>
+     <exports symbol='XML_WAR_SPACE_VALUE' type='enum'/>
+     <exports symbol='XML_WAR_UNDECLARED_ENTITY' type='enum'/>
+     <exports symbol='XML_WAR_UNKNOWN_VERSION' type='enum'/>
+     <exports symbol='XML_XINCLUDE_BUILD_FAILED' type='enum'/>
+     <exports symbol='XML_XINCLUDE_DEPRECATED_NS' type='enum'/>
+     <exports symbol='XML_XINCLUDE_ENTITY_DEF_MISMATCH' type='enum'/>
+     <exports symbol='XML_XINCLUDE_FALLBACKS_IN_INCLUDE' type='enum'/>
+     <exports symbol='XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE' type='enum'/>
+     <exports symbol='XML_XINCLUDE_FRAGMENT_ID' type='enum'/>
+     <exports symbol='XML_XINCLUDE_HREF_URI' type='enum'/>
+     <exports symbol='XML_XINCLUDE_INCLUDE_IN_INCLUDE' type='enum'/>
      <exports symbol='XML_XINCLUDE_INVALID_CHAR' type='enum'/>
-     <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4' type='enum'/>
+     <exports symbol='XML_XINCLUDE_MULTIPLE_ROOT' type='enum'/>
+     <exports symbol='XML_XINCLUDE_NO_FALLBACK' type='enum'/>
+     <exports symbol='XML_XINCLUDE_NO_HREF' type='enum'/>
+     <exports symbol='XML_XINCLUDE_PARSE_VALUE' type='enum'/>
+     <exports symbol='XML_XINCLUDE_RECURSION' type='enum'/>
+     <exports symbol='XML_XINCLUDE_TEXT_DOCUMENT' type='enum'/>
+     <exports symbol='XML_XINCLUDE_TEXT_FRAGMENT' type='enum'/>
+     <exports symbol='XML_XINCLUDE_UNKNOWN_ENCODING' type='enum'/>
+     <exports symbol='XML_XINCLUDE_XPTR_FAILED' type='enum'/>
+     <exports symbol='XML_XINCLUDE_XPTR_RESULT' type='enum'/>
+     <exports symbol='XML_XPATH_ENCODING_ERROR' type='enum'/>
+     <exports symbol='XML_XPATH_EXPRESSION_OK' type='enum'/>
+     <exports symbol='XML_XPATH_EXPR_ERROR' type='enum'/>
+     <exports symbol='XML_XPATH_INVALID_ARITY' type='enum'/>
+     <exports symbol='XML_XPATH_INVALID_CHAR_ERROR' type='enum'/>
+     <exports symbol='XML_XPATH_INVALID_CTXT_POSITION' type='enum'/>
+     <exports symbol='XML_XPATH_INVALID_CTXT_SIZE' type='enum'/>
+     <exports symbol='XML_XPATH_INVALID_OPERAND' type='enum'/>
      <exports symbol='XML_XPATH_INVALID_PREDICATE_ERROR' type='enum'/>
-     <exports symbol='xmlErrorPtr' type='typedef'/>
+     <exports symbol='XML_XPATH_INVALID_TYPE' type='enum'/>
+     <exports symbol='XML_XPATH_MEMORY_ERROR' type='enum'/>
+     <exports symbol='XML_XPATH_NUMBER_ERROR' type='enum'/>
+     <exports symbol='XML_XPATH_START_LITERAL_ERROR' type='enum'/>
+     <exports symbol='XML_XPATH_UNCLOSED_ERROR' type='enum'/>
+     <exports symbol='XML_XPATH_UNDEF_PREFIX_ERROR' type='enum'/>
+     <exports symbol='XML_XPATH_UNDEF_VARIABLE_ERROR' type='enum'/>
+     <exports symbol='XML_XPATH_UNFINISHED_LITERAL_ERROR' type='enum'/>
+     <exports symbol='XML_XPATH_UNKNOWN_FUNC_ERROR' type='enum'/>
+     <exports symbol='XML_XPATH_VARIABLE_REF_ERROR' type='enum'/>
+     <exports symbol='XML_XPTR_CHILDSEQ_START' type='enum'/>
+     <exports symbol='XML_XPTR_EVAL_FAILED' type='enum'/>
+     <exports symbol='XML_XPTR_EXTRA_OBJECTS' type='enum'/>
+     <exports symbol='XML_XPTR_RESOURCE_ERROR' type='enum'/>
+     <exports symbol='XML_XPTR_SUB_RESOURCE_ERROR' type='enum'/>
+     <exports symbol='XML_XPTR_SYNTAX_ERROR' type='enum'/>
+     <exports symbol='XML_XPTR_UNKNOWN_SCHEME' type='enum'/>
+     <exports symbol='xmlError' type='typedef'/>
+     <exports symbol='xmlErrorDomain' type='typedef'/>
      <exports symbol='xmlErrorLevel' type='typedef'/>
+     <exports symbol='xmlErrorPtr' type='typedef'/>
      <exports symbol='xmlParserErrors' type='typedef'/>
-     <exports symbol='xmlErrorDomain' type='typedef'/>
-     <exports symbol='xmlError' type='typedef'/>
      <exports symbol='_xmlError' type='struct'/>
-     <exports symbol='xmlParserValidityError' type='function'/>
-     <exports symbol='xmlGenericErrorFunc' type='function'/>
-     <exports symbol='xmlSetGenericErrorFunc' type='function'/>
-     <exports symbol='xmlParserPrintFileInfo' type='function'/>
-     <exports symbol='xmlCtxtResetLastError' type='function'/>
-     <exports symbol='xmlResetLastError' type='function'/>
      <exports symbol='initGenericErrorDefaultFunc' type='function'/>
      <exports symbol='xmlCopyError' type='function'/>
-     <exports symbol='xmlParserValidityWarning' type='function'/>
-     <exports symbol='xmlParserPrintFileContext' type='function'/>
+     <exports symbol='xmlCtxtGetLastError' type='function'/>
+     <exports symbol='xmlCtxtResetLastError' type='function'/>
+     <exports symbol='xmlGenericErrorFunc' type='function'/>
+     <exports symbol='xmlGetLastError' type='function'/>
      <exports symbol='xmlParserError' type='function'/>
+     <exports symbol='xmlParserPrintFileContext' type='function'/>
+     <exports symbol='xmlParserPrintFileInfo' type='function'/>
+     <exports symbol='xmlParserValidityError' type='function'/>
+     <exports symbol='xmlParserValidityWarning' type='function'/>
      <exports symbol='xmlParserWarning' type='function'/>
-     <exports symbol='xmlStructuredErrorFunc' type='function'/>
-     <exports symbol='xmlSetStructuredErrorFunc' type='function'/>
      <exports symbol='xmlResetError' type='function'/>
-     <exports symbol='xmlGetLastError' type='function'/>
-     <exports symbol='xmlCtxtGetLastError' type='function'/>
+     <exports symbol='xmlResetLastError' type='function'/>
+     <exports symbol='xmlSetGenericErrorFunc' type='function'/>
+     <exports symbol='xmlSetStructuredErrorFunc' type='function'/>
+     <exports symbol='xmlStructuredErrorFunc' type='function'/>
     </file>
     <file name='xmlexports'>
      <summary>macros for marking symbols as exportable/importable.</summary>
      <description>macros for marking symbols as exportable/importable. </description>
-     <exports symbol='XMLCDECL' type='macro'/>
-     <exports symbol='XMLPUBLIC' type='macro'/>
-     <exports symbol='XMLPUBVAR' type='macro'/>
      <exports symbol='LIBXML_DLL_IMPORT' type='macro'/>
      <exports symbol='XMLCALL' type='macro'/>
+     <exports symbol='XMLCDECL' type='macro'/>
      <exports symbol='XMLPUBFUN' type='macro'/>
+     <exports symbol='XMLPUBLIC' type='macro'/>
+     <exports symbol='XMLPUBVAR' type='macro'/>
     </file>
     <file name='xmlmemory'>
      <summary>interface for the memory allocator</summary>
      <description>provides interfaces for the memory allocator, including debugging capabilities. </description>
      <author>Daniel Veillard </author>
-     <exports symbol='xmlRealloc' type='macro'/>
+     <exports symbol='DEBUG_MEMORY' type='macro'/>
      <exports symbol='xmlMalloc' type='macro'/>
      <exports symbol='xmlMallocAtomic' type='macro'/>
-     <exports symbol='DEBUG_MEMORY' type='macro'/>
      <exports symbol='xmlMemStrdup' type='macro'/>
-     <exports symbol='xmlMemRealloc' type='function'/>
+     <exports symbol='xmlRealloc' type='macro'/>
+     <exports symbol='xmlCleanupMemory' type='function'/>
+     <exports symbol='xmlFreeFunc' type='function'/>
+     <exports symbol='xmlGcMemGet' type='function'/>
+     <exports symbol='xmlGcMemSetup' type='function'/>
      <exports symbol='xmlInitMemory' type='function'/>
-     <exports symbol='xmlMemFree' type='function'/>
-     <exports symbol='xmlMemMalloc' type='function'/>
-     <exports symbol='xmlMemDisplayLast' type='function'/>
-     <exports symbol='xmlMemGet' type='function'/>
-     <exports symbol='xmlMemoryDump' type='function'/>
+     <exports symbol='xmlMallocAtomicLoc' type='function'/>
+     <exports symbol='xmlMallocFunc' type='function'/>
      <exports symbol='xmlMallocLoc' type='function'/>
-     <exports symbol='xmlMemDisplay' type='function'/>
      <exports symbol='xmlMemBlocks' type='function'/>
-     <exports symbol='xmlGcMemGet' type='function'/>
-     <exports symbol='xmlStrdupFunc' type='function'/>
-     <exports symbol='xmlFreeFunc' type='function'/>
+     <exports symbol='xmlMemDisplay' type='function'/>
+     <exports symbol='xmlMemDisplayLast' type='function'/>
+     <exports symbol='xmlMemFree' type='function'/>
+     <exports symbol='xmlMemGet' type='function'/>
+     <exports symbol='xmlMemMalloc' type='function'/>
+     <exports symbol='xmlMemRealloc' type='function'/>
+     <exports symbol='xmlMemSetup' type='function'/>
      <exports symbol='xmlMemShow' type='function'/>
-     <exports symbol='xmlMallocAtomicLoc' type='function'/>
-     <exports symbol='xmlReallocLoc' type='function'/>
-     <exports symbol='xmlCleanupMemory' type='function'/>
+     <exports symbol='xmlMemStrdupLoc' type='function'/>
      <exports symbol='xmlMemUsed' type='function'/>
-     <exports symbol='xmlMemSetup' type='function'/>
-     <exports symbol='xmlReallocFunc' type='function'/>
-     <exports symbol='xmlMallocFunc' type='function'/>
-     <exports symbol='xmlGcMemSetup' type='function'/>
+     <exports symbol='xmlMemoryDump' type='function'/>
      <exports symbol='xmlMemoryStrdup' type='function'/>
-     <exports symbol='xmlMemStrdupLoc' type='function'/>
+     <exports symbol='xmlReallocFunc' type='function'/>
+     <exports symbol='xmlReallocLoc' type='function'/>
+     <exports symbol='xmlStrdupFunc' type='function'/>
     </file>
     <file name='xmlmodule'>
      <summary>dynamic module loading</summary>
      <exports symbol='XML_MODULE_LAZY' type='enum'/>
      <exports symbol='XML_MODULE_LOCAL' type='enum'/>
      <exports symbol='xmlModule' type='typedef'/>
-     <exports symbol='xmlModulePtr' type='typedef'/>
      <exports symbol='xmlModuleOption' type='typedef'/>
+     <exports symbol='xmlModulePtr' type='typedef'/>
+     <exports symbol='xmlModuleClose' type='function'/>
      <exports symbol='xmlModuleFree' type='function'/>
-     <exports symbol='xmlModuleSymbol' type='function'/>
      <exports symbol='xmlModuleOpen' type='function'/>
-     <exports symbol='xmlModuleClose' type='function'/>
+     <exports symbol='xmlModuleSymbol' type='function'/>
     </file>
     <file name='xmlreader'>
      <summary>the XMLReader implementation</summary>
      <description>API of the XML streaming API based on C# interfaces. </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_READER_TYPE_DOCUMENT_FRAGMENT' type='enum'/>
+     <exports symbol='XML_PARSER_DEFAULTATTRS' type='enum'/>
+     <exports symbol='XML_PARSER_LOADDTD' type='enum'/>
      <exports symbol='XML_PARSER_SEVERITY_ERROR' type='enum'/>
-     <exports symbol='XML_READER_TYPE_ELEMENT' type='enum'/>
-     <exports symbol='XML_READER_TYPE_TEXT' type='enum'/>
-     <exports symbol='XML_READER_TYPE_XML_DECLARATION' type='enum'/>
-     <exports symbol='XML_READER_TYPE_NONE' type='enum'/>
      <exports symbol='XML_PARSER_SEVERITY_VALIDITY_ERROR' type='enum'/>
-     <exports symbol='XML_READER_TYPE_PROCESSING_INSTRUCTION' type='enum'/>
-     <exports symbol='XML_TEXTREADER_MODE_ERROR' type='enum'/>
-     <exports symbol='XML_READER_TYPE_ATTRIBUTE' type='enum'/>
+     <exports symbol='XML_PARSER_SEVERITY_VALIDITY_WARNING' type='enum'/>
      <exports symbol='XML_PARSER_SEVERITY_WARNING' type='enum'/>
+     <exports symbol='XML_PARSER_SUBST_ENTITIES' type='enum'/>
+     <exports symbol='XML_PARSER_VALIDATE' type='enum'/>
+     <exports symbol='XML_READER_TYPE_ATTRIBUTE' type='enum'/>
+     <exports symbol='XML_READER_TYPE_CDATA' type='enum'/>
+     <exports symbol='XML_READER_TYPE_COMMENT' type='enum'/>
      <exports symbol='XML_READER_TYPE_DOCUMENT' type='enum'/>
+     <exports symbol='XML_READER_TYPE_DOCUMENT_FRAGMENT' type='enum'/>
      <exports symbol='XML_READER_TYPE_DOCUMENT_TYPE' type='enum'/>
+     <exports symbol='XML_READER_TYPE_ELEMENT' type='enum'/>
      <exports symbol='XML_READER_TYPE_END_ELEMENT' type='enum'/>
-     <exports symbol='XML_READER_TYPE_WHITESPACE' type='enum'/>
-     <exports symbol='XML_READER_TYPE_NOTATION' type='enum'/>
-     <exports symbol='XML_PARSER_SUBST_ENTITIES' type='enum'/>
-     <exports symbol='XML_READER_TYPE_ENTITY_REFERENCE' type='enum'/>
-     <exports symbol='XML_TEXTREADER_MODE_INITIAL' type='enum'/>
-     <exports symbol='XML_READER_TYPE_COMMENT' type='enum'/>
-     <exports symbol='XML_TEXTREADER_MODE_CLOSED' type='enum'/>
-     <exports symbol='XML_PARSER_DEFAULTATTRS' type='enum'/>
+     <exports symbol='XML_READER_TYPE_END_ENTITY' type='enum'/>
      <exports symbol='XML_READER_TYPE_ENTITY' type='enum'/>
+     <exports symbol='XML_READER_TYPE_ENTITY_REFERENCE' type='enum'/>
+     <exports symbol='XML_READER_TYPE_NONE' type='enum'/>
+     <exports symbol='XML_READER_TYPE_NOTATION' type='enum'/>
+     <exports symbol='XML_READER_TYPE_PROCESSING_INSTRUCTION' type='enum'/>
      <exports symbol='XML_READER_TYPE_SIGNIFICANT_WHITESPACE' type='enum'/>
-     <exports symbol='XML_READER_TYPE_END_ENTITY' type='enum'/>
-     <exports symbol='XML_PARSER_VALIDATE' type='enum'/>
-     <exports symbol='XML_PARSER_SEVERITY_VALIDITY_WARNING' type='enum'/>
-     <exports symbol='XML_TEXTREADER_MODE_READING' type='enum'/>
+     <exports symbol='XML_READER_TYPE_TEXT' type='enum'/>
+     <exports symbol='XML_READER_TYPE_WHITESPACE' type='enum'/>
+     <exports symbol='XML_READER_TYPE_XML_DECLARATION' type='enum'/>
+     <exports symbol='XML_TEXTREADER_MODE_CLOSED' type='enum'/>
      <exports symbol='XML_TEXTREADER_MODE_EOF' type='enum'/>
-     <exports symbol='XML_READER_TYPE_CDATA' type='enum'/>
-     <exports symbol='XML_PARSER_LOADDTD' type='enum'/>
+     <exports symbol='XML_TEXTREADER_MODE_ERROR' type='enum'/>
+     <exports symbol='XML_TEXTREADER_MODE_INITIAL' type='enum'/>
      <exports symbol='XML_TEXTREADER_MODE_INTERACTIVE' type='enum'/>
-     <exports symbol='xmlTextReaderPtr' type='typedef'/>
-     <exports symbol='xmlParserSeverities' type='typedef'/>
+     <exports symbol='XML_TEXTREADER_MODE_READING' type='enum'/>
      <exports symbol='xmlParserProperties' type='typedef'/>
-     <exports symbol='xmlTextReaderMode' type='typedef'/>
+     <exports symbol='xmlParserSeverities' type='typedef'/>
+     <exports symbol='xmlReaderTypes' type='typedef'/>
      <exports symbol='xmlTextReader' type='typedef'/>
      <exports symbol='xmlTextReaderLocatorPtr' type='typedef'/>
-     <exports symbol='xmlReaderTypes' type='typedef'/>
+     <exports symbol='xmlTextReaderMode' type='typedef'/>
+     <exports symbol='xmlTextReaderPtr' type='typedef'/>
+     <exports symbol='xmlFreeTextReader' type='function'/>
+     <exports symbol='xmlNewTextReader' type='function'/>
      <exports symbol='xmlNewTextReaderFilename' type='function'/>
-     <exports symbol='xmlTextReaderHasAttributes' type='function'/>
-     <exports symbol='xmlTextReaderReadState' type='function'/>
-     <exports symbol='xmlReaderForFile' type='function'/>
-     <exports symbol='xmlTextReaderConstNamespaceUri' type='function'/>
-     <exports symbol='xmlTextReaderCurrentDoc' type='function'/>
-     <exports symbol='xmlTextReaderGetParserLineNumber' type='function'/>
-     <exports symbol='xmlTextReaderExpand' type='function'/>
-     <exports symbol='xmlTextReaderXmlLang' type='function'/>
      <exports symbol='xmlReaderForDoc' type='function'/>
+     <exports symbol='xmlReaderForFd' type='function'/>
+     <exports symbol='xmlReaderForFile' type='function'/>
+     <exports symbol='xmlReaderForIO' type='function'/>
+     <exports symbol='xmlReaderForMemory' type='function'/>
+     <exports symbol='xmlReaderNewDoc' type='function'/>
+     <exports symbol='xmlReaderNewFd' type='function'/>
+     <exports symbol='xmlReaderNewFile' type='function'/>
      <exports symbol='xmlReaderNewIO' type='function'/>
+     <exports symbol='xmlReaderNewMemory' type='function'/>
+     <exports symbol='xmlReaderNewWalker' type='function'/>
+     <exports symbol='xmlReaderWalker' type='function'/>
+     <exports symbol='xmlTextReaderAttributeCount' type='function'/>
+     <exports symbol='xmlTextReaderBaseUri' type='function'/>
+     <exports symbol='xmlTextReaderByteConsumed' type='function'/>
      <exports symbol='xmlTextReaderClose' type='function'/>
-     <exports symbol='xmlTextReaderReadInnerXml' type='function'/>
+     <exports symbol='xmlTextReaderConstBaseUri' type='function'/>
      <exports symbol='xmlTextReaderConstEncoding' type='function'/>
-     <exports symbol='xmlTextReaderNormalization' type='function'/>
-     <exports symbol='xmlTextReaderGetParserProp' type='function'/>
-     <exports symbol='xmlTextReaderMoveToAttribute' type='function'/>
-     <exports symbol='xmlTextReaderQuoteChar' type='function'/>
-     <exports symbol='xmlTextReaderSetSchema' type='function'/>
-     <exports symbol='xmlTextReaderValue' type='function'/>
-     <exports symbol='xmlTextReaderIsValid' type='function'/>
-     <exports symbol='xmlTextReaderMoveToFirstAttribute' type='function'/>
-     <exports symbol='xmlTextReaderGetParserColumnNumber' type='function'/>
-     <exports symbol='xmlTextReaderConstValue' type='function'/>
-     <exports symbol='xmlNewTextReader' type='function'/>
-     <exports symbol='xmlTextReaderGetAttributeNo' type='function'/>
-     <exports symbol='xmlTextReaderGetAttributeNs' type='function'/>
+     <exports symbol='xmlTextReaderConstLocalName' type='function'/>
      <exports symbol='xmlTextReaderConstName' type='function'/>
+     <exports symbol='xmlTextReaderConstNamespaceUri' type='function'/>
+     <exports symbol='xmlTextReaderConstPrefix' type='function'/>
      <exports symbol='xmlTextReaderConstString' type='function'/>
+     <exports symbol='xmlTextReaderConstValue' type='function'/>
+     <exports symbol='xmlTextReaderConstXmlLang' type='function'/>
      <exports symbol='xmlTextReaderConstXmlVersion' type='function'/>
+     <exports symbol='xmlTextReaderCurrentDoc' type='function'/>
+     <exports symbol='xmlTextReaderCurrentNode' type='function'/>
      <exports symbol='xmlTextReaderDepth' type='function'/>
-     <exports symbol='xmlTextReaderReadString' type='function'/>
-     <exports symbol='xmlTextReaderIsDefault' type='function'/>
-     <exports symbol='xmlTextReaderMoveToNextAttribute' type='function'/>
-     <exports symbol='xmlReaderNewWalker' type='function'/>
-     <exports symbol='xmlTextReaderConstPrefix' type='function'/>
-     <exports symbol='xmlReaderWalker' type='function'/>
-     <exports symbol='xmlTextReaderConstLocalName' type='function'/>
-     <exports symbol='xmlTextReaderNodeType' type='function'/>
-     <exports symbol='xmlFreeTextReader' type='function'/>
-     <exports symbol='xmlTextReaderName' type='function'/>
-     <exports symbol='xmlTextReaderRead' type='function'/>
-     <exports symbol='xmlTextReaderIsEmptyElement' type='function'/>
-     <exports symbol='xmlReaderNewMemory' type='function'/>
-     <exports symbol='xmlTextReaderSchemaValidateCtxt' type='function'/>
+     <exports symbol='xmlTextReaderErrorFunc' type='function'/>
+     <exports symbol='xmlTextReaderExpand' type='function'/>
+     <exports symbol='xmlTextReaderGetAttribute' type='function'/>
+     <exports symbol='xmlTextReaderGetAttributeNo' type='function'/>
+     <exports symbol='xmlTextReaderGetAttributeNs' type='function'/>
+     <exports symbol='xmlTextReaderGetErrorHandler' type='function'/>
+     <exports symbol='xmlTextReaderGetParserColumnNumber' type='function'/>
+     <exports symbol='xmlTextReaderGetParserLineNumber' type='function'/>
+     <exports symbol='xmlTextReaderGetParserProp' type='function'/>
+     <exports symbol='xmlTextReaderGetRemainder' type='function'/>
+     <exports symbol='xmlTextReaderHasAttributes' type='function'/>
      <exports symbol='xmlTextReaderHasValue' type='function'/>
-     <exports symbol='xmlTextReaderConstBaseUri' type='function'/>
-     <exports symbol='xmlTextReaderBaseUri' type='function'/>
-     <exports symbol='xmlTextReaderMoveToAttributeNo' type='function'/>
+     <exports symbol='xmlTextReaderIsDefault' type='function'/>
+     <exports symbol='xmlTextReaderIsEmptyElement' type='function'/>
+     <exports symbol='xmlTextReaderIsNamespaceDecl' type='function'/>
+     <exports symbol='xmlTextReaderIsValid' type='function'/>
+     <exports symbol='xmlTextReaderLocalName' type='function'/>
+     <exports symbol='xmlTextReaderLocatorBaseURI' type='function'/>
      <exports symbol='xmlTextReaderLocatorLineNumber' type='function'/>
-     <exports symbol='xmlTextReaderMoveToAttributeNs' type='function'/>
-     <exports symbol='xmlTextReaderNext' type='function'/>
-     <exports symbol='xmlTextReaderAttributeCount' type='function'/>
      <exports symbol='xmlTextReaderLookupNamespace' type='function'/>
+     <exports symbol='xmlTextReaderMoveToAttribute' type='function'/>
+     <exports symbol='xmlTextReaderMoveToAttributeNo' type='function'/>
+     <exports symbol='xmlTextReaderMoveToAttributeNs' type='function'/>
      <exports symbol='xmlTextReaderMoveToElement' type='function'/>
-     <exports symbol='xmlReaderForIO' type='function'/>
-     <exports symbol='xmlTextReaderReadOuterXml' type='function'/>
-     <exports symbol='xmlTextReaderRelaxNGValidateCtxt' type='function'/>
-     <exports symbol='xmlTextReaderPrefix' type='function'/>
-     <exports symbol='xmlTextReaderReadAttributeValue' type='function'/>
+     <exports symbol='xmlTextReaderMoveToFirstAttribute' type='function'/>
+     <exports symbol='xmlTextReaderMoveToNextAttribute' type='function'/>
+     <exports symbol='xmlTextReaderName' type='function'/>
+     <exports symbol='xmlTextReaderNamespaceUri' type='function'/>
+     <exports symbol='xmlTextReaderNext' type='function'/>
      <exports symbol='xmlTextReaderNextSibling' type='function'/>
-     <exports symbol='xmlTextReaderErrorFunc' type='function'/>
-     <exports symbol='xmlReaderForFd' type='function'/>
-     <exports symbol='xmlTextReaderGetAttribute' type='function'/>
-     <exports symbol='xmlTextReaderLocalName' type='function'/>
+     <exports symbol='xmlTextReaderNodeType' type='function'/>
+     <exports symbol='xmlTextReaderNormalization' type='function'/>
+     <exports symbol='xmlTextReaderPrefix' type='function'/>
      <exports symbol='xmlTextReaderPreserve' type='function'/>
-     <exports symbol='xmlTextReaderCurrentNode' type='function'/>
-     <exports symbol='xmlTextReaderSetParserProp' type='function'/>
-     <exports symbol='xmlTextReaderGetRemainder' type='function'/>
-     <exports symbol='xmlTextReaderSetErrorHandler' type='function'/>
-     <exports symbol='xmlTextReaderIsNamespaceDecl' type='function'/>
-     <exports symbol='xmlReaderNewDoc' type='function'/>
      <exports symbol='xmlTextReaderPreservePattern' type='function'/>
-     <exports symbol='xmlTextReaderConstXmlLang' type='function'/>
-     <exports symbol='xmlTextReaderGetErrorHandler' type='function'/>
-     <exports symbol='xmlTextReaderSetStructuredErrorHandler' type='function'/>
-     <exports symbol='xmlReaderNewFile' type='function'/>
+     <exports symbol='xmlTextReaderQuoteChar' type='function'/>
+     <exports symbol='xmlTextReaderRead' type='function'/>
+     <exports symbol='xmlTextReaderReadAttributeValue' type='function'/>
+     <exports symbol='xmlTextReaderReadInnerXml' type='function'/>
+     <exports symbol='xmlTextReaderReadOuterXml' type='function'/>
+     <exports symbol='xmlTextReaderReadState' type='function'/>
+     <exports symbol='xmlTextReaderReadString' type='function'/>
      <exports symbol='xmlTextReaderRelaxNGSetSchema' type='function'/>
-     <exports symbol='xmlReaderNewFd' type='function'/>
      <exports symbol='xmlTextReaderRelaxNGValidate' type='function'/>
-     <exports symbol='xmlReaderForMemory' type='function'/>
-     <exports symbol='xmlTextReaderSetup' type='function'/>
-     <exports symbol='xmlTextReaderByteConsumed' type='function'/>
-     <exports symbol='xmlTextReaderLocatorBaseURI' type='function'/>
-     <exports symbol='xmlTextReaderNamespaceUri' type='function'/>
+     <exports symbol='xmlTextReaderRelaxNGValidateCtxt' type='function'/>
      <exports symbol='xmlTextReaderSchemaValidate' type='function'/>
+     <exports symbol='xmlTextReaderSchemaValidateCtxt' type='function'/>
+     <exports symbol='xmlTextReaderSetErrorHandler' type='function'/>
+     <exports symbol='xmlTextReaderSetParserProp' type='function'/>
+     <exports symbol='xmlTextReaderSetSchema' type='function'/>
+     <exports symbol='xmlTextReaderSetStructuredErrorHandler' type='function'/>
+     <exports symbol='xmlTextReaderSetup' type='function'/>
      <exports symbol='xmlTextReaderStandalone' type='function'/>
+     <exports symbol='xmlTextReaderValue' type='function'/>
+     <exports symbol='xmlTextReaderXmlLang' type='function'/>
     </file>
     <file name='xmlregexp'>
      <summary>regular expressions handling</summary>
      <description>basic API for libxml regular expressions handling used for XML Schemas and validation. </description>
      <author>Daniel Veillard </author>
+     <exports symbol='XML_EXP_ATOM' type='enum'/>
      <exports symbol='XML_EXP_COUNT' type='enum'/>
      <exports symbol='XML_EXP_EMPTY' type='enum'/>
-     <exports symbol='XML_EXP_SEQ' type='enum'/>
-     <exports symbol='XML_EXP_ATOM' type='enum'/>
-     <exports symbol='XML_EXP_OR' type='enum'/>
      <exports symbol='XML_EXP_FORBID' type='enum'/>
-     <exports symbol='xmlRegExecCtxtPtr' type='typedef'/>
+     <exports symbol='XML_EXP_OR' type='enum'/>
+     <exports symbol='XML_EXP_SEQ' type='enum'/>
      <exports symbol='xmlExpCtxt' type='typedef'/>
-     <exports symbol='xmlExpNodePtr' type='typedef'/>
      <exports symbol='xmlExpCtxtPtr' type='typedef'/>
+     <exports symbol='xmlExpNode' type='typedef'/>
+     <exports symbol='xmlExpNodePtr' type='typedef'/>
      <exports symbol='xmlExpNodeType' type='typedef'/>
      <exports symbol='xmlRegExecCtxt' type='typedef'/>
-     <exports symbol='xmlExpNode' type='typedef'/>
+     <exports symbol='xmlRegExecCtxtPtr' type='typedef'/>
      <exports symbol='xmlRegexp' type='typedef'/>
      <exports symbol='xmlRegexpPtr' type='typedef'/>
-     <exports symbol='forbiddenExp' type='variable'/>
      <exports symbol='emptyExp' type='variable'/>
-     <exports symbol='xmlRegExecCallbacks' type='function'/>
-     <exports symbol='xmlRegNewExecCtxt' type='function'/>
-     <exports symbol='xmlExpNewOr' type='function'/>
-     <exports symbol='xmlRegFreeRegexp' type='function'/>
-     <exports symbol='xmlExpRef' type='function'/>
-     <exports symbol='xmlRegexpIsDeterminist' type='function'/>
-     <exports symbol='xmlRegExecErrInfo' type='function'/>
-     <exports symbol='xmlRegFreeExecCtxt' type='function'/>
+     <exports symbol='forbiddenExp' type='variable'/>
      <exports symbol='xmlExpCtxtNbCons' type='function'/>
-     <exports symbol='xmlExpSubsume' type='function'/>
-     <exports symbol='xmlRegExecPushString2' type='function'/>
-     <exports symbol='xmlRegExecNextValues' type='function'/>
-     <exports symbol='xmlExpExpDerive' type='function'/>
-     <exports symbol='xmlExpIsNillable' type='function'/>
-     <exports symbol='xmlExpFreeCtxt' type='function'/>
+     <exports symbol='xmlExpCtxtNbNodes' type='function'/>
      <exports symbol='xmlExpDump' type='function'/>
-     <exports symbol='xmlExpNewSeq' type='function'/>
+     <exports symbol='xmlExpExpDerive' type='function'/>
      <exports symbol='xmlExpFree' type='function'/>
-     <exports symbol='xmlExpNewRange' type='function'/>
-     <exports symbol='xmlRegexpCompile' type='function'/>
-     <exports symbol='xmlExpNewAtom' type='function'/>
-     <exports symbol='xmlRegexpExec' type='function'/>
-     <exports symbol='xmlRegExecPushString' type='function'/>
+     <exports symbol='xmlExpFreeCtxt' type='function'/>
+     <exports symbol='xmlExpGetLanguage' type='function'/>
      <exports symbol='xmlExpGetStart' type='function'/>
-     <exports symbol='xmlExpParse' type='function'/>
+     <exports symbol='xmlExpIsNillable' type='function'/>
+     <exports symbol='xmlExpMaxToken' type='function'/>
+     <exports symbol='xmlExpNewAtom' type='function'/>
      <exports symbol='xmlExpNewCtxt' type='function'/>
-     <exports symbol='xmlExpGetLanguage' type='function'/>
+     <exports symbol='xmlExpNewOr' type='function'/>
+     <exports symbol='xmlExpNewRange' type='function'/>
+     <exports symbol='xmlExpNewSeq' type='function'/>
+     <exports symbol='xmlExpParse' type='function'/>
+     <exports symbol='xmlExpRef' type='function'/>
      <exports symbol='xmlExpStringDerive' type='function'/>
-     <exports symbol='xmlExpCtxtNbNodes' type='function'/>
-     <exports symbol='xmlExpMaxToken' type='function'/>
+     <exports symbol='xmlExpSubsume' type='function'/>
+     <exports symbol='xmlRegExecCallbacks' type='function'/>
+     <exports symbol='xmlRegExecErrInfo' type='function'/>
+     <exports symbol='xmlRegExecNextValues' type='function'/>
+     <exports symbol='xmlRegExecPushString' type='function'/>
+     <exports symbol='xmlRegExecPushString2' type='function'/>
+     <exports symbol='xmlRegFreeExecCtxt' type='function'/>
+     <exports symbol='xmlRegFreeRegexp' type='function'/>
+     <exports symbol='xmlRegNewExecCtxt' type='function'/>
+     <exports symbol='xmlRegexpCompile' type='function'/>
+     <exports symbol='xmlRegexpExec' type='function'/>
+     <exports symbol='xmlRegexpIsDeterminist' type='function'/>
      <exports symbol='xmlRegexpPrint' type='function'/>
     </file>
     <file name='xmlsave'>
      <summary>the XML document serializer</summary>
      <description>API to save document or subtree of document </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_SAVE_XHTML' type='enum'/>
+     <exports symbol='XML_SAVE_AS_HTML' type='enum'/>
      <exports symbol='XML_SAVE_AS_XML' type='enum'/>
+     <exports symbol='XML_SAVE_FORMAT' type='enum'/>
+     <exports symbol='XML_SAVE_NO_DECL' type='enum'/>
      <exports symbol='XML_SAVE_NO_EMPTY' type='enum'/>
      <exports symbol='XML_SAVE_NO_XHTML' type='enum'/>
-     <exports symbol='XML_SAVE_NO_DECL' type='enum'/>
-     <exports symbol='XML_SAVE_AS_HTML' type='enum'/>
-     <exports symbol='XML_SAVE_FORMAT' type='enum'/>
      <exports symbol='XML_SAVE_WSNONSIG' type='enum'/>
-     <exports symbol='xmlSaveOption' type='typedef'/>
+     <exports symbol='XML_SAVE_XHTML' type='enum'/>
      <exports symbol='xmlSaveCtxt' type='typedef'/>
      <exports symbol='xmlSaveCtxtPtr' type='typedef'/>
-     <exports symbol='xmlSaveToIO' type='function'/>
-     <exports symbol='xmlSaveToFd' type='function'/>
+     <exports symbol='xmlSaveOption' type='typedef'/>
      <exports symbol='xmlSaveClose' type='function'/>
+     <exports symbol='xmlSaveDoc' type='function'/>
+     <exports symbol='xmlSaveFlush' type='function'/>
      <exports symbol='xmlSaveSetAttrEscape' type='function'/>
+     <exports symbol='xmlSaveSetEscape' type='function'/>
      <exports symbol='xmlSaveToBuffer' type='function'/>
+     <exports symbol='xmlSaveToFd' type='function'/>
      <exports symbol='xmlSaveToFilename' type='function'/>
-     <exports symbol='xmlSaveFlush' type='function'/>
-     <exports symbol='xmlSaveDoc' type='function'/>
-     <exports symbol='xmlSaveSetEscape' type='function'/>
+     <exports symbol='xmlSaveToIO' type='function'/>
      <exports symbol='xmlSaveTree' type='function'/>
     </file>
     <file name='xmlschemas'>
      <summary>incomplete XML Schemas structure implementation</summary>
      <description>interface to the XML Schemas handling and schema validity checking, it is incomplete right now. </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_SCHEMAS_ERR_NOTNILLABLE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_OK' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_NOROOT' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_XXX' type='enum'/>
-     <exports symbol='XML_SCHEMA_VAL_VC_I_CREATE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_ISABSTRACT' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_ATTRINVALID' type='enum'/>
      <exports symbol='XML_SCHEMAS_ERR_ATTRUNKNOWN' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_WRONGELEM' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_NOTDETERMINIST' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_INTERNAL' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_MISSING' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_INVALIDATTR' type='enum'/>
      <exports symbol='XML_SCHEMAS_ERR_CONSTRUCT' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_ELEMCONT' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_EXTRACONTENT' type='enum'/>
      <exports symbol='XML_SCHEMAS_ERR_FACET' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_NOTYPE' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_VALUE' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_HAVEDEFAULT' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_INTERNAL' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_INVALIDATTR' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_INVALIDELEM' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_ISABSTRACT' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_MISSING' type='enum'/>
      <exports symbol='XML_SCHEMAS_ERR_NOROLLBACK' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_NOTTOPLEVEL' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_NOROOT' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_NOTDETERMINIST' type='enum'/>
      <exports symbol='XML_SCHEMAS_ERR_NOTEMPTY' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_INVALIDELEM' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_ATTRINVALID' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_EXTRACONTENT' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_NOTNILLABLE' type='enum'/>
      <exports symbol='XML_SCHEMAS_ERR_NOTSIMPLE' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_NOTTOPLEVEL' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_NOTYPE' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_OK' type='enum'/>
      <exports symbol='XML_SCHEMAS_ERR_UNDECLAREDELEM' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_HAVEDEFAULT' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_ELEMCONT' type='enum'/>
-     <exports symbol='XML_SCHEMAS_ERR_' type='enum'/>
-     <exports symbol='xmlSchemaPtr' type='typedef'/>
+     <exports symbol='XML_SCHEMAS_ERR_VALUE' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_WRONGELEM' type='enum'/>
+     <exports symbol='XML_SCHEMAS_ERR_XXX' type='enum'/>
+     <exports symbol='XML_SCHEMA_VAL_VC_I_CREATE' type='enum'/>
+     <exports symbol='xmlSchema' type='typedef'/>
      <exports symbol='xmlSchemaParserCtxt' type='typedef'/>
-     <exports symbol='xmlSchemaValidOption' type='typedef'/>
+     <exports symbol='xmlSchemaParserCtxtPtr' type='typedef'/>
+     <exports symbol='xmlSchemaPtr' type='typedef'/>
      <exports symbol='xmlSchemaSAXPlugPtr' type='typedef'/>
      <exports symbol='xmlSchemaSAXPlugStruct' type='typedef'/>
+     <exports symbol='xmlSchemaValidCtxt' type='typedef'/>
      <exports symbol='xmlSchemaValidCtxtPtr' type='typedef'/>
-     <exports symbol='xmlSchemaParserCtxtPtr' type='typedef'/>
-     <exports symbol='xmlSchema' type='typedef'/>
      <exports symbol='xmlSchemaValidError' type='typedef'/>
-     <exports symbol='xmlSchemaValidCtxt' type='typedef'/>
-     <exports symbol='xmlSchemaNewDocParserCtxt' type='function'/>
-     <exports symbol='xmlSchemaSAXUnplug' type='function'/>
-     <exports symbol='xmlSchemaParse' type='function'/>
+     <exports symbol='xmlSchemaValidOption' type='typedef'/>
+     <exports symbol='xmlSchemaDump' type='function'/>
+     <exports symbol='xmlSchemaFree' type='function'/>
      <exports symbol='xmlSchemaFreeParserCtxt' type='function'/>
-     <exports symbol='xmlSchemaValidateSetFilename' type='function'/>
-     <exports symbol='xmlSchemaNewParserCtxt' type='function'/>
+     <exports symbol='xmlSchemaFreeValidCtxt' type='function'/>
+     <exports symbol='xmlSchemaGetParserErrors' type='function'/>
+     <exports symbol='xmlSchemaGetValidErrors' type='function'/>
      <exports symbol='xmlSchemaIsValid' type='function'/>
-     <exports symbol='xmlSchemaValidityErrorFunc' type='function'/>
+     <exports symbol='xmlSchemaNewDocParserCtxt' type='function'/>
+     <exports symbol='xmlSchemaNewMemParserCtxt' type='function'/>
+     <exports symbol='xmlSchemaNewParserCtxt' type='function'/>
+     <exports symbol='xmlSchemaNewValidCtxt' type='function'/>
+     <exports symbol='xmlSchemaParse' type='function'/>
      <exports symbol='xmlSchemaSAXPlug' type='function'/>
-     <exports symbol='xmlSchemaValidateStream' type='function'/>
-     <exports symbol='xmlSchemaGetParserErrors' type='function'/>
-     <exports symbol='xmlSchemaValidateSetLocator' type='function'/>
-     <exports symbol='xmlSchemaValidateOneElement' type='function'/>
-     <exports symbol='xmlSchemaSetValidStructuredErrors' type='function'/>
+     <exports symbol='xmlSchemaSAXUnplug' type='function'/>
+     <exports symbol='xmlSchemaSetParserErrors' type='function'/>
+     <exports symbol='xmlSchemaSetParserStructuredErrors' type='function'/>
      <exports symbol='xmlSchemaSetValidErrors' type='function'/>
+     <exports symbol='xmlSchemaSetValidOptions' type='function'/>
+     <exports symbol='xmlSchemaSetValidStructuredErrors' type='function'/>
      <exports symbol='xmlSchemaValidCtxtGetOptions' type='function'/>
-     <exports symbol='xmlSchemaValidateFile' type='function'/>
+     <exports symbol='xmlSchemaValidCtxtGetParserCtxt' type='function'/>
      <exports symbol='xmlSchemaValidateDoc' type='function'/>
-     <exports symbol='xmlSchemaFree' type='function'/>
-     <exports symbol='xmlSchemaNewMemParserCtxt' type='function'/>
+     <exports symbol='xmlSchemaValidateFile' type='function'/>
+     <exports symbol='xmlSchemaValidateOneElement' type='function'/>
+     <exports symbol='xmlSchemaValidateSetFilename' type='function'/>
+     <exports symbol='xmlSchemaValidateSetLocator' type='function'/>
+     <exports symbol='xmlSchemaValidateStream' type='function'/>
+     <exports symbol='xmlSchemaValidityErrorFunc' type='function'/>
      <exports symbol='xmlSchemaValidityLocatorFunc' type='function'/>
-     <exports symbol='xmlSchemaGetValidErrors' type='function'/>
-     <exports symbol='xmlSchemaSetValidOptions' type='function'/>
-     <exports symbol='xmlSchemaSetParserErrors' type='function'/>
      <exports symbol='xmlSchemaValidityWarningFunc' type='function'/>
-     <exports symbol='xmlSchemaDump' type='function'/>
-     <exports symbol='xmlSchemaFreeValidCtxt' type='function'/>
-     <exports symbol='xmlSchemaValidCtxtGetParserCtxt' type='function'/>
-     <exports symbol='xmlSchemaSetParserStructuredErrors' type='function'/>
-     <exports symbol='xmlSchemaNewValidCtxt' type='function'/>
     </file>
     <file name='xmlschemastypes'>
      <summary>implementation of XML Schema Datatypes</summary>
      <description>module providing the XML Schema Datatypes implementation both definition and validity checking </description>
      <author>Daniel Veillard </author>
-     <exports symbol='XML_SCHEMA_WHITESPACE_UNKNOWN' type='enum'/>
      <exports symbol='XML_SCHEMA_WHITESPACE_COLLAPSE' type='enum'/>
-     <exports symbol='XML_SCHEMA_WHITESPACE_REPLACE' type='enum'/>
      <exports symbol='XML_SCHEMA_WHITESPACE_PRESERVE' type='enum'/>
-     <exports symbol='xmlSchemaWhitespaceValueType' type='typedef'/>
-     <exports symbol='xmlSchemaValPredefTypeNode' type='function'/>
-     <exports symbol='xmlSchemaGetCanonValueWhtsp' type='function'/>
-     <exports symbol='xmlSchemaValidateLengthFacetWhtsp' type='function'/>
-     <exports symbol='xmlSchemaIsBuiltInTypeFacet' type='function'/>
-     <exports symbol='xmlSchemaGetCanonValue' type='function'/>
-     <exports symbol='xmlSchemaGetBuiltInListSimpleTypeItemType' type='function'/>
-     <exports symbol='xmlSchemaCompareValuesWhtsp' type='function'/>
-     <exports symbol='xmlSchemaValueGetAsBoolean' type='function'/>
+     <exports symbol='XML_SCHEMA_WHITESPACE_REPLACE' type='enum'/>
+     <exports symbol='XML_SCHEMA_WHITESPACE_UNKNOWN' type='enum'/>
+     <exports symbol='xmlSchemaWhitespaceValueType' type='typedef'/>
+     <exports symbol='xmlSchemaCheckFacet' type='function'/>
+     <exports symbol='xmlSchemaCleanupTypes' type='function'/>
      <exports symbol='xmlSchemaCollapseString' type='function'/>
-     <exports symbol='xmlSchemaValPredefTypeNodeNoNorm' type='function'/>
-     <exports symbol='xmlSchemaValidateFacet' type='function'/>
-     <exports symbol='xmlSchemaNewFacet' type='function'/>
-     <exports symbol='xmlSchemaValueAppend' type='function'/>
      <exports symbol='xmlSchemaCompareValues' type='function'/>
-     <exports symbol='xmlSchemaValidateLengthFacet' type='function'/>
-     <exports symbol='xmlSchemaGetValType' type='function'/>
-     <exports symbol='xmlSchemaGetPredefinedType' type='function'/>
-     <exports symbol='xmlSchemaValidatePredefinedType' type='function'/>
+     <exports symbol='xmlSchemaCompareValuesWhtsp' type='function'/>
+     <exports symbol='xmlSchemaCopyValue' type='function'/>
      <exports symbol='xmlSchemaFreeFacet' type='function'/>
-     <exports symbol='xmlSchemaValidateListSimpleTypeFacet' type='function'/>
-     <exports symbol='xmlSchemaGetFacetValueAsULong' type='function'/>
      <exports symbol='xmlSchemaFreeValue' type='function'/>
-     <exports symbol='xmlSchemaValueGetNext' type='function'/>
-     <exports symbol='xmlSchemaValueGetAsString' type='function'/>
-     <exports symbol='xmlSchemaCopyValue' type='function'/>
+     <exports symbol='xmlSchemaGetBuiltInListSimpleTypeItemType' type='function'/>
+     <exports symbol='xmlSchemaGetBuiltInType' type='function'/>
+     <exports symbol='xmlSchemaGetCanonValue' type='function'/>
+     <exports symbol='xmlSchemaGetCanonValueWhtsp' type='function'/>
+     <exports symbol='xmlSchemaGetFacetValueAsULong' type='function'/>
+     <exports symbol='xmlSchemaGetPredefinedType' type='function'/>
+     <exports symbol='xmlSchemaGetValType' type='function'/>
+     <exports symbol='xmlSchemaInitTypes' type='function'/>
+     <exports symbol='xmlSchemaIsBuiltInTypeFacet' type='function'/>
+     <exports symbol='xmlSchemaNewFacet' type='function'/>
      <exports symbol='xmlSchemaNewNOTATIONValue' type='function'/>
      <exports symbol='xmlSchemaNewQNameValue' type='function'/>
-     <exports symbol='xmlSchemaCleanupTypes' type='function'/>
-     <exports symbol='xmlSchemaWhiteSpaceReplace' type='function'/>
      <exports symbol='xmlSchemaNewStringValue' type='function'/>
-     <exports symbol='xmlSchemaGetBuiltInType' type='function'/>
-     <exports symbol='xmlSchemaInitTypes' type='function'/>
+     <exports symbol='xmlSchemaValPredefTypeNode' type='function'/>
+     <exports symbol='xmlSchemaValPredefTypeNodeNoNorm' type='function'/>
+     <exports symbol='xmlSchemaValidateFacet' type='function'/>
      <exports symbol='xmlSchemaValidateFacetWhtsp' type='function'/>
-     <exports symbol='xmlSchemaCheckFacet' type='function'/>
+     <exports symbol='xmlSchemaValidateLengthFacet' type='function'/>
+     <exports symbol='xmlSchemaValidateLengthFacetWhtsp' type='function'/>
+     <exports symbol='xmlSchemaValidateListSimpleTypeFacet' type='function'/>
+     <exports symbol='xmlSchemaValidatePredefinedType' type='function'/>
+     <exports symbol='xmlSchemaValueAppend' type='function'/>
+     <exports symbol='xmlSchemaValueGetAsBoolean' type='function'/>
+     <exports symbol='xmlSchemaValueGetAsString' type='function'/>
+     <exports symbol='xmlSchemaValueGetNext' type='function'/>
+     <exports symbol='xmlSchemaWhiteSpaceReplace' type='function'/>
     </file>
     <file name='xmlstring'>
      <summary>set of routines to process strings</summary>
      <author>Daniel Veillard </author>
      <exports symbol='BAD_CAST' type='macro'/>
      <exports symbol='xmlChar' type='typedef'/>
-     <exports symbol='xmlStrcmp' type='function'/>
+     <exports symbol='xmlCharStrdup' type='function'/>
      <exports symbol='xmlCharStrndup' type='function'/>
-     <exports symbol='xmlStrcasestr' type='function'/>
-     <exports symbol='xmlStrcat' type='function'/>
+     <exports symbol='xmlCheckUTF8' type='function'/>
+     <exports symbol='xmlGetUTF8Char' type='function'/>
+     <exports symbol='xmlStrEqual' type='function'/>
      <exports symbol='xmlStrPrintf' type='function'/>
-     <exports symbol='xmlStrstr' type='function'/>
-     <exports symbol='xmlUTF8Size' type='function'/>
      <exports symbol='xmlStrQEqual' type='function'/>
-     <exports symbol='xmlStrncatNew' type='function'/>
-     <exports symbol='xmlUTF8Strpos' type='function'/>
-     <exports symbol='xmlStrdup' type='function'/>
-     <exports symbol='xmlCharStrdup' type='function'/>
+     <exports symbol='xmlStrVPrintf' type='function'/>
+     <exports symbol='xmlStrcasecmp' type='function'/>
+     <exports symbol='xmlStrcasestr' type='function'/>
+     <exports symbol='xmlStrcat' type='function'/>
      <exports symbol='xmlStrchr' type='function'/>
+     <exports symbol='xmlStrcmp' type='function'/>
+     <exports symbol='xmlStrdup' type='function'/>
      <exports symbol='xmlStrlen' type='function'/>
-     <exports symbol='xmlStrncmp' type='function'/>
-     <exports symbol='xmlStrsub' type='function'/>
+     <exports symbol='xmlStrncasecmp' type='function'/>
      <exports symbol='xmlStrncat' type='function'/>
-     <exports symbol='xmlGetUTF8Char' type='function'/>
-     <exports symbol='xmlStrcasecmp' type='function'/>
+     <exports symbol='xmlStrncatNew' type='function'/>
+     <exports symbol='xmlStrncmp' type='function'/>
      <exports symbol='xmlStrndup' type='function'/>
-     <exports symbol='xmlStrVPrintf' type='function'/>
-     <exports symbol='xmlUTF8Strsize' type='function'/>
-     <exports symbol='xmlCheckUTF8' type='function'/>
-     <exports symbol='xmlStrncasecmp' type='function'/>
-     <exports symbol='xmlUTF8Strlen' type='function'/>
-     <exports symbol='xmlUTF8Strsub' type='function'/>
-     <exports symbol='xmlStrEqual' type='function'/>
+     <exports symbol='xmlStrstr' type='function'/>
+     <exports symbol='xmlStrsub' type='function'/>
      <exports symbol='xmlUTF8Charcmp' type='function'/>
-     <exports symbol='xmlUTF8Strndup' type='function'/>
+     <exports symbol='xmlUTF8Size' type='function'/>
+     <exports symbol='xmlUTF8Strlen' type='function'/>
      <exports symbol='xmlUTF8Strloc' type='function'/>
+     <exports symbol='xmlUTF8Strndup' type='function'/>
+     <exports symbol='xmlUTF8Strpos' type='function'/>
+     <exports symbol='xmlUTF8Strsize' type='function'/>
+     <exports symbol='xmlUTF8Strsub' type='function'/>
     </file>
     <file name='xmlunicode'>
      <summary>Unicode character APIs</summary>
      <description>API for the Unicode character APIs  This file is automatically generated from the UCS description files of the Unicode Character Database</description>
      <author>Daniel Veillard </author>
+     <exports symbol='xmlUCSIsAegeanNumbers' type='function'/>
+     <exports symbol='xmlUCSIsAlphabeticPresentationForms' type='function'/>
+     <exports symbol='xmlUCSIsArabic' type='function'/>
+     <exports symbol='xmlUCSIsArabicPresentationFormsA' type='function'/>
+     <exports symbol='xmlUCSIsArabicPresentationFormsB' type='function'/>
+     <exports symbol='xmlUCSIsArmenian' type='function'/>
+     <exports symbol='xmlUCSIsArrows' type='function'/>
+     <exports symbol='xmlUCSIsBasicLatin' type='function'/>
+     <exports symbol='xmlUCSIsBengali' type='function'/>
+     <exports symbol='xmlUCSIsBlock' type='function'/>
      <exports symbol='xmlUCSIsBlockElements' type='function'/>
      <exports symbol='xmlUCSIsBopomofo' type='function'/>
-     <exports symbol='xmlUCSIsDingbats' type='function'/>
-     <exports symbol='xmlUCSIsSuperscriptsandSubscripts' type='function'/>
-     <exports symbol='xmlUCSIsCombiningHalfMarks' type='function'/>
-     <exports symbol='xmlUCSIsTibetan' type='function'/>
-     <exports symbol='xmlUCSIsYiRadicals' type='function'/>
-     <exports symbol='xmlUCSIsCombiningMarksforSymbols' type='function'/>
-     <exports symbol='xmlUCSIsHangulSyllables' type='function'/>
-     <exports symbol='xmlUCSIsBasicLatin' type='function'/>
-     <exports symbol='xmlUCSIsCatSc' type='function'/>
-     <exports symbol='xmlUCSIsCatSo' type='function'/>
-     <exports symbol='xmlUCSIsLimbu' type='function'/>
-     <exports symbol='xmlUCSIsCatSm' type='function'/>
-     <exports symbol='xmlUCSIsCatSk' type='function'/>
-     <exports symbol='xmlUCSIsKhmerSymbols' type='function'/>
-     <exports symbol='xmlUCSIsMongolian' type='function'/>
-     <exports symbol='xmlUCSIsMalayalam' type='function'/>
-     <exports symbol='xmlUCSIsMathematicalAlphanumericSymbols' type='function'/>
-     <exports symbol='xmlUCSIsThaana' type='function'/>
-     <exports symbol='xmlUCSIsMyanmar' type='function'/>
-     <exports symbol='xmlUCSIsTags' type='function'/>
-     <exports symbol='xmlUCSIsCJKCompatibilityIdeographs' type='function'/>
-     <exports symbol='xmlUCSIsTelugu' type='function'/>
-     <exports symbol='xmlUCSIsLowSurrogates' type='function'/>
-     <exports symbol='xmlUCSIsOsmanya' type='function'/>
-     <exports symbol='xmlUCSIsSyriac' type='function'/>
-     <exports symbol='xmlUCSIsEthiopic' type='function'/>
+     <exports symbol='xmlUCSIsBopomofoExtended' type='function'/>
      <exports symbol='xmlUCSIsBoxDrawing' type='function'/>
-     <exports symbol='xmlUCSIsGreekExtended' type='function'/>
-     <exports symbol='xmlUCSIsGreekandCoptic' type='function'/>
-     <exports symbol='xmlUCSIsKannada' type='function'/>
+     <exports symbol='xmlUCSIsBraillePatterns' type='function'/>
+     <exports symbol='xmlUCSIsBuhid' type='function'/>
      <exports symbol='xmlUCSIsByzantineMusicalSymbols' type='function'/>
-     <exports symbol='xmlUCSIsEnclosedCJKLettersandMonths' type='function'/>
+     <exports symbol='xmlUCSIsCJKCompatibility' type='function'/>
      <exports symbol='xmlUCSIsCJKCompatibilityForms' type='function'/>
-     <exports symbol='xmlUCSIsCatCs' type='function'/>
+     <exports symbol='xmlUCSIsCJKCompatibilityIdeographs' type='function'/>
+     <exports symbol='xmlUCSIsCJKCompatibilityIdeographsSupplement' type='function'/>
      <exports symbol='xmlUCSIsCJKRadicalsSupplement' type='function'/>
-     <exports symbol='xmlUCSIsCatCf' type='function'/>
-     <exports symbol='xmlUCSIsSmallFormVariants' type='function'/>
-     <exports symbol='xmlUCSIsHangulCompatibilityJamo' type='function'/>
+     <exports symbol='xmlUCSIsCJKSymbolsandPunctuation' type='function'/>
+     <exports symbol='xmlUCSIsCJKUnifiedIdeographs' type='function'/>
+     <exports symbol='xmlUCSIsCJKUnifiedIdeographsExtensionA' type='function'/>
+     <exports symbol='xmlUCSIsCJKUnifiedIdeographsExtensionB' type='function'/>
+     <exports symbol='xmlUCSIsCat' type='function'/>
+     <exports symbol='xmlUCSIsCatC' type='function'/>
      <exports symbol='xmlUCSIsCatCc' type='function'/>
+     <exports symbol='xmlUCSIsCatCf' type='function'/>
      <exports symbol='xmlUCSIsCatCo' type='function'/>
+     <exports symbol='xmlUCSIsCatCs' type='function'/>
+     <exports symbol='xmlUCSIsCatL' type='function'/>
+     <exports symbol='xmlUCSIsCatLl' type='function'/>
+     <exports symbol='xmlUCSIsCatLm' type='function'/>
+     <exports symbol='xmlUCSIsCatLo' type='function'/>
+     <exports symbol='xmlUCSIsCatLt' type='function'/>
+     <exports symbol='xmlUCSIsCatLu' type='function'/>
+     <exports symbol='xmlUCSIsCatM' type='function'/>
+     <exports symbol='xmlUCSIsCatMc' type='function'/>
+     <exports symbol='xmlUCSIsCatMe' type='function'/>
+     <exports symbol='xmlUCSIsCatMn' type='function'/>
+     <exports symbol='xmlUCSIsCatN' type='function'/>
+     <exports symbol='xmlUCSIsCatNd' type='function'/>
+     <exports symbol='xmlUCSIsCatNl' type='function'/>
+     <exports symbol='xmlUCSIsCatNo' type='function'/>
+     <exports symbol='xmlUCSIsCatP' type='function'/>
+     <exports symbol='xmlUCSIsCatPc' type='function'/>
+     <exports symbol='xmlUCSIsCatPd' type='function'/>
+     <exports symbol='xmlUCSIsCatPe' type='function'/>
+     <exports symbol='xmlUCSIsCatPf' type='function'/>
+     <exports symbol='xmlUCSIsCatPi' type='function'/>
+     <exports symbol='xmlUCSIsCatPo' type='function'/>
+     <exports symbol='xmlUCSIsCatPs' type='function'/>
+     <exports symbol='xmlUCSIsCatS' type='function'/>
+     <exports symbol='xmlUCSIsCatSc' type='function'/>
+     <exports symbol='xmlUCSIsCatSk' type='function'/>
+     <exports symbol='xmlUCSIsCatSm' type='function'/>
+     <exports symbol='xmlUCSIsCatSo' type='function'/>
+     <exports symbol='xmlUCSIsCatZ' type='function'/>
+     <exports symbol='xmlUCSIsCatZl' type='function'/>
+     <exports symbol='xmlUCSIsCatZp' type='function'/>
+     <exports symbol='xmlUCSIsCatZs' type='function'/>
      <exports symbol='xmlUCSIsCherokee' type='function'/>
+     <exports symbol='xmlUCSIsCombiningDiacriticalMarks' type='function'/>
+     <exports symbol='xmlUCSIsCombiningDiacriticalMarksforSymbols' type='function'/>
+     <exports symbol='xmlUCSIsCombiningHalfMarks' type='function'/>
+     <exports symbol='xmlUCSIsCombiningMarksforSymbols' type='function'/>
+     <exports symbol='xmlUCSIsControlPictures' type='function'/>
+     <exports symbol='xmlUCSIsCurrencySymbols' type='function'/>
+     <exports symbol='xmlUCSIsCypriotSyllabary' type='function'/>
+     <exports symbol='xmlUCSIsCyrillic' type='function'/>
+     <exports symbol='xmlUCSIsCyrillicSupplement' type='function'/>
+     <exports symbol='xmlUCSIsDeseret' type='function'/>
+     <exports symbol='xmlUCSIsDevanagari' type='function'/>
+     <exports symbol='xmlUCSIsDingbats' type='function'/>
+     <exports symbol='xmlUCSIsEnclosedAlphanumerics' type='function'/>
+     <exports symbol='xmlUCSIsEnclosedCJKLettersandMonths' type='function'/>
+     <exports symbol='xmlUCSIsEthiopic' type='function'/>
+     <exports symbol='xmlUCSIsGeneralPunctuation' type='function'/>
+     <exports symbol='xmlUCSIsGeometricShapes' type='function'/>
+     <exports symbol='xmlUCSIsGeorgian' type='function'/>
      <exports symbol='xmlUCSIsGothic' type='function'/>
+     <exports symbol='xmlUCSIsGreek' type='function'/>
+     <exports symbol='xmlUCSIsGreekExtended' type='function'/>
+     <exports symbol='xmlUCSIsGreekandCoptic' type='function'/>
+     <exports symbol='xmlUCSIsGujarati' type='function'/>
+     <exports symbol='xmlUCSIsGurmukhi' type='function'/>
+     <exports symbol='xmlUCSIsHalfwidthandFullwidthForms' type='function'/>
+     <exports symbol='xmlUCSIsHangulCompatibilityJamo' type='function'/>
+     <exports symbol='xmlUCSIsHangulJamo' type='function'/>
+     <exports symbol='xmlUCSIsHangulSyllables' type='function'/>
+     <exports symbol='xmlUCSIsHanunoo' type='function'/>
+     <exports symbol='xmlUCSIsHebrew' type='function'/>
+     <exports symbol='xmlUCSIsHighPrivateUseSurrogates' type='function'/>
+     <exports symbol='xmlUCSIsHighSurrogates' type='function'/>
+     <exports symbol='xmlUCSIsHiragana' type='function'/>
+     <exports symbol='xmlUCSIsIPAExtensions' type='function'/>
+     <exports symbol='xmlUCSIsIdeographicDescriptionCharacters' type='function'/>
+     <exports symbol='xmlUCSIsKanbun' type='function'/>
+     <exports symbol='xmlUCSIsKangxiRadicals' type='function'/>
+     <exports symbol='xmlUCSIsKannada' type='function'/>
+     <exports symbol='xmlUCSIsKatakana' type='function'/>
+     <exports symbol='xmlUCSIsKatakanaPhoneticExtensions' type='function'/>
      <exports symbol='xmlUCSIsKhmer' type='function'/>
-     <exports symbol='xmlUCSIsCombiningDiacriticalMarksforSymbols' type='function'/>
-     <exports symbol='xmlUCSIsOgham' type='function'/>
-     <exports symbol='xmlUCSIsOriya' type='function'/>
+     <exports symbol='xmlUCSIsKhmerSymbols' type='function'/>
+     <exports symbol='xmlUCSIsLao' type='function'/>
+     <exports symbol='xmlUCSIsLatin1Supplement' type='function'/>
+     <exports symbol='xmlUCSIsLatinExtendedA' type='function'/>
+     <exports symbol='xmlUCSIsLatinExtendedAdditional' type='function'/>
+     <exports symbol='xmlUCSIsLatinExtendedB' type='function'/>
+     <exports symbol='xmlUCSIsLetterlikeSymbols' type='function'/>
+     <exports symbol='xmlUCSIsLimbu' type='function'/>
      <exports symbol='xmlUCSIsLinearBIdeograms' type='function'/>
-     <exports symbol='xmlUCSIsBlock' type='function'/>
-     <exports symbol='xmlUCSIsBopomofoExtended' type='function'/>
-     <exports symbol='xmlUCSIsHangulJamo' type='function'/>
-     <exports symbol='xmlUCSIsTagbanwa' type='function'/>
-     <exports symbol='xmlUCSIsGeneralPunctuation' type='function'/>
-     <exports symbol='xmlUCSIsCyrillic' type='function'/>
-     <exports symbol='xmlUCSIsArrows' type='function'/>
-     <exports symbol='xmlUCSIsControlPictures' type='function'/>
-     <exports symbol='xmlUCSIsCJKUnifiedIdeographs' type='function'/>
-     <exports symbol='xmlUCSIsCatNl' type='function'/>
-     <exports symbol='xmlUCSIsCatNo' type='function'/>
-     <exports symbol='xmlUCSIsYijingHexagramSymbols' type='function'/>
-     <exports symbol='xmlUCSIsVariationSelectorsSupplement' type='function'/>
-     <exports symbol='xmlUCSIsBengali' type='function'/>
-     <exports symbol='xmlUCSIsPrivateUse' type='function'/>
-     <exports symbol='xmlUCSIsMusicalSymbols' type='function'/>
+     <exports symbol='xmlUCSIsLinearBSyllabary' type='function'/>
+     <exports symbol='xmlUCSIsLowSurrogates' type='function'/>
+     <exports symbol='xmlUCSIsMalayalam' type='function'/>
+     <exports symbol='xmlUCSIsMathematicalAlphanumericSymbols' type='function'/>
+     <exports symbol='xmlUCSIsMathematicalOperators' type='function'/>
+     <exports symbol='xmlUCSIsMiscellaneousMathematicalSymbolsA' type='function'/>
+     <exports symbol='xmlUCSIsMiscellaneousMathematicalSymbolsB' type='function'/>
      <exports symbol='xmlUCSIsMiscellaneousSymbols' type='function'/>
-     <exports symbol='xmlUCSIsCJKCompatibility' type='function'/>
-     <exports symbol='xmlUCSIsAegeanNumbers' type='function'/>
-     <exports symbol='xmlUCSIsDevanagari' type='function'/>
-     <exports symbol='xmlUCSIsSupplementalArrowsA' type='function'/>
-     <exports symbol='xmlUCSIsSupplementalArrowsB' type='function'/>
+     <exports symbol='xmlUCSIsMiscellaneousSymbolsandArrows' type='function'/>
+     <exports symbol='xmlUCSIsMiscellaneousTechnical' type='function'/>
+     <exports symbol='xmlUCSIsMongolian' type='function'/>
+     <exports symbol='xmlUCSIsMusicalSymbols' type='function'/>
+     <exports symbol='xmlUCSIsMyanmar' type='function'/>
      <exports symbol='xmlUCSIsNumberForms' type='function'/>
-     <exports symbol='xmlUCSIsSpacingModifierLetters' type='function'/>
+     <exports symbol='xmlUCSIsOgham' type='function'/>
+     <exports symbol='xmlUCSIsOldItalic' type='function'/>
      <exports symbol='xmlUCSIsOpticalCharacterRecognition' type='function'/>
-     <exports symbol='xmlUCSIsCatPc' type='function'/>
-     <exports symbol='xmlUCSIsCatPf' type='function'/>
-     <exports symbol='xmlUCSIsCyrillicSupplement' type='function'/>
-     <exports symbol='xmlUCSIsCatPd' type='function'/>
-     <exports symbol='xmlUCSIsCatPi' type='function'/>
-     <exports symbol='xmlUCSIsCatPo' type='function'/>
-     <exports symbol='xmlUCSIsHighPrivateUseSurrogates' type='function'/>
-     <exports symbol='xmlUCSIsLatinExtendedAdditional' type='function'/>
-     <exports symbol='xmlUCSIsCatPs' type='function'/>
-     <exports symbol='xmlUCSIsHighSurrogates' type='function'/>
-     <exports symbol='xmlUCSIsLao' type='function'/>
-     <exports symbol='xmlUCSIsBraillePatterns' type='function'/>
-     <exports symbol='xmlUCSIsDeseret' type='function'/>
-     <exports symbol='xmlUCSIsEnclosedAlphanumerics' type='function'/>
-     <exports symbol='xmlUCSIsCombiningDiacriticalMarks' type='function'/>
-     <exports symbol='xmlUCSIsIdeographicDescriptionCharacters' type='function'/>
+     <exports symbol='xmlUCSIsOriya' type='function'/>
+     <exports symbol='xmlUCSIsOsmanya' type='function'/>
+     <exports symbol='xmlUCSIsPhoneticExtensions' type='function'/>
+     <exports symbol='xmlUCSIsPrivateUse' type='function'/>
      <exports symbol='xmlUCSIsPrivateUseArea' type='function'/>
-     <exports symbol='xmlUCSIsCat' type='function'/>
-     <exports symbol='xmlUCSIsCatLu' type='function'/>
-     <exports symbol='xmlUCSIsCatLt' type='function'/>
-     <exports symbol='xmlUCSIsYiSyllables' type='function'/>
+     <exports symbol='xmlUCSIsRunic' type='function'/>
      <exports symbol='xmlUCSIsShavian' type='function'/>
-     <exports symbol='xmlUCSIsCatLo' type='function'/>
-     <exports symbol='xmlUCSIsCatLm' type='function'/>
-     <exports symbol='xmlUCSIsCatLl' type='function'/>
-     <exports symbol='xmlUCSIsMiscellaneousTechnical' type='function'/>
-     <exports symbol='xmlUCSIsUgaritic' type='function'/>
-     <exports symbol='xmlUCSIsCJKCompatibilityIdeographsSupplement' type='function'/>
-     <exports symbol='xmlUCSIsCypriotSyllabary' type='function'/>
-     <exports symbol='xmlUCSIsTamil' type='function'/>
-     <exports symbol='xmlUCSIsCatC' type='function'/>
-     <exports symbol='xmlUCSIsCatN' type='function'/>
-     <exports symbol='xmlUCSIsCatL' type='function'/>
-     <exports symbol='xmlUCSIsCatM' type='function'/>
-     <exports symbol='xmlUCSIsUnifiedCanadianAboriginalSyllabics' type='function'/>
-     <exports symbol='xmlUCSIsCatS' type='function'/>
-     <exports symbol='xmlUCSIsCatP' type='function'/>
      <exports symbol='xmlUCSIsSinhala' type='function'/>
-     <exports symbol='xmlUCSIsGeorgian' type='function'/>
-     <exports symbol='xmlUCSIsCatZ' type='function'/>
-     <exports symbol='xmlUCSIsIPAExtensions' type='function'/>
-     <exports symbol='xmlUCSIsKangxiRadicals' type='function'/>
-     <exports symbol='xmlUCSIsGreek' type='function'/>
-     <exports symbol='xmlUCSIsCatPe' type='function'/>
-     <exports symbol='xmlUCSIsHanunoo' type='function'/>
-     <exports symbol='xmlUCSIsArmenian' type='function'/>
-     <exports symbol='xmlUCSIsSupplementaryPrivateUseAreaB' type='function'/>
+     <exports symbol='xmlUCSIsSmallFormVariants' type='function'/>
+     <exports symbol='xmlUCSIsSpacingModifierLetters' type='function'/>
+     <exports symbol='xmlUCSIsSpecials' type='function'/>
+     <exports symbol='xmlUCSIsSuperscriptsandSubscripts' type='function'/>
+     <exports symbol='xmlUCSIsSupplementalArrowsA' type='function'/>
+     <exports symbol='xmlUCSIsSupplementalArrowsB' type='function'/>
+     <exports symbol='xmlUCSIsSupplementalMathematicalOperators' type='function'/>
      <exports symbol='xmlUCSIsSupplementaryPrivateUseAreaA' type='function'/>
-     <exports symbol='xmlUCSIsKatakanaPhoneticExtensions' type='function'/>
-     <exports symbol='xmlUCSIsLetterlikeSymbols' type='function'/>
-     <exports symbol='xmlUCSIsPhoneticExtensions' type='function'/>
-     <exports symbol='xmlUCSIsArabic' type='function'/>
-     <exports symbol='xmlUCSIsHebrew' type='function'/>
-     <exports symbol='xmlUCSIsOldItalic' type='function'/>
-     <exports symbol='xmlUCSIsArabicPresentationFormsA' type='function'/>
-     <exports symbol='xmlUCSIsCatZp' type='function'/>
-     <exports symbol='xmlUCSIsCatZs' type='function'/>
-     <exports symbol='xmlUCSIsArabicPresentationFormsB' type='function'/>
-     <exports symbol='xmlUCSIsGeometricShapes' type='function'/>
-     <exports symbol='xmlUCSIsCatZl' type='function'/>
+     <exports symbol='xmlUCSIsSupplementaryPrivateUseAreaB' type='function'/>
+     <exports symbol='xmlUCSIsSyriac' type='function'/>
      <exports symbol='xmlUCSIsTagalog' type='function'/>
-     <exports symbol='xmlUCSIsSpecials' type='function'/>
-     <exports symbol='xmlUCSIsGujarati' type='function'/>
-     <exports symbol='xmlUCSIsKatakana' type='function'/>
-     <exports symbol='xmlUCSIsHalfwidthandFullwidthForms' type='function'/>
-     <exports symbol='xmlUCSIsLatinExtendedB' type='function'/>
-     <exports symbol='xmlUCSIsLatinExtendedA' type='function'/>
-     <exports symbol='xmlUCSIsBuhid' type='function'/>
-     <exports symbol='xmlUCSIsMiscellaneousSymbolsandArrows' type='function'/>
+     <exports symbol='xmlUCSIsTagbanwa' type='function'/>
+     <exports symbol='xmlUCSIsTags' type='function'/>
      <exports symbol='xmlUCSIsTaiLe' type='function'/>
-     <exports symbol='xmlUCSIsCJKSymbolsandPunctuation' type='function'/>
      <exports symbol='xmlUCSIsTaiXuanJingSymbols' type='function'/>
-     <exports symbol='xmlUCSIsGurmukhi' type='function'/>
-     <exports symbol='xmlUCSIsMathematicalOperators' type='function'/>
-     <exports symbol='xmlUCSIsAlphabeticPresentationForms' type='function'/>
-     <exports symbol='xmlUCSIsCurrencySymbols' type='function'/>
-     <exports symbol='xmlUCSIsSupplementalMathematicalOperators' type='function'/>
-     <exports symbol='xmlUCSIsCJKUnifiedIdeographsExtensionA' type='function'/>
-     <exports symbol='xmlUCSIsKanbun' type='function'/>
-     <exports symbol='xmlUCSIsCJKUnifiedIdeographsExtensionB' type='function'/>
+     <exports symbol='xmlUCSIsTamil' type='function'/>
+     <exports symbol='xmlUCSIsTelugu' type='function'/>
+     <exports symbol='xmlUCSIsThaana' type='function'/>
      <exports symbol='xmlUCSIsThai' type='function'/>
-     <exports symbol='xmlUCSIsRunic' type='function'/>
-     <exports symbol='xmlUCSIsCatNd' type='function'/>
-     <exports symbol='xmlUCSIsLatin1Supplement' type='function'/>
-     <exports symbol='xmlUCSIsLinearBSyllabary' type='function'/>
-     <exports symbol='xmlUCSIsHiragana' type='function'/>
-     <exports symbol='xmlUCSIsMiscellaneousMathematicalSymbolsB' type='function'/>
-     <exports symbol='xmlUCSIsMiscellaneousMathematicalSymbolsA' type='function'/>
-     <exports symbol='xmlUCSIsCatMn' type='function'/>
+     <exports symbol='xmlUCSIsTibetan' type='function'/>
+     <exports symbol='xmlUCSIsUgaritic' type='function'/>
+     <exports symbol='xmlUCSIsUnifiedCanadianAboriginalSyllabics' type='function'/>
      <exports symbol='xmlUCSIsVariationSelectors' type='function'/>
-     <exports symbol='xmlUCSIsCatMc' type='function'/>
-     <exports symbol='xmlUCSIsCatMe' type='function'/>
+     <exports symbol='xmlUCSIsVariationSelectorsSupplement' type='function'/>
+     <exports symbol='xmlUCSIsYiRadicals' type='function'/>
+     <exports symbol='xmlUCSIsYiSyllables' type='function'/>
+     <exports symbol='xmlUCSIsYijingHexagramSymbols' type='function'/>
     </file>
     <file name='xmlversion'>
      <summary>compile-time version information</summary>
      <description>compile-time version information for the XML library </description>
      <author>Daniel Veillard </author>
-     <exports symbol='LIBXML_VERSION_EXTRA' type='macro'/>
-     <exports symbol='LIBXML_MODULES_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_LEGACY_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_LZMA_ENABLED' type='macro'/>
-     <exports symbol='XML_DEPRECATED' type='macro'/>
-     <exports symbol='LIBXML_READER_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_THREAD_ENABLED' type='macro'/>
+     <exports symbol='ATTRIBUTE_UNUSED' type='macro'/>
+     <exports symbol='DEBUG_MEMORY_LOCATION' type='macro'/>
+     <exports symbol='LIBXML_ATTR_ALLOC_SIZE' type='macro'/>
+     <exports symbol='LIBXML_ATTR_FORMAT' type='macro'/>
+     <exports symbol='LIBXML_AUTOMATA_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_C14N_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_CATALOG_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_DEBUG_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_DEBUG_RUNTIME' type='macro'/>
      <exports symbol='LIBXML_DOTTED_VERSION' type='macro'/>
+     <exports symbol='LIBXML_EXPR_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_FTP_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_HTML_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_HTTP_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_ICONV_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_ICU_ENABLED' type='macro'/>
      <exports symbol='LIBXML_ISO8859X_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_DEBUG_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_XINCLUDE_ENABLED' type='macro'/>
-     <exports symbol='ATTRIBUTE_UNUSED' type='macro'/>
-     <exports symbol='LIBXML_XPTR_LOCS_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_LEGACY_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_LZMA_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_MODULES_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_MODULE_EXTENSION' type='macro'/>
+     <exports symbol='LIBXML_OUTPUT_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_PATTERN_ENABLED' type='macro'/>
      <exports symbol='LIBXML_PUSH_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_READER_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_REGEXP_ENABLED' type='macro'/>
      <exports symbol='LIBXML_SAX1_ENABLED' type='macro'/>
-     <exports symbol='WITHOUT_TRIO' type='macro'/>
+     <exports symbol='LIBXML_SCHEMAS_ENABLED' type='macro'/>
      <exports symbol='LIBXML_SCHEMATRON_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_HTTP_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_OUTPUT_ENABLED' type='macro'/>
-     <exports symbol='WITH_TRIO' type='macro'/>
-     <exports symbol='LIBXML_DEBUG_RUNTIME' type='macro'/>
+     <exports symbol='LIBXML_TEST_VERSION' type='macro'/>
+     <exports symbol='LIBXML_THREAD_ALLOC_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_THREAD_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_TREE_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_UNICODE_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_VALID_ENABLED' type='macro'/>
      <exports symbol='LIBXML_VERSION' type='macro'/>
-     <exports symbol='LIBXML_XPTR_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_VERSION_EXTRA' type='macro'/>
      <exports symbol='LIBXML_VERSION_STRING' type='macro'/>
-     <exports symbol='LIBXML_CATALOG_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_ATTR_ALLOC_SIZE' type='macro'/>
-     <exports symbol='LIBXML_REGEXP_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_ICU_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_MODULE_EXTENSION' type='macro'/>
-     <exports symbol='LIBXML_ICONV_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_HTML_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_UNICODE_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_FTP_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_AUTOMATA_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_ZLIB_ENABLED' type='macro'/>
      <exports symbol='LIBXML_WRITER_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_C14N_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_SCHEMAS_ENABLED' type='macro'/>
-     <exports symbol='DEBUG_MEMORY_LOCATION' type='macro'/>
-     <exports symbol='LIBXML_ATTR_FORMAT' type='macro'/>
-     <exports symbol='LIBXML_TEST_VERSION' type='macro'/>
-     <exports symbol='LIBXML_THREAD_ALLOC_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_XINCLUDE_ENABLED' type='macro'/>
      <exports symbol='LIBXML_XPATH_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_PATTERN_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_VALID_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_TREE_ENABLED' type='macro'/>
-     <exports symbol='LIBXML_EXPR_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_XPTR_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_XPTR_LOCS_ENABLED' type='macro'/>
+     <exports symbol='LIBXML_ZLIB_ENABLED' type='macro'/>
+     <exports symbol='WITHOUT_TRIO' type='macro'/>
+     <exports symbol='WITH_TRIO' type='macro'/>
+     <exports symbol='XML_DEPRECATED' type='macro'/>
      <exports symbol='xmlCheckVersion' type='function'/>
     </file>
     <file name='xmlwriter'>
      <summary>text writing API for XML</summary>
      <description>text writing API for XML </description>
      <author>Alfred Mickautsch &lt;alfred@mickautsch.de&gt; </author>
-     <exports symbol='xmlTextWriterWriteProcessingInstruction' type='macro'/>
      <exports symbol='xmlTextWriterWriteDocType' type='macro'/>
+     <exports symbol='xmlTextWriterWriteProcessingInstruction' type='macro'/>
      <exports symbol='xmlTextWriter' type='typedef'/>
      <exports symbol='xmlTextWriterPtr' type='typedef'/>
-     <exports symbol='xmlTextWriterStartDocument' type='function'/>
-     <exports symbol='xmlTextWriterEndPI' type='function'/>
-     <exports symbol='xmlTextWriterWriteBase64' type='function'/>
-     <exports symbol='xmlTextWriterSetIndentString' type='function'/>
-     <exports symbol='xmlTextWriterStartAttribute' type='function'/>
-     <exports symbol='xmlTextWriterEndComment' type='function'/>
-     <exports symbol='xmlTextWriterWriteRawLen' type='function'/>
-     <exports symbol='xmlTextWriterWriteDTDExternalEntityContents' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatCDATA' type='function'/>
-     <exports symbol='xmlTextWriterStartAttributeNS' type='function'/>
+     <exports symbol='xmlFreeTextWriter' type='function'/>
+     <exports symbol='xmlNewTextWriter' type='function'/>
+     <exports symbol='xmlNewTextWriterDoc' type='function'/>
+     <exports symbol='xmlNewTextWriterFilename' type='function'/>
+     <exports symbol='xmlNewTextWriterMemory' type='function'/>
      <exports symbol='xmlNewTextWriterPushParser' type='function'/>
-     <exports symbol='xmlTextWriterWriteFormatAttributeNS' type='function'/>
-     <exports symbol='xmlTextWriterWriteDTDEntity' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatPI' type='function'/>
-     <exports symbol='xmlTextWriterWriteBinHex' type='function'/>
+     <exports symbol='xmlNewTextWriterTree' type='function'/>
      <exports symbol='xmlTextWriterEndAttribute' type='function'/>
-     <exports symbol='xmlTextWriterSetIndent' type='function'/>
-     <exports symbol='xmlTextWriterWriteFormatPI' type='function'/>
-     <exports symbol='xmlTextWriterEndDocument' type='function'/>
-     <exports symbol='xmlTextWriterWriteDTDAttlist' type='function'/>
-     <exports symbol='xmlTextWriterStartComment' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatDTD' type='function'/>
      <exports symbol='xmlTextWriterEndCDATA' type='function'/>
-     <exports symbol='xmlTextWriterStartElementNS' type='function'/>
-     <exports symbol='xmlTextWriterEndDTDEntity' type='function'/>
-     <exports symbol='xmlNewTextWriter' type='function'/>
-     <exports symbol='xmlFreeTextWriter' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatDTDAttlist' type='function'/>
-     <exports symbol='xmlTextWriterStartPI' type='function'/>
-     <exports symbol='xmlTextWriterStartElement' type='function'/>
-     <exports symbol='xmlTextWriterWriteDTDExternalEntity' type='function'/>
-     <exports symbol='xmlTextWriterWriteFormatRaw' type='function'/>
-     <exports symbol='xmlTextWriterWriteCDATA' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatDTDInternalEntity' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatAttribute' type='function'/>
-     <exports symbol='xmlTextWriterEndDTDElement' type='function'/>
+     <exports symbol='xmlTextWriterEndComment' type='function'/>
      <exports symbol='xmlTextWriterEndDTD' type='function'/>
-     <exports symbol='xmlTextWriterWriteElement' type='function'/>
+     <exports symbol='xmlTextWriterEndDTDAttlist' type='function'/>
+     <exports symbol='xmlTextWriterEndDTDElement' type='function'/>
+     <exports symbol='xmlTextWriterEndDTDEntity' type='function'/>
+     <exports symbol='xmlTextWriterEndDocument' type='function'/>
      <exports symbol='xmlTextWriterEndElement' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatComment' type='function'/>
+     <exports symbol='xmlTextWriterEndPI' type='function'/>
+     <exports symbol='xmlTextWriterFlush' type='function'/>
+     <exports symbol='xmlTextWriterFullEndElement' type='function'/>
+     <exports symbol='xmlTextWriterSetIndent' type='function'/>
+     <exports symbol='xmlTextWriterSetIndentString' type='function'/>
+     <exports symbol='xmlTextWriterSetQuoteChar' type='function'/>
+     <exports symbol='xmlTextWriterStartAttribute' type='function'/>
+     <exports symbol='xmlTextWriterStartAttributeNS' type='function'/>
      <exports symbol='xmlTextWriterStartCDATA' type='function'/>
-     <exports symbol='xmlNewTextWriterFilename' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatElement' type='function'/>
-     <exports symbol='xmlTextWriterWriteFormatComment' type='function'/>
+     <exports symbol='xmlTextWriterStartComment' type='function'/>
+     <exports symbol='xmlTextWriterStartDTD' type='function'/>
+     <exports symbol='xmlTextWriterStartDTDAttlist' type='function'/>
+     <exports symbol='xmlTextWriterStartDTDElement' type='function'/>
+     <exports symbol='xmlTextWriterStartDTDEntity' type='function'/>
+     <exports symbol='xmlTextWriterStartDocument' type='function'/>
+     <exports symbol='xmlTextWriterStartElement' type='function'/>
+     <exports symbol='xmlTextWriterStartElementNS' type='function'/>
+     <exports symbol='xmlTextWriterStartPI' type='function'/>
+     <exports symbol='xmlTextWriterWriteAttribute' type='function'/>
      <exports symbol='xmlTextWriterWriteAttributeNS' type='function'/>
-     <exports symbol='xmlTextWriterWritePI' type='function'/>
-     <exports symbol='xmlTextWriterWriteFormatDTDInternalEntity' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatString' type='function'/>
+     <exports symbol='xmlTextWriterWriteBase64' type='function'/>
+     <exports symbol='xmlTextWriterWriteBinHex' type='function'/>
+     <exports symbol='xmlTextWriterWriteCDATA' type='function'/>
+     <exports symbol='xmlTextWriterWriteComment' type='function'/>
+     <exports symbol='xmlTextWriterWriteDTD' type='function'/>
+     <exports symbol='xmlTextWriterWriteDTDAttlist' type='function'/>
+     <exports symbol='xmlTextWriterWriteDTDElement' type='function'/>
+     <exports symbol='xmlTextWriterWriteDTDEntity' type='function'/>
+     <exports symbol='xmlTextWriterWriteDTDExternalEntity' type='function'/>
+     <exports symbol='xmlTextWriterWriteDTDExternalEntityContents' type='function'/>
      <exports symbol='xmlTextWriterWriteDTDInternalEntity' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatElementNS' type='function'/>
      <exports symbol='xmlTextWriterWriteDTDNotation' type='function'/>
-     <exports symbol='xmlTextWriterWriteFormatElement' type='function'/>
-     <exports symbol='xmlTextWriterSetQuoteChar' type='function'/>
-     <exports symbol='xmlTextWriterWriteString' type='function'/>
+     <exports symbol='xmlTextWriterWriteElement' type='function'/>
      <exports symbol='xmlTextWriterWriteElementNS' type='function'/>
-     <exports symbol='xmlTextWriterFullEndElement' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatAttributeNS' type='function'/>
-     <exports symbol='xmlTextWriterFlush' type='function'/>
-     <exports symbol='xmlTextWriterStartDTD' type='function'/>
-     <exports symbol='xmlTextWriterWriteAttribute' type='function'/>
-     <exports symbol='xmlNewTextWriterDoc' type='function'/>
-     <exports symbol='xmlTextWriterWriteFormatDTDElement' type='function'/>
-     <exports symbol='xmlTextWriterEndDTDAttlist' type='function'/>
-     <exports symbol='xmlNewTextWriterTree' type='function'/>
-     <exports symbol='xmlNewTextWriterMemory' type='function'/>
+     <exports symbol='xmlTextWriterWriteFormatAttribute' type='function'/>
+     <exports symbol='xmlTextWriterWriteFormatAttributeNS' type='function'/>
      <exports symbol='xmlTextWriterWriteFormatCDATA' type='function'/>
-     <exports symbol='xmlTextWriterStartDTDAttlist' type='function'/>
-     <exports symbol='xmlTextWriterWriteFormatString' type='function'/>
-     <exports symbol='xmlTextWriterWriteComment' type='function'/>
-     <exports symbol='xmlTextWriterWriteVFormatRaw' type='function'/>
+     <exports symbol='xmlTextWriterWriteFormatComment' type='function'/>
      <exports symbol='xmlTextWriterWriteFormatDTD' type='function'/>
      <exports symbol='xmlTextWriterWriteFormatDTDAttlist' type='function'/>
+     <exports symbol='xmlTextWriterWriteFormatDTDElement' type='function'/>
+     <exports symbol='xmlTextWriterWriteFormatDTDInternalEntity' type='function'/>
+     <exports symbol='xmlTextWriterWriteFormatElement' type='function'/>
+     <exports symbol='xmlTextWriterWriteFormatElementNS' type='function'/>
+     <exports symbol='xmlTextWriterWriteFormatPI' type='function'/>
+     <exports symbol='xmlTextWriterWriteFormatRaw' type='function'/>
+     <exports symbol='xmlTextWriterWriteFormatString' type='function'/>
+     <exports symbol='xmlTextWriterWritePI' type='function'/>
      <exports symbol='xmlTextWriterWriteRaw' type='function'/>
-     <exports symbol='xmlTextWriterWriteDTDElement' type='function'/>
-     <exports symbol='xmlTextWriterWriteDTD' type='function'/>
-     <exports symbol='xmlTextWriterWriteFormatAttribute' type='function'/>
-     <exports symbol='xmlTextWriterStartDTDEntity' type='function'/>
+     <exports symbol='xmlTextWriterWriteRawLen' type='function'/>
+     <exports symbol='xmlTextWriterWriteString' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatAttribute' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatAttributeNS' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatCDATA' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatComment' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatDTD' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatDTDAttlist' type='function'/>
      <exports symbol='xmlTextWriterWriteVFormatDTDElement' type='function'/>
-     <exports symbol='xmlTextWriterStartDTDElement' type='function'/>
-     <exports symbol='xmlTextWriterWriteFormatElementNS' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatDTDInternalEntity' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatElement' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatElementNS' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatPI' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatRaw' type='function'/>
+     <exports symbol='xmlTextWriterWriteVFormatString' type='function'/>
     </file>
     <file name='xpath'>
      <summary>XML Path Language implementation</summary>
      <description>API for the XML Path Language implementation  XML Path Language implementation XPath is a language for addressing parts of an XML document, designed to be used by both XSLT and XPointer</description>
      <author>Daniel Veillard </author>
-     <exports symbol='xmlXPathNodeSetIsEmpty' type='macro'/>
-     <exports symbol='xmlXPathNodeSetItem' type='macro'/>
      <exports symbol='XML_XPATH_CHECKNS' type='macro'/>
-     <exports symbol='xmlXPathNodeSetGetLength' type='macro'/>
      <exports symbol='XML_XPATH_NOVAR' type='macro'/>
-     <exports symbol='XPATH_NUMBER_ERROR' type='enum'/>
+     <exports symbol='xmlXPathNodeSetGetLength' type='macro'/>
+     <exports symbol='xmlXPathNodeSetIsEmpty' type='macro'/>
+     <exports symbol='xmlXPathNodeSetItem' type='macro'/>
      <exports symbol='XPATH_BOOLEAN' type='enum'/>
-     <exports symbol='XPATH_START_LITERAL_ERROR' type='enum'/>
-     <exports symbol='XPATH_UNCLOSED_ERROR' type='enum'/>
-     <exports symbol='XPATH_INVALID_CHAR_ERROR' type='enum'/>
-     <exports symbol='XPATH_UNDEF_VARIABLE_ERROR' type='enum'/>
+     <exports symbol='XPATH_ENCODING_ERROR' type='enum'/>
      <exports symbol='XPATH_EXPRESSION_OK' type='enum'/>
+     <exports symbol='XPATH_EXPR_ERROR' type='enum'/>
+     <exports symbol='XPATH_FORBID_VARIABLE_ERROR' type='enum'/>
+     <exports symbol='XPATH_INVALID_ARITY' type='enum'/>
+     <exports symbol='XPATH_INVALID_CHAR_ERROR' type='enum'/>
+     <exports symbol='XPATH_INVALID_CTXT' type='enum'/>
+     <exports symbol='XPATH_INVALID_CTXT_POSITION' type='enum'/>
+     <exports symbol='XPATH_INVALID_CTXT_SIZE' type='enum'/>
+     <exports symbol='XPATH_INVALID_OPERAND' type='enum'/>
+     <exports symbol='XPATH_INVALID_PREDICATE_ERROR' type='enum'/>
+     <exports symbol='XPATH_INVALID_TYPE' type='enum'/>
+     <exports symbol='XPATH_LOCATIONSET' type='enum'/>
+     <exports symbol='XPATH_MEMORY_ERROR' type='enum'/>
      <exports symbol='XPATH_NODESET' type='enum'/>
-     <exports symbol='XPATH_OP_LIMIT_EXCEEDED' type='enum'/>
-     <exports symbol='XPATH_VARIABLE_REF_ERROR' type='enum'/>
-     <exports symbol='XPATH_ENCODING_ERROR' type='enum'/>
-     <exports symbol='XPTR_RESOURCE_ERROR' type='enum'/>
      <exports symbol='XPATH_NUMBER' type='enum'/>
+     <exports symbol='XPATH_NUMBER_ERROR' type='enum'/>
+     <exports symbol='XPATH_OP_LIMIT_EXCEEDED' type='enum'/>
      <exports symbol='XPATH_POINT' type='enum'/>
-     <exports symbol='XPATH_USERS' type='enum'/>
-     <exports symbol='XPATH_UNDEF_PREFIX_ERROR' type='enum'/>
-     <exports symbol='XPATH_UNKNOWN_FUNC_ERROR' type='enum'/>
-     <exports symbol='XPATH_INVALID_CTXT_SIZE' type='enum'/>
      <exports symbol='XPATH_RANGE' type='enum'/>
-     <exports symbol='XPTR_SYNTAX_ERROR' type='enum'/>
-     <exports symbol='XPATH_LOCATIONSET' type='enum'/>
-     <exports symbol='XPATH_INVALID_CTXT' type='enum'/>
-     <exports symbol='XPATH_INVALID_ARITY' type='enum'/>
-     <exports symbol='XPTR_SUB_RESOURCE_ERROR' type='enum'/>
-     <exports symbol='XPATH_STRING' type='enum'/>
-     <exports symbol='XPATH_INVALID_PREDICATE_ERROR' type='enum'/>
      <exports symbol='XPATH_RECURSION_LIMIT_EXCEEDED' type='enum'/>
-     <exports symbol='XPATH_XSLT_TREE' type='enum'/>
-     <exports symbol='XPATH_EXPR_ERROR' type='enum'/>
-     <exports symbol='XPATH_FORBID_VARIABLE_ERROR' type='enum'/>
-     <exports symbol='XPATH_INVALID_TYPE' type='enum'/>
-     <exports symbol='XPATH_INVALID_CTXT_POSITION' type='enum'/>
+     <exports symbol='XPATH_STACK_ERROR' type='enum'/>
+     <exports symbol='XPATH_START_LITERAL_ERROR' type='enum'/>
+     <exports symbol='XPATH_STRING' type='enum'/>
+     <exports symbol='XPATH_UNCLOSED_ERROR' type='enum'/>
      <exports symbol='XPATH_UNDEFINED' type='enum'/>
-     <exports symbol='XPATH_MEMORY_ERROR' type='enum'/>
+     <exports symbol='XPATH_UNDEF_PREFIX_ERROR' type='enum'/>
+     <exports symbol='XPATH_UNDEF_VARIABLE_ERROR' type='enum'/>
      <exports symbol='XPATH_UNFINISHED_LITERAL_ERROR' type='enum'/>
-     <exports symbol='XPATH_STACK_ERROR' type='enum'/>
-     <exports symbol='XPATH_INVALID_OPERAND' type='enum'/>
-     <exports symbol='xmlXPathObjectType' type='typedef'/>
-     <exports symbol='xmlXPathVariablePtr' type='typedef'/>
+     <exports symbol='XPATH_UNKNOWN_FUNC_ERROR' type='enum'/>
+     <exports symbol='XPATH_USERS' type='enum'/>
+     <exports symbol='XPATH_VARIABLE_REF_ERROR' type='enum'/>
+     <exports symbol='XPATH_XSLT_TREE' type='enum'/>
+     <exports symbol='XPTR_RESOURCE_ERROR' type='enum'/>
+     <exports symbol='XPTR_SUB_RESOURCE_ERROR' type='enum'/>
+     <exports symbol='XPTR_SYNTAX_ERROR' type='enum'/>
+     <exports symbol='xmlNodeSet' type='typedef'/>
+     <exports symbol='xmlNodeSetPtr' type='typedef'/>
+     <exports symbol='xmlXPathAxis' type='typedef'/>
+     <exports symbol='xmlXPathAxisPtr' type='typedef'/>
+     <exports symbol='xmlXPathCompExpr' type='typedef'/>
+     <exports symbol='xmlXPathCompExprPtr' type='typedef'/>
      <exports symbol='xmlXPathContext' type='typedef'/>
+     <exports symbol='xmlXPathContextPtr' type='typedef'/>
      <exports symbol='xmlXPathError' type='typedef'/>
-     <exports symbol='xmlXPathFunct' type='typedef'/>
-     <exports symbol='xmlXPathTypePtr' type='typedef'/>
-     <exports symbol='xmlXPathType' type='typedef'/>
-     <exports symbol='xmlNodeSetPtr' type='typedef'/>
      <exports symbol='xmlXPathFuncPtr' type='typedef'/>
-     <exports symbol='xmlXPathCompExprPtr' type='typedef'/>
+     <exports symbol='xmlXPathFunct' type='typedef'/>
      <exports symbol='xmlXPathObject' type='typedef'/>
-     <exports symbol='xmlXPathCompExpr' type='typedef'/>
-     <exports symbol='xmlXPathContextPtr' type='typedef'/>
-     <exports symbol='xmlXPathParserContextPtr' type='typedef'/>
-     <exports symbol='xmlNodeSet' type='typedef'/>
-     <exports symbol='xmlXPathVariable' type='typedef'/>
      <exports symbol='xmlXPathObjectPtr' type='typedef'/>
-     <exports symbol='xmlXPathAxis' type='typedef'/>
-     <exports symbol='xmlXPathAxisPtr' type='typedef'/>
+     <exports symbol='xmlXPathObjectType' type='typedef'/>
      <exports symbol='xmlXPathParserContext' type='typedef'/>
+     <exports symbol='xmlXPathParserContextPtr' type='typedef'/>
+     <exports symbol='xmlXPathType' type='typedef'/>
+     <exports symbol='xmlXPathTypePtr' type='typedef'/>
+     <exports symbol='xmlXPathVariable' type='typedef'/>
+     <exports symbol='xmlXPathVariablePtr' type='typedef'/>
+     <exports symbol='_xmlNodeSet' type='struct'/>
+     <exports symbol='_xmlXPathAxis' type='struct'/>
+     <exports symbol='_xmlXPathContext' type='struct'/>
      <exports symbol='_xmlXPathFunct' type='struct'/>
-     <exports symbol='_xmlXPathVariable' type='struct'/>
+     <exports symbol='_xmlXPathObject' type='struct'/>
      <exports symbol='_xmlXPathParserContext' type='struct'/>
      <exports symbol='_xmlXPathType' type='struct'/>
-     <exports symbol='_xmlXPathObject' type='struct'/>
-     <exports symbol='_xmlXPathContext' type='struct'/>
-     <exports symbol='_xmlXPathAxis' type='struct'/>
-     <exports symbol='_xmlNodeSet' type='struct'/>
+     <exports symbol='_xmlXPathVariable' type='struct'/>
      <exports symbol='xmlXPathNAN' type='variable'/>
-     <exports symbol='xmlXPathPINF' type='variable'/>
      <exports symbol='xmlXPathNINF' type='variable'/>
-     <exports symbol='xmlXPathCastNodeSetToBoolean' type='function'/>
-     <exports symbol='xmlXPathFuncLookupFunc' type='function'/>
-     <exports symbol='xmlXPathNodeEval' type='function'/>
-     <exports symbol='xmlXPathCastNodeToString' type='function'/>
-     <exports symbol='xmlXPathIsNaN' type='function'/>
-     <exports symbol='xmlXPathContextSetCache' type='function'/>
-     <exports symbol='xmlXPathConvertString' type='function'/>
-     <exports symbol='xmlXPathCompiledEvalToBoolean' type='function'/>
-     <exports symbol='xmlXPathIsInf' type='function'/>
-     <exports symbol='xmlXPathOrderDocElems' type='function'/>
-     <exports symbol='xmlXPathNodeSetCreate' type='function'/>
+     <exports symbol='xmlXPathPINF' type='variable'/>
+     <exports symbol='xmlXPathAxisFunc' type='function'/>
      <exports symbol='xmlXPathCastBooleanToNumber' type='function'/>
+     <exports symbol='xmlXPathCastBooleanToString' type='function'/>
+     <exports symbol='xmlXPathCastNodeSetToBoolean' type='function'/>
+     <exports symbol='xmlXPathCastNodeSetToNumber' type='function'/>
+     <exports symbol='xmlXPathCastNodeSetToString' type='function'/>
      <exports symbol='xmlXPathCastNodeToNumber' type='function'/>
+     <exports symbol='xmlXPathCastNodeToString' type='function'/>
+     <exports symbol='xmlXPathCastNumberToBoolean' type='function'/>
+     <exports symbol='xmlXPathCastNumberToString' type='function'/>
+     <exports symbol='xmlXPathCastStringToBoolean' type='function'/>
      <exports symbol='xmlXPathCastStringToNumber' type='function'/>
-     <exports symbol='xmlXPathAxisFunc' type='function'/>
+     <exports symbol='xmlXPathCastToBoolean' type='function'/>
      <exports symbol='xmlXPathCastToNumber' type='function'/>
-     <exports symbol='xmlXPathCastStringToBoolean' type='function'/>
-     <exports symbol='xmlXPathCastNumberToString' type='function'/>
-     <exports symbol='xmlXPathVariableLookupFunc' type='function'/>
-     <exports symbol='xmlXPathFreeObject' type='function'/>
-     <exports symbol='xmlXPathEvalPredicate' type='function'/>
-     <exports symbol='xmlXPathFreeContext' type='function'/>
-     <exports symbol='xmlXPathObjectCopy' type='function'/>
-     <exports symbol='xmlXPathFreeNodeSetList' type='function'/>
-     <exports symbol='xmlXPathEval' type='function'/>
-     <exports symbol='xmlXPathCastNodeSetToString' type='function'/>
+     <exports symbol='xmlXPathCastToString' type='function'/>
+     <exports symbol='xmlXPathCmpNodes' type='function'/>
+     <exports symbol='xmlXPathCompile' type='function'/>
      <exports symbol='xmlXPathCompiledEval' type='function'/>
-     <exports symbol='xmlXPathEvalExpression' type='function'/>
-     <exports symbol='xmlXPathInit' type='function'/>
+     <exports symbol='xmlXPathCompiledEvalToBoolean' type='function'/>
+     <exports symbol='xmlXPathContextSetCache' type='function'/>
      <exports symbol='xmlXPathConvertBoolean' type='function'/>
      <exports symbol='xmlXPathConvertFunc' type='function'/>
-     <exports symbol='xmlXPathFunction' type='function'/>
-     <exports symbol='xmlXPathCmpNodes' type='function'/>
-     <exports symbol='xmlXPathCastToString' type='function'/>
+     <exports symbol='xmlXPathConvertNumber' type='function'/>
+     <exports symbol='xmlXPathConvertString' type='function'/>
      <exports symbol='xmlXPathCtxtCompile' type='function'/>
+     <exports symbol='xmlXPathEval' type='function'/>
+     <exports symbol='xmlXPathEvalExpression' type='function'/>
      <exports symbol='xmlXPathEvalFunc' type='function'/>
-     <exports symbol='xmlXPathCastBooleanToString' type='function'/>
-     <exports symbol='xmlXPathSetContextNode' type='function'/>
-     <exports symbol='xmlXPathCastNumberToBoolean' type='function'/>
-     <exports symbol='xmlXPathFreeNodeSet' type='function'/>
+     <exports symbol='xmlXPathEvalPredicate' type='function'/>
      <exports symbol='xmlXPathFreeCompExpr' type='function'/>
+     <exports symbol='xmlXPathFreeContext' type='function'/>
+     <exports symbol='xmlXPathFreeNodeSet' type='function'/>
+     <exports symbol='xmlXPathFreeNodeSetList' type='function'/>
+     <exports symbol='xmlXPathFreeObject' type='function'/>
+     <exports symbol='xmlXPathFuncLookupFunc' type='function'/>
+     <exports symbol='xmlXPathFunction' type='function'/>
+     <exports symbol='xmlXPathInit' type='function'/>
+     <exports symbol='xmlXPathIsInf' type='function'/>
+     <exports symbol='xmlXPathIsNaN' type='function'/>
      <exports symbol='xmlXPathNewContext' type='function'/>
-     <exports symbol='xmlXPathConvertNumber' type='function'/>
-     <exports symbol='xmlXPathCompile' type='function'/>
-     <exports symbol='xmlXPathCastNodeSetToNumber' type='function'/>
-     <exports symbol='xmlXPathCastToBoolean' type='function'/>
+     <exports symbol='xmlXPathNodeEval' type='function'/>
+     <exports symbol='xmlXPathNodeSetCreate' type='function'/>
+     <exports symbol='xmlXPathObjectCopy' type='function'/>
+     <exports symbol='xmlXPathOrderDocElems' type='function'/>
+     <exports symbol='xmlXPathSetContextNode' type='function'/>
+     <exports symbol='xmlXPathVariableLookupFunc' type='function'/>
     </file>
     <file name='xpathInternals'>
      <summary>internal interfaces for XML Path Language implementation</summary>
      <description>internal interfaces for XML Path Language implementation used to build new modules on top of XPath like XPointer and XSLT </description>
      <author>Daniel Veillard </author>
-     <exports symbol='xmlXPathStackIsExternal' type='macro'/>
-     <exports symbol='xmlXPathReturnEmptyString' type='macro'/>
-     <exports symbol='XP_ERROR0' type='macro'/>
-     <exports symbol='xmlXPathSetTypeError' type='macro'/>
-     <exports symbol='xmlXPathReturnEmptyNodeSet' type='macro'/>
-     <exports symbol='xmlXPathReturnTrue' type='macro'/>
-     <exports symbol='xmlXPathReturnBoolean' type='macro'/>
-     <exports symbol='xmlXPathGetContextNode' type='macro'/>
+     <exports symbol='CAST_TO_BOOLEAN' type='macro'/>
      <exports symbol='CAST_TO_NUMBER' type='macro'/>
-     <exports symbol='CHECK_ARITY' type='macro'/>
-     <exports symbol='CHECK_TYPE0' type='macro'/>
      <exports symbol='CAST_TO_STRING' type='macro'/>
-     <exports symbol='xmlXPathReturnExternal' type='macro'/>
-     <exports symbol='xmlXPathStackIsNodeSet' type='macro'/>
-     <exports symbol='xmlXPathCheckError' type='macro'/>
-     <exports symbol='xmlXPathSetError' type='macro'/>
+     <exports symbol='CHECK_ARITY' type='macro'/>
      <exports symbol='CHECK_ERROR' type='macro'/>
-     <exports symbol='xmlXPathReturnString' type='macro'/>
-     <exports symbol='CAST_TO_BOOLEAN' type='macro'/>
-     <exports symbol='xmlXPathSetArityError' type='macro'/>
-     <exports symbol='CHECK_TYPE' type='macro'/>
-     <exports symbol='xmlXPathReturnFalse' type='macro'/>
-     <exports symbol='xmlXPathReturnNumber' type='macro'/>
      <exports symbol='CHECK_ERROR0' type='macro'/>
-     <exports symbol='xmlXPathGetDocument' type='macro'/>
-     <exports symbol='xmlXPathGetError' type='macro'/>
+     <exports symbol='CHECK_TYPE' type='macro'/>
+     <exports symbol='CHECK_TYPE0' type='macro'/>
      <exports symbol='XP_ERROR' type='macro'/>
+     <exports symbol='XP_ERROR0' type='macro'/>
+     <exports symbol='xmlXPathCheckError' type='macro'/>
      <exports symbol='xmlXPathEmptyNodeSet' type='macro'/>
+     <exports symbol='xmlXPathGetContextNode' type='macro'/>
+     <exports symbol='xmlXPathGetDocument' type='macro'/>
+     <exports symbol='xmlXPathGetError' type='macro'/>
+     <exports symbol='xmlXPathReturnBoolean' type='macro'/>
+     <exports symbol='xmlXPathReturnEmptyNodeSet' type='macro'/>
+     <exports symbol='xmlXPathReturnEmptyString' type='macro'/>
+     <exports symbol='xmlXPathReturnExternal' type='macro'/>
+     <exports symbol='xmlXPathReturnFalse' type='macro'/>
      <exports symbol='xmlXPathReturnNodeSet' type='macro'/>
-     <exports symbol='xmlXPathNodeSetMerge' type='function'/>
-     <exports symbol='xmlXPathNumberFunction' type='function'/>
-     <exports symbol='xmlXPathNsLookup' type='function'/>
-     <exports symbol='xmlXPathNewNodeSet' type='function'/>
-     <exports symbol='xmlXPathNextAncestorOrSelf' type='function'/>
-     <exports symbol='xmlXPathNodeSetRemove' type='function'/>
-     <exports symbol='xmlXPathNewNodeSetList' type='function'/>
-     <exports symbol='xmlXPathPopBoolean' type='function'/>
-     <exports symbol='xmlXPathNewString' type='function'/>
-     <exports symbol='xmlXPathNodeLeadingSorted' type='function'/>
-     <exports symbol='xmlXPathNextChild' type='function'/>
-     <exports symbol='xmlXPathNextFollowingSibling' type='function'/>
-     <exports symbol='xmlXPathPopString' type='function'/>
-     <exports symbol='xmlXPathNamespaceURIFunction' type='function'/>
-     <exports symbol='xmlXPathCompareValues' type='function'/>
-     <exports symbol='xmlXPathConcatFunction' type='function'/>
-     <exports symbol='xmlXPathNodeSetContains' type='function'/>
-     <exports symbol='xmlXPatherror' type='function'/>
-     <exports symbol='xmlXPathNextAncestor' type='function'/>
-     <exports symbol='xmlXPathBooleanFunction' type='function'/>
-     <exports symbol='xmlXPathRoot' type='function'/>
-     <exports symbol='xmlXPathRegisteredNsCleanup' type='function'/>
-     <exports symbol='xmlXPathIsNodeType' type='function'/>
-     <exports symbol='xmlXPathNextFollowing' type='function'/>
-     <exports symbol='xmlXPathAddValues' type='function'/>
-     <exports symbol='xmlXPathRegisterVariable' type='function'/>
+     <exports symbol='xmlXPathReturnNumber' type='macro'/>
+     <exports symbol='xmlXPathReturnString' type='macro'/>
+     <exports symbol='xmlXPathReturnTrue' type='macro'/>
+     <exports symbol='xmlXPathSetArityError' type='macro'/>
+     <exports symbol='xmlXPathSetError' type='macro'/>
+     <exports symbol='xmlXPathSetTypeError' type='macro'/>
+     <exports symbol='xmlXPathStackIsExternal' type='macro'/>
+     <exports symbol='xmlXPathStackIsNodeSet' type='macro'/>
      <exports symbol='valuePop' type='function'/>
+     <exports symbol='valuePush' type='function'/>
+     <exports symbol='xmlXPathAddValues' type='function'/>
+     <exports symbol='xmlXPathBooleanFunction' type='function'/>
      <exports symbol='xmlXPathCeilingFunction' type='function'/>
-     <exports symbol='xmlXPathIntersection' type='function'/>
+     <exports symbol='xmlXPathCompareValues' type='function'/>
+     <exports symbol='xmlXPathConcatFunction' type='function'/>
      <exports symbol='xmlXPathContainsFunction' type='function'/>
-     <exports symbol='xmlXPathNodeSetSort' type='function'/>
-     <exports symbol='xmlXPathStartsWithFunction' type='function'/>
-     <exports symbol='xmlXPathNodeLeading' type='function'/>
-     <exports symbol='xmlXPathSumFunction' type='function'/>
-     <exports symbol='xmlXPathNotEqualValues' type='function'/>
-     <exports symbol='xmlXPathEvaluatePredicateResult' type='function'/>
+     <exports symbol='xmlXPathCountFunction' type='function'/>
+     <exports symbol='xmlXPathDebugDumpCompExpr' type='function'/>
+     <exports symbol='xmlXPathDebugDumpObject' type='function'/>
+     <exports symbol='xmlXPathDifference' type='function'/>
+     <exports symbol='xmlXPathDistinct' type='function'/>
+     <exports symbol='xmlXPathDistinctSorted' type='function'/>
+     <exports symbol='xmlXPathDivValues' type='function'/>
+     <exports symbol='xmlXPathEqualValues' type='function'/>
      <exports symbol='xmlXPathErr' type='function'/>
-     <exports symbol='xmlXPathNextPreceding' type='function'/>
-     <exports symbol='xmlXPathFunctionLookupNS' type='function'/>
-     <exports symbol='xmlXPathRegisteredFuncsCleanup' type='function'/>
-     <exports symbol='xmlXPathRegisterAllFunctions' type='function'/>
+     <exports symbol='xmlXPathEvalExpr' type='function'/>
+     <exports symbol='xmlXPathEvaluatePredicateResult' type='function'/>
+     <exports symbol='xmlXPathFalseFunction' type='function'/>
+     <exports symbol='xmlXPathFloorFunction' type='function'/>
+     <exports symbol='xmlXPathFreeParserContext' type='function'/>
      <exports symbol='xmlXPathFunctionLookup' type='function'/>
-     <exports symbol='xmlXPathPositionFunction' type='function'/>
-     <exports symbol='xmlXPathSubstringBeforeFunction' type='function'/>
-     <exports symbol='xmlXPathRegisteredVariablesCleanup' type='function'/>
-     <exports symbol='xmlXPathNewFloat' type='function'/>
-     <exports symbol='xmlXPathRegisterNs' type='function'/>
-     <exports symbol='xmlXPathNextParent' type='function'/>
-     <exports symbol='xmlXPathNodeSetFreeNs' type='function'/>
+     <exports symbol='xmlXPathFunctionLookupNS' type='function'/>
      <exports symbol='xmlXPathHasSameNodes' type='function'/>
-     <exports symbol='xmlXPathDistinctSorted' type='function'/>
-     <exports symbol='valuePush' type='function'/>
-     <exports symbol='xmlXPathSubstringFunction' type='function'/>
-     <exports symbol='xmlXPathStringFunction' type='function'/>
-     <exports symbol='xmlXPathFloorFunction' type='function'/>
      <exports symbol='xmlXPathIdFunction' type='function'/>
-     <exports symbol='xmlXPathLastFunction' type='function'/>
-     <exports symbol='xmlXPathStringLengthFunction' type='function'/>
-     <exports symbol='xmlXPathNextSelf' type='function'/>
-     <exports symbol='xmlXPathDebugDumpCompExpr' type='function'/>
-     <exports symbol='xmlXPathFalseFunction' type='function'/>
-     <exports symbol='xmlXPathValueFlipSign' type='function'/>
-     <exports symbol='xmlXPathTranslateFunction' type='function'/>
-     <exports symbol='xmlXPathRegisterFuncLookup' type='function'/>
-     <exports symbol='xmlXPathPopNumber' type='function'/>
-     <exports symbol='xmlXPathRoundFunction' type='function'/>
-     <exports symbol='xmlXPathPopNodeSet' type='function'/>
-     <exports symbol='xmlXPathCountFunction' type='function'/>
-     <exports symbol='xmlXPathParseNCName' type='function'/>
-     <exports symbol='xmlXPathTrueFunction' type='function'/>
-     <exports symbol='xmlXPathNewBoolean' type='function'/>
-     <exports symbol='xmlXPathSubValues' type='function'/>
-     <exports symbol='xmlXPathEqualValues' type='function'/>
-     <exports symbol='xmlXPathTrailingSorted' type='function'/>
-     <exports symbol='xmlXPathMultValues' type='function'/>
-     <exports symbol='xmlXPathModValues' type='function'/>
-     <exports symbol='xmlXPathNewParserContext' type='function'/>
-     <exports symbol='xmlXPathWrapNodeSet' type='function'/>
-     <exports symbol='xmlXPathWrapString' type='function'/>
+     <exports symbol='xmlXPathIntersection' type='function'/>
+     <exports symbol='xmlXPathIsNodeType' type='function'/>
      <exports symbol='xmlXPathLangFunction' type='function'/>
-     <exports symbol='xmlXPathRegisterFuncNS' type='function'/>
-     <exports symbol='xmlXPathNodeSetAddNs' type='function'/>
-     <exports symbol='xmlXPathLocalNameFunction' type='function'/>
-     <exports symbol='xmlXPathDifference' type='function'/>
+     <exports symbol='xmlXPathLastFunction' type='function'/>
+     <exports symbol='xmlXPathLeading' type='function'/>
      <exports symbol='xmlXPathLeadingSorted' type='function'/>
-     <exports symbol='xmlXPathNextPrecedingSibling' type='function'/>
-     <exports symbol='xmlXPathPopExternal' type='function'/>
-     <exports symbol='xmlXPathNormalizeFunction' type='function'/>
-     <exports symbol='xmlXPathRegisterVariableLookup' type='function'/>
-     <exports symbol='xmlXPathNodeSetDel' type='function'/>
-     <exports symbol='xmlXPathNodeTrailingSorted' type='function'/>
+     <exports symbol='xmlXPathLocalNameFunction' type='function'/>
+     <exports symbol='xmlXPathModValues' type='function'/>
+     <exports symbol='xmlXPathMultValues' type='function'/>
+     <exports symbol='xmlXPathNamespaceURIFunction' type='function'/>
+     <exports symbol='xmlXPathNewBoolean' type='function'/>
      <exports symbol='xmlXPathNewCString' type='function'/>
-     <exports symbol='xmlXPathRegisterFunc' type='function'/>
-     <exports symbol='xmlXPathSubstringAfterFunction' type='function'/>
+     <exports symbol='xmlXPathNewFloat' type='function'/>
+     <exports symbol='xmlXPathNewNodeSet' type='function'/>
+     <exports symbol='xmlXPathNewNodeSetList' type='function'/>
+     <exports symbol='xmlXPathNewParserContext' type='function'/>
+     <exports symbol='xmlXPathNewString' type='function'/>
+     <exports symbol='xmlXPathNewValueTree' type='function'/>
+     <exports symbol='xmlXPathNextAncestor' type='function'/>
+     <exports symbol='xmlXPathNextAncestorOrSelf' type='function'/>
+     <exports symbol='xmlXPathNextAttribute' type='function'/>
+     <exports symbol='xmlXPathNextChild' type='function'/>
      <exports symbol='xmlXPathNextDescendant' type='function'/>
+     <exports symbol='xmlXPathNextDescendantOrSelf' type='function'/>
+     <exports symbol='xmlXPathNextFollowing' type='function'/>
+     <exports symbol='xmlXPathNextFollowingSibling' type='function'/>
      <exports symbol='xmlXPathNextNamespace' type='function'/>
-     <exports symbol='xmlXPathWrapCString' type='function'/>
-     <exports symbol='xmlXPathFreeParserContext' type='function'/>
-     <exports symbol='xmlXPathNodeTrailing' type='function'/>
+     <exports symbol='xmlXPathNextParent' type='function'/>
+     <exports symbol='xmlXPathNextPreceding' type='function'/>
+     <exports symbol='xmlXPathNextPrecedingSibling' type='function'/>
+     <exports symbol='xmlXPathNextSelf' type='function'/>
+     <exports symbol='xmlXPathNodeLeading' type='function'/>
+     <exports symbol='xmlXPathNodeLeadingSorted' type='function'/>
      <exports symbol='xmlXPathNodeSetAdd' type='function'/>
+     <exports symbol='xmlXPathNodeSetAddNs' type='function'/>
      <exports symbol='xmlXPathNodeSetAddUnique' type='function'/>
-     <exports symbol='xmlXPathNewValueTree' type='function'/>
-     <exports symbol='xmlXPathDistinct' type='function'/>
-     <exports symbol='xmlXPathVariableLookup' type='function'/>
+     <exports symbol='xmlXPathNodeSetContains' type='function'/>
+     <exports symbol='xmlXPathNodeSetDel' type='function'/>
+     <exports symbol='xmlXPathNodeSetFreeNs' type='function'/>
+     <exports symbol='xmlXPathNodeSetMerge' type='function'/>
+     <exports symbol='xmlXPathNodeSetRemove' type='function'/>
+     <exports symbol='xmlXPathNodeSetSort' type='function'/>
+     <exports symbol='xmlXPathNodeTrailing' type='function'/>
+     <exports symbol='xmlXPathNodeTrailingSorted' type='function'/>
+     <exports symbol='xmlXPathNormalizeFunction' type='function'/>
+     <exports symbol='xmlXPathNotEqualValues' type='function'/>
      <exports symbol='xmlXPathNotFunction' type='function'/>
-     <exports symbol='xmlXPathStringEvalNumber' type='function'/>
-     <exports symbol='xmlXPathNextDescendantOrSelf' type='function'/>
-     <exports symbol='xmlXPathWrapExternal' type='function'/>
-     <exports symbol='xmlXPathNextAttribute' type='function'/>
-     <exports symbol='xmlXPathDivValues' type='function'/>
-     <exports symbol='xmlXPathVariableLookupNS' type='function'/>
+     <exports symbol='xmlXPathNsLookup' type='function'/>
+     <exports symbol='xmlXPathNumberFunction' type='function'/>
+     <exports symbol='xmlXPathParseNCName' type='function'/>
+     <exports symbol='xmlXPathParseName' type='function'/>
+     <exports symbol='xmlXPathPopBoolean' type='function'/>
+     <exports symbol='xmlXPathPopExternal' type='function'/>
+     <exports symbol='xmlXPathPopNodeSet' type='function'/>
+     <exports symbol='xmlXPathPopNumber' type='function'/>
+     <exports symbol='xmlXPathPopString' type='function'/>
+     <exports symbol='xmlXPathPositionFunction' type='function'/>
+     <exports symbol='xmlXPathRegisterAllFunctions' type='function'/>
+     <exports symbol='xmlXPathRegisterFunc' type='function'/>
+     <exports symbol='xmlXPathRegisterFuncLookup' type='function'/>
+     <exports symbol='xmlXPathRegisterFuncNS' type='function'/>
+     <exports symbol='xmlXPathRegisterNs' type='function'/>
+     <exports symbol='xmlXPathRegisterVariable' type='function'/>
+     <exports symbol='xmlXPathRegisterVariableLookup' type='function'/>
      <exports symbol='xmlXPathRegisterVariableNS' type='function'/>
+     <exports symbol='xmlXPathRegisteredFuncsCleanup' type='function'/>
+     <exports symbol='xmlXPathRegisteredNsCleanup' type='function'/>
+     <exports symbol='xmlXPathRegisteredVariablesCleanup' type='function'/>
+     <exports symbol='xmlXPathRoot' type='function'/>
+     <exports symbol='xmlXPathRoundFunction' type='function'/>
+     <exports symbol='xmlXPathStartsWithFunction' type='function'/>
+     <exports symbol='xmlXPathStringEvalNumber' type='function'/>
+     <exports symbol='xmlXPathStringFunction' type='function'/>
+     <exports symbol='xmlXPathStringLengthFunction' type='function'/>
+     <exports symbol='xmlXPathSubValues' type='function'/>
+     <exports symbol='xmlXPathSubstringAfterFunction' type='function'/>
+     <exports symbol='xmlXPathSubstringBeforeFunction' type='function'/>
+     <exports symbol='xmlXPathSubstringFunction' type='function'/>
+     <exports symbol='xmlXPathSumFunction' type='function'/>
      <exports symbol='xmlXPathTrailing' type='function'/>
-     <exports symbol='xmlXPathEvalExpr' type='function'/>
-     <exports symbol='xmlXPathDebugDumpObject' type='function'/>
-     <exports symbol='xmlXPathLeading' type='function'/>
-     <exports symbol='xmlXPathParseName' type='function'/>
+     <exports symbol='xmlXPathTrailingSorted' type='function'/>
+     <exports symbol='xmlXPathTranslateFunction' type='function'/>
+     <exports symbol='xmlXPathTrueFunction' type='function'/>
+     <exports symbol='xmlXPathValueFlipSign' type='function'/>
+     <exports symbol='xmlXPathVariableLookup' type='function'/>
+     <exports symbol='xmlXPathVariableLookupNS' type='function'/>
+     <exports symbol='xmlXPathWrapCString' type='function'/>
+     <exports symbol='xmlXPathWrapExternal' type='function'/>
+     <exports symbol='xmlXPathWrapNodeSet' type='function'/>
+     <exports symbol='xmlXPathWrapString' type='function'/>
+     <exports symbol='xmlXPatherror' type='function'/>
     </file>
     <file name='xpointer'>
      <summary>API to handle XML Pointers</summary>
      <exports symbol='xmlLocationSet' type='typedef'/>
      <exports symbol='xmlLocationSetPtr' type='typedef'/>
      <exports symbol='_xmlLocationSet' type='struct'/>
-     <exports symbol='xmlXPtrNewRange' type='function'/>
-     <exports symbol='xmlXPtrFreeLocationSet' type='function'/>
-     <exports symbol='xmlXPtrWrapLocationSet' type='function'/>
      <exports symbol='xmlXPtrBuildNodeList' type='function'/>
      <exports symbol='xmlXPtrEval' type='function'/>
-     <exports symbol='xmlXPtrNewRangeNodes' type='function'/>
+     <exports symbol='xmlXPtrEvalRangePredicate' type='function'/>
+     <exports symbol='xmlXPtrFreeLocationSet' type='function'/>
      <exports symbol='xmlXPtrLocationSetAdd' type='function'/>
-     <exports symbol='xmlXPtrRangeToFunction' type='function'/>
-     <exports symbol='xmlXPtrNewCollapsedRange' type='function'/>
-     <exports symbol='xmlXPtrNewRangePoints' type='function'/>
-     <exports symbol='xmlXPtrNewLocationSetNodeSet' type='function'/>
-     <exports symbol='xmlXPtrNewRangePointNode' type='function'/>
      <exports symbol='xmlXPtrLocationSetCreate' type='function'/>
-     <exports symbol='xmlXPtrNewRangeNodeObject' type='function'/>
-     <exports symbol='xmlXPtrNewContext' type='function'/>
-     <exports symbol='xmlXPtrLocationSetRemove' type='function'/>
-     <exports symbol='xmlXPtrNewRangeNodePoint' type='function'/>
      <exports symbol='xmlXPtrLocationSetDel' type='function'/>
      <exports symbol='xmlXPtrLocationSetMerge' type='function'/>
-     <exports symbol='xmlXPtrEvalRangePredicate' type='function'/>
+     <exports symbol='xmlXPtrLocationSetRemove' type='function'/>
+     <exports symbol='xmlXPtrNewCollapsedRange' type='function'/>
+     <exports symbol='xmlXPtrNewContext' type='function'/>
+     <exports symbol='xmlXPtrNewLocationSetNodeSet' type='function'/>
      <exports symbol='xmlXPtrNewLocationSetNodes' type='function'/>
+     <exports symbol='xmlXPtrNewRange' type='function'/>
+     <exports symbol='xmlXPtrNewRangeNodeObject' type='function'/>
+     <exports symbol='xmlXPtrNewRangeNodePoint' type='function'/>
+     <exports symbol='xmlXPtrNewRangeNodes' type='function'/>
+     <exports symbol='xmlXPtrNewRangePointNode' type='function'/>
+     <exports symbol='xmlXPtrNewRangePoints' type='function'/>
+     <exports symbol='xmlXPtrRangeToFunction' type='function'/>
+     <exports symbol='xmlXPtrWrapLocationSet' type='function'/>
     </file>
   </files>
   <symbols>
diff --git a/doc/libxml2-refs.xml b/doc/libxml2-refs.xml
deleted file mode 100644 (file)
index 05fd57e..0000000
+++ /dev/null
@@ -1,31914 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<apirefs name='libxml2'>
-  <references>
-    <reference name='ATTRIBUTE_UNUSED' href='html/libxml-xmlversion.html#ATTRIBUTE_UNUSED'/>
-    <reference name='BAD_CAST' href='html/libxml-xmlstring.html#BAD_CAST'/>
-    <reference name='BASE_BUFFER_SIZE' href='html/libxml-tree.html#BASE_BUFFER_SIZE'/>
-    <reference name='CAST_TO_BOOLEAN' href='html/libxml-xpathInternals.html#CAST_TO_BOOLEAN'/>
-    <reference name='CAST_TO_NUMBER' href='html/libxml-xpathInternals.html#CAST_TO_NUMBER'/>
-    <reference name='CAST_TO_STRING' href='html/libxml-xpathInternals.html#CAST_TO_STRING'/>
-    <reference name='CHECK_ARITY' href='html/libxml-xpathInternals.html#CHECK_ARITY'/>
-    <reference name='CHECK_ERROR' href='html/libxml-xpathInternals.html#CHECK_ERROR'/>
-    <reference name='CHECK_ERROR0' href='html/libxml-xpathInternals.html#CHECK_ERROR0'/>
-    <reference name='CHECK_TYPE' href='html/libxml-xpathInternals.html#CHECK_TYPE'/>
-    <reference name='CHECK_TYPE0' href='html/libxml-xpathInternals.html#CHECK_TYPE0'/>
-    <reference name='DEBUG_MEMORY' href='html/libxml-xmlmemory.html#DEBUG_MEMORY'/>
-    <reference name='DEBUG_MEMORY_LOCATION' href='html/libxml-xmlversion.html#DEBUG_MEMORY_LOCATION'/>
-    <reference name='HTML_COMMENT_NODE' href='html/libxml-HTMLtree.html#HTML_COMMENT_NODE'/>
-    <reference name='HTML_DEPRECATED' href='html/libxml-HTMLparser.html#HTML_DEPRECATED'/>
-    <reference name='HTML_ENTITY_REF_NODE' href='html/libxml-HTMLtree.html#HTML_ENTITY_REF_NODE'/>
-    <reference name='HTML_INVALID' href='html/libxml-HTMLparser.html#HTML_INVALID'/>
-    <reference name='HTML_NA' href='html/libxml-HTMLparser.html#HTML_NA'/>
-    <reference name='HTML_PARSE_COMPACT' href='html/libxml-HTMLparser.html#HTML_PARSE_COMPACT'/>
-    <reference name='HTML_PARSE_IGNORE_ENC' href='html/libxml-HTMLparser.html#HTML_PARSE_IGNORE_ENC'/>
-    <reference name='HTML_PARSE_NOBLANKS' href='html/libxml-HTMLparser.html#HTML_PARSE_NOBLANKS'/>
-    <reference name='HTML_PARSE_NODEFDTD' href='html/libxml-HTMLparser.html#HTML_PARSE_NODEFDTD'/>
-    <reference name='HTML_PARSE_NOERROR' href='html/libxml-HTMLparser.html#HTML_PARSE_NOERROR'/>
-    <reference name='HTML_PARSE_NOIMPLIED' href='html/libxml-HTMLparser.html#HTML_PARSE_NOIMPLIED'/>
-    <reference name='HTML_PARSE_NONET' href='html/libxml-HTMLparser.html#HTML_PARSE_NONET'/>
-    <reference name='HTML_PARSE_NOWARNING' href='html/libxml-HTMLparser.html#HTML_PARSE_NOWARNING'/>
-    <reference name='HTML_PARSE_PEDANTIC' href='html/libxml-HTMLparser.html#HTML_PARSE_PEDANTIC'/>
-    <reference name='HTML_PARSE_RECOVER' href='html/libxml-HTMLparser.html#HTML_PARSE_RECOVER'/>
-    <reference name='HTML_PI_NODE' href='html/libxml-HTMLtree.html#HTML_PI_NODE'/>
-    <reference name='HTML_PRESERVE_NODE' href='html/libxml-HTMLtree.html#HTML_PRESERVE_NODE'/>
-    <reference name='HTML_REQUIRED' href='html/libxml-HTMLparser.html#HTML_REQUIRED'/>
-    <reference name='HTML_TEXT_NODE' href='html/libxml-HTMLtree.html#HTML_TEXT_NODE'/>
-    <reference name='HTML_VALID' href='html/libxml-HTMLparser.html#HTML_VALID'/>
-    <reference name='INPUT_CHUNK' href='html/libxml-parserInternals.html#INPUT_CHUNK'/>
-    <reference name='INVALID_SOCKET' href='html/libxml-nanoftp.html#INVALID_SOCKET'/>
-    <reference name='IS_ASCII_DIGIT' href='html/libxml-parserInternals.html#IS_ASCII_DIGIT'/>
-    <reference name='IS_ASCII_LETTER' href='html/libxml-parserInternals.html#IS_ASCII_LETTER'/>
-    <reference name='IS_BASECHAR' href='html/libxml-parserInternals.html#IS_BASECHAR'/>
-    <reference name='IS_BLANK' href='html/libxml-parserInternals.html#IS_BLANK'/>
-    <reference name='IS_BLANK_CH' href='html/libxml-parserInternals.html#IS_BLANK_CH'/>
-    <reference name='IS_BYTE_CHAR' href='html/libxml-parserInternals.html#IS_BYTE_CHAR'/>
-    <reference name='IS_CHAR' href='html/libxml-parserInternals.html#IS_CHAR'/>
-    <reference name='IS_CHAR_CH' href='html/libxml-parserInternals.html#IS_CHAR_CH'/>
-    <reference name='IS_COMBINING' href='html/libxml-parserInternals.html#IS_COMBINING'/>
-    <reference name='IS_COMBINING_CH' href='html/libxml-parserInternals.html#IS_COMBINING_CH'/>
-    <reference name='IS_DIGIT' href='html/libxml-parserInternals.html#IS_DIGIT'/>
-    <reference name='IS_DIGIT_CH' href='html/libxml-parserInternals.html#IS_DIGIT_CH'/>
-    <reference name='IS_EXTENDER' href='html/libxml-parserInternals.html#IS_EXTENDER'/>
-    <reference name='IS_EXTENDER_CH' href='html/libxml-parserInternals.html#IS_EXTENDER_CH'/>
-    <reference name='IS_IDEOGRAPHIC' href='html/libxml-parserInternals.html#IS_IDEOGRAPHIC'/>
-    <reference name='IS_LETTER' href='html/libxml-parserInternals.html#IS_LETTER'/>
-    <reference name='IS_LETTER_CH' href='html/libxml-parserInternals.html#IS_LETTER_CH'/>
-    <reference name='IS_PUBIDCHAR' href='html/libxml-parserInternals.html#IS_PUBIDCHAR'/>
-    <reference name='IS_PUBIDCHAR_CH' href='html/libxml-parserInternals.html#IS_PUBIDCHAR_CH'/>
-    <reference name='LIBXML2_NEW_BUFFER' href='html/libxml-tree.html#LIBXML2_NEW_BUFFER'/>
-    <reference name='LIBXML_ATTR_ALLOC_SIZE' href='html/libxml-xmlversion.html#LIBXML_ATTR_ALLOC_SIZE'/>
-    <reference name='LIBXML_ATTR_FORMAT' href='html/libxml-xmlversion.html#LIBXML_ATTR_FORMAT'/>
-    <reference name='LIBXML_AUTOMATA_ENABLED' href='html/libxml-xmlversion.html#LIBXML_AUTOMATA_ENABLED'/>
-    <reference name='LIBXML_C14N_ENABLED' href='html/libxml-xmlversion.html#LIBXML_C14N_ENABLED'/>
-    <reference name='LIBXML_CATALOG_ENABLED' href='html/libxml-xmlversion.html#LIBXML_CATALOG_ENABLED'/>
-    <reference name='LIBXML_DEBUG_ENABLED' href='html/libxml-xmlversion.html#LIBXML_DEBUG_ENABLED'/>
-    <reference name='LIBXML_DEBUG_RUNTIME' href='html/libxml-xmlversion.html#LIBXML_DEBUG_RUNTIME'/>
-    <reference name='LIBXML_DLL_IMPORT' href='html/libxml-xmlexports.html#LIBXML_DLL_IMPORT'/>
-    <reference name='LIBXML_DOTTED_VERSION' href='html/libxml-xmlversion.html#LIBXML_DOTTED_VERSION'/>
-    <reference name='LIBXML_EXPR_ENABLED' href='html/libxml-xmlversion.html#LIBXML_EXPR_ENABLED'/>
-    <reference name='LIBXML_FTP_ENABLED' href='html/libxml-xmlversion.html#LIBXML_FTP_ENABLED'/>
-    <reference name='LIBXML_HTML_ENABLED' href='html/libxml-xmlversion.html#LIBXML_HTML_ENABLED'/>
-    <reference name='LIBXML_HTTP_ENABLED' href='html/libxml-xmlversion.html#LIBXML_HTTP_ENABLED'/>
-    <reference name='LIBXML_ICONV_ENABLED' href='html/libxml-xmlversion.html#LIBXML_ICONV_ENABLED'/>
-    <reference name='LIBXML_ICU_ENABLED' href='html/libxml-xmlversion.html#LIBXML_ICU_ENABLED'/>
-    <reference name='LIBXML_ISO8859X_ENABLED' href='html/libxml-xmlversion.html#LIBXML_ISO8859X_ENABLED'/>
-    <reference name='LIBXML_LEGACY_ENABLED' href='html/libxml-xmlversion.html#LIBXML_LEGACY_ENABLED'/>
-    <reference name='LIBXML_LZMA_ENABLED' href='html/libxml-xmlversion.html#LIBXML_LZMA_ENABLED'/>
-    <reference name='LIBXML_MODULES_ENABLED' href='html/libxml-xmlversion.html#LIBXML_MODULES_ENABLED'/>
-    <reference name='LIBXML_MODULE_EXTENSION' href='html/libxml-xmlversion.html#LIBXML_MODULE_EXTENSION'/>
-    <reference name='LIBXML_OUTPUT_ENABLED' href='html/libxml-xmlversion.html#LIBXML_OUTPUT_ENABLED'/>
-    <reference name='LIBXML_PATTERN_ENABLED' href='html/libxml-xmlversion.html#LIBXML_PATTERN_ENABLED'/>
-    <reference name='LIBXML_PUSH_ENABLED' href='html/libxml-xmlversion.html#LIBXML_PUSH_ENABLED'/>
-    <reference name='LIBXML_READER_ENABLED' href='html/libxml-xmlversion.html#LIBXML_READER_ENABLED'/>
-    <reference name='LIBXML_REGEXP_ENABLED' href='html/libxml-xmlversion.html#LIBXML_REGEXP_ENABLED'/>
-    <reference name='LIBXML_SAX1_ENABLED' href='html/libxml-xmlversion.html#LIBXML_SAX1_ENABLED'/>
-    <reference name='LIBXML_SCHEMAS_ENABLED' href='html/libxml-xmlversion.html#LIBXML_SCHEMAS_ENABLED'/>
-    <reference name='LIBXML_SCHEMATRON_ENABLED' href='html/libxml-xmlversion.html#LIBXML_SCHEMATRON_ENABLED'/>
-    <reference name='LIBXML_TEST_VERSION' href='html/libxml-xmlversion.html#LIBXML_TEST_VERSION'/>
-    <reference name='LIBXML_THREAD_ALLOC_ENABLED' href='html/libxml-xmlversion.html#LIBXML_THREAD_ALLOC_ENABLED'/>
-    <reference name='LIBXML_THREAD_ENABLED' href='html/libxml-xmlversion.html#LIBXML_THREAD_ENABLED'/>
-    <reference name='LIBXML_TREE_ENABLED' href='html/libxml-xmlversion.html#LIBXML_TREE_ENABLED'/>
-    <reference name='LIBXML_UNICODE_ENABLED' href='html/libxml-xmlversion.html#LIBXML_UNICODE_ENABLED'/>
-    <reference name='LIBXML_VALID_ENABLED' href='html/libxml-xmlversion.html#LIBXML_VALID_ENABLED'/>
-    <reference name='LIBXML_VERSION' href='html/libxml-xmlversion.html#LIBXML_VERSION'/>
-    <reference name='LIBXML_VERSION_EXTRA' href='html/libxml-xmlversion.html#LIBXML_VERSION_EXTRA'/>
-    <reference name='LIBXML_VERSION_STRING' href='html/libxml-xmlversion.html#LIBXML_VERSION_STRING'/>
-    <reference name='LIBXML_WRITER_ENABLED' href='html/libxml-xmlversion.html#LIBXML_WRITER_ENABLED'/>
-    <reference name='LIBXML_XINCLUDE_ENABLED' href='html/libxml-xmlversion.html#LIBXML_XINCLUDE_ENABLED'/>
-    <reference name='LIBXML_XPATH_ENABLED' href='html/libxml-xmlversion.html#LIBXML_XPATH_ENABLED'/>
-    <reference name='LIBXML_XPTR_ENABLED' href='html/libxml-xmlversion.html#LIBXML_XPTR_ENABLED'/>
-    <reference name='LIBXML_XPTR_LOCS_ENABLED' href='html/libxml-xmlversion.html#LIBXML_XPTR_LOCS_ENABLED'/>
-    <reference name='LIBXML_ZLIB_ENABLED' href='html/libxml-xmlversion.html#LIBXML_ZLIB_ENABLED'/>
-    <reference name='MOVETO_ENDTAG' href='html/libxml-parserInternals.html#MOVETO_ENDTAG'/>
-    <reference name='MOVETO_STARTTAG' href='html/libxml-parserInternals.html#MOVETO_STARTTAG'/>
-    <reference name='SKIP_EOL' href='html/libxml-parserInternals.html#SKIP_EOL'/>
-    <reference name='SOCKET' href='html/libxml-nanoftp.html#SOCKET'/>
-    <reference name='UTF8ToHtml' href='html/libxml-HTMLparser.html#UTF8ToHtml'/>
-    <reference name='UTF8Toisolat1' href='html/libxml-encoding.html#UTF8Toisolat1'/>
-    <reference name='WITHOUT_TRIO' href='html/libxml-xmlversion.html#WITHOUT_TRIO'/>
-    <reference name='WITH_TRIO' href='html/libxml-xmlversion.html#WITH_TRIO'/>
-    <reference name='XINCLUDE_FALLBACK' href='html/libxml-xinclude.html#XINCLUDE_FALLBACK'/>
-    <reference name='XINCLUDE_HREF' href='html/libxml-xinclude.html#XINCLUDE_HREF'/>
-    <reference name='XINCLUDE_NODE' href='html/libxml-xinclude.html#XINCLUDE_NODE'/>
-    <reference name='XINCLUDE_NS' href='html/libxml-xinclude.html#XINCLUDE_NS'/>
-    <reference name='XINCLUDE_OLD_NS' href='html/libxml-xinclude.html#XINCLUDE_OLD_NS'/>
-    <reference name='XINCLUDE_PARSE' href='html/libxml-xinclude.html#XINCLUDE_PARSE'/>
-    <reference name='XINCLUDE_PARSE_ENCODING' href='html/libxml-xinclude.html#XINCLUDE_PARSE_ENCODING'/>
-    <reference name='XINCLUDE_PARSE_TEXT' href='html/libxml-xinclude.html#XINCLUDE_PARSE_TEXT'/>
-    <reference name='XINCLUDE_PARSE_XML' href='html/libxml-xinclude.html#XINCLUDE_PARSE_XML'/>
-    <reference name='XINCLUDE_PARSE_XPOINTER' href='html/libxml-xinclude.html#XINCLUDE_PARSE_XPOINTER'/>
-    <reference name='XLINK_ACTUATE_AUTO' href='html/libxml-xlink.html#XLINK_ACTUATE_AUTO'/>
-    <reference name='XLINK_ACTUATE_NONE' href='html/libxml-xlink.html#XLINK_ACTUATE_NONE'/>
-    <reference name='XLINK_ACTUATE_ONREQUEST' href='html/libxml-xlink.html#XLINK_ACTUATE_ONREQUEST'/>
-    <reference name='XLINK_SHOW_EMBED' href='html/libxml-xlink.html#XLINK_SHOW_EMBED'/>
-    <reference name='XLINK_SHOW_NEW' href='html/libxml-xlink.html#XLINK_SHOW_NEW'/>
-    <reference name='XLINK_SHOW_NONE' href='html/libxml-xlink.html#XLINK_SHOW_NONE'/>
-    <reference name='XLINK_SHOW_REPLACE' href='html/libxml-xlink.html#XLINK_SHOW_REPLACE'/>
-    <reference name='XLINK_TYPE_EXTENDED' href='html/libxml-xlink.html#XLINK_TYPE_EXTENDED'/>
-    <reference name='XLINK_TYPE_EXTENDED_SET' href='html/libxml-xlink.html#XLINK_TYPE_EXTENDED_SET'/>
-    <reference name='XLINK_TYPE_NONE' href='html/libxml-xlink.html#XLINK_TYPE_NONE'/>
-    <reference name='XLINK_TYPE_SIMPLE' href='html/libxml-xlink.html#XLINK_TYPE_SIMPLE'/>
-    <reference name='XMLCALL' href='html/libxml-xmlexports.html#XMLCALL'/>
-    <reference name='XMLCDECL' href='html/libxml-xmlexports.html#XMLCDECL'/>
-    <reference name='XMLPUBFUN' href='html/libxml-xmlexports.html#XMLPUBFUN'/>
-    <reference name='XMLPUBLIC' href='html/libxml-xmlexports.html#XMLPUBLIC'/>
-    <reference name='XMLPUBVAR' href='html/libxml-xmlexports.html#XMLPUBVAR'/>
-    <reference name='XML_ATTRIBUTE_CDATA' href='html/libxml-tree.html#XML_ATTRIBUTE_CDATA'/>
-    <reference name='XML_ATTRIBUTE_DECL' href='html/libxml-tree.html#XML_ATTRIBUTE_DECL'/>
-    <reference name='XML_ATTRIBUTE_ENTITIES' href='html/libxml-tree.html#XML_ATTRIBUTE_ENTITIES'/>
-    <reference name='XML_ATTRIBUTE_ENTITY' href='html/libxml-tree.html#XML_ATTRIBUTE_ENTITY'/>
-    <reference name='XML_ATTRIBUTE_ENUMERATION' href='html/libxml-tree.html#XML_ATTRIBUTE_ENUMERATION'/>
-    <reference name='XML_ATTRIBUTE_FIXED' href='html/libxml-tree.html#XML_ATTRIBUTE_FIXED'/>
-    <reference name='XML_ATTRIBUTE_ID' href='html/libxml-tree.html#XML_ATTRIBUTE_ID'/>
-    <reference name='XML_ATTRIBUTE_IDREF' href='html/libxml-tree.html#XML_ATTRIBUTE_IDREF'/>
-    <reference name='XML_ATTRIBUTE_IDREFS' href='html/libxml-tree.html#XML_ATTRIBUTE_IDREFS'/>
-    <reference name='XML_ATTRIBUTE_IMPLIED' href='html/libxml-tree.html#XML_ATTRIBUTE_IMPLIED'/>
-    <reference name='XML_ATTRIBUTE_NMTOKEN' href='html/libxml-tree.html#XML_ATTRIBUTE_NMTOKEN'/>
-    <reference name='XML_ATTRIBUTE_NMTOKENS' href='html/libxml-tree.html#XML_ATTRIBUTE_NMTOKENS'/>
-    <reference name='XML_ATTRIBUTE_NODE' href='html/libxml-tree.html#XML_ATTRIBUTE_NODE'/>
-    <reference name='XML_ATTRIBUTE_NONE' href='html/libxml-tree.html#XML_ATTRIBUTE_NONE'/>
-    <reference name='XML_ATTRIBUTE_NOTATION' href='html/libxml-tree.html#XML_ATTRIBUTE_NOTATION'/>
-    <reference name='XML_ATTRIBUTE_REQUIRED' href='html/libxml-tree.html#XML_ATTRIBUTE_REQUIRED'/>
-    <reference name='XML_BUFFER_ALLOC_BOUNDED' href='html/libxml-tree.html#XML_BUFFER_ALLOC_BOUNDED'/>
-    <reference name='XML_BUFFER_ALLOC_DOUBLEIT' href='html/libxml-tree.html#XML_BUFFER_ALLOC_DOUBLEIT'/>
-    <reference name='XML_BUFFER_ALLOC_EXACT' href='html/libxml-tree.html#XML_BUFFER_ALLOC_EXACT'/>
-    <reference name='XML_BUFFER_ALLOC_HYBRID' href='html/libxml-tree.html#XML_BUFFER_ALLOC_HYBRID'/>
-    <reference name='XML_BUFFER_ALLOC_IMMUTABLE' href='html/libxml-tree.html#XML_BUFFER_ALLOC_IMMUTABLE'/>
-    <reference name='XML_BUFFER_ALLOC_IO' href='html/libxml-tree.html#XML_BUFFER_ALLOC_IO'/>
-    <reference name='XML_BUF_OVERFLOW' href='html/libxml-xmlerror.html#XML_BUF_OVERFLOW'/>
-    <reference name='XML_C14N_1_0' href='html/libxml-c14n.html#XML_C14N_1_0'/>
-    <reference name='XML_C14N_1_1' href='html/libxml-c14n.html#XML_C14N_1_1'/>
-    <reference name='XML_C14N_CREATE_CTXT' href='html/libxml-xmlerror.html#XML_C14N_CREATE_CTXT'/>
-    <reference name='XML_C14N_CREATE_STACK' href='html/libxml-xmlerror.html#XML_C14N_CREATE_STACK'/>
-    <reference name='XML_C14N_EXCLUSIVE_1_0' href='html/libxml-c14n.html#XML_C14N_EXCLUSIVE_1_0'/>
-    <reference name='XML_C14N_INVALID_NODE' href='html/libxml-xmlerror.html#XML_C14N_INVALID_NODE'/>
-    <reference name='XML_C14N_RELATIVE_NAMESPACE' href='html/libxml-xmlerror.html#XML_C14N_RELATIVE_NAMESPACE'/>
-    <reference name='XML_C14N_REQUIRES_UTF8' href='html/libxml-xmlerror.html#XML_C14N_REQUIRES_UTF8'/>
-    <reference name='XML_C14N_UNKNOW_NODE' href='html/libxml-xmlerror.html#XML_C14N_UNKNOW_NODE'/>
-    <reference name='XML_CAST_FPTR' href='html/libxml-hash.html#XML_CAST_FPTR'/>
-    <reference name='XML_CATALOGS_NAMESPACE' href='html/libxml-catalog.html#XML_CATALOGS_NAMESPACE'/>
-    <reference name='XML_CATALOG_ENTRY_BROKEN' href='html/libxml-xmlerror.html#XML_CATALOG_ENTRY_BROKEN'/>
-    <reference name='XML_CATALOG_MISSING_ATTR' href='html/libxml-xmlerror.html#XML_CATALOG_MISSING_ATTR'/>
-    <reference name='XML_CATALOG_NOT_CATALOG' href='html/libxml-xmlerror.html#XML_CATALOG_NOT_CATALOG'/>
-    <reference name='XML_CATALOG_PI' href='html/libxml-catalog.html#XML_CATALOG_PI'/>
-    <reference name='XML_CATALOG_PREFER_VALUE' href='html/libxml-xmlerror.html#XML_CATALOG_PREFER_VALUE'/>
-    <reference name='XML_CATALOG_RECURSION' href='html/libxml-xmlerror.html#XML_CATALOG_RECURSION'/>
-    <reference name='XML_CATA_ALLOW_ALL' href='html/libxml-catalog.html#XML_CATA_ALLOW_ALL'/>
-    <reference name='XML_CATA_ALLOW_DOCUMENT' href='html/libxml-catalog.html#XML_CATA_ALLOW_DOCUMENT'/>
-    <reference name='XML_CATA_ALLOW_GLOBAL' href='html/libxml-catalog.html#XML_CATA_ALLOW_GLOBAL'/>
-    <reference name='XML_CATA_ALLOW_NONE' href='html/libxml-catalog.html#XML_CATA_ALLOW_NONE'/>
-    <reference name='XML_CATA_PREFER_NONE' href='html/libxml-catalog.html#XML_CATA_PREFER_NONE'/>
-    <reference name='XML_CATA_PREFER_PUBLIC' href='html/libxml-catalog.html#XML_CATA_PREFER_PUBLIC'/>
-    <reference name='XML_CATA_PREFER_SYSTEM' href='html/libxml-catalog.html#XML_CATA_PREFER_SYSTEM'/>
-    <reference name='XML_CDATA_SECTION_NODE' href='html/libxml-tree.html#XML_CDATA_SECTION_NODE'/>
-    <reference name='XML_CHAR_ENCODING_2022_JP' href='html/libxml-encoding.html#XML_CHAR_ENCODING_2022_JP'/>
-    <reference name='XML_CHAR_ENCODING_8859_1' href='html/libxml-encoding.html#XML_CHAR_ENCODING_8859_1'/>
-    <reference name='XML_CHAR_ENCODING_8859_2' href='html/libxml-encoding.html#XML_CHAR_ENCODING_8859_2'/>
-    <reference name='XML_CHAR_ENCODING_8859_3' href='html/libxml-encoding.html#XML_CHAR_ENCODING_8859_3'/>
-    <reference name='XML_CHAR_ENCODING_8859_4' href='html/libxml-encoding.html#XML_CHAR_ENCODING_8859_4'/>
-    <reference name='XML_CHAR_ENCODING_8859_5' href='html/libxml-encoding.html#XML_CHAR_ENCODING_8859_5'/>
-    <reference name='XML_CHAR_ENCODING_8859_6' href='html/libxml-encoding.html#XML_CHAR_ENCODING_8859_6'/>
-    <reference name='XML_CHAR_ENCODING_8859_7' href='html/libxml-encoding.html#XML_CHAR_ENCODING_8859_7'/>
-    <reference name='XML_CHAR_ENCODING_8859_8' href='html/libxml-encoding.html#XML_CHAR_ENCODING_8859_8'/>
-    <reference name='XML_CHAR_ENCODING_8859_9' href='html/libxml-encoding.html#XML_CHAR_ENCODING_8859_9'/>
-    <reference name='XML_CHAR_ENCODING_ASCII' href='html/libxml-encoding.html#XML_CHAR_ENCODING_ASCII'/>
-    <reference name='XML_CHAR_ENCODING_EBCDIC' href='html/libxml-encoding.html#XML_CHAR_ENCODING_EBCDIC'/>
-    <reference name='XML_CHAR_ENCODING_ERROR' href='html/libxml-encoding.html#XML_CHAR_ENCODING_ERROR'/>
-    <reference name='XML_CHAR_ENCODING_EUC_JP' href='html/libxml-encoding.html#XML_CHAR_ENCODING_EUC_JP'/>
-    <reference name='XML_CHAR_ENCODING_NONE' href='html/libxml-encoding.html#XML_CHAR_ENCODING_NONE'/>
-    <reference name='XML_CHAR_ENCODING_SHIFT_JIS' href='html/libxml-encoding.html#XML_CHAR_ENCODING_SHIFT_JIS'/>
-    <reference name='XML_CHAR_ENCODING_UCS2' href='html/libxml-encoding.html#XML_CHAR_ENCODING_UCS2'/>
-    <reference name='XML_CHAR_ENCODING_UCS4BE' href='html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4BE'/>
-    <reference name='XML_CHAR_ENCODING_UCS4LE' href='html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4LE'/>
-    <reference name='XML_CHAR_ENCODING_UCS4_2143' href='html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4_2143'/>
-    <reference name='XML_CHAR_ENCODING_UCS4_3412' href='html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4_3412'/>
-    <reference name='XML_CHAR_ENCODING_UTF16BE' href='html/libxml-encoding.html#XML_CHAR_ENCODING_UTF16BE'/>
-    <reference name='XML_CHAR_ENCODING_UTF16LE' href='html/libxml-encoding.html#XML_CHAR_ENCODING_UTF16LE'/>
-    <reference name='XML_CHAR_ENCODING_UTF8' href='html/libxml-encoding.html#XML_CHAR_ENCODING_UTF8'/>
-    <reference name='XML_CHECK_ENTITY_TYPE' href='html/libxml-xmlerror.html#XML_CHECK_ENTITY_TYPE'/>
-    <reference name='XML_CHECK_FOUND_ATTRIBUTE' href='html/libxml-xmlerror.html#XML_CHECK_FOUND_ATTRIBUTE'/>
-    <reference name='XML_CHECK_FOUND_CDATA' href='html/libxml-xmlerror.html#XML_CHECK_FOUND_CDATA'/>
-    <reference name='XML_CHECK_FOUND_COMMENT' href='html/libxml-xmlerror.html#XML_CHECK_FOUND_COMMENT'/>
-    <reference name='XML_CHECK_FOUND_DOCTYPE' href='html/libxml-xmlerror.html#XML_CHECK_FOUND_DOCTYPE'/>
-    <reference name='XML_CHECK_FOUND_ELEMENT' href='html/libxml-xmlerror.html#XML_CHECK_FOUND_ELEMENT'/>
-    <reference name='XML_CHECK_FOUND_ENTITY' href='html/libxml-xmlerror.html#XML_CHECK_FOUND_ENTITY'/>
-    <reference name='XML_CHECK_FOUND_ENTITYREF' href='html/libxml-xmlerror.html#XML_CHECK_FOUND_ENTITYREF'/>
-    <reference name='XML_CHECK_FOUND_FRAGMENT' href='html/libxml-xmlerror.html#XML_CHECK_FOUND_FRAGMENT'/>
-    <reference name='XML_CHECK_FOUND_NOTATION' href='html/libxml-xmlerror.html#XML_CHECK_FOUND_NOTATION'/>
-    <reference name='XML_CHECK_FOUND_PI' href='html/libxml-xmlerror.html#XML_CHECK_FOUND_PI'/>
-    <reference name='XML_CHECK_FOUND_TEXT' href='html/libxml-xmlerror.html#XML_CHECK_FOUND_TEXT'/>
-    <reference name='XML_CHECK_NAME_NOT_NULL' href='html/libxml-xmlerror.html#XML_CHECK_NAME_NOT_NULL'/>
-    <reference name='XML_CHECK_NOT_ATTR' href='html/libxml-xmlerror.html#XML_CHECK_NOT_ATTR'/>
-    <reference name='XML_CHECK_NOT_ATTR_DECL' href='html/libxml-xmlerror.html#XML_CHECK_NOT_ATTR_DECL'/>
-    <reference name='XML_CHECK_NOT_DTD' href='html/libxml-xmlerror.html#XML_CHECK_NOT_DTD'/>
-    <reference name='XML_CHECK_NOT_ELEM_DECL' href='html/libxml-xmlerror.html#XML_CHECK_NOT_ELEM_DECL'/>
-    <reference name='XML_CHECK_NOT_ENTITY_DECL' href='html/libxml-xmlerror.html#XML_CHECK_NOT_ENTITY_DECL'/>
-    <reference name='XML_CHECK_NOT_NCNAME' href='html/libxml-xmlerror.html#XML_CHECK_NOT_NCNAME'/>
-    <reference name='XML_CHECK_NOT_NS_DECL' href='html/libxml-xmlerror.html#XML_CHECK_NOT_NS_DECL'/>
-    <reference name='XML_CHECK_NOT_UTF8' href='html/libxml-xmlerror.html#XML_CHECK_NOT_UTF8'/>
-    <reference name='XML_CHECK_NO_DICT' href='html/libxml-xmlerror.html#XML_CHECK_NO_DICT'/>
-    <reference name='XML_CHECK_NO_DOC' href='html/libxml-xmlerror.html#XML_CHECK_NO_DOC'/>
-    <reference name='XML_CHECK_NO_ELEM' href='html/libxml-xmlerror.html#XML_CHECK_NO_ELEM'/>
-    <reference name='XML_CHECK_NO_HREF' href='html/libxml-xmlerror.html#XML_CHECK_NO_HREF'/>
-    <reference name='XML_CHECK_NO_NAME' href='html/libxml-xmlerror.html#XML_CHECK_NO_NAME'/>
-    <reference name='XML_CHECK_NO_NEXT' href='html/libxml-xmlerror.html#XML_CHECK_NO_NEXT'/>
-    <reference name='XML_CHECK_NO_PARENT' href='html/libxml-xmlerror.html#XML_CHECK_NO_PARENT'/>
-    <reference name='XML_CHECK_NO_PREV' href='html/libxml-xmlerror.html#XML_CHECK_NO_PREV'/>
-    <reference name='XML_CHECK_NS_ANCESTOR' href='html/libxml-xmlerror.html#XML_CHECK_NS_ANCESTOR'/>
-    <reference name='XML_CHECK_NS_SCOPE' href='html/libxml-xmlerror.html#XML_CHECK_NS_SCOPE'/>
-    <reference name='XML_CHECK_OUTSIDE_DICT' href='html/libxml-xmlerror.html#XML_CHECK_OUTSIDE_DICT'/>
-    <reference name='XML_CHECK_UNKNOWN_NODE' href='html/libxml-xmlerror.html#XML_CHECK_UNKNOWN_NODE'/>
-    <reference name='XML_CHECK_WRONG_DOC' href='html/libxml-xmlerror.html#XML_CHECK_WRONG_DOC'/>
-    <reference name='XML_CHECK_WRONG_NAME' href='html/libxml-xmlerror.html#XML_CHECK_WRONG_NAME'/>
-    <reference name='XML_CHECK_WRONG_NEXT' href='html/libxml-xmlerror.html#XML_CHECK_WRONG_NEXT'/>
-    <reference name='XML_CHECK_WRONG_PARENT' href='html/libxml-xmlerror.html#XML_CHECK_WRONG_PARENT'/>
-    <reference name='XML_CHECK_WRONG_PREV' href='html/libxml-xmlerror.html#XML_CHECK_WRONG_PREV'/>
-    <reference name='XML_COMMENT_NODE' href='html/libxml-tree.html#XML_COMMENT_NODE'/>
-    <reference name='XML_COMPLETE_ATTRS' href='html/libxml-parser.html#XML_COMPLETE_ATTRS'/>
-    <reference name='XML_DEFAULT_VERSION' href='html/libxml-parser.html#XML_DEFAULT_VERSION'/>
-    <reference name='XML_DEPRECATED' href='html/libxml-xmlversion.html#XML_DEPRECATED'/>
-    <reference name='XML_DETECT_IDS' href='html/libxml-parser.html#XML_DETECT_IDS'/>
-    <reference name='XML_DOCB_DOCUMENT_NODE' href='html/libxml-tree.html#XML_DOCB_DOCUMENT_NODE'/>
-    <reference name='XML_DOCUMENT_FRAG_NODE' href='html/libxml-tree.html#XML_DOCUMENT_FRAG_NODE'/>
-    <reference name='XML_DOCUMENT_NODE' href='html/libxml-tree.html#XML_DOCUMENT_NODE'/>
-    <reference name='XML_DOCUMENT_TYPE_NODE' href='html/libxml-tree.html#XML_DOCUMENT_TYPE_NODE'/>
-    <reference name='XML_DOC_DTDVALID' href='html/libxml-tree.html#XML_DOC_DTDVALID'/>
-    <reference name='XML_DOC_HTML' href='html/libxml-tree.html#XML_DOC_HTML'/>
-    <reference name='XML_DOC_INTERNAL' href='html/libxml-tree.html#XML_DOC_INTERNAL'/>
-    <reference name='XML_DOC_NSVALID' href='html/libxml-tree.html#XML_DOC_NSVALID'/>
-    <reference name='XML_DOC_OLD10' href='html/libxml-tree.html#XML_DOC_OLD10'/>
-    <reference name='XML_DOC_USERBUILT' href='html/libxml-tree.html#XML_DOC_USERBUILT'/>
-    <reference name='XML_DOC_WELLFORMED' href='html/libxml-tree.html#XML_DOC_WELLFORMED'/>
-    <reference name='XML_DOC_XINCLUDE' href='html/libxml-tree.html#XML_DOC_XINCLUDE'/>
-    <reference name='XML_DTD_ATTRIBUTE_DEFAULT' href='html/libxml-xmlerror.html#XML_DTD_ATTRIBUTE_DEFAULT'/>
-    <reference name='XML_DTD_ATTRIBUTE_REDEFINED' href='html/libxml-xmlerror.html#XML_DTD_ATTRIBUTE_REDEFINED'/>
-    <reference name='XML_DTD_ATTRIBUTE_VALUE' href='html/libxml-xmlerror.html#XML_DTD_ATTRIBUTE_VALUE'/>
-    <reference name='XML_DTD_CONTENT_ERROR' href='html/libxml-xmlerror.html#XML_DTD_CONTENT_ERROR'/>
-    <reference name='XML_DTD_CONTENT_MODEL' href='html/libxml-xmlerror.html#XML_DTD_CONTENT_MODEL'/>
-    <reference name='XML_DTD_CONTENT_NOT_DETERMINIST' href='html/libxml-xmlerror.html#XML_DTD_CONTENT_NOT_DETERMINIST'/>
-    <reference name='XML_DTD_DIFFERENT_PREFIX' href='html/libxml-xmlerror.html#XML_DTD_DIFFERENT_PREFIX'/>
-    <reference name='XML_DTD_DUP_TOKEN' href='html/libxml-xmlerror.html#XML_DTD_DUP_TOKEN'/>
-    <reference name='XML_DTD_ELEM_DEFAULT_NAMESPACE' href='html/libxml-xmlerror.html#XML_DTD_ELEM_DEFAULT_NAMESPACE'/>
-    <reference name='XML_DTD_ELEM_NAMESPACE' href='html/libxml-xmlerror.html#XML_DTD_ELEM_NAMESPACE'/>
-    <reference name='XML_DTD_ELEM_REDEFINED' href='html/libxml-xmlerror.html#XML_DTD_ELEM_REDEFINED'/>
-    <reference name='XML_DTD_EMPTY_NOTATION' href='html/libxml-xmlerror.html#XML_DTD_EMPTY_NOTATION'/>
-    <reference name='XML_DTD_ENTITY_TYPE' href='html/libxml-xmlerror.html#XML_DTD_ENTITY_TYPE'/>
-    <reference name='XML_DTD_ID_FIXED' href='html/libxml-xmlerror.html#XML_DTD_ID_FIXED'/>
-    <reference name='XML_DTD_ID_REDEFINED' href='html/libxml-xmlerror.html#XML_DTD_ID_REDEFINED'/>
-    <reference name='XML_DTD_ID_SUBSET' href='html/libxml-xmlerror.html#XML_DTD_ID_SUBSET'/>
-    <reference name='XML_DTD_INVALID_CHILD' href='html/libxml-xmlerror.html#XML_DTD_INVALID_CHILD'/>
-    <reference name='XML_DTD_INVALID_DEFAULT' href='html/libxml-xmlerror.html#XML_DTD_INVALID_DEFAULT'/>
-    <reference name='XML_DTD_LOAD_ERROR' href='html/libxml-xmlerror.html#XML_DTD_LOAD_ERROR'/>
-    <reference name='XML_DTD_MISSING_ATTRIBUTE' href='html/libxml-xmlerror.html#XML_DTD_MISSING_ATTRIBUTE'/>
-    <reference name='XML_DTD_MIXED_CORRUPT' href='html/libxml-xmlerror.html#XML_DTD_MIXED_CORRUPT'/>
-    <reference name='XML_DTD_MULTIPLE_ID' href='html/libxml-xmlerror.html#XML_DTD_MULTIPLE_ID'/>
-    <reference name='XML_DTD_NODE' href='html/libxml-tree.html#XML_DTD_NODE'/>
-    <reference name='XML_DTD_NOTATION_REDEFINED' href='html/libxml-xmlerror.html#XML_DTD_NOTATION_REDEFINED'/>
-    <reference name='XML_DTD_NOTATION_VALUE' href='html/libxml-xmlerror.html#XML_DTD_NOTATION_VALUE'/>
-    <reference name='XML_DTD_NOT_EMPTY' href='html/libxml-xmlerror.html#XML_DTD_NOT_EMPTY'/>
-    <reference name='XML_DTD_NOT_PCDATA' href='html/libxml-xmlerror.html#XML_DTD_NOT_PCDATA'/>
-    <reference name='XML_DTD_NOT_STANDALONE' href='html/libxml-xmlerror.html#XML_DTD_NOT_STANDALONE'/>
-    <reference name='XML_DTD_NO_DOC' href='html/libxml-xmlerror.html#XML_DTD_NO_DOC'/>
-    <reference name='XML_DTD_NO_DTD' href='html/libxml-xmlerror.html#XML_DTD_NO_DTD'/>
-    <reference name='XML_DTD_NO_ELEM_NAME' href='html/libxml-xmlerror.html#XML_DTD_NO_ELEM_NAME'/>
-    <reference name='XML_DTD_NO_PREFIX' href='html/libxml-xmlerror.html#XML_DTD_NO_PREFIX'/>
-    <reference name='XML_DTD_NO_ROOT' href='html/libxml-xmlerror.html#XML_DTD_NO_ROOT'/>
-    <reference name='XML_DTD_ROOT_NAME' href='html/libxml-xmlerror.html#XML_DTD_ROOT_NAME'/>
-    <reference name='XML_DTD_STANDALONE_DEFAULTED' href='html/libxml-xmlerror.html#XML_DTD_STANDALONE_DEFAULTED'/>
-    <reference name='XML_DTD_STANDALONE_WHITE_SPACE' href='html/libxml-xmlerror.html#XML_DTD_STANDALONE_WHITE_SPACE'/>
-    <reference name='XML_DTD_UNKNOWN_ATTRIBUTE' href='html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ATTRIBUTE'/>
-    <reference name='XML_DTD_UNKNOWN_ELEM' href='html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ELEM'/>
-    <reference name='XML_DTD_UNKNOWN_ENTITY' href='html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ENTITY'/>
-    <reference name='XML_DTD_UNKNOWN_ID' href='html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ID'/>
-    <reference name='XML_DTD_UNKNOWN_NOTATION' href='html/libxml-xmlerror.html#XML_DTD_UNKNOWN_NOTATION'/>
-    <reference name='XML_DTD_XMLID_TYPE' href='html/libxml-xmlerror.html#XML_DTD_XMLID_TYPE'/>
-    <reference name='XML_DTD_XMLID_VALUE' href='html/libxml-xmlerror.html#XML_DTD_XMLID_VALUE'/>
-    <reference name='XML_ELEMENT_CONTENT_ELEMENT' href='html/libxml-tree.html#XML_ELEMENT_CONTENT_ELEMENT'/>
-    <reference name='XML_ELEMENT_CONTENT_MULT' href='html/libxml-tree.html#XML_ELEMENT_CONTENT_MULT'/>
-    <reference name='XML_ELEMENT_CONTENT_ONCE' href='html/libxml-tree.html#XML_ELEMENT_CONTENT_ONCE'/>
-    <reference name='XML_ELEMENT_CONTENT_OPT' href='html/libxml-tree.html#XML_ELEMENT_CONTENT_OPT'/>
-    <reference name='XML_ELEMENT_CONTENT_OR' href='html/libxml-tree.html#XML_ELEMENT_CONTENT_OR'/>
-    <reference name='XML_ELEMENT_CONTENT_PCDATA' href='html/libxml-tree.html#XML_ELEMENT_CONTENT_PCDATA'/>
-    <reference name='XML_ELEMENT_CONTENT_PLUS' href='html/libxml-tree.html#XML_ELEMENT_CONTENT_PLUS'/>
-    <reference name='XML_ELEMENT_CONTENT_SEQ' href='html/libxml-tree.html#XML_ELEMENT_CONTENT_SEQ'/>
-    <reference name='XML_ELEMENT_DECL' href='html/libxml-tree.html#XML_ELEMENT_DECL'/>
-    <reference name='XML_ELEMENT_NODE' href='html/libxml-tree.html#XML_ELEMENT_NODE'/>
-    <reference name='XML_ELEMENT_TYPE_ANY' href='html/libxml-tree.html#XML_ELEMENT_TYPE_ANY'/>
-    <reference name='XML_ELEMENT_TYPE_ELEMENT' href='html/libxml-tree.html#XML_ELEMENT_TYPE_ELEMENT'/>
-    <reference name='XML_ELEMENT_TYPE_EMPTY' href='html/libxml-tree.html#XML_ELEMENT_TYPE_EMPTY'/>
-    <reference name='XML_ELEMENT_TYPE_MIXED' href='html/libxml-tree.html#XML_ELEMENT_TYPE_MIXED'/>
-    <reference name='XML_ELEMENT_TYPE_UNDEFINED' href='html/libxml-tree.html#XML_ELEMENT_TYPE_UNDEFINED'/>
-    <reference name='XML_ENTITY_DECL' href='html/libxml-tree.html#XML_ENTITY_DECL'/>
-    <reference name='XML_ENTITY_NODE' href='html/libxml-tree.html#XML_ENTITY_NODE'/>
-    <reference name='XML_ENTITY_REF_NODE' href='html/libxml-tree.html#XML_ENTITY_REF_NODE'/>
-    <reference name='XML_ERR_ATTLIST_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_ATTLIST_NOT_FINISHED'/>
-    <reference name='XML_ERR_ATTLIST_NOT_STARTED' href='html/libxml-xmlerror.html#XML_ERR_ATTLIST_NOT_STARTED'/>
-    <reference name='XML_ERR_ATTRIBUTE_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_NOT_FINISHED'/>
-    <reference name='XML_ERR_ATTRIBUTE_NOT_STARTED' href='html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_NOT_STARTED'/>
-    <reference name='XML_ERR_ATTRIBUTE_REDEFINED' href='html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_REDEFINED'/>
-    <reference name='XML_ERR_ATTRIBUTE_WITHOUT_VALUE' href='html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_WITHOUT_VALUE'/>
-    <reference name='XML_ERR_CDATA_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_CDATA_NOT_FINISHED'/>
-    <reference name='XML_ERR_CHARREF_AT_EOF' href='html/libxml-xmlerror.html#XML_ERR_CHARREF_AT_EOF'/>
-    <reference name='XML_ERR_CHARREF_IN_DTD' href='html/libxml-xmlerror.html#XML_ERR_CHARREF_IN_DTD'/>
-    <reference name='XML_ERR_CHARREF_IN_EPILOG' href='html/libxml-xmlerror.html#XML_ERR_CHARREF_IN_EPILOG'/>
-    <reference name='XML_ERR_CHARREF_IN_PROLOG' href='html/libxml-xmlerror.html#XML_ERR_CHARREF_IN_PROLOG'/>
-    <reference name='XML_ERR_COMMENT_ABRUPTLY_ENDED' href='html/libxml-xmlerror.html#XML_ERR_COMMENT_ABRUPTLY_ENDED'/>
-    <reference name='XML_ERR_COMMENT_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_COMMENT_NOT_FINISHED'/>
-    <reference name='XML_ERR_CONDSEC_INVALID' href='html/libxml-xmlerror.html#XML_ERR_CONDSEC_INVALID'/>
-    <reference name='XML_ERR_CONDSEC_INVALID_KEYWORD' href='html/libxml-xmlerror.html#XML_ERR_CONDSEC_INVALID_KEYWORD'/>
-    <reference name='XML_ERR_CONDSEC_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_CONDSEC_NOT_FINISHED'/>
-    <reference name='XML_ERR_CONDSEC_NOT_STARTED' href='html/libxml-xmlerror.html#XML_ERR_CONDSEC_NOT_STARTED'/>
-    <reference name='XML_ERR_DOCTYPE_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_DOCTYPE_NOT_FINISHED'/>
-    <reference name='XML_ERR_DOCUMENT_EMPTY' href='html/libxml-xmlerror.html#XML_ERR_DOCUMENT_EMPTY'/>
-    <reference name='XML_ERR_DOCUMENT_END' href='html/libxml-xmlerror.html#XML_ERR_DOCUMENT_END'/>
-    <reference name='XML_ERR_DOCUMENT_START' href='html/libxml-xmlerror.html#XML_ERR_DOCUMENT_START'/>
-    <reference name='XML_ERR_ELEMCONTENT_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_ELEMCONTENT_NOT_FINISHED'/>
-    <reference name='XML_ERR_ELEMCONTENT_NOT_STARTED' href='html/libxml-xmlerror.html#XML_ERR_ELEMCONTENT_NOT_STARTED'/>
-    <reference name='XML_ERR_ENCODING_NAME' href='html/libxml-xmlerror.html#XML_ERR_ENCODING_NAME'/>
-    <reference name='XML_ERR_ENTITYREF_AT_EOF' href='html/libxml-xmlerror.html#XML_ERR_ENTITYREF_AT_EOF'/>
-    <reference name='XML_ERR_ENTITYREF_IN_DTD' href='html/libxml-xmlerror.html#XML_ERR_ENTITYREF_IN_DTD'/>
-    <reference name='XML_ERR_ENTITYREF_IN_EPILOG' href='html/libxml-xmlerror.html#XML_ERR_ENTITYREF_IN_EPILOG'/>
-    <reference name='XML_ERR_ENTITYREF_IN_PROLOG' href='html/libxml-xmlerror.html#XML_ERR_ENTITYREF_IN_PROLOG'/>
-    <reference name='XML_ERR_ENTITYREF_NO_NAME' href='html/libxml-xmlerror.html#XML_ERR_ENTITYREF_NO_NAME'/>
-    <reference name='XML_ERR_ENTITYREF_SEMICOL_MISSING' href='html/libxml-xmlerror.html#XML_ERR_ENTITYREF_SEMICOL_MISSING'/>
-    <reference name='XML_ERR_ENTITY_BOUNDARY' href='html/libxml-xmlerror.html#XML_ERR_ENTITY_BOUNDARY'/>
-    <reference name='XML_ERR_ENTITY_CHAR_ERROR' href='html/libxml-xmlerror.html#XML_ERR_ENTITY_CHAR_ERROR'/>
-    <reference name='XML_ERR_ENTITY_IS_EXTERNAL' href='html/libxml-xmlerror.html#XML_ERR_ENTITY_IS_EXTERNAL'/>
-    <reference name='XML_ERR_ENTITY_IS_PARAMETER' href='html/libxml-xmlerror.html#XML_ERR_ENTITY_IS_PARAMETER'/>
-    <reference name='XML_ERR_ENTITY_LOOP' href='html/libxml-xmlerror.html#XML_ERR_ENTITY_LOOP'/>
-    <reference name='XML_ERR_ENTITY_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_ENTITY_NOT_FINISHED'/>
-    <reference name='XML_ERR_ENTITY_NOT_STARTED' href='html/libxml-xmlerror.html#XML_ERR_ENTITY_NOT_STARTED'/>
-    <reference name='XML_ERR_ENTITY_PE_INTERNAL' href='html/libxml-xmlerror.html#XML_ERR_ENTITY_PE_INTERNAL'/>
-    <reference name='XML_ERR_ENTITY_PROCESSING' href='html/libxml-xmlerror.html#XML_ERR_ENTITY_PROCESSING'/>
-    <reference name='XML_ERR_EQUAL_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_EQUAL_REQUIRED'/>
-    <reference name='XML_ERR_ERROR' href='html/libxml-xmlerror.html#XML_ERR_ERROR'/>
-    <reference name='XML_ERR_EXTRA_CONTENT' href='html/libxml-xmlerror.html#XML_ERR_EXTRA_CONTENT'/>
-    <reference name='XML_ERR_EXT_ENTITY_STANDALONE' href='html/libxml-xmlerror.html#XML_ERR_EXT_ENTITY_STANDALONE'/>
-    <reference name='XML_ERR_EXT_SUBSET_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_EXT_SUBSET_NOT_FINISHED'/>
-    <reference name='XML_ERR_FATAL' href='html/libxml-xmlerror.html#XML_ERR_FATAL'/>
-    <reference name='XML_ERR_GT_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_GT_REQUIRED'/>
-    <reference name='XML_ERR_HYPHEN_IN_COMMENT' href='html/libxml-xmlerror.html#XML_ERR_HYPHEN_IN_COMMENT'/>
-    <reference name='XML_ERR_INTERNAL_ERROR' href='html/libxml-xmlerror.html#XML_ERR_INTERNAL_ERROR'/>
-    <reference name='XML_ERR_INVALID_CHAR' href='html/libxml-xmlerror.html#XML_ERR_INVALID_CHAR'/>
-    <reference name='XML_ERR_INVALID_CHARREF' href='html/libxml-xmlerror.html#XML_ERR_INVALID_CHARREF'/>
-    <reference name='XML_ERR_INVALID_DEC_CHARREF' href='html/libxml-xmlerror.html#XML_ERR_INVALID_DEC_CHARREF'/>
-    <reference name='XML_ERR_INVALID_ENCODING' href='html/libxml-xmlerror.html#XML_ERR_INVALID_ENCODING'/>
-    <reference name='XML_ERR_INVALID_HEX_CHARREF' href='html/libxml-xmlerror.html#XML_ERR_INVALID_HEX_CHARREF'/>
-    <reference name='XML_ERR_INVALID_URI' href='html/libxml-xmlerror.html#XML_ERR_INVALID_URI'/>
-    <reference name='XML_ERR_LITERAL_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_LITERAL_NOT_FINISHED'/>
-    <reference name='XML_ERR_LITERAL_NOT_STARTED' href='html/libxml-xmlerror.html#XML_ERR_LITERAL_NOT_STARTED'/>
-    <reference name='XML_ERR_LTSLASH_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_LTSLASH_REQUIRED'/>
-    <reference name='XML_ERR_LT_IN_ATTRIBUTE' href='html/libxml-xmlerror.html#XML_ERR_LT_IN_ATTRIBUTE'/>
-    <reference name='XML_ERR_LT_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_LT_REQUIRED'/>
-    <reference name='XML_ERR_MISPLACED_CDATA_END' href='html/libxml-xmlerror.html#XML_ERR_MISPLACED_CDATA_END'/>
-    <reference name='XML_ERR_MISSING_ENCODING' href='html/libxml-xmlerror.html#XML_ERR_MISSING_ENCODING'/>
-    <reference name='XML_ERR_MIXED_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_MIXED_NOT_FINISHED'/>
-    <reference name='XML_ERR_MIXED_NOT_STARTED' href='html/libxml-xmlerror.html#XML_ERR_MIXED_NOT_STARTED'/>
-    <reference name='XML_ERR_NAME_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_NAME_REQUIRED'/>
-    <reference name='XML_ERR_NAME_TOO_LONG' href='html/libxml-xmlerror.html#XML_ERR_NAME_TOO_LONG'/>
-    <reference name='XML_ERR_NMTOKEN_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_NMTOKEN_REQUIRED'/>
-    <reference name='XML_ERR_NONE' href='html/libxml-xmlerror.html#XML_ERR_NONE'/>
-    <reference name='XML_ERR_NOTATION_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_NOTATION_NOT_FINISHED'/>
-    <reference name='XML_ERR_NOTATION_NOT_STARTED' href='html/libxml-xmlerror.html#XML_ERR_NOTATION_NOT_STARTED'/>
-    <reference name='XML_ERR_NOTATION_PROCESSING' href='html/libxml-xmlerror.html#XML_ERR_NOTATION_PROCESSING'/>
-    <reference name='XML_ERR_NOT_STANDALONE' href='html/libxml-xmlerror.html#XML_ERR_NOT_STANDALONE'/>
-    <reference name='XML_ERR_NOT_WELL_BALANCED' href='html/libxml-xmlerror.html#XML_ERR_NOT_WELL_BALANCED'/>
-    <reference name='XML_ERR_NO_DTD' href='html/libxml-xmlerror.html#XML_ERR_NO_DTD'/>
-    <reference name='XML_ERR_NO_MEMORY' href='html/libxml-xmlerror.html#XML_ERR_NO_MEMORY'/>
-    <reference name='XML_ERR_NS_DECL_ERROR' href='html/libxml-xmlerror.html#XML_ERR_NS_DECL_ERROR'/>
-    <reference name='XML_ERR_OK' href='html/libxml-xmlerror.html#XML_ERR_OK'/>
-    <reference name='XML_ERR_PCDATA_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_PCDATA_REQUIRED'/>
-    <reference name='XML_ERR_PEREF_AT_EOF' href='html/libxml-xmlerror.html#XML_ERR_PEREF_AT_EOF'/>
-    <reference name='XML_ERR_PEREF_IN_EPILOG' href='html/libxml-xmlerror.html#XML_ERR_PEREF_IN_EPILOG'/>
-    <reference name='XML_ERR_PEREF_IN_INT_SUBSET' href='html/libxml-xmlerror.html#XML_ERR_PEREF_IN_INT_SUBSET'/>
-    <reference name='XML_ERR_PEREF_IN_PROLOG' href='html/libxml-xmlerror.html#XML_ERR_PEREF_IN_PROLOG'/>
-    <reference name='XML_ERR_PEREF_NO_NAME' href='html/libxml-xmlerror.html#XML_ERR_PEREF_NO_NAME'/>
-    <reference name='XML_ERR_PEREF_SEMICOL_MISSING' href='html/libxml-xmlerror.html#XML_ERR_PEREF_SEMICOL_MISSING'/>
-    <reference name='XML_ERR_PI_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_PI_NOT_FINISHED'/>
-    <reference name='XML_ERR_PI_NOT_STARTED' href='html/libxml-xmlerror.html#XML_ERR_PI_NOT_STARTED'/>
-    <reference name='XML_ERR_PUBID_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_PUBID_REQUIRED'/>
-    <reference name='XML_ERR_RESERVED_XML_NAME' href='html/libxml-xmlerror.html#XML_ERR_RESERVED_XML_NAME'/>
-    <reference name='XML_ERR_SEPARATOR_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_SEPARATOR_REQUIRED'/>
-    <reference name='XML_ERR_SPACE_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_SPACE_REQUIRED'/>
-    <reference name='XML_ERR_STANDALONE_VALUE' href='html/libxml-xmlerror.html#XML_ERR_STANDALONE_VALUE'/>
-    <reference name='XML_ERR_STRING_NOT_CLOSED' href='html/libxml-xmlerror.html#XML_ERR_STRING_NOT_CLOSED'/>
-    <reference name='XML_ERR_STRING_NOT_STARTED' href='html/libxml-xmlerror.html#XML_ERR_STRING_NOT_STARTED'/>
-    <reference name='XML_ERR_TAG_NAME_MISMATCH' href='html/libxml-xmlerror.html#XML_ERR_TAG_NAME_MISMATCH'/>
-    <reference name='XML_ERR_TAG_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_TAG_NOT_FINISHED'/>
-    <reference name='XML_ERR_UNDECLARED_ENTITY' href='html/libxml-xmlerror.html#XML_ERR_UNDECLARED_ENTITY'/>
-    <reference name='XML_ERR_UNKNOWN_ENCODING' href='html/libxml-xmlerror.html#XML_ERR_UNKNOWN_ENCODING'/>
-    <reference name='XML_ERR_UNKNOWN_VERSION' href='html/libxml-xmlerror.html#XML_ERR_UNKNOWN_VERSION'/>
-    <reference name='XML_ERR_UNPARSED_ENTITY' href='html/libxml-xmlerror.html#XML_ERR_UNPARSED_ENTITY'/>
-    <reference name='XML_ERR_UNSUPPORTED_ENCODING' href='html/libxml-xmlerror.html#XML_ERR_UNSUPPORTED_ENCODING'/>
-    <reference name='XML_ERR_URI_FRAGMENT' href='html/libxml-xmlerror.html#XML_ERR_URI_FRAGMENT'/>
-    <reference name='XML_ERR_URI_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_URI_REQUIRED'/>
-    <reference name='XML_ERR_USER_STOP' href='html/libxml-xmlerror.html#XML_ERR_USER_STOP'/>
-    <reference name='XML_ERR_VALUE_REQUIRED' href='html/libxml-xmlerror.html#XML_ERR_VALUE_REQUIRED'/>
-    <reference name='XML_ERR_VERSION_MISMATCH' href='html/libxml-xmlerror.html#XML_ERR_VERSION_MISMATCH'/>
-    <reference name='XML_ERR_VERSION_MISSING' href='html/libxml-xmlerror.html#XML_ERR_VERSION_MISSING'/>
-    <reference name='XML_ERR_WARNING' href='html/libxml-xmlerror.html#XML_ERR_WARNING'/>
-    <reference name='XML_ERR_XMLDECL_NOT_FINISHED' href='html/libxml-xmlerror.html#XML_ERR_XMLDECL_NOT_FINISHED'/>
-    <reference name='XML_ERR_XMLDECL_NOT_STARTED' href='html/libxml-xmlerror.html#XML_ERR_XMLDECL_NOT_STARTED'/>
-    <reference name='XML_EXP_ATOM' href='html/libxml-xmlregexp.html#XML_EXP_ATOM'/>
-    <reference name='XML_EXP_COUNT' href='html/libxml-xmlregexp.html#XML_EXP_COUNT'/>
-    <reference name='XML_EXP_EMPTY' href='html/libxml-xmlregexp.html#XML_EXP_EMPTY'/>
-    <reference name='XML_EXP_FORBID' href='html/libxml-xmlregexp.html#XML_EXP_FORBID'/>
-    <reference name='XML_EXP_OR' href='html/libxml-xmlregexp.html#XML_EXP_OR'/>
-    <reference name='XML_EXP_SEQ' href='html/libxml-xmlregexp.html#XML_EXP_SEQ'/>
-    <reference name='XML_EXTERNAL_GENERAL_PARSED_ENTITY' href='html/libxml-entities.html#XML_EXTERNAL_GENERAL_PARSED_ENTITY'/>
-    <reference name='XML_EXTERNAL_GENERAL_UNPARSED_ENTITY' href='html/libxml-entities.html#XML_EXTERNAL_GENERAL_UNPARSED_ENTITY'/>
-    <reference name='XML_EXTERNAL_PARAMETER_ENTITY' href='html/libxml-entities.html#XML_EXTERNAL_PARAMETER_ENTITY'/>
-    <reference name='XML_FROM_BUFFER' href='html/libxml-xmlerror.html#XML_FROM_BUFFER'/>
-    <reference name='XML_FROM_C14N' href='html/libxml-xmlerror.html#XML_FROM_C14N'/>
-    <reference name='XML_FROM_CATALOG' href='html/libxml-xmlerror.html#XML_FROM_CATALOG'/>
-    <reference name='XML_FROM_CHECK' href='html/libxml-xmlerror.html#XML_FROM_CHECK'/>
-    <reference name='XML_FROM_DATATYPE' href='html/libxml-xmlerror.html#XML_FROM_DATATYPE'/>
-    <reference name='XML_FROM_DTD' href='html/libxml-xmlerror.html#XML_FROM_DTD'/>
-    <reference name='XML_FROM_FTP' href='html/libxml-xmlerror.html#XML_FROM_FTP'/>
-    <reference name='XML_FROM_HTML' href='html/libxml-xmlerror.html#XML_FROM_HTML'/>
-    <reference name='XML_FROM_HTTP' href='html/libxml-xmlerror.html#XML_FROM_HTTP'/>
-    <reference name='XML_FROM_I18N' href='html/libxml-xmlerror.html#XML_FROM_I18N'/>
-    <reference name='XML_FROM_IO' href='html/libxml-xmlerror.html#XML_FROM_IO'/>
-    <reference name='XML_FROM_MEMORY' href='html/libxml-xmlerror.html#XML_FROM_MEMORY'/>
-    <reference name='XML_FROM_MODULE' href='html/libxml-xmlerror.html#XML_FROM_MODULE'/>
-    <reference name='XML_FROM_NAMESPACE' href='html/libxml-xmlerror.html#XML_FROM_NAMESPACE'/>
-    <reference name='XML_FROM_NONE' href='html/libxml-xmlerror.html#XML_FROM_NONE'/>
-    <reference name='XML_FROM_OUTPUT' href='html/libxml-xmlerror.html#XML_FROM_OUTPUT'/>
-    <reference name='XML_FROM_PARSER' href='html/libxml-xmlerror.html#XML_FROM_PARSER'/>
-    <reference name='XML_FROM_REGEXP' href='html/libxml-xmlerror.html#XML_FROM_REGEXP'/>
-    <reference name='XML_FROM_RELAXNGP' href='html/libxml-xmlerror.html#XML_FROM_RELAXNGP'/>
-    <reference name='XML_FROM_RELAXNGV' href='html/libxml-xmlerror.html#XML_FROM_RELAXNGV'/>
-    <reference name='XML_FROM_SCHEMASP' href='html/libxml-xmlerror.html#XML_FROM_SCHEMASP'/>
-    <reference name='XML_FROM_SCHEMASV' href='html/libxml-xmlerror.html#XML_FROM_SCHEMASV'/>
-    <reference name='XML_FROM_SCHEMATRONV' href='html/libxml-xmlerror.html#XML_FROM_SCHEMATRONV'/>
-    <reference name='XML_FROM_TREE' href='html/libxml-xmlerror.html#XML_FROM_TREE'/>
-    <reference name='XML_FROM_URI' href='html/libxml-xmlerror.html#XML_FROM_URI'/>
-    <reference name='XML_FROM_VALID' href='html/libxml-xmlerror.html#XML_FROM_VALID'/>
-    <reference name='XML_FROM_WRITER' href='html/libxml-xmlerror.html#XML_FROM_WRITER'/>
-    <reference name='XML_FROM_XINCLUDE' href='html/libxml-xmlerror.html#XML_FROM_XINCLUDE'/>
-    <reference name='XML_FROM_XPATH' href='html/libxml-xmlerror.html#XML_FROM_XPATH'/>
-    <reference name='XML_FROM_XPOINTER' href='html/libxml-xmlerror.html#XML_FROM_XPOINTER'/>
-    <reference name='XML_FROM_XSLT' href='html/libxml-xmlerror.html#XML_FROM_XSLT'/>
-    <reference name='XML_FTP_ACCNT' href='html/libxml-xmlerror.html#XML_FTP_ACCNT'/>
-    <reference name='XML_FTP_EPSV_ANSWER' href='html/libxml-xmlerror.html#XML_FTP_EPSV_ANSWER'/>
-    <reference name='XML_FTP_PASV_ANSWER' href='html/libxml-xmlerror.html#XML_FTP_PASV_ANSWER'/>
-    <reference name='XML_FTP_URL_SYNTAX' href='html/libxml-xmlerror.html#XML_FTP_URL_SYNTAX'/>
-    <reference name='XML_GET_CONTENT' href='html/libxml-tree.html#XML_GET_CONTENT'/>
-    <reference name='XML_GET_LINE' href='html/libxml-tree.html#XML_GET_LINE'/>
-    <reference name='XML_HTML_DOCUMENT_NODE' href='html/libxml-tree.html#XML_HTML_DOCUMENT_NODE'/>
-    <reference name='XML_HTML_INCORRECTLY_OPENED_COMMENT' href='html/libxml-xmlerror.html#XML_HTML_INCORRECTLY_OPENED_COMMENT'/>
-    <reference name='XML_HTML_STRUCURE_ERROR' href='html/libxml-xmlerror.html#XML_HTML_STRUCURE_ERROR'/>
-    <reference name='XML_HTML_UNKNOWN_TAG' href='html/libxml-xmlerror.html#XML_HTML_UNKNOWN_TAG'/>
-    <reference name='XML_HTTP_UNKNOWN_HOST' href='html/libxml-xmlerror.html#XML_HTTP_UNKNOWN_HOST'/>
-    <reference name='XML_HTTP_URL_SYNTAX' href='html/libxml-xmlerror.html#XML_HTTP_URL_SYNTAX'/>
-    <reference name='XML_HTTP_USE_IP' href='html/libxml-xmlerror.html#XML_HTTP_USE_IP'/>
-    <reference name='XML_I18N_CONV_FAILED' href='html/libxml-xmlerror.html#XML_I18N_CONV_FAILED'/>
-    <reference name='XML_I18N_EXCESS_HANDLER' href='html/libxml-xmlerror.html#XML_I18N_EXCESS_HANDLER'/>
-    <reference name='XML_I18N_NO_HANDLER' href='html/libxml-xmlerror.html#XML_I18N_NO_HANDLER'/>
-    <reference name='XML_I18N_NO_NAME' href='html/libxml-xmlerror.html#XML_I18N_NO_NAME'/>
-    <reference name='XML_I18N_NO_OUTPUT' href='html/libxml-xmlerror.html#XML_I18N_NO_OUTPUT'/>
-    <reference name='XML_INTERNAL_GENERAL_ENTITY' href='html/libxml-entities.html#XML_INTERNAL_GENERAL_ENTITY'/>
-    <reference name='XML_INTERNAL_PARAMETER_ENTITY' href='html/libxml-entities.html#XML_INTERNAL_PARAMETER_ENTITY'/>
-    <reference name='XML_INTERNAL_PREDEFINED_ENTITY' href='html/libxml-entities.html#XML_INTERNAL_PREDEFINED_ENTITY'/>
-    <reference name='XML_IO_BUFFER_FULL' href='html/libxml-xmlerror.html#XML_IO_BUFFER_FULL'/>
-    <reference name='XML_IO_EACCES' href='html/libxml-xmlerror.html#XML_IO_EACCES'/>
-    <reference name='XML_IO_EADDRINUSE' href='html/libxml-xmlerror.html#XML_IO_EADDRINUSE'/>
-    <reference name='XML_IO_EAFNOSUPPORT' href='html/libxml-xmlerror.html#XML_IO_EAFNOSUPPORT'/>
-    <reference name='XML_IO_EAGAIN' href='html/libxml-xmlerror.html#XML_IO_EAGAIN'/>
-    <reference name='XML_IO_EALREADY' href='html/libxml-xmlerror.html#XML_IO_EALREADY'/>
-    <reference name='XML_IO_EBADF' href='html/libxml-xmlerror.html#XML_IO_EBADF'/>
-    <reference name='XML_IO_EBADMSG' href='html/libxml-xmlerror.html#XML_IO_EBADMSG'/>
-    <reference name='XML_IO_EBUSY' href='html/libxml-xmlerror.html#XML_IO_EBUSY'/>
-    <reference name='XML_IO_ECANCELED' href='html/libxml-xmlerror.html#XML_IO_ECANCELED'/>
-    <reference name='XML_IO_ECHILD' href='html/libxml-xmlerror.html#XML_IO_ECHILD'/>
-    <reference name='XML_IO_ECONNREFUSED' href='html/libxml-xmlerror.html#XML_IO_ECONNREFUSED'/>
-    <reference name='XML_IO_EDEADLK' href='html/libxml-xmlerror.html#XML_IO_EDEADLK'/>
-    <reference name='XML_IO_EDOM' href='html/libxml-xmlerror.html#XML_IO_EDOM'/>
-    <reference name='XML_IO_EEXIST' href='html/libxml-xmlerror.html#XML_IO_EEXIST'/>
-    <reference name='XML_IO_EFAULT' href='html/libxml-xmlerror.html#XML_IO_EFAULT'/>
-    <reference name='XML_IO_EFBIG' href='html/libxml-xmlerror.html#XML_IO_EFBIG'/>
-    <reference name='XML_IO_EINPROGRESS' href='html/libxml-xmlerror.html#XML_IO_EINPROGRESS'/>
-    <reference name='XML_IO_EINTR' href='html/libxml-xmlerror.html#XML_IO_EINTR'/>
-    <reference name='XML_IO_EINVAL' href='html/libxml-xmlerror.html#XML_IO_EINVAL'/>
-    <reference name='XML_IO_EIO' href='html/libxml-xmlerror.html#XML_IO_EIO'/>
-    <reference name='XML_IO_EISCONN' href='html/libxml-xmlerror.html#XML_IO_EISCONN'/>
-    <reference name='XML_IO_EISDIR' href='html/libxml-xmlerror.html#XML_IO_EISDIR'/>
-    <reference name='XML_IO_EMFILE' href='html/libxml-xmlerror.html#XML_IO_EMFILE'/>
-    <reference name='XML_IO_EMLINK' href='html/libxml-xmlerror.html#XML_IO_EMLINK'/>
-    <reference name='XML_IO_EMSGSIZE' href='html/libxml-xmlerror.html#XML_IO_EMSGSIZE'/>
-    <reference name='XML_IO_ENAMETOOLONG' href='html/libxml-xmlerror.html#XML_IO_ENAMETOOLONG'/>
-    <reference name='XML_IO_ENCODER' href='html/libxml-xmlerror.html#XML_IO_ENCODER'/>
-    <reference name='XML_IO_ENETUNREACH' href='html/libxml-xmlerror.html#XML_IO_ENETUNREACH'/>
-    <reference name='XML_IO_ENFILE' href='html/libxml-xmlerror.html#XML_IO_ENFILE'/>
-    <reference name='XML_IO_ENODEV' href='html/libxml-xmlerror.html#XML_IO_ENODEV'/>
-    <reference name='XML_IO_ENOENT' href='html/libxml-xmlerror.html#XML_IO_ENOENT'/>
-    <reference name='XML_IO_ENOEXEC' href='html/libxml-xmlerror.html#XML_IO_ENOEXEC'/>
-    <reference name='XML_IO_ENOLCK' href='html/libxml-xmlerror.html#XML_IO_ENOLCK'/>
-    <reference name='XML_IO_ENOMEM' href='html/libxml-xmlerror.html#XML_IO_ENOMEM'/>
-    <reference name='XML_IO_ENOSPC' href='html/libxml-xmlerror.html#XML_IO_ENOSPC'/>
-    <reference name='XML_IO_ENOSYS' href='html/libxml-xmlerror.html#XML_IO_ENOSYS'/>
-    <reference name='XML_IO_ENOTDIR' href='html/libxml-xmlerror.html#XML_IO_ENOTDIR'/>
-    <reference name='XML_IO_ENOTEMPTY' href='html/libxml-xmlerror.html#XML_IO_ENOTEMPTY'/>
-    <reference name='XML_IO_ENOTSOCK' href='html/libxml-xmlerror.html#XML_IO_ENOTSOCK'/>
-    <reference name='XML_IO_ENOTSUP' href='html/libxml-xmlerror.html#XML_IO_ENOTSUP'/>
-    <reference name='XML_IO_ENOTTY' href='html/libxml-xmlerror.html#XML_IO_ENOTTY'/>
-    <reference name='XML_IO_ENXIO' href='html/libxml-xmlerror.html#XML_IO_ENXIO'/>
-    <reference name='XML_IO_EPERM' href='html/libxml-xmlerror.html#XML_IO_EPERM'/>
-    <reference name='XML_IO_EPIPE' href='html/libxml-xmlerror.html#XML_IO_EPIPE'/>
-    <reference name='XML_IO_ERANGE' href='html/libxml-xmlerror.html#XML_IO_ERANGE'/>
-    <reference name='XML_IO_EROFS' href='html/libxml-xmlerror.html#XML_IO_EROFS'/>
-    <reference name='XML_IO_ESPIPE' href='html/libxml-xmlerror.html#XML_IO_ESPIPE'/>
-    <reference name='XML_IO_ESRCH' href='html/libxml-xmlerror.html#XML_IO_ESRCH'/>
-    <reference name='XML_IO_ETIMEDOUT' href='html/libxml-xmlerror.html#XML_IO_ETIMEDOUT'/>
-    <reference name='XML_IO_EXDEV' href='html/libxml-xmlerror.html#XML_IO_EXDEV'/>
-    <reference name='XML_IO_FLUSH' href='html/libxml-xmlerror.html#XML_IO_FLUSH'/>
-    <reference name='XML_IO_LOAD_ERROR' href='html/libxml-xmlerror.html#XML_IO_LOAD_ERROR'/>
-    <reference name='XML_IO_NETWORK_ATTEMPT' href='html/libxml-xmlerror.html#XML_IO_NETWORK_ATTEMPT'/>
-    <reference name='XML_IO_NO_INPUT' href='html/libxml-xmlerror.html#XML_IO_NO_INPUT'/>
-    <reference name='XML_IO_UNKNOWN' href='html/libxml-xmlerror.html#XML_IO_UNKNOWN'/>
-    <reference name='XML_IO_WRITE' href='html/libxml-xmlerror.html#XML_IO_WRITE'/>
-    <reference name='XML_LOCAL_NAMESPACE' href='html/libxml-tree.html#XML_LOCAL_NAMESPACE'/>
-    <reference name='XML_MAX_DICTIONARY_LIMIT' href='html/libxml-parserInternals.html#XML_MAX_DICTIONARY_LIMIT'/>
-    <reference name='XML_MAX_LOOKUP_LIMIT' href='html/libxml-parserInternals.html#XML_MAX_LOOKUP_LIMIT'/>
-    <reference name='XML_MAX_NAMELEN' href='html/libxml-parserInternals.html#XML_MAX_NAMELEN'/>
-    <reference name='XML_MAX_NAME_LENGTH' href='html/libxml-parserInternals.html#XML_MAX_NAME_LENGTH'/>
-    <reference name='XML_MAX_TEXT_LENGTH' href='html/libxml-parserInternals.html#XML_MAX_TEXT_LENGTH'/>
-    <reference name='XML_MODULE_CLOSE' href='html/libxml-xmlerror.html#XML_MODULE_CLOSE'/>
-    <reference name='XML_MODULE_LAZY' href='html/libxml-xmlmodule.html#XML_MODULE_LAZY'/>
-    <reference name='XML_MODULE_LOCAL' href='html/libxml-xmlmodule.html#XML_MODULE_LOCAL'/>
-    <reference name='XML_MODULE_OPEN' href='html/libxml-xmlerror.html#XML_MODULE_OPEN'/>
-    <reference name='XML_NAMESPACE_DECL' href='html/libxml-tree.html#XML_NAMESPACE_DECL'/>
-    <reference name='XML_NOTATION_NODE' href='html/libxml-tree.html#XML_NOTATION_NODE'/>
-    <reference name='XML_NS_ERR_ATTRIBUTE_REDEFINED' href='html/libxml-xmlerror.html#XML_NS_ERR_ATTRIBUTE_REDEFINED'/>
-    <reference name='XML_NS_ERR_COLON' href='html/libxml-xmlerror.html#XML_NS_ERR_COLON'/>
-    <reference name='XML_NS_ERR_EMPTY' href='html/libxml-xmlerror.html#XML_NS_ERR_EMPTY'/>
-    <reference name='XML_NS_ERR_QNAME' href='html/libxml-xmlerror.html#XML_NS_ERR_QNAME'/>
-    <reference name='XML_NS_ERR_UNDEFINED_NAMESPACE' href='html/libxml-xmlerror.html#XML_NS_ERR_UNDEFINED_NAMESPACE'/>
-    <reference name='XML_NS_ERR_XML_NAMESPACE' href='html/libxml-xmlerror.html#XML_NS_ERR_XML_NAMESPACE'/>
-    <reference name='XML_PARSER_ATTRIBUTE_VALUE' href='html/libxml-parser.html#XML_PARSER_ATTRIBUTE_VALUE'/>
-    <reference name='XML_PARSER_CDATA_SECTION' href='html/libxml-parser.html#XML_PARSER_CDATA_SECTION'/>
-    <reference name='XML_PARSER_COMMENT' href='html/libxml-parser.html#XML_PARSER_COMMENT'/>
-    <reference name='XML_PARSER_CONTENT' href='html/libxml-parser.html#XML_PARSER_CONTENT'/>
-    <reference name='XML_PARSER_DEFAULTATTRS' href='html/libxml-xmlreader.html#XML_PARSER_DEFAULTATTRS'/>
-    <reference name='XML_PARSER_DTD' href='html/libxml-parser.html#XML_PARSER_DTD'/>
-    <reference name='XML_PARSER_END_TAG' href='html/libxml-parser.html#XML_PARSER_END_TAG'/>
-    <reference name='XML_PARSER_ENTITY_DECL' href='html/libxml-parser.html#XML_PARSER_ENTITY_DECL'/>
-    <reference name='XML_PARSER_ENTITY_VALUE' href='html/libxml-parser.html#XML_PARSER_ENTITY_VALUE'/>
-    <reference name='XML_PARSER_EOF' href='html/libxml-parser.html#XML_PARSER_EOF'/>
-    <reference name='XML_PARSER_EPILOG' href='html/libxml-parser.html#XML_PARSER_EPILOG'/>
-    <reference name='XML_PARSER_IGNORE' href='html/libxml-parser.html#XML_PARSER_IGNORE'/>
-    <reference name='XML_PARSER_LOADDTD' href='html/libxml-xmlreader.html#XML_PARSER_LOADDTD'/>
-    <reference name='XML_PARSER_MISC' href='html/libxml-parser.html#XML_PARSER_MISC'/>
-    <reference name='XML_PARSER_PI' href='html/libxml-parser.html#XML_PARSER_PI'/>
-    <reference name='XML_PARSER_PROLOG' href='html/libxml-parser.html#XML_PARSER_PROLOG'/>
-    <reference name='XML_PARSER_PUBLIC_LITERAL' href='html/libxml-parser.html#XML_PARSER_PUBLIC_LITERAL'/>
-    <reference name='XML_PARSER_SEVERITY_ERROR' href='html/libxml-xmlreader.html#XML_PARSER_SEVERITY_ERROR'/>
-    <reference name='XML_PARSER_SEVERITY_VALIDITY_ERROR' href='html/libxml-xmlreader.html#XML_PARSER_SEVERITY_VALIDITY_ERROR'/>
-    <reference name='XML_PARSER_SEVERITY_VALIDITY_WARNING' href='html/libxml-xmlreader.html#XML_PARSER_SEVERITY_VALIDITY_WARNING'/>
-    <reference name='XML_PARSER_SEVERITY_WARNING' href='html/libxml-xmlreader.html#XML_PARSER_SEVERITY_WARNING'/>
-    <reference name='XML_PARSER_START' href='html/libxml-parser.html#XML_PARSER_START'/>
-    <reference name='XML_PARSER_START_TAG' href='html/libxml-parser.html#XML_PARSER_START_TAG'/>
-    <reference name='XML_PARSER_SUBST_ENTITIES' href='html/libxml-xmlreader.html#XML_PARSER_SUBST_ENTITIES'/>
-    <reference name='XML_PARSER_SYSTEM_LITERAL' href='html/libxml-parser.html#XML_PARSER_SYSTEM_LITERAL'/>
-    <reference name='XML_PARSER_VALIDATE' href='html/libxml-xmlreader.html#XML_PARSER_VALIDATE'/>
-    <reference name='XML_PARSE_BIG_LINES' href='html/libxml-parser.html#XML_PARSE_BIG_LINES'/>
-    <reference name='XML_PARSE_COMPACT' href='html/libxml-parser.html#XML_PARSE_COMPACT'/>
-    <reference name='XML_PARSE_DOM' href='html/libxml-parser.html#XML_PARSE_DOM'/>
-    <reference name='XML_PARSE_DTDATTR' href='html/libxml-parser.html#XML_PARSE_DTDATTR'/>
-    <reference name='XML_PARSE_DTDLOAD' href='html/libxml-parser.html#XML_PARSE_DTDLOAD'/>
-    <reference name='XML_PARSE_DTDVALID' href='html/libxml-parser.html#XML_PARSE_DTDVALID'/>
-    <reference name='XML_PARSE_HUGE' href='html/libxml-parser.html#XML_PARSE_HUGE'/>
-    <reference name='XML_PARSE_IGNORE_ENC' href='html/libxml-parser.html#XML_PARSE_IGNORE_ENC'/>
-    <reference name='XML_PARSE_NOBASEFIX' href='html/libxml-parser.html#XML_PARSE_NOBASEFIX'/>
-    <reference name='XML_PARSE_NOBLANKS' href='html/libxml-parser.html#XML_PARSE_NOBLANKS'/>
-    <reference name='XML_PARSE_NOCDATA' href='html/libxml-parser.html#XML_PARSE_NOCDATA'/>
-    <reference name='XML_PARSE_NODICT' href='html/libxml-parser.html#XML_PARSE_NODICT'/>
-    <reference name='XML_PARSE_NOENT' href='html/libxml-parser.html#XML_PARSE_NOENT'/>
-    <reference name='XML_PARSE_NOERROR' href='html/libxml-parser.html#XML_PARSE_NOERROR'/>
-    <reference name='XML_PARSE_NONET' href='html/libxml-parser.html#XML_PARSE_NONET'/>
-    <reference name='XML_PARSE_NOWARNING' href='html/libxml-parser.html#XML_PARSE_NOWARNING'/>
-    <reference name='XML_PARSE_NOXINCNODE' href='html/libxml-parser.html#XML_PARSE_NOXINCNODE'/>
-    <reference name='XML_PARSE_NSCLEAN' href='html/libxml-parser.html#XML_PARSE_NSCLEAN'/>
-    <reference name='XML_PARSE_OLD10' href='html/libxml-parser.html#XML_PARSE_OLD10'/>
-    <reference name='XML_PARSE_OLDSAX' href='html/libxml-parser.html#XML_PARSE_OLDSAX'/>
-    <reference name='XML_PARSE_PEDANTIC' href='html/libxml-parser.html#XML_PARSE_PEDANTIC'/>
-    <reference name='XML_PARSE_PUSH_DOM' href='html/libxml-parser.html#XML_PARSE_PUSH_DOM'/>
-    <reference name='XML_PARSE_PUSH_SAX' href='html/libxml-parser.html#XML_PARSE_PUSH_SAX'/>
-    <reference name='XML_PARSE_READER' href='html/libxml-parser.html#XML_PARSE_READER'/>
-    <reference name='XML_PARSE_RECOVER' href='html/libxml-parser.html#XML_PARSE_RECOVER'/>
-    <reference name='XML_PARSE_SAX' href='html/libxml-parser.html#XML_PARSE_SAX'/>
-    <reference name='XML_PARSE_SAX1' href='html/libxml-parser.html#XML_PARSE_SAX1'/>
-    <reference name='XML_PARSE_UNKNOWN' href='html/libxml-parser.html#XML_PARSE_UNKNOWN'/>
-    <reference name='XML_PARSE_XINCLUDE' href='html/libxml-parser.html#XML_PARSE_XINCLUDE'/>
-    <reference name='XML_PATTERN_DEFAULT' href='html/libxml-pattern.html#XML_PATTERN_DEFAULT'/>
-    <reference name='XML_PATTERN_XPATH' href='html/libxml-pattern.html#XML_PATTERN_XPATH'/>
-    <reference name='XML_PATTERN_XSFIELD' href='html/libxml-pattern.html#XML_PATTERN_XSFIELD'/>
-    <reference name='XML_PATTERN_XSSEL' href='html/libxml-pattern.html#XML_PATTERN_XSSEL'/>
-    <reference name='XML_PI_NODE' href='html/libxml-tree.html#XML_PI_NODE'/>
-    <reference name='XML_READER_TYPE_ATTRIBUTE' href='html/libxml-xmlreader.html#XML_READER_TYPE_ATTRIBUTE'/>
-    <reference name='XML_READER_TYPE_CDATA' href='html/libxml-xmlreader.html#XML_READER_TYPE_CDATA'/>
-    <reference name='XML_READER_TYPE_COMMENT' href='html/libxml-xmlreader.html#XML_READER_TYPE_COMMENT'/>
-    <reference name='XML_READER_TYPE_DOCUMENT' href='html/libxml-xmlreader.html#XML_READER_TYPE_DOCUMENT'/>
-    <reference name='XML_READER_TYPE_DOCUMENT_FRAGMENT' href='html/libxml-xmlreader.html#XML_READER_TYPE_DOCUMENT_FRAGMENT'/>
-    <reference name='XML_READER_TYPE_DOCUMENT_TYPE' href='html/libxml-xmlreader.html#XML_READER_TYPE_DOCUMENT_TYPE'/>
-    <reference name='XML_READER_TYPE_ELEMENT' href='html/libxml-xmlreader.html#XML_READER_TYPE_ELEMENT'/>
-    <reference name='XML_READER_TYPE_END_ELEMENT' href='html/libxml-xmlreader.html#XML_READER_TYPE_END_ELEMENT'/>
-    <reference name='XML_READER_TYPE_END_ENTITY' href='html/libxml-xmlreader.html#XML_READER_TYPE_END_ENTITY'/>
-    <reference name='XML_READER_TYPE_ENTITY' href='html/libxml-xmlreader.html#XML_READER_TYPE_ENTITY'/>
-    <reference name='XML_READER_TYPE_ENTITY_REFERENCE' href='html/libxml-xmlreader.html#XML_READER_TYPE_ENTITY_REFERENCE'/>
-    <reference name='XML_READER_TYPE_NONE' href='html/libxml-xmlreader.html#XML_READER_TYPE_NONE'/>
-    <reference name='XML_READER_TYPE_NOTATION' href='html/libxml-xmlreader.html#XML_READER_TYPE_NOTATION'/>
-    <reference name='XML_READER_TYPE_PROCESSING_INSTRUCTION' href='html/libxml-xmlreader.html#XML_READER_TYPE_PROCESSING_INSTRUCTION'/>
-    <reference name='XML_READER_TYPE_SIGNIFICANT_WHITESPACE' href='html/libxml-xmlreader.html#XML_READER_TYPE_SIGNIFICANT_WHITESPACE'/>
-    <reference name='XML_READER_TYPE_TEXT' href='html/libxml-xmlreader.html#XML_READER_TYPE_TEXT'/>
-    <reference name='XML_READER_TYPE_WHITESPACE' href='html/libxml-xmlreader.html#XML_READER_TYPE_WHITESPACE'/>
-    <reference name='XML_READER_TYPE_XML_DECLARATION' href='html/libxml-xmlreader.html#XML_READER_TYPE_XML_DECLARATION'/>
-    <reference name='XML_REGEXP_COMPILE_ERROR' href='html/libxml-xmlerror.html#XML_REGEXP_COMPILE_ERROR'/>
-    <reference name='XML_RELAXNGP_CRNG' href='html/libxml-relaxng.html#XML_RELAXNGP_CRNG'/>
-    <reference name='XML_RELAXNGP_FREE_DOC' href='html/libxml-relaxng.html#XML_RELAXNGP_FREE_DOC'/>
-    <reference name='XML_RELAXNGP_NONE' href='html/libxml-relaxng.html#XML_RELAXNGP_NONE'/>
-    <reference name='XML_RELAXNG_ERR_ATTREXTRANS' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTREXTRANS'/>
-    <reference name='XML_RELAXNG_ERR_ATTRNAME' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRNAME'/>
-    <reference name='XML_RELAXNG_ERR_ATTRNONS' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRNONS'/>
-    <reference name='XML_RELAXNG_ERR_ATTRVALID' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRVALID'/>
-    <reference name='XML_RELAXNG_ERR_ATTRWRONGNS' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRWRONGNS'/>
-    <reference name='XML_RELAXNG_ERR_CONTENTVALID' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_CONTENTVALID'/>
-    <reference name='XML_RELAXNG_ERR_DATAELEM' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_DATAELEM'/>
-    <reference name='XML_RELAXNG_ERR_DATATYPE' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_DATATYPE'/>
-    <reference name='XML_RELAXNG_ERR_DUPID' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_DUPID'/>
-    <reference name='XML_RELAXNG_ERR_ELEMEXTRANS' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMEXTRANS'/>
-    <reference name='XML_RELAXNG_ERR_ELEMNAME' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMNAME'/>
-    <reference name='XML_RELAXNG_ERR_ELEMNONS' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMNONS'/>
-    <reference name='XML_RELAXNG_ERR_ELEMNOTEMPTY' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMNOTEMPTY'/>
-    <reference name='XML_RELAXNG_ERR_ELEMWRONG' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMWRONG'/>
-    <reference name='XML_RELAXNG_ERR_ELEMWRONGNS' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMWRONGNS'/>
-    <reference name='XML_RELAXNG_ERR_EXTRACONTENT' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_EXTRACONTENT'/>
-    <reference name='XML_RELAXNG_ERR_EXTRADATA' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_EXTRADATA'/>
-    <reference name='XML_RELAXNG_ERR_INTEREXTRA' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_INTEREXTRA'/>
-    <reference name='XML_RELAXNG_ERR_INTERNAL' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_INTERNAL'/>
-    <reference name='XML_RELAXNG_ERR_INTERNODATA' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_INTERNODATA'/>
-    <reference name='XML_RELAXNG_ERR_INTERSEQ' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_INTERSEQ'/>
-    <reference name='XML_RELAXNG_ERR_INVALIDATTR' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_INVALIDATTR'/>
-    <reference name='XML_RELAXNG_ERR_LACKDATA' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_LACKDATA'/>
-    <reference name='XML_RELAXNG_ERR_LIST' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_LIST'/>
-    <reference name='XML_RELAXNG_ERR_LISTELEM' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_LISTELEM'/>
-    <reference name='XML_RELAXNG_ERR_LISTEMPTY' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_LISTEMPTY'/>
-    <reference name='XML_RELAXNG_ERR_LISTEXTRA' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_LISTEXTRA'/>
-    <reference name='XML_RELAXNG_ERR_MEMORY' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_MEMORY'/>
-    <reference name='XML_RELAXNG_ERR_NODEFINE' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_NODEFINE'/>
-    <reference name='XML_RELAXNG_ERR_NOELEM' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_NOELEM'/>
-    <reference name='XML_RELAXNG_ERR_NOGRAMMAR' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_NOGRAMMAR'/>
-    <reference name='XML_RELAXNG_ERR_NOSTATE' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_NOSTATE'/>
-    <reference name='XML_RELAXNG_ERR_NOTELEM' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_NOTELEM'/>
-    <reference name='XML_RELAXNG_ERR_TEXTWRONG' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_TEXTWRONG'/>
-    <reference name='XML_RELAXNG_ERR_TYPE' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_TYPE'/>
-    <reference name='XML_RELAXNG_ERR_TYPECMP' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_TYPECMP'/>
-    <reference name='XML_RELAXNG_ERR_TYPEVAL' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_TYPEVAL'/>
-    <reference name='XML_RELAXNG_ERR_VALELEM' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_VALELEM'/>
-    <reference name='XML_RELAXNG_ERR_VALUE' href='html/libxml-relaxng.html#XML_RELAXNG_ERR_VALUE'/>
-    <reference name='XML_RELAXNG_OK' href='html/libxml-relaxng.html#XML_RELAXNG_OK'/>
-    <reference name='XML_RNGP_ANYNAME_ATTR_ANCESTOR' href='html/libxml-xmlerror.html#XML_RNGP_ANYNAME_ATTR_ANCESTOR'/>
-    <reference name='XML_RNGP_ATTRIBUTE_CHILDREN' href='html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_CHILDREN'/>
-    <reference name='XML_RNGP_ATTRIBUTE_CONTENT' href='html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_CONTENT'/>
-    <reference name='XML_RNGP_ATTRIBUTE_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_EMPTY'/>
-    <reference name='XML_RNGP_ATTRIBUTE_NOOP' href='html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_NOOP'/>
-    <reference name='XML_RNGP_ATTR_CONFLICT' href='html/libxml-xmlerror.html#XML_RNGP_ATTR_CONFLICT'/>
-    <reference name='XML_RNGP_CHOICE_CONTENT' href='html/libxml-xmlerror.html#XML_RNGP_CHOICE_CONTENT'/>
-    <reference name='XML_RNGP_CHOICE_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_CHOICE_EMPTY'/>
-    <reference name='XML_RNGP_CREATE_FAILURE' href='html/libxml-xmlerror.html#XML_RNGP_CREATE_FAILURE'/>
-    <reference name='XML_RNGP_DATA_CONTENT' href='html/libxml-xmlerror.html#XML_RNGP_DATA_CONTENT'/>
-    <reference name='XML_RNGP_DEFINE_CREATE_FAILED' href='html/libxml-xmlerror.html#XML_RNGP_DEFINE_CREATE_FAILED'/>
-    <reference name='XML_RNGP_DEFINE_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_DEFINE_EMPTY'/>
-    <reference name='XML_RNGP_DEFINE_MISSING' href='html/libxml-xmlerror.html#XML_RNGP_DEFINE_MISSING'/>
-    <reference name='XML_RNGP_DEFINE_NAME_MISSING' href='html/libxml-xmlerror.html#XML_RNGP_DEFINE_NAME_MISSING'/>
-    <reference name='XML_RNGP_DEF_CHOICE_AND_INTERLEAVE' href='html/libxml-xmlerror.html#XML_RNGP_DEF_CHOICE_AND_INTERLEAVE'/>
-    <reference name='XML_RNGP_ELEMENT_CONTENT' href='html/libxml-xmlerror.html#XML_RNGP_ELEMENT_CONTENT'/>
-    <reference name='XML_RNGP_ELEMENT_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_ELEMENT_EMPTY'/>
-    <reference name='XML_RNGP_ELEMENT_NAME' href='html/libxml-xmlerror.html#XML_RNGP_ELEMENT_NAME'/>
-    <reference name='XML_RNGP_ELEMENT_NO_CONTENT' href='html/libxml-xmlerror.html#XML_RNGP_ELEMENT_NO_CONTENT'/>
-    <reference name='XML_RNGP_ELEM_CONTENT_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_ELEM_CONTENT_EMPTY'/>
-    <reference name='XML_RNGP_ELEM_CONTENT_ERROR' href='html/libxml-xmlerror.html#XML_RNGP_ELEM_CONTENT_ERROR'/>
-    <reference name='XML_RNGP_ELEM_TEXT_CONFLICT' href='html/libxml-xmlerror.html#XML_RNGP_ELEM_TEXT_CONFLICT'/>
-    <reference name='XML_RNGP_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_EMPTY'/>
-    <reference name='XML_RNGP_EMPTY_CONSTRUCT' href='html/libxml-xmlerror.html#XML_RNGP_EMPTY_CONSTRUCT'/>
-    <reference name='XML_RNGP_EMPTY_CONTENT' href='html/libxml-xmlerror.html#XML_RNGP_EMPTY_CONTENT'/>
-    <reference name='XML_RNGP_EMPTY_NOT_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_EMPTY_NOT_EMPTY'/>
-    <reference name='XML_RNGP_ERROR_TYPE_LIB' href='html/libxml-xmlerror.html#XML_RNGP_ERROR_TYPE_LIB'/>
-    <reference name='XML_RNGP_EXCEPT_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_EXCEPT_EMPTY'/>
-    <reference name='XML_RNGP_EXCEPT_MISSING' href='html/libxml-xmlerror.html#XML_RNGP_EXCEPT_MISSING'/>
-    <reference name='XML_RNGP_EXCEPT_MULTIPLE' href='html/libxml-xmlerror.html#XML_RNGP_EXCEPT_MULTIPLE'/>
-    <reference name='XML_RNGP_EXCEPT_NO_CONTENT' href='html/libxml-xmlerror.html#XML_RNGP_EXCEPT_NO_CONTENT'/>
-    <reference name='XML_RNGP_EXTERNALREF_EMTPY' href='html/libxml-xmlerror.html#XML_RNGP_EXTERNALREF_EMTPY'/>
-    <reference name='XML_RNGP_EXTERNALREF_RECURSE' href='html/libxml-xmlerror.html#XML_RNGP_EXTERNALREF_RECURSE'/>
-    <reference name='XML_RNGP_EXTERNAL_REF_FAILURE' href='html/libxml-xmlerror.html#XML_RNGP_EXTERNAL_REF_FAILURE'/>
-    <reference name='XML_RNGP_FORBIDDEN_ATTRIBUTE' href='html/libxml-xmlerror.html#XML_RNGP_FORBIDDEN_ATTRIBUTE'/>
-    <reference name='XML_RNGP_FOREIGN_ELEMENT' href='html/libxml-xmlerror.html#XML_RNGP_FOREIGN_ELEMENT'/>
-    <reference name='XML_RNGP_GRAMMAR_CONTENT' href='html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_CONTENT'/>
-    <reference name='XML_RNGP_GRAMMAR_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_EMPTY'/>
-    <reference name='XML_RNGP_GRAMMAR_MISSING' href='html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_MISSING'/>
-    <reference name='XML_RNGP_GRAMMAR_NO_START' href='html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_NO_START'/>
-    <reference name='XML_RNGP_GROUP_ATTR_CONFLICT' href='html/libxml-xmlerror.html#XML_RNGP_GROUP_ATTR_CONFLICT'/>
-    <reference name='XML_RNGP_HREF_ERROR' href='html/libxml-xmlerror.html#XML_RNGP_HREF_ERROR'/>
-    <reference name='XML_RNGP_INCLUDE_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_INCLUDE_EMPTY'/>
-    <reference name='XML_RNGP_INCLUDE_FAILURE' href='html/libxml-xmlerror.html#XML_RNGP_INCLUDE_FAILURE'/>
-    <reference name='XML_RNGP_INCLUDE_RECURSE' href='html/libxml-xmlerror.html#XML_RNGP_INCLUDE_RECURSE'/>
-    <reference name='XML_RNGP_INTERLEAVE_ADD' href='html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_ADD'/>
-    <reference name='XML_RNGP_INTERLEAVE_CREATE_FAILED' href='html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_CREATE_FAILED'/>
-    <reference name='XML_RNGP_INTERLEAVE_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_EMPTY'/>
-    <reference name='XML_RNGP_INTERLEAVE_NO_CONTENT' href='html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_NO_CONTENT'/>
-    <reference name='XML_RNGP_INVALID_DEFINE_NAME' href='html/libxml-xmlerror.html#XML_RNGP_INVALID_DEFINE_NAME'/>
-    <reference name='XML_RNGP_INVALID_URI' href='html/libxml-xmlerror.html#XML_RNGP_INVALID_URI'/>
-    <reference name='XML_RNGP_INVALID_VALUE' href='html/libxml-xmlerror.html#XML_RNGP_INVALID_VALUE'/>
-    <reference name='XML_RNGP_MISSING_HREF' href='html/libxml-xmlerror.html#XML_RNGP_MISSING_HREF'/>
-    <reference name='XML_RNGP_NAME_MISSING' href='html/libxml-xmlerror.html#XML_RNGP_NAME_MISSING'/>
-    <reference name='XML_RNGP_NEED_COMBINE' href='html/libxml-xmlerror.html#XML_RNGP_NEED_COMBINE'/>
-    <reference name='XML_RNGP_NOTALLOWED_NOT_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_NOTALLOWED_NOT_EMPTY'/>
-    <reference name='XML_RNGP_NSNAME_ATTR_ANCESTOR' href='html/libxml-xmlerror.html#XML_RNGP_NSNAME_ATTR_ANCESTOR'/>
-    <reference name='XML_RNGP_NSNAME_NO_NS' href='html/libxml-xmlerror.html#XML_RNGP_NSNAME_NO_NS'/>
-    <reference name='XML_RNGP_PARAM_FORBIDDEN' href='html/libxml-xmlerror.html#XML_RNGP_PARAM_FORBIDDEN'/>
-    <reference name='XML_RNGP_PARAM_NAME_MISSING' href='html/libxml-xmlerror.html#XML_RNGP_PARAM_NAME_MISSING'/>
-    <reference name='XML_RNGP_PARENTREF_CREATE_FAILED' href='html/libxml-xmlerror.html#XML_RNGP_PARENTREF_CREATE_FAILED'/>
-    <reference name='XML_RNGP_PARENTREF_NAME_INVALID' href='html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NAME_INVALID'/>
-    <reference name='XML_RNGP_PARENTREF_NOT_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NOT_EMPTY'/>
-    <reference name='XML_RNGP_PARENTREF_NO_NAME' href='html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NO_NAME'/>
-    <reference name='XML_RNGP_PARENTREF_NO_PARENT' href='html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NO_PARENT'/>
-    <reference name='XML_RNGP_PARSE_ERROR' href='html/libxml-xmlerror.html#XML_RNGP_PARSE_ERROR'/>
-    <reference name='XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME' href='html/libxml-xmlerror.html#XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME'/>
-    <reference name='XML_RNGP_PAT_ATTR_ATTR' href='html/libxml-xmlerror.html#XML_RNGP_PAT_ATTR_ATTR'/>
-    <reference name='XML_RNGP_PAT_ATTR_ELEM' href='html/libxml-xmlerror.html#XML_RNGP_PAT_ATTR_ELEM'/>
-    <reference name='XML_RNGP_PAT_DATA_EXCEPT_ATTR' href='html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_ATTR'/>
-    <reference name='XML_RNGP_PAT_DATA_EXCEPT_ELEM' href='html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_ELEM'/>
-    <reference name='XML_RNGP_PAT_DATA_EXCEPT_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_EMPTY'/>
-    <reference name='XML_RNGP_PAT_DATA_EXCEPT_GROUP' href='html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_GROUP'/>
-    <reference name='XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE' href='html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE'/>
-    <reference name='XML_RNGP_PAT_DATA_EXCEPT_LIST' href='html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_LIST'/>
-    <reference name='XML_RNGP_PAT_DATA_EXCEPT_ONEMORE' href='html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_ONEMORE'/>
-    <reference name='XML_RNGP_PAT_DATA_EXCEPT_REF' href='html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_REF'/>
-    <reference name='XML_RNGP_PAT_DATA_EXCEPT_TEXT' href='html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_TEXT'/>
-    <reference name='XML_RNGP_PAT_LIST_ATTR' href='html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_ATTR'/>
-    <reference name='XML_RNGP_PAT_LIST_ELEM' href='html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_ELEM'/>
-    <reference name='XML_RNGP_PAT_LIST_INTERLEAVE' href='html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_INTERLEAVE'/>
-    <reference name='XML_RNGP_PAT_LIST_LIST' href='html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_LIST'/>
-    <reference name='XML_RNGP_PAT_LIST_REF' href='html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_REF'/>
-    <reference name='XML_RNGP_PAT_LIST_TEXT' href='html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_TEXT'/>
-    <reference name='XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME' href='html/libxml-xmlerror.html#XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME'/>
-    <reference name='XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME' href='html/libxml-xmlerror.html#XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME'/>
-    <reference name='XML_RNGP_PAT_ONEMORE_GROUP_ATTR' href='html/libxml-xmlerror.html#XML_RNGP_PAT_ONEMORE_GROUP_ATTR'/>
-    <reference name='XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR' href='html/libxml-xmlerror.html#XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR'/>
-    <reference name='XML_RNGP_PAT_START_ATTR' href='html/libxml-xmlerror.html#XML_RNGP_PAT_START_ATTR'/>
-    <reference name='XML_RNGP_PAT_START_DATA' href='html/libxml-xmlerror.html#XML_RNGP_PAT_START_DATA'/>
-    <reference name='XML_RNGP_PAT_START_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_PAT_START_EMPTY'/>
-    <reference name='XML_RNGP_PAT_START_GROUP' href='html/libxml-xmlerror.html#XML_RNGP_PAT_START_GROUP'/>
-    <reference name='XML_RNGP_PAT_START_INTERLEAVE' href='html/libxml-xmlerror.html#XML_RNGP_PAT_START_INTERLEAVE'/>
-    <reference name='XML_RNGP_PAT_START_LIST' href='html/libxml-xmlerror.html#XML_RNGP_PAT_START_LIST'/>
-    <reference name='XML_RNGP_PAT_START_ONEMORE' href='html/libxml-xmlerror.html#XML_RNGP_PAT_START_ONEMORE'/>
-    <reference name='XML_RNGP_PAT_START_TEXT' href='html/libxml-xmlerror.html#XML_RNGP_PAT_START_TEXT'/>
-    <reference name='XML_RNGP_PAT_START_VALUE' href='html/libxml-xmlerror.html#XML_RNGP_PAT_START_VALUE'/>
-    <reference name='XML_RNGP_PREFIX_UNDEFINED' href='html/libxml-xmlerror.html#XML_RNGP_PREFIX_UNDEFINED'/>
-    <reference name='XML_RNGP_REF_CREATE_FAILED' href='html/libxml-xmlerror.html#XML_RNGP_REF_CREATE_FAILED'/>
-    <reference name='XML_RNGP_REF_CYCLE' href='html/libxml-xmlerror.html#XML_RNGP_REF_CYCLE'/>
-    <reference name='XML_RNGP_REF_NAME_INVALID' href='html/libxml-xmlerror.html#XML_RNGP_REF_NAME_INVALID'/>
-    <reference name='XML_RNGP_REF_NOT_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_REF_NOT_EMPTY'/>
-    <reference name='XML_RNGP_REF_NO_DEF' href='html/libxml-xmlerror.html#XML_RNGP_REF_NO_DEF'/>
-    <reference name='XML_RNGP_REF_NO_NAME' href='html/libxml-xmlerror.html#XML_RNGP_REF_NO_NAME'/>
-    <reference name='XML_RNGP_START_CHOICE_AND_INTERLEAVE' href='html/libxml-xmlerror.html#XML_RNGP_START_CHOICE_AND_INTERLEAVE'/>
-    <reference name='XML_RNGP_START_CONTENT' href='html/libxml-xmlerror.html#XML_RNGP_START_CONTENT'/>
-    <reference name='XML_RNGP_START_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_START_EMPTY'/>
-    <reference name='XML_RNGP_START_MISSING' href='html/libxml-xmlerror.html#XML_RNGP_START_MISSING'/>
-    <reference name='XML_RNGP_TEXT_EXPECTED' href='html/libxml-xmlerror.html#XML_RNGP_TEXT_EXPECTED'/>
-    <reference name='XML_RNGP_TEXT_HAS_CHILD' href='html/libxml-xmlerror.html#XML_RNGP_TEXT_HAS_CHILD'/>
-    <reference name='XML_RNGP_TYPE_MISSING' href='html/libxml-xmlerror.html#XML_RNGP_TYPE_MISSING'/>
-    <reference name='XML_RNGP_TYPE_NOT_FOUND' href='html/libxml-xmlerror.html#XML_RNGP_TYPE_NOT_FOUND'/>
-    <reference name='XML_RNGP_TYPE_VALUE' href='html/libxml-xmlerror.html#XML_RNGP_TYPE_VALUE'/>
-    <reference name='XML_RNGP_UNKNOWN_ATTRIBUTE' href='html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_ATTRIBUTE'/>
-    <reference name='XML_RNGP_UNKNOWN_COMBINE' href='html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_COMBINE'/>
-    <reference name='XML_RNGP_UNKNOWN_CONSTRUCT' href='html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_CONSTRUCT'/>
-    <reference name='XML_RNGP_UNKNOWN_TYPE_LIB' href='html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_TYPE_LIB'/>
-    <reference name='XML_RNGP_URI_FRAGMENT' href='html/libxml-xmlerror.html#XML_RNGP_URI_FRAGMENT'/>
-    <reference name='XML_RNGP_URI_NOT_ABSOLUTE' href='html/libxml-xmlerror.html#XML_RNGP_URI_NOT_ABSOLUTE'/>
-    <reference name='XML_RNGP_VALUE_EMPTY' href='html/libxml-xmlerror.html#XML_RNGP_VALUE_EMPTY'/>
-    <reference name='XML_RNGP_VALUE_NO_CONTENT' href='html/libxml-xmlerror.html#XML_RNGP_VALUE_NO_CONTENT'/>
-    <reference name='XML_RNGP_XMLNS_NAME' href='html/libxml-xmlerror.html#XML_RNGP_XMLNS_NAME'/>
-    <reference name='XML_RNGP_XML_NS' href='html/libxml-xmlerror.html#XML_RNGP_XML_NS'/>
-    <reference name='XML_SAVE_AS_HTML' href='html/libxml-xmlsave.html#XML_SAVE_AS_HTML'/>
-    <reference name='XML_SAVE_AS_XML' href='html/libxml-xmlsave.html#XML_SAVE_AS_XML'/>
-    <reference name='XML_SAVE_CHAR_INVALID' href='html/libxml-xmlerror.html#XML_SAVE_CHAR_INVALID'/>
-    <reference name='XML_SAVE_FORMAT' href='html/libxml-xmlsave.html#XML_SAVE_FORMAT'/>
-    <reference name='XML_SAVE_NOT_UTF8' href='html/libxml-xmlerror.html#XML_SAVE_NOT_UTF8'/>
-    <reference name='XML_SAVE_NO_DECL' href='html/libxml-xmlsave.html#XML_SAVE_NO_DECL'/>
-    <reference name='XML_SAVE_NO_DOCTYPE' href='html/libxml-xmlerror.html#XML_SAVE_NO_DOCTYPE'/>
-    <reference name='XML_SAVE_NO_EMPTY' href='html/libxml-xmlsave.html#XML_SAVE_NO_EMPTY'/>
-    <reference name='XML_SAVE_NO_XHTML' href='html/libxml-xmlsave.html#XML_SAVE_NO_XHTML'/>
-    <reference name='XML_SAVE_UNKNOWN_ENCODING' href='html/libxml-xmlerror.html#XML_SAVE_UNKNOWN_ENCODING'/>
-    <reference name='XML_SAVE_WSNONSIG' href='html/libxml-xmlsave.html#XML_SAVE_WSNONSIG'/>
-    <reference name='XML_SAVE_XHTML' href='html/libxml-xmlsave.html#XML_SAVE_XHTML'/>
-    <reference name='XML_SAX2_MAGIC' href='html/libxml-parser.html#XML_SAX2_MAGIC'/>
-    <reference name='XML_SCHEMAP_AG_PROPS_CORRECT' href='html/libxml-xmlerror.html#XML_SCHEMAP_AG_PROPS_CORRECT'/>
-    <reference name='XML_SCHEMAP_ATTRFORMDEFAULT_VALUE' href='html/libxml-xmlerror.html#XML_SCHEMAP_ATTRFORMDEFAULT_VALUE'/>
-    <reference name='XML_SCHEMAP_ATTRGRP_NONAME_NOREF' href='html/libxml-xmlerror.html#XML_SCHEMAP_ATTRGRP_NONAME_NOREF'/>
-    <reference name='XML_SCHEMAP_ATTR_NONAME_NOREF' href='html/libxml-xmlerror.html#XML_SCHEMAP_ATTR_NONAME_NOREF'/>
-    <reference name='XML_SCHEMAP_AU_PROPS_CORRECT' href='html/libxml-xmlerror.html#XML_SCHEMAP_AU_PROPS_CORRECT'/>
-    <reference name='XML_SCHEMAP_AU_PROPS_CORRECT_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_AU_PROPS_CORRECT_2'/>
-    <reference name='XML_SCHEMAP_A_PROPS_CORRECT_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_A_PROPS_CORRECT_2'/>
-    <reference name='XML_SCHEMAP_A_PROPS_CORRECT_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_A_PROPS_CORRECT_3'/>
-    <reference name='XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF' href='html/libxml-xmlerror.html#XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF'/>
-    <reference name='XML_SCHEMAP_COS_ALL_LIMITED' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ALL_LIMITED'/>
-    <reference name='XML_SCHEMAP_COS_CT_EXTENDS_1_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_1'/>
-    <reference name='XML_SCHEMAP_COS_CT_EXTENDS_1_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_2'/>
-    <reference name='XML_SCHEMAP_COS_CT_EXTENDS_1_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_3'/>
-    <reference name='XML_SCHEMAP_COS_ST_DERIVED_OK_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_DERIVED_OK_2_1'/>
-    <reference name='XML_SCHEMAP_COS_ST_DERIVED_OK_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_DERIVED_OK_2_2'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_1_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_1'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_1_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_2'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_1'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_3_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_1'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4'/>
-    <reference name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5'/>
-    <reference name='XML_SCHEMAP_COS_VALID_DEFAULT_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_1'/>
-    <reference name='XML_SCHEMAP_COS_VALID_DEFAULT_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_2_1'/>
-    <reference name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1'/>
-    <reference name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2'/>
-    <reference name='XML_SCHEMAP_CT_PROPS_CORRECT_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_1'/>
-    <reference name='XML_SCHEMAP_CT_PROPS_CORRECT_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_2'/>
-    <reference name='XML_SCHEMAP_CT_PROPS_CORRECT_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_3'/>
-    <reference name='XML_SCHEMAP_CT_PROPS_CORRECT_4' href='html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_4'/>
-    <reference name='XML_SCHEMAP_CT_PROPS_CORRECT_5' href='html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_5'/>
-    <reference name='XML_SCHEMAP_CVC_SIMPLE_TYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_CVC_SIMPLE_TYPE'/>
-    <reference name='XML_SCHEMAP_C_PROPS_CORRECT' href='html/libxml-xmlerror.html#XML_SCHEMAP_C_PROPS_CORRECT'/>
-    <reference name='XML_SCHEMAP_DEF_AND_PREFIX' href='html/libxml-xmlerror.html#XML_SCHEMAP_DEF_AND_PREFIX'/>
-    <reference name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1'/>
-    <reference name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1'/>
-    <reference name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2'/>
-    <reference name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3'/>
-    <reference name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2'/>
-    <reference name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3'/>
-    <reference name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1'/>
-    <reference name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2'/>
-    <reference name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3'/>
-    <reference name='XML_SCHEMAP_ELEMFORMDEFAULT_VALUE' href='html/libxml-xmlerror.html#XML_SCHEMAP_ELEMFORMDEFAULT_VALUE'/>
-    <reference name='XML_SCHEMAP_ELEM_DEFAULT_FIXED' href='html/libxml-xmlerror.html#XML_SCHEMAP_ELEM_DEFAULT_FIXED'/>
-    <reference name='XML_SCHEMAP_ELEM_NONAME_NOREF' href='html/libxml-xmlerror.html#XML_SCHEMAP_ELEM_NONAME_NOREF'/>
-    <reference name='XML_SCHEMAP_EXTENSION_NO_BASE' href='html/libxml-xmlerror.html#XML_SCHEMAP_EXTENSION_NO_BASE'/>
-    <reference name='XML_SCHEMAP_E_PROPS_CORRECT_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_2'/>
-    <reference name='XML_SCHEMAP_E_PROPS_CORRECT_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_3'/>
-    <reference name='XML_SCHEMAP_E_PROPS_CORRECT_4' href='html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_4'/>
-    <reference name='XML_SCHEMAP_E_PROPS_CORRECT_5' href='html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_5'/>
-    <reference name='XML_SCHEMAP_E_PROPS_CORRECT_6' href='html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_6'/>
-    <reference name='XML_SCHEMAP_FACET_NO_VALUE' href='html/libxml-xmlerror.html#XML_SCHEMAP_FACET_NO_VALUE'/>
-    <reference name='XML_SCHEMAP_FAILED_BUILD_IMPORT' href='html/libxml-xmlerror.html#XML_SCHEMAP_FAILED_BUILD_IMPORT'/>
-    <reference name='XML_SCHEMAP_FAILED_LOAD' href='html/libxml-xmlerror.html#XML_SCHEMAP_FAILED_LOAD'/>
-    <reference name='XML_SCHEMAP_FAILED_PARSE' href='html/libxml-xmlerror.html#XML_SCHEMAP_FAILED_PARSE'/>
-    <reference name='XML_SCHEMAP_GROUP_NONAME_NOREF' href='html/libxml-xmlerror.html#XML_SCHEMAP_GROUP_NONAME_NOREF'/>
-    <reference name='XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI' href='html/libxml-xmlerror.html#XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI'/>
-    <reference name='XML_SCHEMAP_IMPORT_REDEFINE_NSNAME' href='html/libxml-xmlerror.html#XML_SCHEMAP_IMPORT_REDEFINE_NSNAME'/>
-    <reference name='XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI' href='html/libxml-xmlerror.html#XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI'/>
-    <reference name='XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI' href='html/libxml-xmlerror.html#XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI'/>
-    <reference name='XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI' href='html/libxml-xmlerror.html#XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI'/>
-    <reference name='XML_SCHEMAP_INTERNAL' href='html/libxml-xmlerror.html#XML_SCHEMAP_INTERNAL'/>
-    <reference name='XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE' href='html/libxml-xmlerror.html#XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE'/>
-    <reference name='XML_SCHEMAP_INVALID_ATTR_COMBINATION' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_COMBINATION'/>
-    <reference name='XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION'/>
-    <reference name='XML_SCHEMAP_INVALID_ATTR_NAME' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_NAME'/>
-    <reference name='XML_SCHEMAP_INVALID_ATTR_USE' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_USE'/>
-    <reference name='XML_SCHEMAP_INVALID_BOOLEAN' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_BOOLEAN'/>
-    <reference name='XML_SCHEMAP_INVALID_ENUM' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ENUM'/>
-    <reference name='XML_SCHEMAP_INVALID_FACET' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_FACET'/>
-    <reference name='XML_SCHEMAP_INVALID_FACET_VALUE' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_FACET_VALUE'/>
-    <reference name='XML_SCHEMAP_INVALID_MAXOCCURS' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_MAXOCCURS'/>
-    <reference name='XML_SCHEMAP_INVALID_MINOCCURS' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_MINOCCURS'/>
-    <reference name='XML_SCHEMAP_INVALID_REF_AND_SUBTYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_REF_AND_SUBTYPE'/>
-    <reference name='XML_SCHEMAP_INVALID_WHITE_SPACE' href='html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_WHITE_SPACE'/>
-    <reference name='XML_SCHEMAP_MG_PROPS_CORRECT_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_MG_PROPS_CORRECT_1'/>
-    <reference name='XML_SCHEMAP_MG_PROPS_CORRECT_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_MG_PROPS_CORRECT_2'/>
-    <reference name='XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD'/>
-    <reference name='XML_SCHEMAP_NOATTR_NOREF' href='html/libxml-xmlerror.html#XML_SCHEMAP_NOATTR_NOREF'/>
-    <reference name='XML_SCHEMAP_NOROOT' href='html/libxml-xmlerror.html#XML_SCHEMAP_NOROOT'/>
-    <reference name='XML_SCHEMAP_NOTATION_NO_NAME' href='html/libxml-xmlerror.html#XML_SCHEMAP_NOTATION_NO_NAME'/>
-    <reference name='XML_SCHEMAP_NOTHING_TO_PARSE' href='html/libxml-xmlerror.html#XML_SCHEMAP_NOTHING_TO_PARSE'/>
-    <reference name='XML_SCHEMAP_NOTYPE_NOREF' href='html/libxml-xmlerror.html#XML_SCHEMAP_NOTYPE_NOREF'/>
-    <reference name='XML_SCHEMAP_NOT_DETERMINISTIC' href='html/libxml-xmlerror.html#XML_SCHEMAP_NOT_DETERMINISTIC'/>
-    <reference name='XML_SCHEMAP_NOT_SCHEMA' href='html/libxml-xmlerror.html#XML_SCHEMAP_NOT_SCHEMA'/>
-    <reference name='XML_SCHEMAP_NO_XMLNS' href='html/libxml-xmlerror.html#XML_SCHEMAP_NO_XMLNS'/>
-    <reference name='XML_SCHEMAP_NO_XSI' href='html/libxml-xmlerror.html#XML_SCHEMAP_NO_XSI'/>
-    <reference name='XML_SCHEMAP_PREFIX_UNDEFINED' href='html/libxml-xmlerror.html#XML_SCHEMAP_PREFIX_UNDEFINED'/>
-    <reference name='XML_SCHEMAP_P_PROPS_CORRECT_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_P_PROPS_CORRECT_1'/>
-    <reference name='XML_SCHEMAP_P_PROPS_CORRECT_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_P_PROPS_CORRECT_2_1'/>
-    <reference name='XML_SCHEMAP_P_PROPS_CORRECT_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_P_PROPS_CORRECT_2_2'/>
-    <reference name='XML_SCHEMAP_RECURSIVE' href='html/libxml-xmlerror.html#XML_SCHEMAP_RECURSIVE'/>
-    <reference name='XML_SCHEMAP_REDEFINED_ATTR' href='html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_ATTR'/>
-    <reference name='XML_SCHEMAP_REDEFINED_ATTRGROUP' href='html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_ATTRGROUP'/>
-    <reference name='XML_SCHEMAP_REDEFINED_ELEMENT' href='html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_ELEMENT'/>
-    <reference name='XML_SCHEMAP_REDEFINED_GROUP' href='html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_GROUP'/>
-    <reference name='XML_SCHEMAP_REDEFINED_NOTATION' href='html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_NOTATION'/>
-    <reference name='XML_SCHEMAP_REDEFINED_TYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_TYPE'/>
-    <reference name='XML_SCHEMAP_REF_AND_CONTENT' href='html/libxml-xmlerror.html#XML_SCHEMAP_REF_AND_CONTENT'/>
-    <reference name='XML_SCHEMAP_REF_AND_SUBTYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_REF_AND_SUBTYPE'/>
-    <reference name='XML_SCHEMAP_REGEXP_INVALID' href='html/libxml-xmlerror.html#XML_SCHEMAP_REGEXP_INVALID'/>
-    <reference name='XML_SCHEMAP_RESTRICTION_NONAME_NOREF' href='html/libxml-xmlerror.html#XML_SCHEMAP_RESTRICTION_NONAME_NOREF'/>
-    <reference name='XML_SCHEMAP_S4S_ATTR_INVALID_VALUE' href='html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ATTR_INVALID_VALUE'/>
-    <reference name='XML_SCHEMAP_S4S_ATTR_MISSING' href='html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ATTR_MISSING'/>
-    <reference name='XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED' href='html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED'/>
-    <reference name='XML_SCHEMAP_S4S_ELEM_MISSING' href='html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ELEM_MISSING'/>
-    <reference name='XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED' href='html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED'/>
-    <reference name='XML_SCHEMAP_SIMPLETYPE_NONAME' href='html/libxml-xmlerror.html#XML_SCHEMAP_SIMPLETYPE_NONAME'/>
-    <reference name='XML_SCHEMAP_SRC_ATTRIBUTE_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_1'/>
-    <reference name='XML_SCHEMAP_SRC_ATTRIBUTE_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_2'/>
-    <reference name='XML_SCHEMAP_SRC_ATTRIBUTE_3_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_3_1'/>
-    <reference name='XML_SCHEMAP_SRC_ATTRIBUTE_3_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_3_2'/>
-    <reference name='XML_SCHEMAP_SRC_ATTRIBUTE_4' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_4'/>
-    <reference name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1'/>
-    <reference name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2'/>
-    <reference name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3'/>
-    <reference name='XML_SCHEMAP_SRC_CT_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_CT_1'/>
-    <reference name='XML_SCHEMAP_SRC_ELEMENT_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_1'/>
-    <reference name='XML_SCHEMAP_SRC_ELEMENT_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_2_1'/>
-    <reference name='XML_SCHEMAP_SRC_ELEMENT_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_2_2'/>
-    <reference name='XML_SCHEMAP_SRC_ELEMENT_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_3'/>
-    <reference name='XML_SCHEMAP_SRC_IMPORT' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT'/>
-    <reference name='XML_SCHEMAP_SRC_IMPORT_1_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_1_1'/>
-    <reference name='XML_SCHEMAP_SRC_IMPORT_1_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_1_2'/>
-    <reference name='XML_SCHEMAP_SRC_IMPORT_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_2'/>
-    <reference name='XML_SCHEMAP_SRC_IMPORT_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_2_1'/>
-    <reference name='XML_SCHEMAP_SRC_IMPORT_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_2_2'/>
-    <reference name='XML_SCHEMAP_SRC_IMPORT_3_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_3_1'/>
-    <reference name='XML_SCHEMAP_SRC_IMPORT_3_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_3_2'/>
-    <reference name='XML_SCHEMAP_SRC_INCLUDE' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_INCLUDE'/>
-    <reference name='XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE'/>
-    <reference name='XML_SCHEMAP_SRC_REDEFINE' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_REDEFINE'/>
-    <reference name='XML_SCHEMAP_SRC_RESOLVE' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_RESOLVE'/>
-    <reference name='XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE'/>
-    <reference name='XML_SCHEMAP_SRC_SIMPLE_TYPE_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_1'/>
-    <reference name='XML_SCHEMAP_SRC_SIMPLE_TYPE_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_2'/>
-    <reference name='XML_SCHEMAP_SRC_SIMPLE_TYPE_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_3'/>
-    <reference name='XML_SCHEMAP_SRC_SIMPLE_TYPE_4' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_4'/>
-    <reference name='XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES' href='html/libxml-xmlerror.html#XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES'/>
-    <reference name='XML_SCHEMAP_ST_PROPS_CORRECT_1' href='html/libxml-xmlerror.html#XML_SCHEMAP_ST_PROPS_CORRECT_1'/>
-    <reference name='XML_SCHEMAP_ST_PROPS_CORRECT_2' href='html/libxml-xmlerror.html#XML_SCHEMAP_ST_PROPS_CORRECT_2'/>
-    <reference name='XML_SCHEMAP_ST_PROPS_CORRECT_3' href='html/libxml-xmlerror.html#XML_SCHEMAP_ST_PROPS_CORRECT_3'/>
-    <reference name='XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE'/>
-    <reference name='XML_SCHEMAP_TYPE_AND_SUBTYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_TYPE_AND_SUBTYPE'/>
-    <reference name='XML_SCHEMAP_UNION_NOT_EXPRESSIBLE' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNION_NOT_EXPRESSIBLE'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_ALL_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ALL_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_ATTR_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ATTR_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_BASE_TYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_BASE_TYPE'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_CHOICE_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_CHOICE_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_ELEM_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ELEM_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_FACET_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_FACET_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_FACET_TYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_FACET_TYPE'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_GROUP_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_GROUP_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_IMPORT_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_IMPORT_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_LIST_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_LIST_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_MEMBER_TYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_MEMBER_TYPE'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_NOTATION_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_NOTATION_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_PREFIX' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_PREFIX'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_REF' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_REF'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_TYPE' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_TYPE'/>
-    <reference name='XML_SCHEMAP_UNKNOWN_UNION_CHILD' href='html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_UNION_CHILD'/>
-    <reference name='XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH' href='html/libxml-xmlerror.html#XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH'/>
-    <reference name='XML_SCHEMAP_WARN_ATTR_REDECL_PROH' href='html/libxml-xmlerror.html#XML_SCHEMAP_WARN_ATTR_REDECL_PROH'/>
-    <reference name='XML_SCHEMAP_WARN_SKIP_SCHEMA' href='html/libxml-xmlerror.html#XML_SCHEMAP_WARN_SKIP_SCHEMA'/>
-    <reference name='XML_SCHEMAP_WARN_UNLOCATED_SCHEMA' href='html/libxml-xmlerror.html#XML_SCHEMAP_WARN_UNLOCATED_SCHEMA'/>
-    <reference name='XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER' href='html/libxml-xmlerror.html#XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER'/>
-    <reference name='XML_SCHEMAS_ANYATTR_LAX' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_LAX'/>
-    <reference name='XML_SCHEMAS_ANYATTR_SKIP' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_SKIP'/>
-    <reference name='XML_SCHEMAS_ANYATTR_STRICT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_STRICT'/>
-    <reference name='XML_SCHEMAS_ANYSIMPLETYPE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ANYSIMPLETYPE'/>
-    <reference name='XML_SCHEMAS_ANYTYPE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ANYTYPE'/>
-    <reference name='XML_SCHEMAS_ANYURI' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ANYURI'/>
-    <reference name='XML_SCHEMAS_ANY_LAX' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_LAX'/>
-    <reference name='XML_SCHEMAS_ANY_SKIP' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_SKIP'/>
-    <reference name='XML_SCHEMAS_ANY_STRICT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_STRICT'/>
-    <reference name='XML_SCHEMAS_ATTRGROUP_GLOBAL' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_GLOBAL'/>
-    <reference name='XML_SCHEMAS_ATTRGROUP_HAS_REFS' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_HAS_REFS'/>
-    <reference name='XML_SCHEMAS_ATTRGROUP_MARKED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED'/>
-    <reference name='XML_SCHEMAS_ATTRGROUP_REDEFINED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_REDEFINED'/>
-    <reference name='XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED'/>
-    <reference name='XML_SCHEMAS_ATTR_FIXED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_FIXED'/>
-    <reference name='XML_SCHEMAS_ATTR_GLOBAL' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_GLOBAL'/>
-    <reference name='XML_SCHEMAS_ATTR_INTERNAL_RESOLVED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED'/>
-    <reference name='XML_SCHEMAS_ATTR_NSDEFAULT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_NSDEFAULT'/>
-    <reference name='XML_SCHEMAS_ATTR_USE_OPTIONAL' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_OPTIONAL'/>
-    <reference name='XML_SCHEMAS_ATTR_USE_PROHIBITED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_PROHIBITED'/>
-    <reference name='XML_SCHEMAS_ATTR_USE_REQUIRED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_REQUIRED'/>
-    <reference name='XML_SCHEMAS_BASE64BINARY' href='html/libxml-schemasInternals.html#XML_SCHEMAS_BASE64BINARY'/>
-    <reference name='XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION'/>
-    <reference name='XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION'/>
-    <reference name='XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION'/>
-    <reference name='XML_SCHEMAS_BOOLEAN' href='html/libxml-schemasInternals.html#XML_SCHEMAS_BOOLEAN'/>
-    <reference name='XML_SCHEMAS_BYTE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_BYTE'/>
-    <reference name='XML_SCHEMAS_DATE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_DATE'/>
-    <reference name='XML_SCHEMAS_DATETIME' href='html/libxml-schemasInternals.html#XML_SCHEMAS_DATETIME'/>
-    <reference name='XML_SCHEMAS_DECIMAL' href='html/libxml-schemasInternals.html#XML_SCHEMAS_DECIMAL'/>
-    <reference name='XML_SCHEMAS_DOUBLE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_DOUBLE'/>
-    <reference name='XML_SCHEMAS_DURATION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_DURATION'/>
-    <reference name='XML_SCHEMAS_ELEM_ABSTRACT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_ABSTRACT'/>
-    <reference name='XML_SCHEMAS_ELEM_BLOCK_ABSENT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_ABSENT'/>
-    <reference name='XML_SCHEMAS_ELEM_BLOCK_EXTENSION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_EXTENSION'/>
-    <reference name='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION'/>
-    <reference name='XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION'/>
-    <reference name='XML_SCHEMAS_ELEM_CIRCULAR' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_CIRCULAR'/>
-    <reference name='XML_SCHEMAS_ELEM_DEFAULT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_DEFAULT'/>
-    <reference name='XML_SCHEMAS_ELEM_FINAL_ABSENT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_ABSENT'/>
-    <reference name='XML_SCHEMAS_ELEM_FINAL_EXTENSION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_EXTENSION'/>
-    <reference name='XML_SCHEMAS_ELEM_FINAL_RESTRICTION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_RESTRICTION'/>
-    <reference name='XML_SCHEMAS_ELEM_FIXED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FIXED'/>
-    <reference name='XML_SCHEMAS_ELEM_GLOBAL' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_GLOBAL'/>
-    <reference name='XML_SCHEMAS_ELEM_INTERNAL_CHECKED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_CHECKED'/>
-    <reference name='XML_SCHEMAS_ELEM_INTERNAL_RESOLVED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED'/>
-    <reference name='XML_SCHEMAS_ELEM_NILLABLE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_NILLABLE'/>
-    <reference name='XML_SCHEMAS_ELEM_NSDEFAULT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_NSDEFAULT'/>
-    <reference name='XML_SCHEMAS_ELEM_REF' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_REF'/>
-    <reference name='XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD'/>
-    <reference name='XML_SCHEMAS_ELEM_TOPLEVEL' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_TOPLEVEL'/>
-    <reference name='XML_SCHEMAS_ENTITIES' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ENTITIES'/>
-    <reference name='XML_SCHEMAS_ENTITY' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ENTITY'/>
-    <reference name='XML_SCHEMAS_ERR_' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_'/>
-    <reference name='XML_SCHEMAS_ERR_ATTRINVALID' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ATTRINVALID'/>
-    <reference name='XML_SCHEMAS_ERR_ATTRUNKNOWN' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ATTRUNKNOWN'/>
-    <reference name='XML_SCHEMAS_ERR_CONSTRUCT' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_CONSTRUCT'/>
-    <reference name='XML_SCHEMAS_ERR_ELEMCONT' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ELEMCONT'/>
-    <reference name='XML_SCHEMAS_ERR_EXTRACONTENT' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_EXTRACONTENT'/>
-    <reference name='XML_SCHEMAS_ERR_FACET' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_FACET'/>
-    <reference name='XML_SCHEMAS_ERR_HAVEDEFAULT' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_HAVEDEFAULT'/>
-    <reference name='XML_SCHEMAS_ERR_INTERNAL' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_INTERNAL'/>
-    <reference name='XML_SCHEMAS_ERR_INVALIDATTR' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_INVALIDATTR'/>
-    <reference name='XML_SCHEMAS_ERR_INVALIDELEM' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_INVALIDELEM'/>
-    <reference name='XML_SCHEMAS_ERR_ISABSTRACT' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ISABSTRACT'/>
-    <reference name='XML_SCHEMAS_ERR_MISSING' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_MISSING'/>
-    <reference name='XML_SCHEMAS_ERR_NOROLLBACK' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOROLLBACK'/>
-    <reference name='XML_SCHEMAS_ERR_NOROOT' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOROOT'/>
-    <reference name='XML_SCHEMAS_ERR_NOTDETERMINIST' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTDETERMINIST'/>
-    <reference name='XML_SCHEMAS_ERR_NOTEMPTY' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTEMPTY'/>
-    <reference name='XML_SCHEMAS_ERR_NOTNILLABLE' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTNILLABLE'/>
-    <reference name='XML_SCHEMAS_ERR_NOTSIMPLE' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTSIMPLE'/>
-    <reference name='XML_SCHEMAS_ERR_NOTTOPLEVEL' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTTOPLEVEL'/>
-    <reference name='XML_SCHEMAS_ERR_NOTYPE' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTYPE'/>
-    <reference name='XML_SCHEMAS_ERR_OK' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_OK'/>
-    <reference name='XML_SCHEMAS_ERR_UNDECLAREDELEM' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_UNDECLAREDELEM'/>
-    <reference name='XML_SCHEMAS_ERR_VALUE' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_VALUE'/>
-    <reference name='XML_SCHEMAS_ERR_WRONGELEM' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_WRONGELEM'/>
-    <reference name='XML_SCHEMAS_ERR_XXX' href='html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_XXX'/>
-    <reference name='XML_SCHEMAS_FACET_COLLAPSE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_COLLAPSE'/>
-    <reference name='XML_SCHEMAS_FACET_PRESERVE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_PRESERVE'/>
-    <reference name='XML_SCHEMAS_FACET_REPLACE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_REPLACE'/>
-    <reference name='XML_SCHEMAS_FACET_UNKNOWN' href='html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_UNKNOWN'/>
-    <reference name='XML_SCHEMAS_FINAL_DEFAULT_EXTENSION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION'/>
-    <reference name='XML_SCHEMAS_FINAL_DEFAULT_LIST' href='html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_LIST'/>
-    <reference name='XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION'/>
-    <reference name='XML_SCHEMAS_FINAL_DEFAULT_UNION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_UNION'/>
-    <reference name='XML_SCHEMAS_FLOAT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_FLOAT'/>
-    <reference name='XML_SCHEMAS_GDAY' href='html/libxml-schemasInternals.html#XML_SCHEMAS_GDAY'/>
-    <reference name='XML_SCHEMAS_GMONTH' href='html/libxml-schemasInternals.html#XML_SCHEMAS_GMONTH'/>
-    <reference name='XML_SCHEMAS_GMONTHDAY' href='html/libxml-schemasInternals.html#XML_SCHEMAS_GMONTHDAY'/>
-    <reference name='XML_SCHEMAS_GYEAR' href='html/libxml-schemasInternals.html#XML_SCHEMAS_GYEAR'/>
-    <reference name='XML_SCHEMAS_GYEARMONTH' href='html/libxml-schemasInternals.html#XML_SCHEMAS_GYEARMONTH'/>
-    <reference name='XML_SCHEMAS_HEXBINARY' href='html/libxml-schemasInternals.html#XML_SCHEMAS_HEXBINARY'/>
-    <reference name='XML_SCHEMAS_ID' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ID'/>
-    <reference name='XML_SCHEMAS_IDREF' href='html/libxml-schemasInternals.html#XML_SCHEMAS_IDREF'/>
-    <reference name='XML_SCHEMAS_IDREFS' href='html/libxml-schemasInternals.html#XML_SCHEMAS_IDREFS'/>
-    <reference name='XML_SCHEMAS_INCLUDING_CONVERT_NS' href='html/libxml-schemasInternals.html#XML_SCHEMAS_INCLUDING_CONVERT_NS'/>
-    <reference name='XML_SCHEMAS_INT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_INT'/>
-    <reference name='XML_SCHEMAS_INTEGER' href='html/libxml-schemasInternals.html#XML_SCHEMAS_INTEGER'/>
-    <reference name='XML_SCHEMAS_LANGUAGE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_LANGUAGE'/>
-    <reference name='XML_SCHEMAS_LONG' href='html/libxml-schemasInternals.html#XML_SCHEMAS_LONG'/>
-    <reference name='XML_SCHEMAS_NAME' href='html/libxml-schemasInternals.html#XML_SCHEMAS_NAME'/>
-    <reference name='XML_SCHEMAS_NCNAME' href='html/libxml-schemasInternals.html#XML_SCHEMAS_NCNAME'/>
-    <reference name='XML_SCHEMAS_NINTEGER' href='html/libxml-schemasInternals.html#XML_SCHEMAS_NINTEGER'/>
-    <reference name='XML_SCHEMAS_NMTOKEN' href='html/libxml-schemasInternals.html#XML_SCHEMAS_NMTOKEN'/>
-    <reference name='XML_SCHEMAS_NMTOKENS' href='html/libxml-schemasInternals.html#XML_SCHEMAS_NMTOKENS'/>
-    <reference name='XML_SCHEMAS_NNINTEGER' href='html/libxml-schemasInternals.html#XML_SCHEMAS_NNINTEGER'/>
-    <reference name='XML_SCHEMAS_NORMSTRING' href='html/libxml-schemasInternals.html#XML_SCHEMAS_NORMSTRING'/>
-    <reference name='XML_SCHEMAS_NOTATION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_NOTATION'/>
-    <reference name='XML_SCHEMAS_NPINTEGER' href='html/libxml-schemasInternals.html#XML_SCHEMAS_NPINTEGER'/>
-    <reference name='XML_SCHEMAS_PINTEGER' href='html/libxml-schemasInternals.html#XML_SCHEMAS_PINTEGER'/>
-    <reference name='XML_SCHEMAS_QNAME' href='html/libxml-schemasInternals.html#XML_SCHEMAS_QNAME'/>
-    <reference name='XML_SCHEMAS_QUALIF_ATTR' href='html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ATTR'/>
-    <reference name='XML_SCHEMAS_QUALIF_ELEM' href='html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ELEM'/>
-    <reference name='XML_SCHEMAS_SHORT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_SHORT'/>
-    <reference name='XML_SCHEMAS_STRING' href='html/libxml-schemasInternals.html#XML_SCHEMAS_STRING'/>
-    <reference name='XML_SCHEMAS_TIME' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TIME'/>
-    <reference name='XML_SCHEMAS_TOKEN' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TOKEN'/>
-    <reference name='XML_SCHEMAS_TYPE_ABSTRACT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_ABSTRACT'/>
-    <reference name='XML_SCHEMAS_TYPE_BLOCK_DEFAULT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT'/>
-    <reference name='XML_SCHEMAS_TYPE_BLOCK_EXTENSION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_EXTENSION'/>
-    <reference name='XML_SCHEMAS_TYPE_BLOCK_RESTRICTION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION'/>
-    <reference name='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE'/>
-    <reference name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION'/>
-    <reference name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION'/>
-    <reference name='XML_SCHEMAS_TYPE_FACETSNEEDVALUE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FACETSNEEDVALUE'/>
-    <reference name='XML_SCHEMAS_TYPE_FINAL_DEFAULT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_DEFAULT'/>
-    <reference name='XML_SCHEMAS_TYPE_FINAL_EXTENSION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_EXTENSION'/>
-    <reference name='XML_SCHEMAS_TYPE_FINAL_LIST' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_LIST'/>
-    <reference name='XML_SCHEMAS_TYPE_FINAL_RESTRICTION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_RESTRICTION'/>
-    <reference name='XML_SCHEMAS_TYPE_FINAL_UNION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_UNION'/>
-    <reference name='XML_SCHEMAS_TYPE_FIXUP_1' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FIXUP_1'/>
-    <reference name='XML_SCHEMAS_TYPE_GLOBAL' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_GLOBAL'/>
-    <reference name='XML_SCHEMAS_TYPE_HAS_FACETS' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_HAS_FACETS'/>
-    <reference name='XML_SCHEMAS_TYPE_INTERNAL_INVALID' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_INTERNAL_INVALID'/>
-    <reference name='XML_SCHEMAS_TYPE_INTERNAL_RESOLVED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_INTERNAL_RESOLVED'/>
-    <reference name='XML_SCHEMAS_TYPE_MARKED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MARKED'/>
-    <reference name='XML_SCHEMAS_TYPE_MIXED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MIXED'/>
-    <reference name='XML_SCHEMAS_TYPE_NORMVALUENEEDED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_NORMVALUENEEDED'/>
-    <reference name='XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD'/>
-    <reference name='XML_SCHEMAS_TYPE_REDEFINED' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_REDEFINED'/>
-    <reference name='XML_SCHEMAS_TYPE_VARIETY_ABSENT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-    <reference name='XML_SCHEMAS_TYPE_VARIETY_ATOMIC' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ATOMIC'/>
-    <reference name='XML_SCHEMAS_TYPE_VARIETY_LIST' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_LIST'/>
-    <reference name='XML_SCHEMAS_TYPE_VARIETY_UNION' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_UNION'/>
-    <reference name='XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE'/>
-    <reference name='XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE'/>
-    <reference name='XML_SCHEMAS_TYPE_WHITESPACE_REPLACE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_REPLACE'/>
-    <reference name='XML_SCHEMAS_UBYTE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_UBYTE'/>
-    <reference name='XML_SCHEMAS_UINT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_UINT'/>
-    <reference name='XML_SCHEMAS_ULONG' href='html/libxml-schemasInternals.html#XML_SCHEMAS_ULONG'/>
-    <reference name='XML_SCHEMAS_UNKNOWN' href='html/libxml-schemasInternals.html#XML_SCHEMAS_UNKNOWN'/>
-    <reference name='XML_SCHEMAS_USHORT' href='html/libxml-schemasInternals.html#XML_SCHEMAS_USHORT'/>
-    <reference name='XML_SCHEMAS_WILDCARD_COMPLETE' href='html/libxml-schemasInternals.html#XML_SCHEMAS_WILDCARD_COMPLETE'/>
-    <reference name='XML_SCHEMATRONV_ASSERT' href='html/libxml-xmlerror.html#XML_SCHEMATRONV_ASSERT'/>
-    <reference name='XML_SCHEMATRONV_REPORT' href='html/libxml-xmlerror.html#XML_SCHEMATRONV_REPORT'/>
-    <reference name='XML_SCHEMATRON_OUT_BUFFER' href='html/libxml-schematron.html#XML_SCHEMATRON_OUT_BUFFER'/>
-    <reference name='XML_SCHEMATRON_OUT_ERROR' href='html/libxml-schematron.html#XML_SCHEMATRON_OUT_ERROR'/>
-    <reference name='XML_SCHEMATRON_OUT_FILE' href='html/libxml-schematron.html#XML_SCHEMATRON_OUT_FILE'/>
-    <reference name='XML_SCHEMATRON_OUT_IO' href='html/libxml-schematron.html#XML_SCHEMATRON_OUT_IO'/>
-    <reference name='XML_SCHEMATRON_OUT_QUIET' href='html/libxml-schematron.html#XML_SCHEMATRON_OUT_QUIET'/>
-    <reference name='XML_SCHEMATRON_OUT_TEXT' href='html/libxml-schematron.html#XML_SCHEMATRON_OUT_TEXT'/>
-    <reference name='XML_SCHEMATRON_OUT_XML' href='html/libxml-schematron.html#XML_SCHEMATRON_OUT_XML'/>
-    <reference name='XML_SCHEMAV_ATTRINVALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_ATTRINVALID'/>
-    <reference name='XML_SCHEMAV_ATTRUNKNOWN' href='html/libxml-xmlerror.html#XML_SCHEMAV_ATTRUNKNOWN'/>
-    <reference name='XML_SCHEMAV_CONSTRUCT' href='html/libxml-xmlerror.html#XML_SCHEMAV_CONSTRUCT'/>
-    <reference name='XML_SCHEMAV_CVC_ATTRIBUTE_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_1'/>
-    <reference name='XML_SCHEMAV_CVC_ATTRIBUTE_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_2'/>
-    <reference name='XML_SCHEMAV_CVC_ATTRIBUTE_3' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_3'/>
-    <reference name='XML_SCHEMAV_CVC_ATTRIBUTE_4' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_4'/>
-    <reference name='XML_SCHEMAV_CVC_AU' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_AU'/>
-    <reference name='XML_SCHEMAV_CVC_COMPLEX_TYPE_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_1'/>
-    <reference name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1'/>
-    <reference name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2'/>
-    <reference name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3'/>
-    <reference name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4'/>
-    <reference name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1'/>
-    <reference name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1'/>
-    <reference name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2'/>
-    <reference name='XML_SCHEMAV_CVC_COMPLEX_TYPE_4' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_4'/>
-    <reference name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1'/>
-    <reference name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2'/>
-    <reference name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1'/>
-    <reference name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2'/>
-    <reference name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_1'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_2'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_3_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_3_1'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_3_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_3_2_1'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_3_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_3_2_2'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_4_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_4_1'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_4_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_4_2'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_4_3' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_4_3'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_5_1_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_1_1'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_5_1_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_1_2'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_5_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_1'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_5_2_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_2_1'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_5_2_2_2_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_2_2_1'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_5_2_2_2_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_2_2_2'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_6' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_6'/>
-    <reference name='XML_SCHEMAV_CVC_ELT_7' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_7'/>
-    <reference name='XML_SCHEMAV_CVC_ENUMERATION_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ENUMERATION_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_FACET_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_FACET_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_IDC' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_IDC'/>
-    <reference name='XML_SCHEMAV_CVC_LENGTH_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_LENGTH_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_MAXLENGTH_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MAXLENGTH_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_MININCLUSIVE_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MININCLUSIVE_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_MINLENGTH_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MINLENGTH_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_PATTERN_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_PATTERN_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_TOTALDIGITS_VALID' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TOTALDIGITS_VALID'/>
-    <reference name='XML_SCHEMAV_CVC_TYPE_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_1'/>
-    <reference name='XML_SCHEMAV_CVC_TYPE_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_2'/>
-    <reference name='XML_SCHEMAV_CVC_TYPE_3_1_1' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_3_1_1'/>
-    <reference name='XML_SCHEMAV_CVC_TYPE_3_1_2' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_3_1_2'/>
-    <reference name='XML_SCHEMAV_CVC_WILDCARD' href='html/libxml-xmlerror.html#XML_SCHEMAV_CVC_WILDCARD'/>
-    <reference name='XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING' href='html/libxml-xmlerror.html#XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING'/>
-    <reference name='XML_SCHEMAV_ELEMCONT' href='html/libxml-xmlerror.html#XML_SCHEMAV_ELEMCONT'/>
-    <reference name='XML_SCHEMAV_ELEMENT_CONTENT' href='html/libxml-xmlerror.html#XML_SCHEMAV_ELEMENT_CONTENT'/>
-    <reference name='XML_SCHEMAV_EXTRACONTENT' href='html/libxml-xmlerror.html#XML_SCHEMAV_EXTRACONTENT'/>
-    <reference name='XML_SCHEMAV_FACET' href='html/libxml-xmlerror.html#XML_SCHEMAV_FACET'/>
-    <reference name='XML_SCHEMAV_HAVEDEFAULT' href='html/libxml-xmlerror.html#XML_SCHEMAV_HAVEDEFAULT'/>
-    <reference name='XML_SCHEMAV_INTERNAL' href='html/libxml-xmlerror.html#XML_SCHEMAV_INTERNAL'/>
-    <reference name='XML_SCHEMAV_INVALIDATTR' href='html/libxml-xmlerror.html#XML_SCHEMAV_INVALIDATTR'/>
-    <reference name='XML_SCHEMAV_INVALIDELEM' href='html/libxml-xmlerror.html#XML_SCHEMAV_INVALIDELEM'/>
-    <reference name='XML_SCHEMAV_ISABSTRACT' href='html/libxml-xmlerror.html#XML_SCHEMAV_ISABSTRACT'/>
-    <reference name='XML_SCHEMAV_MISC' href='html/libxml-xmlerror.html#XML_SCHEMAV_MISC'/>
-    <reference name='XML_SCHEMAV_MISSING' href='html/libxml-xmlerror.html#XML_SCHEMAV_MISSING'/>
-    <reference name='XML_SCHEMAV_NOROLLBACK' href='html/libxml-xmlerror.html#XML_SCHEMAV_NOROLLBACK'/>
-    <reference name='XML_SCHEMAV_NOROOT' href='html/libxml-xmlerror.html#XML_SCHEMAV_NOROOT'/>
-    <reference name='XML_SCHEMAV_NOTDETERMINIST' href='html/libxml-xmlerror.html#XML_SCHEMAV_NOTDETERMINIST'/>
-    <reference name='XML_SCHEMAV_NOTEMPTY' href='html/libxml-xmlerror.html#XML_SCHEMAV_NOTEMPTY'/>
-    <reference name='XML_SCHEMAV_NOTNILLABLE' href='html/libxml-xmlerror.html#XML_SCHEMAV_NOTNILLABLE'/>
-    <reference name='XML_SCHEMAV_NOTSIMPLE' href='html/libxml-xmlerror.html#XML_SCHEMAV_NOTSIMPLE'/>
-    <reference name='XML_SCHEMAV_NOTTOPLEVEL' href='html/libxml-xmlerror.html#XML_SCHEMAV_NOTTOPLEVEL'/>
-    <reference name='XML_SCHEMAV_NOTYPE' href='html/libxml-xmlerror.html#XML_SCHEMAV_NOTYPE'/>
-    <reference name='XML_SCHEMAV_UNDECLAREDELEM' href='html/libxml-xmlerror.html#XML_SCHEMAV_UNDECLAREDELEM'/>
-    <reference name='XML_SCHEMAV_VALUE' href='html/libxml-xmlerror.html#XML_SCHEMAV_VALUE'/>
-    <reference name='XML_SCHEMAV_WRONGELEM' href='html/libxml-xmlerror.html#XML_SCHEMAV_WRONGELEM'/>
-    <reference name='XML_SCHEMA_CONTENT_ANY' href='html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_ANY'/>
-    <reference name='XML_SCHEMA_CONTENT_BASIC' href='html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_BASIC'/>
-    <reference name='XML_SCHEMA_CONTENT_ELEMENTS' href='html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_ELEMENTS'/>
-    <reference name='XML_SCHEMA_CONTENT_EMPTY' href='html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_EMPTY'/>
-    <reference name='XML_SCHEMA_CONTENT_MIXED' href='html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_MIXED'/>
-    <reference name='XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS' href='html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS'/>
-    <reference name='XML_SCHEMA_CONTENT_SIMPLE' href='html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_SIMPLE'/>
-    <reference name='XML_SCHEMA_CONTENT_UNKNOWN' href='html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_UNKNOWN'/>
-    <reference name='XML_SCHEMA_EXTRA_ATTR_USE_PROHIB' href='html/libxml-schemasInternals.html#XML_SCHEMA_EXTRA_ATTR_USE_PROHIB'/>
-    <reference name='XML_SCHEMA_EXTRA_QNAMEREF' href='html/libxml-schemasInternals.html#XML_SCHEMA_EXTRA_QNAMEREF'/>
-    <reference name='XML_SCHEMA_FACET_ENUMERATION' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_ENUMERATION'/>
-    <reference name='XML_SCHEMA_FACET_FRACTIONDIGITS' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_FRACTIONDIGITS'/>
-    <reference name='XML_SCHEMA_FACET_LENGTH' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_LENGTH'/>
-    <reference name='XML_SCHEMA_FACET_MAXEXCLUSIVE' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MAXEXCLUSIVE'/>
-    <reference name='XML_SCHEMA_FACET_MAXINCLUSIVE' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MAXINCLUSIVE'/>
-    <reference name='XML_SCHEMA_FACET_MAXLENGTH' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MAXLENGTH'/>
-    <reference name='XML_SCHEMA_FACET_MINEXCLUSIVE' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MINEXCLUSIVE'/>
-    <reference name='XML_SCHEMA_FACET_MININCLUSIVE' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MININCLUSIVE'/>
-    <reference name='XML_SCHEMA_FACET_MINLENGTH' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MINLENGTH'/>
-    <reference name='XML_SCHEMA_FACET_PATTERN' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_PATTERN'/>
-    <reference name='XML_SCHEMA_FACET_TOTALDIGITS' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_TOTALDIGITS'/>
-    <reference name='XML_SCHEMA_FACET_WHITESPACE' href='html/libxml-schemasInternals.html#XML_SCHEMA_FACET_WHITESPACE'/>
-    <reference name='XML_SCHEMA_TYPE_ALL' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ALL'/>
-    <reference name='XML_SCHEMA_TYPE_ANY' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ANY'/>
-    <reference name='XML_SCHEMA_TYPE_ANY_ATTRIBUTE' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ANY_ATTRIBUTE'/>
-    <reference name='XML_SCHEMA_TYPE_ATTRIBUTE' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ATTRIBUTE'/>
-    <reference name='XML_SCHEMA_TYPE_ATTRIBUTEGROUP' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ATTRIBUTEGROUP'/>
-    <reference name='XML_SCHEMA_TYPE_ATTRIBUTE_USE' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ATTRIBUTE_USE'/>
-    <reference name='XML_SCHEMA_TYPE_BASIC' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_BASIC'/>
-    <reference name='XML_SCHEMA_TYPE_CHOICE' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_CHOICE'/>
-    <reference name='XML_SCHEMA_TYPE_COMPLEX' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_COMPLEX'/>
-    <reference name='XML_SCHEMA_TYPE_COMPLEX_CONTENT' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_COMPLEX_CONTENT'/>
-    <reference name='XML_SCHEMA_TYPE_ELEMENT' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ELEMENT'/>
-    <reference name='XML_SCHEMA_TYPE_EXTENSION' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_EXTENSION'/>
-    <reference name='XML_SCHEMA_TYPE_FACET' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_FACET'/>
-    <reference name='XML_SCHEMA_TYPE_GROUP' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_GROUP'/>
-    <reference name='XML_SCHEMA_TYPE_IDC_KEY' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_IDC_KEY'/>
-    <reference name='XML_SCHEMA_TYPE_IDC_KEYREF' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_IDC_KEYREF'/>
-    <reference name='XML_SCHEMA_TYPE_IDC_UNIQUE' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_IDC_UNIQUE'/>
-    <reference name='XML_SCHEMA_TYPE_LIST' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_LIST'/>
-    <reference name='XML_SCHEMA_TYPE_NOTATION' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_NOTATION'/>
-    <reference name='XML_SCHEMA_TYPE_PARTICLE' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_PARTICLE'/>
-    <reference name='XML_SCHEMA_TYPE_RESTRICTION' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_RESTRICTION'/>
-    <reference name='XML_SCHEMA_TYPE_SEQUENCE' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_SEQUENCE'/>
-    <reference name='XML_SCHEMA_TYPE_SIMPLE' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_SIMPLE'/>
-    <reference name='XML_SCHEMA_TYPE_SIMPLE_CONTENT' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_SIMPLE_CONTENT'/>
-    <reference name='XML_SCHEMA_TYPE_UNION' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_UNION'/>
-    <reference name='XML_SCHEMA_TYPE_UR' href='html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_UR'/>
-    <reference name='XML_SCHEMA_VAL_VC_I_CREATE' href='html/libxml-xmlschemas.html#XML_SCHEMA_VAL_VC_I_CREATE'/>
-    <reference name='XML_SCHEMA_WHITESPACE_COLLAPSE' href='html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_COLLAPSE'/>
-    <reference name='XML_SCHEMA_WHITESPACE_PRESERVE' href='html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_PRESERVE'/>
-    <reference name='XML_SCHEMA_WHITESPACE_REPLACE' href='html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_REPLACE'/>
-    <reference name='XML_SCHEMA_WHITESPACE_UNKNOWN' href='html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_UNKNOWN'/>
-    <reference name='XML_SKIP_IDS' href='html/libxml-parser.html#XML_SKIP_IDS'/>
-    <reference name='XML_SUBSTITUTE_BOTH' href='html/libxml-parserInternals.html#XML_SUBSTITUTE_BOTH'/>
-    <reference name='XML_SUBSTITUTE_NONE' href='html/libxml-parserInternals.html#XML_SUBSTITUTE_NONE'/>
-    <reference name='XML_SUBSTITUTE_PEREF' href='html/libxml-parserInternals.html#XML_SUBSTITUTE_PEREF'/>
-    <reference name='XML_SUBSTITUTE_REF' href='html/libxml-parserInternals.html#XML_SUBSTITUTE_REF'/>
-    <reference name='XML_TEXTREADER_MODE_CLOSED' href='html/libxml-xmlreader.html#XML_TEXTREADER_MODE_CLOSED'/>
-    <reference name='XML_TEXTREADER_MODE_EOF' href='html/libxml-xmlreader.html#XML_TEXTREADER_MODE_EOF'/>
-    <reference name='XML_TEXTREADER_MODE_ERROR' href='html/libxml-xmlreader.html#XML_TEXTREADER_MODE_ERROR'/>
-    <reference name='XML_TEXTREADER_MODE_INITIAL' href='html/libxml-xmlreader.html#XML_TEXTREADER_MODE_INITIAL'/>
-    <reference name='XML_TEXTREADER_MODE_INTERACTIVE' href='html/libxml-xmlreader.html#XML_TEXTREADER_MODE_INTERACTIVE'/>
-    <reference name='XML_TEXTREADER_MODE_READING' href='html/libxml-xmlreader.html#XML_TEXTREADER_MODE_READING'/>
-    <reference name='XML_TEXT_NODE' href='html/libxml-tree.html#XML_TEXT_NODE'/>
-    <reference name='XML_TREE_INVALID_DEC' href='html/libxml-xmlerror.html#XML_TREE_INVALID_DEC'/>
-    <reference name='XML_TREE_INVALID_HEX' href='html/libxml-xmlerror.html#XML_TREE_INVALID_HEX'/>
-    <reference name='XML_TREE_NOT_UTF8' href='html/libxml-xmlerror.html#XML_TREE_NOT_UTF8'/>
-    <reference name='XML_TREE_UNTERMINATED_ENTITY' href='html/libxml-xmlerror.html#XML_TREE_UNTERMINATED_ENTITY'/>
-    <reference name='XML_VCTXT_DTD_VALIDATED' href='html/libxml-valid.html#XML_VCTXT_DTD_VALIDATED'/>
-    <reference name='XML_VCTXT_USE_PCTXT' href='html/libxml-valid.html#XML_VCTXT_USE_PCTXT'/>
-    <reference name='XML_WAR_CATALOG_PI' href='html/libxml-xmlerror.html#XML_WAR_CATALOG_PI'/>
-    <reference name='XML_WAR_ENTITY_REDEFINED' href='html/libxml-xmlerror.html#XML_WAR_ENTITY_REDEFINED'/>
-    <reference name='XML_WAR_LANG_VALUE' href='html/libxml-xmlerror.html#XML_WAR_LANG_VALUE'/>
-    <reference name='XML_WAR_NS_COLUMN' href='html/libxml-xmlerror.html#XML_WAR_NS_COLUMN'/>
-    <reference name='XML_WAR_NS_URI' href='html/libxml-xmlerror.html#XML_WAR_NS_URI'/>
-    <reference name='XML_WAR_NS_URI_RELATIVE' href='html/libxml-xmlerror.html#XML_WAR_NS_URI_RELATIVE'/>
-    <reference name='XML_WAR_SPACE_VALUE' href='html/libxml-xmlerror.html#XML_WAR_SPACE_VALUE'/>
-    <reference name='XML_WAR_UNDECLARED_ENTITY' href='html/libxml-xmlerror.html#XML_WAR_UNDECLARED_ENTITY'/>
-    <reference name='XML_WAR_UNKNOWN_VERSION' href='html/libxml-xmlerror.html#XML_WAR_UNKNOWN_VERSION'/>
-    <reference name='XML_WITH_AUTOMATA' href='html/libxml-parser.html#XML_WITH_AUTOMATA'/>
-    <reference name='XML_WITH_C14N' href='html/libxml-parser.html#XML_WITH_C14N'/>
-    <reference name='XML_WITH_CATALOG' href='html/libxml-parser.html#XML_WITH_CATALOG'/>
-    <reference name='XML_WITH_DEBUG' href='html/libxml-parser.html#XML_WITH_DEBUG'/>
-    <reference name='XML_WITH_DEBUG_MEM' href='html/libxml-parser.html#XML_WITH_DEBUG_MEM'/>
-    <reference name='XML_WITH_DEBUG_RUN' href='html/libxml-parser.html#XML_WITH_DEBUG_RUN'/>
-    <reference name='XML_WITH_EXPR' href='html/libxml-parser.html#XML_WITH_EXPR'/>
-    <reference name='XML_WITH_FTP' href='html/libxml-parser.html#XML_WITH_FTP'/>
-    <reference name='XML_WITH_HTML' href='html/libxml-parser.html#XML_WITH_HTML'/>
-    <reference name='XML_WITH_HTTP' href='html/libxml-parser.html#XML_WITH_HTTP'/>
-    <reference name='XML_WITH_ICONV' href='html/libxml-parser.html#XML_WITH_ICONV'/>
-    <reference name='XML_WITH_ICU' href='html/libxml-parser.html#XML_WITH_ICU'/>
-    <reference name='XML_WITH_ISO8859X' href='html/libxml-parser.html#XML_WITH_ISO8859X'/>
-    <reference name='XML_WITH_LEGACY' href='html/libxml-parser.html#XML_WITH_LEGACY'/>
-    <reference name='XML_WITH_LZMA' href='html/libxml-parser.html#XML_WITH_LZMA'/>
-    <reference name='XML_WITH_MODULES' href='html/libxml-parser.html#XML_WITH_MODULES'/>
-    <reference name='XML_WITH_NONE' href='html/libxml-parser.html#XML_WITH_NONE'/>
-    <reference name='XML_WITH_OUTPUT' href='html/libxml-parser.html#XML_WITH_OUTPUT'/>
-    <reference name='XML_WITH_PATTERN' href='html/libxml-parser.html#XML_WITH_PATTERN'/>
-    <reference name='XML_WITH_PUSH' href='html/libxml-parser.html#XML_WITH_PUSH'/>
-    <reference name='XML_WITH_READER' href='html/libxml-parser.html#XML_WITH_READER'/>
-    <reference name='XML_WITH_REGEXP' href='html/libxml-parser.html#XML_WITH_REGEXP'/>
-    <reference name='XML_WITH_SAX1' href='html/libxml-parser.html#XML_WITH_SAX1'/>
-    <reference name='XML_WITH_SCHEMAS' href='html/libxml-parser.html#XML_WITH_SCHEMAS'/>
-    <reference name='XML_WITH_SCHEMATRON' href='html/libxml-parser.html#XML_WITH_SCHEMATRON'/>
-    <reference name='XML_WITH_THREAD' href='html/libxml-parser.html#XML_WITH_THREAD'/>
-    <reference name='XML_WITH_TREE' href='html/libxml-parser.html#XML_WITH_TREE'/>
-    <reference name='XML_WITH_UNICODE' href='html/libxml-parser.html#XML_WITH_UNICODE'/>
-    <reference name='XML_WITH_VALID' href='html/libxml-parser.html#XML_WITH_VALID'/>
-    <reference name='XML_WITH_WRITER' href='html/libxml-parser.html#XML_WITH_WRITER'/>
-    <reference name='XML_WITH_XINCLUDE' href='html/libxml-parser.html#XML_WITH_XINCLUDE'/>
-    <reference name='XML_WITH_XPATH' href='html/libxml-parser.html#XML_WITH_XPATH'/>
-    <reference name='XML_WITH_XPTR' href='html/libxml-parser.html#XML_WITH_XPTR'/>
-    <reference name='XML_WITH_ZLIB' href='html/libxml-parser.html#XML_WITH_ZLIB'/>
-    <reference name='XML_XINCLUDE_BUILD_FAILED' href='html/libxml-xmlerror.html#XML_XINCLUDE_BUILD_FAILED'/>
-    <reference name='XML_XINCLUDE_DEPRECATED_NS' href='html/libxml-xmlerror.html#XML_XINCLUDE_DEPRECATED_NS'/>
-    <reference name='XML_XINCLUDE_END' href='html/libxml-tree.html#XML_XINCLUDE_END'/>
-    <reference name='XML_XINCLUDE_ENTITY_DEF_MISMATCH' href='html/libxml-xmlerror.html#XML_XINCLUDE_ENTITY_DEF_MISMATCH'/>
-    <reference name='XML_XINCLUDE_FALLBACKS_IN_INCLUDE' href='html/libxml-xmlerror.html#XML_XINCLUDE_FALLBACKS_IN_INCLUDE'/>
-    <reference name='XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE' href='html/libxml-xmlerror.html#XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE'/>
-    <reference name='XML_XINCLUDE_FRAGMENT_ID' href='html/libxml-xmlerror.html#XML_XINCLUDE_FRAGMENT_ID'/>
-    <reference name='XML_XINCLUDE_HREF_URI' href='html/libxml-xmlerror.html#XML_XINCLUDE_HREF_URI'/>
-    <reference name='XML_XINCLUDE_INCLUDE_IN_INCLUDE' href='html/libxml-xmlerror.html#XML_XINCLUDE_INCLUDE_IN_INCLUDE'/>
-    <reference name='XML_XINCLUDE_INVALID_CHAR' href='html/libxml-xmlerror.html#XML_XINCLUDE_INVALID_CHAR'/>
-    <reference name='XML_XINCLUDE_MULTIPLE_ROOT' href='html/libxml-xmlerror.html#XML_XINCLUDE_MULTIPLE_ROOT'/>
-    <reference name='XML_XINCLUDE_NO_FALLBACK' href='html/libxml-xmlerror.html#XML_XINCLUDE_NO_FALLBACK'/>
-    <reference name='XML_XINCLUDE_NO_HREF' href='html/libxml-xmlerror.html#XML_XINCLUDE_NO_HREF'/>
-    <reference name='XML_XINCLUDE_PARSE_VALUE' href='html/libxml-xmlerror.html#XML_XINCLUDE_PARSE_VALUE'/>
-    <reference name='XML_XINCLUDE_RECURSION' href='html/libxml-xmlerror.html#XML_XINCLUDE_RECURSION'/>
-    <reference name='XML_XINCLUDE_START' href='html/libxml-tree.html#XML_XINCLUDE_START'/>
-    <reference name='XML_XINCLUDE_TEXT_DOCUMENT' href='html/libxml-xmlerror.html#XML_XINCLUDE_TEXT_DOCUMENT'/>
-    <reference name='XML_XINCLUDE_TEXT_FRAGMENT' href='html/libxml-xmlerror.html#XML_XINCLUDE_TEXT_FRAGMENT'/>
-    <reference name='XML_XINCLUDE_UNKNOWN_ENCODING' href='html/libxml-xmlerror.html#XML_XINCLUDE_UNKNOWN_ENCODING'/>
-    <reference name='XML_XINCLUDE_XPTR_FAILED' href='html/libxml-xmlerror.html#XML_XINCLUDE_XPTR_FAILED'/>
-    <reference name='XML_XINCLUDE_XPTR_RESULT' href='html/libxml-xmlerror.html#XML_XINCLUDE_XPTR_RESULT'/>
-    <reference name='XML_XML_ID' href='html/libxml-tree.html#XML_XML_ID'/>
-    <reference name='XML_XML_NAMESPACE' href='html/libxml-tree.html#XML_XML_NAMESPACE'/>
-    <reference name='XML_XPATH_CHECKNS' href='html/libxml-xpath.html#XML_XPATH_CHECKNS'/>
-    <reference name='XML_XPATH_ENCODING_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_ENCODING_ERROR'/>
-    <reference name='XML_XPATH_EXPRESSION_OK' href='html/libxml-xmlerror.html#XML_XPATH_EXPRESSION_OK'/>
-    <reference name='XML_XPATH_EXPR_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_EXPR_ERROR'/>
-    <reference name='XML_XPATH_INVALID_ARITY' href='html/libxml-xmlerror.html#XML_XPATH_INVALID_ARITY'/>
-    <reference name='XML_XPATH_INVALID_CHAR_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_INVALID_CHAR_ERROR'/>
-    <reference name='XML_XPATH_INVALID_CTXT_POSITION' href='html/libxml-xmlerror.html#XML_XPATH_INVALID_CTXT_POSITION'/>
-    <reference name='XML_XPATH_INVALID_CTXT_SIZE' href='html/libxml-xmlerror.html#XML_XPATH_INVALID_CTXT_SIZE'/>
-    <reference name='XML_XPATH_INVALID_OPERAND' href='html/libxml-xmlerror.html#XML_XPATH_INVALID_OPERAND'/>
-    <reference name='XML_XPATH_INVALID_PREDICATE_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_INVALID_PREDICATE_ERROR'/>
-    <reference name='XML_XPATH_INVALID_TYPE' href='html/libxml-xmlerror.html#XML_XPATH_INVALID_TYPE'/>
-    <reference name='XML_XPATH_MEMORY_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_MEMORY_ERROR'/>
-    <reference name='XML_XPATH_NOVAR' href='html/libxml-xpath.html#XML_XPATH_NOVAR'/>
-    <reference name='XML_XPATH_NUMBER_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_NUMBER_ERROR'/>
-    <reference name='XML_XPATH_START_LITERAL_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_START_LITERAL_ERROR'/>
-    <reference name='XML_XPATH_UNCLOSED_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_UNCLOSED_ERROR'/>
-    <reference name='XML_XPATH_UNDEF_PREFIX_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_UNDEF_PREFIX_ERROR'/>
-    <reference name='XML_XPATH_UNDEF_VARIABLE_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_UNDEF_VARIABLE_ERROR'/>
-    <reference name='XML_XPATH_UNFINISHED_LITERAL_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_UNFINISHED_LITERAL_ERROR'/>
-    <reference name='XML_XPATH_UNKNOWN_FUNC_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_UNKNOWN_FUNC_ERROR'/>
-    <reference name='XML_XPATH_VARIABLE_REF_ERROR' href='html/libxml-xmlerror.html#XML_XPATH_VARIABLE_REF_ERROR'/>
-    <reference name='XML_XPTR_CHILDSEQ_START' href='html/libxml-xmlerror.html#XML_XPTR_CHILDSEQ_START'/>
-    <reference name='XML_XPTR_EVAL_FAILED' href='html/libxml-xmlerror.html#XML_XPTR_EVAL_FAILED'/>
-    <reference name='XML_XPTR_EXTRA_OBJECTS' href='html/libxml-xmlerror.html#XML_XPTR_EXTRA_OBJECTS'/>
-    <reference name='XML_XPTR_RESOURCE_ERROR' href='html/libxml-xmlerror.html#XML_XPTR_RESOURCE_ERROR'/>
-    <reference name='XML_XPTR_SUB_RESOURCE_ERROR' href='html/libxml-xmlerror.html#XML_XPTR_SUB_RESOURCE_ERROR'/>
-    <reference name='XML_XPTR_SYNTAX_ERROR' href='html/libxml-xmlerror.html#XML_XPTR_SYNTAX_ERROR'/>
-    <reference name='XML_XPTR_UNKNOWN_SCHEME' href='html/libxml-xmlerror.html#XML_XPTR_UNKNOWN_SCHEME'/>
-    <reference name='XPATH_BOOLEAN' href='html/libxml-xpath.html#XPATH_BOOLEAN'/>
-    <reference name='XPATH_ENCODING_ERROR' href='html/libxml-xpath.html#XPATH_ENCODING_ERROR'/>
-    <reference name='XPATH_EXPRESSION_OK' href='html/libxml-xpath.html#XPATH_EXPRESSION_OK'/>
-    <reference name='XPATH_EXPR_ERROR' href='html/libxml-xpath.html#XPATH_EXPR_ERROR'/>
-    <reference name='XPATH_FORBID_VARIABLE_ERROR' href='html/libxml-xpath.html#XPATH_FORBID_VARIABLE_ERROR'/>
-    <reference name='XPATH_INVALID_ARITY' href='html/libxml-xpath.html#XPATH_INVALID_ARITY'/>
-    <reference name='XPATH_INVALID_CHAR_ERROR' href='html/libxml-xpath.html#XPATH_INVALID_CHAR_ERROR'/>
-    <reference name='XPATH_INVALID_CTXT' href='html/libxml-xpath.html#XPATH_INVALID_CTXT'/>
-    <reference name='XPATH_INVALID_CTXT_POSITION' href='html/libxml-xpath.html#XPATH_INVALID_CTXT_POSITION'/>
-    <reference name='XPATH_INVALID_CTXT_SIZE' href='html/libxml-xpath.html#XPATH_INVALID_CTXT_SIZE'/>
-    <reference name='XPATH_INVALID_OPERAND' href='html/libxml-xpath.html#XPATH_INVALID_OPERAND'/>
-    <reference name='XPATH_INVALID_PREDICATE_ERROR' href='html/libxml-xpath.html#XPATH_INVALID_PREDICATE_ERROR'/>
-    <reference name='XPATH_INVALID_TYPE' href='html/libxml-xpath.html#XPATH_INVALID_TYPE'/>
-    <reference name='XPATH_LOCATIONSET' href='html/libxml-xpath.html#XPATH_LOCATIONSET'/>
-    <reference name='XPATH_MEMORY_ERROR' href='html/libxml-xpath.html#XPATH_MEMORY_ERROR'/>
-    <reference name='XPATH_NODESET' href='html/libxml-xpath.html#XPATH_NODESET'/>
-    <reference name='XPATH_NUMBER' href='html/libxml-xpath.html#XPATH_NUMBER'/>
-    <reference name='XPATH_NUMBER_ERROR' href='html/libxml-xpath.html#XPATH_NUMBER_ERROR'/>
-    <reference name='XPATH_OP_LIMIT_EXCEEDED' href='html/libxml-xpath.html#XPATH_OP_LIMIT_EXCEEDED'/>
-    <reference name='XPATH_POINT' href='html/libxml-xpath.html#XPATH_POINT'/>
-    <reference name='XPATH_RANGE' href='html/libxml-xpath.html#XPATH_RANGE'/>
-    <reference name='XPATH_RECURSION_LIMIT_EXCEEDED' href='html/libxml-xpath.html#XPATH_RECURSION_LIMIT_EXCEEDED'/>
-    <reference name='XPATH_STACK_ERROR' href='html/libxml-xpath.html#XPATH_STACK_ERROR'/>
-    <reference name='XPATH_START_LITERAL_ERROR' href='html/libxml-xpath.html#XPATH_START_LITERAL_ERROR'/>
-    <reference name='XPATH_STRING' href='html/libxml-xpath.html#XPATH_STRING'/>
-    <reference name='XPATH_UNCLOSED_ERROR' href='html/libxml-xpath.html#XPATH_UNCLOSED_ERROR'/>
-    <reference name='XPATH_UNDEFINED' href='html/libxml-xpath.html#XPATH_UNDEFINED'/>
-    <reference name='XPATH_UNDEF_PREFIX_ERROR' href='html/libxml-xpath.html#XPATH_UNDEF_PREFIX_ERROR'/>
-    <reference name='XPATH_UNDEF_VARIABLE_ERROR' href='html/libxml-xpath.html#XPATH_UNDEF_VARIABLE_ERROR'/>
-    <reference name='XPATH_UNFINISHED_LITERAL_ERROR' href='html/libxml-xpath.html#XPATH_UNFINISHED_LITERAL_ERROR'/>
-    <reference name='XPATH_UNKNOWN_FUNC_ERROR' href='html/libxml-xpath.html#XPATH_UNKNOWN_FUNC_ERROR'/>
-    <reference name='XPATH_USERS' href='html/libxml-xpath.html#XPATH_USERS'/>
-    <reference name='XPATH_VARIABLE_REF_ERROR' href='html/libxml-xpath.html#XPATH_VARIABLE_REF_ERROR'/>
-    <reference name='XPATH_XSLT_TREE' href='html/libxml-xpath.html#XPATH_XSLT_TREE'/>
-    <reference name='XPTR_RESOURCE_ERROR' href='html/libxml-xpath.html#XPTR_RESOURCE_ERROR'/>
-    <reference name='XPTR_SUB_RESOURCE_ERROR' href='html/libxml-xpath.html#XPTR_SUB_RESOURCE_ERROR'/>
-    <reference name='XPTR_SYNTAX_ERROR' href='html/libxml-xpath.html#XPTR_SYNTAX_ERROR'/>
-    <reference name='XP_ERROR' href='html/libxml-xpathInternals.html#XP_ERROR'/>
-    <reference name='XP_ERROR0' href='html/libxml-xpathInternals.html#XP_ERROR0'/>
-    <reference name='_htmlElemDesc' href='html/libxml-HTMLparser.html#_htmlElemDesc'/>
-    <reference name='_htmlEntityDesc' href='html/libxml-HTMLparser.html#_htmlEntityDesc'/>
-    <reference name='_xlinkHandler' href='html/libxml-xlink.html#_xlinkHandler'/>
-    <reference name='_xmlAttr' href='html/libxml-tree.html#_xmlAttr'/>
-    <reference name='_xmlAttribute' href='html/libxml-tree.html#_xmlAttribute'/>
-    <reference name='_xmlBuffer' href='html/libxml-tree.html#_xmlBuffer'/>
-    <reference name='_xmlChLRange' href='html/libxml-chvalid.html#_xmlChLRange'/>
-    <reference name='_xmlChRangeGroup' href='html/libxml-chvalid.html#_xmlChRangeGroup'/>
-    <reference name='_xmlChSRange' href='html/libxml-chvalid.html#_xmlChSRange'/>
-    <reference name='_xmlCharEncodingHandler' href='html/libxml-encoding.html#_xmlCharEncodingHandler'/>
-    <reference name='_xmlDOMWrapCtxt' href='html/libxml-tree.html#_xmlDOMWrapCtxt'/>
-    <reference name='_xmlDoc' href='html/libxml-tree.html#_xmlDoc'/>
-    <reference name='_xmlDtd' href='html/libxml-tree.html#_xmlDtd'/>
-    <reference name='_xmlElement' href='html/libxml-tree.html#_xmlElement'/>
-    <reference name='_xmlElementContent' href='html/libxml-tree.html#_xmlElementContent'/>
-    <reference name='_xmlEntity' href='html/libxml-entities.html#_xmlEntity'/>
-    <reference name='_xmlEnumeration' href='html/libxml-tree.html#_xmlEnumeration'/>
-    <reference name='_xmlError' href='html/libxml-xmlerror.html#_xmlError'/>
-    <reference name='_xmlGlobalState' href='html/libxml-globals.html#_xmlGlobalState'/>
-    <reference name='_xmlID' href='html/libxml-tree.html#_xmlID'/>
-    <reference name='_xmlLocationSet' href='html/libxml-xpointer.html#_xmlLocationSet'/>
-    <reference name='_xmlNode' href='html/libxml-tree.html#_xmlNode'/>
-    <reference name='_xmlNodeSet' href='html/libxml-xpath.html#_xmlNodeSet'/>
-    <reference name='_xmlNotation' href='html/libxml-tree.html#_xmlNotation'/>
-    <reference name='_xmlNs' href='html/libxml-tree.html#_xmlNs'/>
-    <reference name='_xmlOutputBuffer' href='html/libxml-xmlIO.html#_xmlOutputBuffer'/>
-    <reference name='_xmlParserCtxt' href='html/libxml-parser.html#_xmlParserCtxt'/>
-    <reference name='_xmlParserInput' href='html/libxml-parser.html#_xmlParserInput'/>
-    <reference name='_xmlParserInputBuffer' href='html/libxml-xmlIO.html#_xmlParserInputBuffer'/>
-    <reference name='_xmlParserNodeInfo' href='html/libxml-parser.html#_xmlParserNodeInfo'/>
-    <reference name='_xmlParserNodeInfoSeq' href='html/libxml-parser.html#_xmlParserNodeInfoSeq'/>
-    <reference name='_xmlRef' href='html/libxml-tree.html#_xmlRef'/>
-    <reference name='_xmlSAXHandler' href='html/libxml-parser.html#_xmlSAXHandler'/>
-    <reference name='_xmlSAXHandlerV1' href='html/libxml-parser.html#_xmlSAXHandlerV1'/>
-    <reference name='_xmlSAXLocator' href='html/libxml-parser.html#_xmlSAXLocator'/>
-    <reference name='_xmlSchema' href='html/libxml-schemasInternals.html#_xmlSchema'/>
-    <reference name='_xmlSchemaAnnot' href='html/libxml-schemasInternals.html#_xmlSchemaAnnot'/>
-    <reference name='_xmlSchemaAttribute' href='html/libxml-schemasInternals.html#_xmlSchemaAttribute'/>
-    <reference name='_xmlSchemaAttributeGroup' href='html/libxml-schemasInternals.html#_xmlSchemaAttributeGroup'/>
-    <reference name='_xmlSchemaAttributeLink' href='html/libxml-schemasInternals.html#_xmlSchemaAttributeLink'/>
-    <reference name='_xmlSchemaElement' href='html/libxml-schemasInternals.html#_xmlSchemaElement'/>
-    <reference name='_xmlSchemaFacet' href='html/libxml-schemasInternals.html#_xmlSchemaFacet'/>
-    <reference name='_xmlSchemaFacetLink' href='html/libxml-schemasInternals.html#_xmlSchemaFacetLink'/>
-    <reference name='_xmlSchemaNotation' href='html/libxml-schemasInternals.html#_xmlSchemaNotation'/>
-    <reference name='_xmlSchemaType' href='html/libxml-schemasInternals.html#_xmlSchemaType'/>
-    <reference name='_xmlSchemaTypeLink' href='html/libxml-schemasInternals.html#_xmlSchemaTypeLink'/>
-    <reference name='_xmlSchemaWildcard' href='html/libxml-schemasInternals.html#_xmlSchemaWildcard'/>
-    <reference name='_xmlSchemaWildcardNs' href='html/libxml-schemasInternals.html#_xmlSchemaWildcardNs'/>
-    <reference name='_xmlShellCtxt' href='html/libxml-debugXML.html#_xmlShellCtxt'/>
-    <reference name='_xmlURI' href='html/libxml-uri.html#_xmlURI'/>
-    <reference name='_xmlValidCtxt' href='html/libxml-valid.html#_xmlValidCtxt'/>
-    <reference name='_xmlXPathAxis' href='html/libxml-xpath.html#_xmlXPathAxis'/>
-    <reference name='_xmlXPathContext' href='html/libxml-xpath.html#_xmlXPathContext'/>
-    <reference name='_xmlXPathFunct' href='html/libxml-xpath.html#_xmlXPathFunct'/>
-    <reference name='_xmlXPathObject' href='html/libxml-xpath.html#_xmlXPathObject'/>
-    <reference name='_xmlXPathParserContext' href='html/libxml-xpath.html#_xmlXPathParserContext'/>
-    <reference name='_xmlXPathType' href='html/libxml-xpath.html#_xmlXPathType'/>
-    <reference name='_xmlXPathVariable' href='html/libxml-xpath.html#_xmlXPathVariable'/>
-    <reference name='attribute' href='html/libxml-SAX.html#attribute'/>
-    <reference name='attributeDecl' href='html/libxml-SAX.html#attributeDecl'/>
-    <reference name='attributeDeclSAXFunc' href='html/libxml-parser.html#attributeDeclSAXFunc'/>
-    <reference name='attributeSAXFunc' href='html/libxml-parser.html#attributeSAXFunc'/>
-    <reference name='cdataBlock' href='html/libxml-SAX.html#cdataBlock'/>
-    <reference name='cdataBlockSAXFunc' href='html/libxml-parser.html#cdataBlockSAXFunc'/>
-    <reference name='characters' href='html/libxml-SAX.html#characters'/>
-    <reference name='charactersSAXFunc' href='html/libxml-parser.html#charactersSAXFunc'/>
-    <reference name='checkNamespace' href='html/libxml-SAX.html#checkNamespace'/>
-    <reference name='comment' href='html/libxml-SAX.html#comment'/>
-    <reference name='commentSAXFunc' href='html/libxml-parser.html#commentSAXFunc'/>
-    <reference name='elementDecl' href='html/libxml-SAX.html#elementDecl'/>
-    <reference name='elementDeclSAXFunc' href='html/libxml-parser.html#elementDeclSAXFunc'/>
-    <reference name='emptyExp' href='html/libxml-xmlregexp.html#emptyExp'/>
-    <reference name='endDocument' href='html/libxml-SAX.html#endDocument'/>
-    <reference name='endDocumentSAXFunc' href='html/libxml-parser.html#endDocumentSAXFunc'/>
-    <reference name='endElement' href='html/libxml-SAX.html#endElement'/>
-    <reference name='endElementNsSAX2Func' href='html/libxml-parser.html#endElementNsSAX2Func'/>
-    <reference name='endElementSAXFunc' href='html/libxml-parser.html#endElementSAXFunc'/>
-    <reference name='entityDecl' href='html/libxml-SAX.html#entityDecl'/>
-    <reference name='entityDeclSAXFunc' href='html/libxml-parser.html#entityDeclSAXFunc'/>
-    <reference name='errorSAXFunc' href='html/libxml-parser.html#errorSAXFunc'/>
-    <reference name='externalSubset' href='html/libxml-SAX.html#externalSubset'/>
-    <reference name='externalSubsetSAXFunc' href='html/libxml-parser.html#externalSubsetSAXFunc'/>
-    <reference name='fatalErrorSAXFunc' href='html/libxml-parser.html#fatalErrorSAXFunc'/>
-    <reference name='forbiddenExp' href='html/libxml-xmlregexp.html#forbiddenExp'/>
-    <reference name='ftpDataCallback' href='html/libxml-nanoftp.html#ftpDataCallback'/>
-    <reference name='ftpListCallback' href='html/libxml-nanoftp.html#ftpListCallback'/>
-    <reference name='getColumnNumber' href='html/libxml-SAX.html#getColumnNumber'/>
-    <reference name='getEntity' href='html/libxml-SAX.html#getEntity'/>
-    <reference name='getEntitySAXFunc' href='html/libxml-parser.html#getEntitySAXFunc'/>
-    <reference name='getLineNumber' href='html/libxml-SAX.html#getLineNumber'/>
-    <reference name='getNamespace' href='html/libxml-SAX.html#getNamespace'/>
-    <reference name='getParameterEntity' href='html/libxml-SAX.html#getParameterEntity'/>
-    <reference name='getParameterEntitySAXFunc' href='html/libxml-parser.html#getParameterEntitySAXFunc'/>
-    <reference name='getPublicId' href='html/libxml-SAX.html#getPublicId'/>
-    <reference name='getSystemId' href='html/libxml-SAX.html#getSystemId'/>
-    <reference name='globalNamespace' href='html/libxml-SAX.html#globalNamespace'/>
-    <reference name='hasExternalSubset' href='html/libxml-SAX.html#hasExternalSubset'/>
-    <reference name='hasExternalSubsetSAXFunc' href='html/libxml-parser.html#hasExternalSubsetSAXFunc'/>
-    <reference name='hasInternalSubset' href='html/libxml-SAX.html#hasInternalSubset'/>
-    <reference name='hasInternalSubsetSAXFunc' href='html/libxml-parser.html#hasInternalSubsetSAXFunc'/>
-    <reference name='htmlAttrAllowed' href='html/libxml-HTMLparser.html#htmlAttrAllowed'/>
-    <reference name='htmlAutoCloseTag' href='html/libxml-HTMLparser.html#htmlAutoCloseTag'/>
-    <reference name='htmlCreateFileParserCtxt' href='html/libxml-parserInternals.html#htmlCreateFileParserCtxt'/>
-    <reference name='htmlCreateMemoryParserCtxt' href='html/libxml-HTMLparser.html#htmlCreateMemoryParserCtxt'/>
-    <reference name='htmlCreatePushParserCtxt' href='html/libxml-HTMLparser.html#htmlCreatePushParserCtxt'/>
-    <reference name='htmlCtxtReadDoc' href='html/libxml-HTMLparser.html#htmlCtxtReadDoc'/>
-    <reference name='htmlCtxtReadFd' href='html/libxml-HTMLparser.html#htmlCtxtReadFd'/>
-    <reference name='htmlCtxtReadFile' href='html/libxml-HTMLparser.html#htmlCtxtReadFile'/>
-    <reference name='htmlCtxtReadIO' href='html/libxml-HTMLparser.html#htmlCtxtReadIO'/>
-    <reference name='htmlCtxtReadMemory' href='html/libxml-HTMLparser.html#htmlCtxtReadMemory'/>
-    <reference name='htmlCtxtReset' href='html/libxml-HTMLparser.html#htmlCtxtReset'/>
-    <reference name='htmlCtxtUseOptions' href='html/libxml-HTMLparser.html#htmlCtxtUseOptions'/>
-    <reference name='htmlDefaultSAXHandler' href='html/libxml-globals.html#htmlDefaultSAXHandler'/>
-    <reference name='htmlDefaultSAXHandlerInit' href='html/libxml-SAX2.html#htmlDefaultSAXHandlerInit'/>
-    <reference name='htmlDefaultSubelement' href='html/libxml-HTMLparser.html#htmlDefaultSubelement'/>
-    <reference name='htmlDocContentDumpFormatOutput' href='html/libxml-HTMLtree.html#htmlDocContentDumpFormatOutput'/>
-    <reference name='htmlDocContentDumpOutput' href='html/libxml-HTMLtree.html#htmlDocContentDumpOutput'/>
-    <reference name='htmlDocDump' href='html/libxml-HTMLtree.html#htmlDocDump'/>
-    <reference name='htmlDocDumpMemory' href='html/libxml-HTMLtree.html#htmlDocDumpMemory'/>
-    <reference name='htmlDocDumpMemoryFormat' href='html/libxml-HTMLtree.html#htmlDocDumpMemoryFormat'/>
-    <reference name='htmlDocPtr' href='html/libxml-HTMLparser.html#htmlDocPtr'/>
-    <reference name='htmlElemDesc' href='html/libxml-HTMLparser.html#htmlElemDesc'/>
-    <reference name='htmlElemDescPtr' href='html/libxml-HTMLparser.html#htmlElemDescPtr'/>
-    <reference name='htmlElementAllowedHere' href='html/libxml-HTMLparser.html#htmlElementAllowedHere'/>
-    <reference name='htmlElementAllowedHereDesc' href='html/libxml-HTMLparser.html#htmlElementAllowedHereDesc'/>
-    <reference name='htmlElementStatusHere' href='html/libxml-HTMLparser.html#htmlElementStatusHere'/>
-    <reference name='htmlEncodeEntities' href='html/libxml-HTMLparser.html#htmlEncodeEntities'/>
-    <reference name='htmlEntityDesc' href='html/libxml-HTMLparser.html#htmlEntityDesc'/>
-    <reference name='htmlEntityDescPtr' href='html/libxml-HTMLparser.html#htmlEntityDescPtr'/>
-    <reference name='htmlEntityLookup' href='html/libxml-HTMLparser.html#htmlEntityLookup'/>
-    <reference name='htmlEntityValueLookup' href='html/libxml-HTMLparser.html#htmlEntityValueLookup'/>
-    <reference name='htmlFreeParserCtxt' href='html/libxml-HTMLparser.html#htmlFreeParserCtxt'/>
-    <reference name='htmlGetMetaEncoding' href='html/libxml-HTMLtree.html#htmlGetMetaEncoding'/>
-    <reference name='htmlHandleOmittedElem' href='html/libxml-HTMLparser.html#htmlHandleOmittedElem'/>
-    <reference name='htmlInitAutoClose' href='html/libxml-parserInternals.html#htmlInitAutoClose'/>
-    <reference name='htmlIsAutoClosed' href='html/libxml-HTMLparser.html#htmlIsAutoClosed'/>
-    <reference name='htmlIsBooleanAttr' href='html/libxml-HTMLtree.html#htmlIsBooleanAttr'/>
-    <reference name='htmlIsScriptAttribute' href='html/libxml-HTMLparser.html#htmlIsScriptAttribute'/>
-    <reference name='htmlNewDoc' href='html/libxml-HTMLtree.html#htmlNewDoc'/>
-    <reference name='htmlNewDocNoDtD' href='html/libxml-HTMLtree.html#htmlNewDocNoDtD'/>
-    <reference name='htmlNewParserCtxt' href='html/libxml-HTMLparser.html#htmlNewParserCtxt'/>
-    <reference name='htmlNodeDump' href='html/libxml-HTMLtree.html#htmlNodeDump'/>
-    <reference name='htmlNodeDumpFile' href='html/libxml-HTMLtree.html#htmlNodeDumpFile'/>
-    <reference name='htmlNodeDumpFileFormat' href='html/libxml-HTMLtree.html#htmlNodeDumpFileFormat'/>
-    <reference name='htmlNodeDumpFormatOutput' href='html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput'/>
-    <reference name='htmlNodeDumpOutput' href='html/libxml-HTMLtree.html#htmlNodeDumpOutput'/>
-    <reference name='htmlNodePtr' href='html/libxml-HTMLparser.html#htmlNodePtr'/>
-    <reference name='htmlNodeStatus' href='html/libxml-HTMLparser.html#htmlNodeStatus'/>
-    <reference name='htmlParseCharRef' href='html/libxml-HTMLparser.html#htmlParseCharRef'/>
-    <reference name='htmlParseChunk' href='html/libxml-HTMLparser.html#htmlParseChunk'/>
-    <reference name='htmlParseDoc' href='html/libxml-HTMLparser.html#htmlParseDoc'/>
-    <reference name='htmlParseDocument' href='html/libxml-HTMLparser.html#htmlParseDocument'/>
-    <reference name='htmlParseElement' href='html/libxml-HTMLparser.html#htmlParseElement'/>
-    <reference name='htmlParseEntityRef' href='html/libxml-HTMLparser.html#htmlParseEntityRef'/>
-    <reference name='htmlParseFile' href='html/libxml-HTMLparser.html#htmlParseFile'/>
-    <reference name='htmlParserCtxt' href='html/libxml-HTMLparser.html#htmlParserCtxt'/>
-    <reference name='htmlParserCtxtPtr' href='html/libxml-HTMLparser.html#htmlParserCtxtPtr'/>
-    <reference name='htmlParserInput' href='html/libxml-HTMLparser.html#htmlParserInput'/>
-    <reference name='htmlParserInputPtr' href='html/libxml-HTMLparser.html#htmlParserInputPtr'/>
-    <reference name='htmlParserNodeInfo' href='html/libxml-HTMLparser.html#htmlParserNodeInfo'/>
-    <reference name='htmlParserOption' href='html/libxml-HTMLparser.html#htmlParserOption'/>
-    <reference name='htmlReadDoc' href='html/libxml-HTMLparser.html#htmlReadDoc'/>
-    <reference name='htmlReadFd' href='html/libxml-HTMLparser.html#htmlReadFd'/>
-    <reference name='htmlReadFile' href='html/libxml-HTMLparser.html#htmlReadFile'/>
-    <reference name='htmlReadIO' href='html/libxml-HTMLparser.html#htmlReadIO'/>
-    <reference name='htmlReadMemory' href='html/libxml-HTMLparser.html#htmlReadMemory'/>
-    <reference name='htmlRequiredAttrs' href='html/libxml-HTMLparser.html#htmlRequiredAttrs'/>
-    <reference name='htmlSAXHandler' href='html/libxml-HTMLparser.html#htmlSAXHandler'/>
-    <reference name='htmlSAXHandlerPtr' href='html/libxml-HTMLparser.html#htmlSAXHandlerPtr'/>
-    <reference name='htmlSAXParseDoc' href='html/libxml-HTMLparser.html#htmlSAXParseDoc'/>
-    <reference name='htmlSAXParseFile' href='html/libxml-HTMLparser.html#htmlSAXParseFile'/>
-    <reference name='htmlSaveFile' href='html/libxml-HTMLtree.html#htmlSaveFile'/>
-    <reference name='htmlSaveFileEnc' href='html/libxml-HTMLtree.html#htmlSaveFileEnc'/>
-    <reference name='htmlSaveFileFormat' href='html/libxml-HTMLtree.html#htmlSaveFileFormat'/>
-    <reference name='htmlSetMetaEncoding' href='html/libxml-HTMLtree.html#htmlSetMetaEncoding'/>
-    <reference name='htmlStatus' href='html/libxml-HTMLparser.html#htmlStatus'/>
-    <reference name='htmlTagLookup' href='html/libxml-HTMLparser.html#htmlTagLookup'/>
-    <reference name='ignorableWhitespace' href='html/libxml-SAX.html#ignorableWhitespace'/>
-    <reference name='ignorableWhitespaceSAXFunc' href='html/libxml-parser.html#ignorableWhitespaceSAXFunc'/>
-    <reference name='initGenericErrorDefaultFunc' href='html/libxml-xmlerror.html#initGenericErrorDefaultFunc'/>
-    <reference name='inithtmlDefaultSAXHandler' href='html/libxml-SAX.html#inithtmlDefaultSAXHandler'/>
-    <reference name='initxmlDefaultSAXHandler' href='html/libxml-SAX.html#initxmlDefaultSAXHandler'/>
-    <reference name='inputPop' href='html/libxml-parserInternals.html#inputPop'/>
-    <reference name='inputPush' href='html/libxml-parserInternals.html#inputPush'/>
-    <reference name='internalSubset' href='html/libxml-SAX.html#internalSubset'/>
-    <reference name='internalSubsetSAXFunc' href='html/libxml-parser.html#internalSubsetSAXFunc'/>
-    <reference name='isStandalone' href='html/libxml-SAX.html#isStandalone'/>
-    <reference name='isStandaloneSAXFunc' href='html/libxml-parser.html#isStandaloneSAXFunc'/>
-    <reference name='isolat1ToUTF8' href='html/libxml-encoding.html#isolat1ToUTF8'/>
-    <reference name='namePop' href='html/libxml-parserInternals.html#namePop'/>
-    <reference name='namePush' href='html/libxml-parserInternals.html#namePush'/>
-    <reference name='namespaceDecl' href='html/libxml-SAX.html#namespaceDecl'/>
-    <reference name='nodePop' href='html/libxml-parserInternals.html#nodePop'/>
-    <reference name='nodePush' href='html/libxml-parserInternals.html#nodePush'/>
-    <reference name='notationDecl' href='html/libxml-SAX.html#notationDecl'/>
-    <reference name='notationDeclSAXFunc' href='html/libxml-parser.html#notationDeclSAXFunc'/>
-    <reference name='oldXMLWDcompatibility' href='html/libxml-globals.html#oldXMLWDcompatibility'/>
-    <reference name='processingInstruction' href='html/libxml-SAX.html#processingInstruction'/>
-    <reference name='processingInstructionSAXFunc' href='html/libxml-parser.html#processingInstructionSAXFunc'/>
-    <reference name='reference' href='html/libxml-SAX.html#reference'/>
-    <reference name='referenceSAXFunc' href='html/libxml-parser.html#referenceSAXFunc'/>
-    <reference name='resolveEntity' href='html/libxml-SAX.html#resolveEntity'/>
-    <reference name='resolveEntitySAXFunc' href='html/libxml-parser.html#resolveEntitySAXFunc'/>
-    <reference name='setDocumentLocator' href='html/libxml-SAX.html#setDocumentLocator'/>
-    <reference name='setDocumentLocatorSAXFunc' href='html/libxml-parser.html#setDocumentLocatorSAXFunc'/>
-    <reference name='setNamespace' href='html/libxml-SAX.html#setNamespace'/>
-    <reference name='startDocument' href='html/libxml-SAX.html#startDocument'/>
-    <reference name='startDocumentSAXFunc' href='html/libxml-parser.html#startDocumentSAXFunc'/>
-    <reference name='startElement' href='html/libxml-SAX.html#startElement'/>
-    <reference name='startElementNsSAX2Func' href='html/libxml-parser.html#startElementNsSAX2Func'/>
-    <reference name='startElementSAXFunc' href='html/libxml-parser.html#startElementSAXFunc'/>
-    <reference name='unparsedEntityDecl' href='html/libxml-SAX.html#unparsedEntityDecl'/>
-    <reference name='unparsedEntityDeclSAXFunc' href='html/libxml-parser.html#unparsedEntityDeclSAXFunc'/>
-    <reference name='valuePop' href='html/libxml-xpathInternals.html#valuePop'/>
-    <reference name='valuePush' href='html/libxml-xpathInternals.html#valuePush'/>
-    <reference name='warningSAXFunc' href='html/libxml-parser.html#warningSAXFunc'/>
-    <reference name='xlinkActuate' href='html/libxml-xlink.html#xlinkActuate'/>
-    <reference name='xlinkExtendedLinkFunk' href='html/libxml-xlink.html#xlinkExtendedLinkFunk'/>
-    <reference name='xlinkExtendedLinkSetFunk' href='html/libxml-xlink.html#xlinkExtendedLinkSetFunk'/>
-    <reference name='xlinkGetDefaultDetect' href='html/libxml-xlink.html#xlinkGetDefaultDetect'/>
-    <reference name='xlinkGetDefaultHandler' href='html/libxml-xlink.html#xlinkGetDefaultHandler'/>
-    <reference name='xlinkHRef' href='html/libxml-xlink.html#xlinkHRef'/>
-    <reference name='xlinkHandler' href='html/libxml-xlink.html#xlinkHandler'/>
-    <reference name='xlinkHandlerPtr' href='html/libxml-xlink.html#xlinkHandlerPtr'/>
-    <reference name='xlinkIsLink' href='html/libxml-xlink.html#xlinkIsLink'/>
-    <reference name='xlinkNodeDetectFunc' href='html/libxml-xlink.html#xlinkNodeDetectFunc'/>
-    <reference name='xlinkRole' href='html/libxml-xlink.html#xlinkRole'/>
-    <reference name='xlinkSetDefaultDetect' href='html/libxml-xlink.html#xlinkSetDefaultDetect'/>
-    <reference name='xlinkSetDefaultHandler' href='html/libxml-xlink.html#xlinkSetDefaultHandler'/>
-    <reference name='xlinkShow' href='html/libxml-xlink.html#xlinkShow'/>
-    <reference name='xlinkSimpleLinkFunk' href='html/libxml-xlink.html#xlinkSimpleLinkFunk'/>
-    <reference name='xlinkTitle' href='html/libxml-xlink.html#xlinkTitle'/>
-    <reference name='xlinkType' href='html/libxml-xlink.html#xlinkType'/>
-    <reference name='xmlACatalogAdd' href='html/libxml-catalog.html#xmlACatalogAdd'/>
-    <reference name='xmlACatalogDump' href='html/libxml-catalog.html#xmlACatalogDump'/>
-    <reference name='xmlACatalogRemove' href='html/libxml-catalog.html#xmlACatalogRemove'/>
-    <reference name='xmlACatalogResolve' href='html/libxml-catalog.html#xmlACatalogResolve'/>
-    <reference name='xmlACatalogResolvePublic' href='html/libxml-catalog.html#xmlACatalogResolvePublic'/>
-    <reference name='xmlACatalogResolveSystem' href='html/libxml-catalog.html#xmlACatalogResolveSystem'/>
-    <reference name='xmlACatalogResolveURI' href='html/libxml-catalog.html#xmlACatalogResolveURI'/>
-    <reference name='xmlAddAttributeDecl' href='html/libxml-valid.html#xmlAddAttributeDecl'/>
-    <reference name='xmlAddChild' href='html/libxml-tree.html#xmlAddChild'/>
-    <reference name='xmlAddChildList' href='html/libxml-tree.html#xmlAddChildList'/>
-    <reference name='xmlAddDocEntity' href='html/libxml-entities.html#xmlAddDocEntity'/>
-    <reference name='xmlAddDtdEntity' href='html/libxml-entities.html#xmlAddDtdEntity'/>
-    <reference name='xmlAddElementDecl' href='html/libxml-valid.html#xmlAddElementDecl'/>
-    <reference name='xmlAddEncodingAlias' href='html/libxml-encoding.html#xmlAddEncodingAlias'/>
-    <reference name='xmlAddID' href='html/libxml-valid.html#xmlAddID'/>
-    <reference name='xmlAddNextSibling' href='html/libxml-tree.html#xmlAddNextSibling'/>
-    <reference name='xmlAddNotationDecl' href='html/libxml-valid.html#xmlAddNotationDecl'/>
-    <reference name='xmlAddPrevSibling' href='html/libxml-tree.html#xmlAddPrevSibling'/>
-    <reference name='xmlAddRef' href='html/libxml-valid.html#xmlAddRef'/>
-    <reference name='xmlAddSibling' href='html/libxml-tree.html#xmlAddSibling'/>
-    <reference name='xmlAllocOutputBuffer' href='html/libxml-xmlIO.html#xmlAllocOutputBuffer'/>
-    <reference name='xmlAllocParserInputBuffer' href='html/libxml-xmlIO.html#xmlAllocParserInputBuffer'/>
-    <reference name='xmlAttr' href='html/libxml-tree.html#xmlAttr'/>
-    <reference name='xmlAttrPtr' href='html/libxml-tree.html#xmlAttrPtr'/>
-    <reference name='xmlAttrSerializeTxtContent' href='html/libxml-tree.html#xmlAttrSerializeTxtContent'/>
-    <reference name='xmlAttribute' href='html/libxml-tree.html#xmlAttribute'/>
-    <reference name='xmlAttributeDefault' href='html/libxml-tree.html#xmlAttributeDefault'/>
-    <reference name='xmlAttributePtr' href='html/libxml-tree.html#xmlAttributePtr'/>
-    <reference name='xmlAttributeTable' href='html/libxml-valid.html#xmlAttributeTable'/>
-    <reference name='xmlAttributeTablePtr' href='html/libxml-valid.html#xmlAttributeTablePtr'/>
-    <reference name='xmlAttributeType' href='html/libxml-tree.html#xmlAttributeType'/>
-    <reference name='xmlAutomata' href='html/libxml-xmlautomata.html#xmlAutomata'/>
-    <reference name='xmlAutomataCompile' href='html/libxml-xmlautomata.html#xmlAutomataCompile'/>
-    <reference name='xmlAutomataGetInitState' href='html/libxml-xmlautomata.html#xmlAutomataGetInitState'/>
-    <reference name='xmlAutomataIsDeterminist' href='html/libxml-xmlautomata.html#xmlAutomataIsDeterminist'/>
-    <reference name='xmlAutomataNewAllTrans' href='html/libxml-xmlautomata.html#xmlAutomataNewAllTrans'/>
-    <reference name='xmlAutomataNewCountTrans' href='html/libxml-xmlautomata.html#xmlAutomataNewCountTrans'/>
-    <reference name='xmlAutomataNewCountTrans2' href='html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2'/>
-    <reference name='xmlAutomataNewCountedTrans' href='html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans'/>
-    <reference name='xmlAutomataNewCounter' href='html/libxml-xmlautomata.html#xmlAutomataNewCounter'/>
-    <reference name='xmlAutomataNewCounterTrans' href='html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans'/>
-    <reference name='xmlAutomataNewEpsilon' href='html/libxml-xmlautomata.html#xmlAutomataNewEpsilon'/>
-    <reference name='xmlAutomataNewNegTrans' href='html/libxml-xmlautomata.html#xmlAutomataNewNegTrans'/>
-    <reference name='xmlAutomataNewOnceTrans' href='html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans'/>
-    <reference name='xmlAutomataNewOnceTrans2' href='html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2'/>
-    <reference name='xmlAutomataNewState' href='html/libxml-xmlautomata.html#xmlAutomataNewState'/>
-    <reference name='xmlAutomataNewTransition' href='html/libxml-xmlautomata.html#xmlAutomataNewTransition'/>
-    <reference name='xmlAutomataNewTransition2' href='html/libxml-xmlautomata.html#xmlAutomataNewTransition2'/>
-    <reference name='xmlAutomataPtr' href='html/libxml-xmlautomata.html#xmlAutomataPtr'/>
-    <reference name='xmlAutomataSetFinalState' href='html/libxml-xmlautomata.html#xmlAutomataSetFinalState'/>
-    <reference name='xmlAutomataState' href='html/libxml-xmlautomata.html#xmlAutomataState'/>
-    <reference name='xmlAutomataStatePtr' href='html/libxml-xmlautomata.html#xmlAutomataStatePtr'/>
-    <reference name='xmlBoolToText' href='html/libxml-debugXML.html#xmlBoolToText'/>
-    <reference name='xmlBuf' href='html/libxml-tree.html#xmlBuf'/>
-    <reference name='xmlBufContent' href='html/libxml-tree.html#xmlBufContent'/>
-    <reference name='xmlBufEnd' href='html/libxml-tree.html#xmlBufEnd'/>
-    <reference name='xmlBufGetNodeContent' href='html/libxml-tree.html#xmlBufGetNodeContent'/>
-    <reference name='xmlBufNodeDump' href='html/libxml-tree.html#xmlBufNodeDump'/>
-    <reference name='xmlBufPtr' href='html/libxml-tree.html#xmlBufPtr'/>
-    <reference name='xmlBufShrink' href='html/libxml-tree.html#xmlBufShrink'/>
-    <reference name='xmlBufUse' href='html/libxml-tree.html#xmlBufUse'/>
-    <reference name='xmlBuffer' href='html/libxml-tree.html#xmlBuffer'/>
-    <reference name='xmlBufferAdd' href='html/libxml-tree.html#xmlBufferAdd'/>
-    <reference name='xmlBufferAddHead' href='html/libxml-tree.html#xmlBufferAddHead'/>
-    <reference name='xmlBufferAllocScheme' href='html/libxml-globals.html#xmlBufferAllocScheme'/>
-    <reference name='xmlBufferAllocationScheme' href='html/libxml-tree.html#xmlBufferAllocationScheme'/>
-    <reference name='xmlBufferCCat' href='html/libxml-tree.html#xmlBufferCCat'/>
-    <reference name='xmlBufferCat' href='html/libxml-tree.html#xmlBufferCat'/>
-    <reference name='xmlBufferContent' href='html/libxml-tree.html#xmlBufferContent'/>
-    <reference name='xmlBufferCreate' href='html/libxml-tree.html#xmlBufferCreate'/>
-    <reference name='xmlBufferCreateSize' href='html/libxml-tree.html#xmlBufferCreateSize'/>
-    <reference name='xmlBufferCreateStatic' href='html/libxml-tree.html#xmlBufferCreateStatic'/>
-    <reference name='xmlBufferDetach' href='html/libxml-tree.html#xmlBufferDetach'/>
-    <reference name='xmlBufferDump' href='html/libxml-tree.html#xmlBufferDump'/>
-    <reference name='xmlBufferEmpty' href='html/libxml-tree.html#xmlBufferEmpty'/>
-    <reference name='xmlBufferFree' href='html/libxml-tree.html#xmlBufferFree'/>
-    <reference name='xmlBufferGrow' href='html/libxml-tree.html#xmlBufferGrow'/>
-    <reference name='xmlBufferLength' href='html/libxml-tree.html#xmlBufferLength'/>
-    <reference name='xmlBufferPtr' href='html/libxml-tree.html#xmlBufferPtr'/>
-    <reference name='xmlBufferResize' href='html/libxml-tree.html#xmlBufferResize'/>
-    <reference name='xmlBufferSetAllocationScheme' href='html/libxml-tree.html#xmlBufferSetAllocationScheme'/>
-    <reference name='xmlBufferShrink' href='html/libxml-tree.html#xmlBufferShrink'/>
-    <reference name='xmlBufferWriteCHAR' href='html/libxml-tree.html#xmlBufferWriteCHAR'/>
-    <reference name='xmlBufferWriteChar' href='html/libxml-tree.html#xmlBufferWriteChar'/>
-    <reference name='xmlBufferWriteQuotedString' href='html/libxml-tree.html#xmlBufferWriteQuotedString'/>
-    <reference name='xmlBuildQName' href='html/libxml-tree.html#xmlBuildQName'/>
-    <reference name='xmlBuildRelativeURI' href='html/libxml-uri.html#xmlBuildRelativeURI'/>
-    <reference name='xmlBuildURI' href='html/libxml-uri.html#xmlBuildURI'/>
-    <reference name='xmlByteConsumed' href='html/libxml-parser.html#xmlByteConsumed'/>
-    <reference name='xmlC14NDocDumpMemory' href='html/libxml-c14n.html#xmlC14NDocDumpMemory'/>
-    <reference name='xmlC14NDocSave' href='html/libxml-c14n.html#xmlC14NDocSave'/>
-    <reference name='xmlC14NDocSaveTo' href='html/libxml-c14n.html#xmlC14NDocSaveTo'/>
-    <reference name='xmlC14NExecute' href='html/libxml-c14n.html#xmlC14NExecute'/>
-    <reference name='xmlC14NIsVisibleCallback' href='html/libxml-c14n.html#xmlC14NIsVisibleCallback'/>
-    <reference name='xmlC14NMode' href='html/libxml-c14n.html#xmlC14NMode'/>
-    <reference name='xmlCanonicPath' href='html/libxml-uri.html#xmlCanonicPath'/>
-    <reference name='xmlCatalog' href='html/libxml-catalog.html#xmlCatalog'/>
-    <reference name='xmlCatalogAdd' href='html/libxml-catalog.html#xmlCatalogAdd'/>
-    <reference name='xmlCatalogAddLocal' href='html/libxml-catalog.html#xmlCatalogAddLocal'/>
-    <reference name='xmlCatalogAllow' href='html/libxml-catalog.html#xmlCatalogAllow'/>
-    <reference name='xmlCatalogCleanup' href='html/libxml-catalog.html#xmlCatalogCleanup'/>
-    <reference name='xmlCatalogConvert' href='html/libxml-catalog.html#xmlCatalogConvert'/>
-    <reference name='xmlCatalogDump' href='html/libxml-catalog.html#xmlCatalogDump'/>
-    <reference name='xmlCatalogFreeLocal' href='html/libxml-catalog.html#xmlCatalogFreeLocal'/>
-    <reference name='xmlCatalogGetDefaults' href='html/libxml-catalog.html#xmlCatalogGetDefaults'/>
-    <reference name='xmlCatalogGetPublic' href='html/libxml-catalog.html#xmlCatalogGetPublic'/>
-    <reference name='xmlCatalogGetSystem' href='html/libxml-catalog.html#xmlCatalogGetSystem'/>
-    <reference name='xmlCatalogIsEmpty' href='html/libxml-catalog.html#xmlCatalogIsEmpty'/>
-    <reference name='xmlCatalogLocalResolve' href='html/libxml-catalog.html#xmlCatalogLocalResolve'/>
-    <reference name='xmlCatalogLocalResolveURI' href='html/libxml-catalog.html#xmlCatalogLocalResolveURI'/>
-    <reference name='xmlCatalogPrefer' href='html/libxml-catalog.html#xmlCatalogPrefer'/>
-    <reference name='xmlCatalogPtr' href='html/libxml-catalog.html#xmlCatalogPtr'/>
-    <reference name='xmlCatalogRemove' href='html/libxml-catalog.html#xmlCatalogRemove'/>
-    <reference name='xmlCatalogResolve' href='html/libxml-catalog.html#xmlCatalogResolve'/>
-    <reference name='xmlCatalogResolvePublic' href='html/libxml-catalog.html#xmlCatalogResolvePublic'/>
-    <reference name='xmlCatalogResolveSystem' href='html/libxml-catalog.html#xmlCatalogResolveSystem'/>
-    <reference name='xmlCatalogResolveURI' href='html/libxml-catalog.html#xmlCatalogResolveURI'/>
-    <reference name='xmlCatalogSetDebug' href='html/libxml-catalog.html#xmlCatalogSetDebug'/>
-    <reference name='xmlCatalogSetDefaultPrefer' href='html/libxml-catalog.html#xmlCatalogSetDefaultPrefer'/>
-    <reference name='xmlCatalogSetDefaults' href='html/libxml-catalog.html#xmlCatalogSetDefaults'/>
-    <reference name='xmlChLRange' href='html/libxml-chvalid.html#xmlChLRange'/>
-    <reference name='xmlChLRangePtr' href='html/libxml-chvalid.html#xmlChLRangePtr'/>
-    <reference name='xmlChRangeGroup' href='html/libxml-chvalid.html#xmlChRangeGroup'/>
-    <reference name='xmlChRangeGroupPtr' href='html/libxml-chvalid.html#xmlChRangeGroupPtr'/>
-    <reference name='xmlChSRange' href='html/libxml-chvalid.html#xmlChSRange'/>
-    <reference name='xmlChSRangePtr' href='html/libxml-chvalid.html#xmlChSRangePtr'/>
-    <reference name='xmlChar' href='html/libxml-xmlstring.html#xmlChar'/>
-    <reference name='xmlCharEncCloseFunc' href='html/libxml-encoding.html#xmlCharEncCloseFunc'/>
-    <reference name='xmlCharEncFirstLine' href='html/libxml-encoding.html#xmlCharEncFirstLine'/>
-    <reference name='xmlCharEncInFunc' href='html/libxml-encoding.html#xmlCharEncInFunc'/>
-    <reference name='xmlCharEncOutFunc' href='html/libxml-encoding.html#xmlCharEncOutFunc'/>
-    <reference name='xmlCharEncoding' href='html/libxml-encoding.html#xmlCharEncoding'/>
-    <reference name='xmlCharEncodingHandler' href='html/libxml-encoding.html#xmlCharEncodingHandler'/>
-    <reference name='xmlCharEncodingHandlerPtr' href='html/libxml-encoding.html#xmlCharEncodingHandlerPtr'/>
-    <reference name='xmlCharEncodingInputFunc' href='html/libxml-encoding.html#xmlCharEncodingInputFunc'/>
-    <reference name='xmlCharEncodingOutputFunc' href='html/libxml-encoding.html#xmlCharEncodingOutputFunc'/>
-    <reference name='xmlCharInRange' href='html/libxml-chvalid.html#xmlCharInRange'/>
-    <reference name='xmlCharStrdup' href='html/libxml-xmlstring.html#xmlCharStrdup'/>
-    <reference name='xmlCharStrndup' href='html/libxml-xmlstring.html#xmlCharStrndup'/>
-    <reference name='xmlCheckFilename' href='html/libxml-xmlIO.html#xmlCheckFilename'/>
-    <reference name='xmlCheckHTTPInput' href='html/libxml-xmlIO.html#xmlCheckHTTPInput'/>
-    <reference name='xmlCheckLanguageID' href='html/libxml-parserInternals.html#xmlCheckLanguageID'/>
-    <reference name='xmlCheckUTF8' href='html/libxml-xmlstring.html#xmlCheckUTF8'/>
-    <reference name='xmlCheckVersion' href='html/libxml-xmlversion.html#xmlCheckVersion'/>
-    <reference name='xmlChildElementCount' href='html/libxml-tree.html#xmlChildElementCount'/>
-    <reference name='xmlChildrenNode' href='html/libxml-tree.html#xmlChildrenNode'/>
-    <reference name='xmlCleanupCharEncodingHandlers' href='html/libxml-encoding.html#xmlCleanupCharEncodingHandlers'/>
-    <reference name='xmlCleanupEncodingAliases' href='html/libxml-encoding.html#xmlCleanupEncodingAliases'/>
-    <reference name='xmlCleanupGlobals' href='html/libxml-globals.html#xmlCleanupGlobals'/>
-    <reference name='xmlCleanupInputCallbacks' href='html/libxml-xmlIO.html#xmlCleanupInputCallbacks'/>
-    <reference name='xmlCleanupMemory' href='html/libxml-xmlmemory.html#xmlCleanupMemory'/>
-    <reference name='xmlCleanupOutputCallbacks' href='html/libxml-xmlIO.html#xmlCleanupOutputCallbacks'/>
-    <reference name='xmlCleanupParser' href='html/libxml-parser.html#xmlCleanupParser'/>
-    <reference name='xmlCleanupPredefinedEntities' href='html/libxml-entities.html#xmlCleanupPredefinedEntities'/>
-    <reference name='xmlCleanupThreads' href='html/libxml-threads.html#xmlCleanupThreads'/>
-    <reference name='xmlClearNodeInfoSeq' href='html/libxml-parser.html#xmlClearNodeInfoSeq'/>
-    <reference name='xmlClearParserCtxt' href='html/libxml-parser.html#xmlClearParserCtxt'/>
-    <reference name='xmlConvertSGMLCatalog' href='html/libxml-catalog.html#xmlConvertSGMLCatalog'/>
-    <reference name='xmlCopyAttributeTable' href='html/libxml-valid.html#xmlCopyAttributeTable'/>
-    <reference name='xmlCopyChar' href='html/libxml-parserInternals.html#xmlCopyChar'/>
-    <reference name='xmlCopyCharMultiByte' href='html/libxml-parserInternals.html#xmlCopyCharMultiByte'/>
-    <reference name='xmlCopyDoc' href='html/libxml-tree.html#xmlCopyDoc'/>
-    <reference name='xmlCopyDocElementContent' href='html/libxml-valid.html#xmlCopyDocElementContent'/>
-    <reference name='xmlCopyDtd' href='html/libxml-tree.html#xmlCopyDtd'/>
-    <reference name='xmlCopyElementContent' href='html/libxml-valid.html#xmlCopyElementContent'/>
-    <reference name='xmlCopyElementTable' href='html/libxml-valid.html#xmlCopyElementTable'/>
-    <reference name='xmlCopyEntitiesTable' href='html/libxml-entities.html#xmlCopyEntitiesTable'/>
-    <reference name='xmlCopyEnumeration' href='html/libxml-valid.html#xmlCopyEnumeration'/>
-    <reference name='xmlCopyError' href='html/libxml-xmlerror.html#xmlCopyError'/>
-    <reference name='xmlCopyNamespace' href='html/libxml-tree.html#xmlCopyNamespace'/>
-    <reference name='xmlCopyNamespaceList' href='html/libxml-tree.html#xmlCopyNamespaceList'/>
-    <reference name='xmlCopyNode' href='html/libxml-tree.html#xmlCopyNode'/>
-    <reference name='xmlCopyNodeList' href='html/libxml-tree.html#xmlCopyNodeList'/>
-    <reference name='xmlCopyNotationTable' href='html/libxml-valid.html#xmlCopyNotationTable'/>
-    <reference name='xmlCopyProp' href='html/libxml-tree.html#xmlCopyProp'/>
-    <reference name='xmlCopyPropList' href='html/libxml-tree.html#xmlCopyPropList'/>
-    <reference name='xmlCreateDocParserCtxt' href='html/libxml-parser.html#xmlCreateDocParserCtxt'/>
-    <reference name='xmlCreateEntitiesTable' href='html/libxml-entities.html#xmlCreateEntitiesTable'/>
-    <reference name='xmlCreateEntityParserCtxt' href='html/libxml-parserInternals.html#xmlCreateEntityParserCtxt'/>
-    <reference name='xmlCreateEnumeration' href='html/libxml-valid.html#xmlCreateEnumeration'/>
-    <reference name='xmlCreateFileParserCtxt' href='html/libxml-parserInternals.html#xmlCreateFileParserCtxt'/>
-    <reference name='xmlCreateIOParserCtxt' href='html/libxml-parser.html#xmlCreateIOParserCtxt'/>
-    <reference name='xmlCreateIntSubset' href='html/libxml-tree.html#xmlCreateIntSubset'/>
-    <reference name='xmlCreateMemoryParserCtxt' href='html/libxml-parserInternals.html#xmlCreateMemoryParserCtxt'/>
-    <reference name='xmlCreatePushParserCtxt' href='html/libxml-parser.html#xmlCreatePushParserCtxt'/>
-    <reference name='xmlCreateURI' href='html/libxml-uri.html#xmlCreateURI'/>
-    <reference name='xmlCreateURLParserCtxt' href='html/libxml-parserInternals.html#xmlCreateURLParserCtxt'/>
-    <reference name='xmlCtxtGetLastError' href='html/libxml-xmlerror.html#xmlCtxtGetLastError'/>
-    <reference name='xmlCtxtReadDoc' href='html/libxml-parser.html#xmlCtxtReadDoc'/>
-    <reference name='xmlCtxtReadFd' href='html/libxml-parser.html#xmlCtxtReadFd'/>
-    <reference name='xmlCtxtReadFile' href='html/libxml-parser.html#xmlCtxtReadFile'/>
-    <reference name='xmlCtxtReadIO' href='html/libxml-parser.html#xmlCtxtReadIO'/>
-    <reference name='xmlCtxtReadMemory' href='html/libxml-parser.html#xmlCtxtReadMemory'/>
-    <reference name='xmlCtxtReset' href='html/libxml-parser.html#xmlCtxtReset'/>
-    <reference name='xmlCtxtResetLastError' href='html/libxml-xmlerror.html#xmlCtxtResetLastError'/>
-    <reference name='xmlCtxtResetPush' href='html/libxml-parser.html#xmlCtxtResetPush'/>
-    <reference name='xmlCtxtUseOptions' href='html/libxml-parser.html#xmlCtxtUseOptions'/>
-    <reference name='xmlCurrentChar' href='html/libxml-parserInternals.html#xmlCurrentChar'/>
-    <reference name='xmlDOMWrapAcquireNsFunction' href='html/libxml-tree.html#xmlDOMWrapAcquireNsFunction'/>
-    <reference name='xmlDOMWrapAdoptNode' href='html/libxml-tree.html#xmlDOMWrapAdoptNode'/>
-    <reference name='xmlDOMWrapCloneNode' href='html/libxml-tree.html#xmlDOMWrapCloneNode'/>
-    <reference name='xmlDOMWrapCtxt' href='html/libxml-tree.html#xmlDOMWrapCtxt'/>
-    <reference name='xmlDOMWrapCtxtPtr' href='html/libxml-tree.html#xmlDOMWrapCtxtPtr'/>
-    <reference name='xmlDOMWrapFreeCtxt' href='html/libxml-tree.html#xmlDOMWrapFreeCtxt'/>
-    <reference name='xmlDOMWrapNewCtxt' href='html/libxml-tree.html#xmlDOMWrapNewCtxt'/>
-    <reference name='xmlDOMWrapReconcileNamespaces' href='html/libxml-tree.html#xmlDOMWrapReconcileNamespaces'/>
-    <reference name='xmlDOMWrapRemoveNode' href='html/libxml-tree.html#xmlDOMWrapRemoveNode'/>
-    <reference name='xmlDebugCheckDocument' href='html/libxml-debugXML.html#xmlDebugCheckDocument'/>
-    <reference name='xmlDebugDumpAttr' href='html/libxml-debugXML.html#xmlDebugDumpAttr'/>
-    <reference name='xmlDebugDumpAttrList' href='html/libxml-debugXML.html#xmlDebugDumpAttrList'/>
-    <reference name='xmlDebugDumpDTD' href='html/libxml-debugXML.html#xmlDebugDumpDTD'/>
-    <reference name='xmlDebugDumpDocument' href='html/libxml-debugXML.html#xmlDebugDumpDocument'/>
-    <reference name='xmlDebugDumpDocumentHead' href='html/libxml-debugXML.html#xmlDebugDumpDocumentHead'/>
-    <reference name='xmlDebugDumpEntities' href='html/libxml-debugXML.html#xmlDebugDumpEntities'/>
-    <reference name='xmlDebugDumpNode' href='html/libxml-debugXML.html#xmlDebugDumpNode'/>
-    <reference name='xmlDebugDumpNodeList' href='html/libxml-debugXML.html#xmlDebugDumpNodeList'/>
-    <reference name='xmlDebugDumpOneNode' href='html/libxml-debugXML.html#xmlDebugDumpOneNode'/>
-    <reference name='xmlDebugDumpString' href='html/libxml-debugXML.html#xmlDebugDumpString'/>
-    <reference name='xmlDecodeEntities' href='html/libxml-parserInternals.html#xmlDecodeEntities'/>
-    <reference name='xmlDefaultBufferSize' href='html/libxml-globals.html#xmlDefaultBufferSize'/>
-    <reference name='xmlDefaultSAXHandler' href='html/libxml-globals.html#xmlDefaultSAXHandler'/>
-    <reference name='xmlDefaultSAXHandlerInit' href='html/libxml-SAX2.html#xmlDefaultSAXHandlerInit'/>
-    <reference name='xmlDefaultSAXLocator' href='html/libxml-globals.html#xmlDefaultSAXLocator'/>
-    <reference name='xmlDelEncodingAlias' href='html/libxml-encoding.html#xmlDelEncodingAlias'/>
-    <reference name='xmlDeregisterNodeDefault' href='html/libxml-globals.html#xmlDeregisterNodeDefault'/>
-    <reference name='xmlDeregisterNodeDefaultValue' href='html/libxml-globals.html#xmlDeregisterNodeDefaultValue'/>
-    <reference name='xmlDeregisterNodeFunc' href='html/libxml-globals.html#xmlDeregisterNodeFunc'/>
-    <reference name='xmlDetectCharEncoding' href='html/libxml-encoding.html#xmlDetectCharEncoding'/>
-    <reference name='xmlDict' href='html/libxml-dict.html#xmlDict'/>
-    <reference name='xmlDictCleanup' href='html/libxml-dict.html#xmlDictCleanup'/>
-    <reference name='xmlDictCreate' href='html/libxml-dict.html#xmlDictCreate'/>
-    <reference name='xmlDictCreateSub' href='html/libxml-dict.html#xmlDictCreateSub'/>
-    <reference name='xmlDictExists' href='html/libxml-dict.html#xmlDictExists'/>
-    <reference name='xmlDictFree' href='html/libxml-dict.html#xmlDictFree'/>
-    <reference name='xmlDictGetUsage' href='html/libxml-dict.html#xmlDictGetUsage'/>
-    <reference name='xmlDictLookup' href='html/libxml-dict.html#xmlDictLookup'/>
-    <reference name='xmlDictOwns' href='html/libxml-dict.html#xmlDictOwns'/>
-    <reference name='xmlDictPtr' href='html/libxml-dict.html#xmlDictPtr'/>
-    <reference name='xmlDictQLookup' href='html/libxml-dict.html#xmlDictQLookup'/>
-    <reference name='xmlDictReference' href='html/libxml-dict.html#xmlDictReference'/>
-    <reference name='xmlDictSetLimit' href='html/libxml-dict.html#xmlDictSetLimit'/>
-    <reference name='xmlDictSize' href='html/libxml-dict.html#xmlDictSize'/>
-    <reference name='xmlDllMain' href='html/libxml-threads.html#xmlDllMain'/>
-    <reference name='xmlDoValidityCheckingDefaultValue' href='html/libxml-globals.html#xmlDoValidityCheckingDefaultValue'/>
-    <reference name='xmlDoc' href='html/libxml-tree.html#xmlDoc'/>
-    <reference name='xmlDocCopyNode' href='html/libxml-tree.html#xmlDocCopyNode'/>
-    <reference name='xmlDocCopyNodeList' href='html/libxml-tree.html#xmlDocCopyNodeList'/>
-    <reference name='xmlDocDump' href='html/libxml-tree.html#xmlDocDump'/>
-    <reference name='xmlDocDumpFormatMemory' href='html/libxml-tree.html#xmlDocDumpFormatMemory'/>
-    <reference name='xmlDocDumpFormatMemoryEnc' href='html/libxml-tree.html#xmlDocDumpFormatMemoryEnc'/>
-    <reference name='xmlDocDumpMemory' href='html/libxml-tree.html#xmlDocDumpMemory'/>
-    <reference name='xmlDocDumpMemoryEnc' href='html/libxml-tree.html#xmlDocDumpMemoryEnc'/>
-    <reference name='xmlDocFormatDump' href='html/libxml-tree.html#xmlDocFormatDump'/>
-    <reference name='xmlDocGetRootElement' href='html/libxml-tree.html#xmlDocGetRootElement'/>
-    <reference name='xmlDocProperties' href='html/libxml-tree.html#xmlDocProperties'/>
-    <reference name='xmlDocPtr' href='html/libxml-tree.html#xmlDocPtr'/>
-    <reference name='xmlDocSetRootElement' href='html/libxml-tree.html#xmlDocSetRootElement'/>
-    <reference name='xmlDtd' href='html/libxml-tree.html#xmlDtd'/>
-    <reference name='xmlDtdPtr' href='html/libxml-tree.html#xmlDtdPtr'/>
-    <reference name='xmlDumpAttributeDecl' href='html/libxml-valid.html#xmlDumpAttributeDecl'/>
-    <reference name='xmlDumpAttributeTable' href='html/libxml-valid.html#xmlDumpAttributeTable'/>
-    <reference name='xmlDumpElementDecl' href='html/libxml-valid.html#xmlDumpElementDecl'/>
-    <reference name='xmlDumpElementTable' href='html/libxml-valid.html#xmlDumpElementTable'/>
-    <reference name='xmlDumpEntitiesTable' href='html/libxml-entities.html#xmlDumpEntitiesTable'/>
-    <reference name='xmlDumpEntityDecl' href='html/libxml-entities.html#xmlDumpEntityDecl'/>
-    <reference name='xmlDumpNotationDecl' href='html/libxml-valid.html#xmlDumpNotationDecl'/>
-    <reference name='xmlDumpNotationTable' href='html/libxml-valid.html#xmlDumpNotationTable'/>
-    <reference name='xmlElemDump' href='html/libxml-tree.html#xmlElemDump'/>
-    <reference name='xmlElement' href='html/libxml-tree.html#xmlElement'/>
-    <reference name='xmlElementContent' href='html/libxml-tree.html#xmlElementContent'/>
-    <reference name='xmlElementContentOccur' href='html/libxml-tree.html#xmlElementContentOccur'/>
-    <reference name='xmlElementContentPtr' href='html/libxml-tree.html#xmlElementContentPtr'/>
-    <reference name='xmlElementContentType' href='html/libxml-tree.html#xmlElementContentType'/>
-    <reference name='xmlElementPtr' href='html/libxml-tree.html#xmlElementPtr'/>
-    <reference name='xmlElementTable' href='html/libxml-valid.html#xmlElementTable'/>
-    <reference name='xmlElementTablePtr' href='html/libxml-valid.html#xmlElementTablePtr'/>
-    <reference name='xmlElementType' href='html/libxml-tree.html#xmlElementType'/>
-    <reference name='xmlElementTypeVal' href='html/libxml-tree.html#xmlElementTypeVal'/>
-    <reference name='xmlEncodeEntities' href='html/libxml-entities.html#xmlEncodeEntities'/>
-    <reference name='xmlEncodeEntitiesReentrant' href='html/libxml-entities.html#xmlEncodeEntitiesReentrant'/>
-    <reference name='xmlEncodeSpecialChars' href='html/libxml-entities.html#xmlEncodeSpecialChars'/>
-    <reference name='xmlEntitiesTable' href='html/libxml-entities.html#xmlEntitiesTable'/>
-    <reference name='xmlEntitiesTablePtr' href='html/libxml-entities.html#xmlEntitiesTablePtr'/>
-    <reference name='xmlEntity' href='html/libxml-tree.html#xmlEntity'/>
-    <reference name='xmlEntityPtr' href='html/libxml-tree.html#xmlEntityPtr'/>
-    <reference name='xmlEntityReferenceFunc' href='html/libxml-parserInternals.html#xmlEntityReferenceFunc'/>
-    <reference name='xmlEntityType' href='html/libxml-entities.html#xmlEntityType'/>
-    <reference name='xmlEnumeration' href='html/libxml-tree.html#xmlEnumeration'/>
-    <reference name='xmlEnumerationPtr' href='html/libxml-tree.html#xmlEnumerationPtr'/>
-    <reference name='xmlErrMemory' href='html/libxml-parserInternals.html#xmlErrMemory'/>
-    <reference name='xmlError' href='html/libxml-xmlerror.html#xmlError'/>
-    <reference name='xmlErrorDomain' href='html/libxml-xmlerror.html#xmlErrorDomain'/>
-    <reference name='xmlErrorLevel' href='html/libxml-xmlerror.html#xmlErrorLevel'/>
-    <reference name='xmlErrorPtr' href='html/libxml-xmlerror.html#xmlErrorPtr'/>
-    <reference name='xmlExpCtxt' href='html/libxml-xmlregexp.html#xmlExpCtxt'/>
-    <reference name='xmlExpCtxtNbCons' href='html/libxml-xmlregexp.html#xmlExpCtxtNbCons'/>
-    <reference name='xmlExpCtxtNbNodes' href='html/libxml-xmlregexp.html#xmlExpCtxtNbNodes'/>
-    <reference name='xmlExpCtxtPtr' href='html/libxml-xmlregexp.html#xmlExpCtxtPtr'/>
-    <reference name='xmlExpDump' href='html/libxml-xmlregexp.html#xmlExpDump'/>
-    <reference name='xmlExpExpDerive' href='html/libxml-xmlregexp.html#xmlExpExpDerive'/>
-    <reference name='xmlExpFree' href='html/libxml-xmlregexp.html#xmlExpFree'/>
-    <reference name='xmlExpFreeCtxt' href='html/libxml-xmlregexp.html#xmlExpFreeCtxt'/>
-    <reference name='xmlExpGetLanguage' href='html/libxml-xmlregexp.html#xmlExpGetLanguage'/>
-    <reference name='xmlExpGetStart' href='html/libxml-xmlregexp.html#xmlExpGetStart'/>
-    <reference name='xmlExpIsNillable' href='html/libxml-xmlregexp.html#xmlExpIsNillable'/>
-    <reference name='xmlExpMaxToken' href='html/libxml-xmlregexp.html#xmlExpMaxToken'/>
-    <reference name='xmlExpNewAtom' href='html/libxml-xmlregexp.html#xmlExpNewAtom'/>
-    <reference name='xmlExpNewCtxt' href='html/libxml-xmlregexp.html#xmlExpNewCtxt'/>
-    <reference name='xmlExpNewOr' href='html/libxml-xmlregexp.html#xmlExpNewOr'/>
-    <reference name='xmlExpNewRange' href='html/libxml-xmlregexp.html#xmlExpNewRange'/>
-    <reference name='xmlExpNewSeq' href='html/libxml-xmlregexp.html#xmlExpNewSeq'/>
-    <reference name='xmlExpNode' href='html/libxml-xmlregexp.html#xmlExpNode'/>
-    <reference name='xmlExpNodePtr' href='html/libxml-xmlregexp.html#xmlExpNodePtr'/>
-    <reference name='xmlExpNodeType' href='html/libxml-xmlregexp.html#xmlExpNodeType'/>
-    <reference name='xmlExpParse' href='html/libxml-xmlregexp.html#xmlExpParse'/>
-    <reference name='xmlExpRef' href='html/libxml-xmlregexp.html#xmlExpRef'/>
-    <reference name='xmlExpStringDerive' href='html/libxml-xmlregexp.html#xmlExpStringDerive'/>
-    <reference name='xmlExpSubsume' href='html/libxml-xmlregexp.html#xmlExpSubsume'/>
-    <reference name='xmlExternalEntityLoader' href='html/libxml-parser.html#xmlExternalEntityLoader'/>
-    <reference name='xmlFeature' href='html/libxml-parser.html#xmlFeature'/>
-    <reference name='xmlFileClose' href='html/libxml-xmlIO.html#xmlFileClose'/>
-    <reference name='xmlFileMatch' href='html/libxml-xmlIO.html#xmlFileMatch'/>
-    <reference name='xmlFileOpen' href='html/libxml-xmlIO.html#xmlFileOpen'/>
-    <reference name='xmlFileRead' href='html/libxml-xmlIO.html#xmlFileRead'/>
-    <reference name='xmlFindCharEncodingHandler' href='html/libxml-encoding.html#xmlFindCharEncodingHandler'/>
-    <reference name='xmlFirstElementChild' href='html/libxml-tree.html#xmlFirstElementChild'/>
-    <reference name='xmlFree' href='html/libxml-globals.html#xmlFree'/>
-    <reference name='xmlFreeAttributeTable' href='html/libxml-valid.html#xmlFreeAttributeTable'/>
-    <reference name='xmlFreeAutomata' href='html/libxml-xmlautomata.html#xmlFreeAutomata'/>
-    <reference name='xmlFreeCatalog' href='html/libxml-catalog.html#xmlFreeCatalog'/>
-    <reference name='xmlFreeDoc' href='html/libxml-tree.html#xmlFreeDoc'/>
-    <reference name='xmlFreeDocElementContent' href='html/libxml-valid.html#xmlFreeDocElementContent'/>
-    <reference name='xmlFreeDtd' href='html/libxml-tree.html#xmlFreeDtd'/>
-    <reference name='xmlFreeElementContent' href='html/libxml-valid.html#xmlFreeElementContent'/>
-    <reference name='xmlFreeElementTable' href='html/libxml-valid.html#xmlFreeElementTable'/>
-    <reference name='xmlFreeEntitiesTable' href='html/libxml-entities.html#xmlFreeEntitiesTable'/>
-    <reference name='xmlFreeEnumeration' href='html/libxml-valid.html#xmlFreeEnumeration'/>
-    <reference name='xmlFreeFunc' href='html/libxml-xmlmemory.html#xmlFreeFunc'/>
-    <reference name='xmlFreeIDTable' href='html/libxml-valid.html#xmlFreeIDTable'/>
-    <reference name='xmlFreeInputStream' href='html/libxml-parserInternals.html#xmlFreeInputStream'/>
-    <reference name='xmlFreeMutex' href='html/libxml-threads.html#xmlFreeMutex'/>
-    <reference name='xmlFreeNode' href='html/libxml-tree.html#xmlFreeNode'/>
-    <reference name='xmlFreeNodeList' href='html/libxml-tree.html#xmlFreeNodeList'/>
-    <reference name='xmlFreeNotationTable' href='html/libxml-valid.html#xmlFreeNotationTable'/>
-    <reference name='xmlFreeNs' href='html/libxml-tree.html#xmlFreeNs'/>
-    <reference name='xmlFreeNsList' href='html/libxml-tree.html#xmlFreeNsList'/>
-    <reference name='xmlFreeParserCtxt' href='html/libxml-parser.html#xmlFreeParserCtxt'/>
-    <reference name='xmlFreeParserInputBuffer' href='html/libxml-xmlIO.html#xmlFreeParserInputBuffer'/>
-    <reference name='xmlFreePattern' href='html/libxml-pattern.html#xmlFreePattern'/>
-    <reference name='xmlFreePatternList' href='html/libxml-pattern.html#xmlFreePatternList'/>
-    <reference name='xmlFreeProp' href='html/libxml-tree.html#xmlFreeProp'/>
-    <reference name='xmlFreePropList' href='html/libxml-tree.html#xmlFreePropList'/>
-    <reference name='xmlFreeRMutex' href='html/libxml-threads.html#xmlFreeRMutex'/>
-    <reference name='xmlFreeRefTable' href='html/libxml-valid.html#xmlFreeRefTable'/>
-    <reference name='xmlFreeStreamCtxt' href='html/libxml-pattern.html#xmlFreeStreamCtxt'/>
-    <reference name='xmlFreeTextReader' href='html/libxml-xmlreader.html#xmlFreeTextReader'/>
-    <reference name='xmlFreeTextWriter' href='html/libxml-xmlwriter.html#xmlFreeTextWriter'/>
-    <reference name='xmlFreeURI' href='html/libxml-uri.html#xmlFreeURI'/>
-    <reference name='xmlFreeValidCtxt' href='html/libxml-valid.html#xmlFreeValidCtxt'/>
-    <reference name='xmlGcMemGet' href='html/libxml-xmlmemory.html#xmlGcMemGet'/>
-    <reference name='xmlGcMemSetup' href='html/libxml-xmlmemory.html#xmlGcMemSetup'/>
-    <reference name='xmlGenericError' href='html/libxml-globals.html#xmlGenericError'/>
-    <reference name='xmlGenericErrorContext' href='html/libxml-globals.html#xmlGenericErrorContext'/>
-    <reference name='xmlGenericErrorFunc' href='html/libxml-xmlerror.html#xmlGenericErrorFunc'/>
-    <reference name='xmlGetBufferAllocationScheme' href='html/libxml-tree.html#xmlGetBufferAllocationScheme'/>
-    <reference name='xmlGetCharEncodingHandler' href='html/libxml-encoding.html#xmlGetCharEncodingHandler'/>
-    <reference name='xmlGetCharEncodingName' href='html/libxml-encoding.html#xmlGetCharEncodingName'/>
-    <reference name='xmlGetCompressMode' href='html/libxml-tree.html#xmlGetCompressMode'/>
-    <reference name='xmlGetDocCompressMode' href='html/libxml-tree.html#xmlGetDocCompressMode'/>
-    <reference name='xmlGetDocEntity' href='html/libxml-entities.html#xmlGetDocEntity'/>
-    <reference name='xmlGetDtdAttrDesc' href='html/libxml-valid.html#xmlGetDtdAttrDesc'/>
-    <reference name='xmlGetDtdElementDesc' href='html/libxml-valid.html#xmlGetDtdElementDesc'/>
-    <reference name='xmlGetDtdEntity' href='html/libxml-entities.html#xmlGetDtdEntity'/>
-    <reference name='xmlGetDtdNotationDesc' href='html/libxml-valid.html#xmlGetDtdNotationDesc'/>
-    <reference name='xmlGetDtdQAttrDesc' href='html/libxml-valid.html#xmlGetDtdQAttrDesc'/>
-    <reference name='xmlGetDtdQElementDesc' href='html/libxml-valid.html#xmlGetDtdQElementDesc'/>
-    <reference name='xmlGetEncodingAlias' href='html/libxml-encoding.html#xmlGetEncodingAlias'/>
-    <reference name='xmlGetExternalEntityLoader' href='html/libxml-parser.html#xmlGetExternalEntityLoader'/>
-    <reference name='xmlGetFeature' href='html/libxml-parser.html#xmlGetFeature'/>
-    <reference name='xmlGetFeaturesList' href='html/libxml-parser.html#xmlGetFeaturesList'/>
-    <reference name='xmlGetGlobalState' href='html/libxml-threads.html#xmlGetGlobalState'/>
-    <reference name='xmlGetID' href='html/libxml-valid.html#xmlGetID'/>
-    <reference name='xmlGetIntSubset' href='html/libxml-tree.html#xmlGetIntSubset'/>
-    <reference name='xmlGetLastChild' href='html/libxml-tree.html#xmlGetLastChild'/>
-    <reference name='xmlGetLastError' href='html/libxml-xmlerror.html#xmlGetLastError'/>
-    <reference name='xmlGetLineNo' href='html/libxml-tree.html#xmlGetLineNo'/>
-    <reference name='xmlGetNoNsProp' href='html/libxml-tree.html#xmlGetNoNsProp'/>
-    <reference name='xmlGetNodePath' href='html/libxml-tree.html#xmlGetNodePath'/>
-    <reference name='xmlGetNsList' href='html/libxml-tree.html#xmlGetNsList'/>
-    <reference name='xmlGetNsProp' href='html/libxml-tree.html#xmlGetNsProp'/>
-    <reference name='xmlGetParameterEntity' href='html/libxml-entities.html#xmlGetParameterEntity'/>
-    <reference name='xmlGetPredefinedEntity' href='html/libxml-entities.html#xmlGetPredefinedEntity'/>
-    <reference name='xmlGetProp' href='html/libxml-tree.html#xmlGetProp'/>
-    <reference name='xmlGetRefs' href='html/libxml-valid.html#xmlGetRefs'/>
-    <reference name='xmlGetThreadId' href='html/libxml-threads.html#xmlGetThreadId'/>
-    <reference name='xmlGetUTF8Char' href='html/libxml-xmlstring.html#xmlGetUTF8Char'/>
-    <reference name='xmlGetWarningsDefaultValue' href='html/libxml-globals.html#xmlGetWarningsDefaultValue'/>
-    <reference name='xmlGlobalState' href='html/libxml-globals.html#xmlGlobalState'/>
-    <reference name='xmlGlobalStatePtr' href='html/libxml-globals.html#xmlGlobalStatePtr'/>
-    <reference name='xmlHandleEntity' href='html/libxml-parserInternals.html#xmlHandleEntity'/>
-    <reference name='xmlHasFeature' href='html/libxml-parser.html#xmlHasFeature'/>
-    <reference name='xmlHasNsProp' href='html/libxml-tree.html#xmlHasNsProp'/>
-    <reference name='xmlHasProp' href='html/libxml-tree.html#xmlHasProp'/>
-    <reference name='xmlHashAddEntry' href='html/libxml-hash.html#xmlHashAddEntry'/>
-    <reference name='xmlHashAddEntry2' href='html/libxml-hash.html#xmlHashAddEntry2'/>
-    <reference name='xmlHashAddEntry3' href='html/libxml-hash.html#xmlHashAddEntry3'/>
-    <reference name='xmlHashCopier' href='html/libxml-hash.html#xmlHashCopier'/>
-    <reference name='xmlHashCopy' href='html/libxml-hash.html#xmlHashCopy'/>
-    <reference name='xmlHashCreate' href='html/libxml-hash.html#xmlHashCreate'/>
-    <reference name='xmlHashCreateDict' href='html/libxml-hash.html#xmlHashCreateDict'/>
-    <reference name='xmlHashDeallocator' href='html/libxml-hash.html#xmlHashDeallocator'/>
-    <reference name='xmlHashDefaultDeallocator' href='html/libxml-hash.html#xmlHashDefaultDeallocator'/>
-    <reference name='xmlHashFree' href='html/libxml-hash.html#xmlHashFree'/>
-    <reference name='xmlHashLookup' href='html/libxml-hash.html#xmlHashLookup'/>
-    <reference name='xmlHashLookup2' href='html/libxml-hash.html#xmlHashLookup2'/>
-    <reference name='xmlHashLookup3' href='html/libxml-hash.html#xmlHashLookup3'/>
-    <reference name='xmlHashQLookup' href='html/libxml-hash.html#xmlHashQLookup'/>
-    <reference name='xmlHashQLookup2' href='html/libxml-hash.html#xmlHashQLookup2'/>
-    <reference name='xmlHashQLookup3' href='html/libxml-hash.html#xmlHashQLookup3'/>
-    <reference name='xmlHashRemoveEntry' href='html/libxml-hash.html#xmlHashRemoveEntry'/>
-    <reference name='xmlHashRemoveEntry2' href='html/libxml-hash.html#xmlHashRemoveEntry2'/>
-    <reference name='xmlHashRemoveEntry3' href='html/libxml-hash.html#xmlHashRemoveEntry3'/>
-    <reference name='xmlHashScan' href='html/libxml-hash.html#xmlHashScan'/>
-    <reference name='xmlHashScan3' href='html/libxml-hash.html#xmlHashScan3'/>
-    <reference name='xmlHashScanFull' href='html/libxml-hash.html#xmlHashScanFull'/>
-    <reference name='xmlHashScanFull3' href='html/libxml-hash.html#xmlHashScanFull3'/>
-    <reference name='xmlHashScanner' href='html/libxml-hash.html#xmlHashScanner'/>
-    <reference name='xmlHashScannerFull' href='html/libxml-hash.html#xmlHashScannerFull'/>
-    <reference name='xmlHashSize' href='html/libxml-hash.html#xmlHashSize'/>
-    <reference name='xmlHashTable' href='html/libxml-hash.html#xmlHashTable'/>
-    <reference name='xmlHashTablePtr' href='html/libxml-hash.html#xmlHashTablePtr'/>
-    <reference name='xmlHashUpdateEntry' href='html/libxml-hash.html#xmlHashUpdateEntry'/>
-    <reference name='xmlHashUpdateEntry2' href='html/libxml-hash.html#xmlHashUpdateEntry2'/>
-    <reference name='xmlHashUpdateEntry3' href='html/libxml-hash.html#xmlHashUpdateEntry3'/>
-    <reference name='xmlID' href='html/libxml-tree.html#xmlID'/>
-    <reference name='xmlIDPtr' href='html/libxml-tree.html#xmlIDPtr'/>
-    <reference name='xmlIDTable' href='html/libxml-valid.html#xmlIDTable'/>
-    <reference name='xmlIDTablePtr' href='html/libxml-valid.html#xmlIDTablePtr'/>
-    <reference name='xmlIOFTPClose' href='html/libxml-xmlIO.html#xmlIOFTPClose'/>
-    <reference name='xmlIOFTPMatch' href='html/libxml-xmlIO.html#xmlIOFTPMatch'/>
-    <reference name='xmlIOFTPOpen' href='html/libxml-xmlIO.html#xmlIOFTPOpen'/>
-    <reference name='xmlIOFTPRead' href='html/libxml-xmlIO.html#xmlIOFTPRead'/>
-    <reference name='xmlIOHTTPClose' href='html/libxml-xmlIO.html#xmlIOHTTPClose'/>
-    <reference name='xmlIOHTTPMatch' href='html/libxml-xmlIO.html#xmlIOHTTPMatch'/>
-    <reference name='xmlIOHTTPOpen' href='html/libxml-xmlIO.html#xmlIOHTTPOpen'/>
-    <reference name='xmlIOHTTPOpenW' href='html/libxml-xmlIO.html#xmlIOHTTPOpenW'/>
-    <reference name='xmlIOHTTPRead' href='html/libxml-xmlIO.html#xmlIOHTTPRead'/>
-    <reference name='xmlIOParseDTD' href='html/libxml-parser.html#xmlIOParseDTD'/>
-    <reference name='xmlIndentTreeOutput' href='html/libxml-globals.html#xmlIndentTreeOutput'/>
-    <reference name='xmlInitCharEncodingHandlers' href='html/libxml-encoding.html#xmlInitCharEncodingHandlers'/>
-    <reference name='xmlInitGlobals' href='html/libxml-globals.html#xmlInitGlobals'/>
-    <reference name='xmlInitMemory' href='html/libxml-xmlmemory.html#xmlInitMemory'/>
-    <reference name='xmlInitNodeInfoSeq' href='html/libxml-parser.html#xmlInitNodeInfoSeq'/>
-    <reference name='xmlInitParser' href='html/libxml-parser.html#xmlInitParser'/>
-    <reference name='xmlInitParserCtxt' href='html/libxml-parser.html#xmlInitParserCtxt'/>
-    <reference name='xmlInitThreads' href='html/libxml-threads.html#xmlInitThreads'/>
-    <reference name='xmlInitializeCatalog' href='html/libxml-catalog.html#xmlInitializeCatalog'/>
-    <reference name='xmlInitializeDict' href='html/libxml-dict.html#xmlInitializeDict'/>
-    <reference name='xmlInitializeGlobalState' href='html/libxml-globals.html#xmlInitializeGlobalState'/>
-    <reference name='xmlInitializePredefinedEntities' href='html/libxml-entities.html#xmlInitializePredefinedEntities'/>
-    <reference name='xmlInputCloseCallback' href='html/libxml-xmlIO.html#xmlInputCloseCallback'/>
-    <reference name='xmlInputMatchCallback' href='html/libxml-xmlIO.html#xmlInputMatchCallback'/>
-    <reference name='xmlInputOpenCallback' href='html/libxml-xmlIO.html#xmlInputOpenCallback'/>
-    <reference name='xmlInputReadCallback' href='html/libxml-xmlIO.html#xmlInputReadCallback'/>
-    <reference name='xmlIsBaseChar' href='html/libxml-chvalid.html#xmlIsBaseChar'/>
-    <reference name='xmlIsBaseCharGroup' href='html/libxml-chvalid.html#xmlIsBaseCharGroup'/>
-    <reference name='xmlIsBaseCharQ' href='html/libxml-chvalid.html#xmlIsBaseCharQ'/>
-    <reference name='xmlIsBaseChar_ch' href='html/libxml-chvalid.html#xmlIsBaseChar_ch'/>
-    <reference name='xmlIsBlank' href='html/libxml-chvalid.html#xmlIsBlank'/>
-    <reference name='xmlIsBlankNode' href='html/libxml-tree.html#xmlIsBlankNode'/>
-    <reference name='xmlIsBlankQ' href='html/libxml-chvalid.html#xmlIsBlankQ'/>
-    <reference name='xmlIsBlank_ch' href='html/libxml-chvalid.html#xmlIsBlank_ch'/>
-    <reference name='xmlIsChar' href='html/libxml-chvalid.html#xmlIsChar'/>
-    <reference name='xmlIsCharGroup' href='html/libxml-chvalid.html#xmlIsCharGroup'/>
-    <reference name='xmlIsCharQ' href='html/libxml-chvalid.html#xmlIsCharQ'/>
-    <reference name='xmlIsChar_ch' href='html/libxml-chvalid.html#xmlIsChar_ch'/>
-    <reference name='xmlIsCombining' href='html/libxml-chvalid.html#xmlIsCombining'/>
-    <reference name='xmlIsCombiningGroup' href='html/libxml-chvalid.html#xmlIsCombiningGroup'/>
-    <reference name='xmlIsCombiningQ' href='html/libxml-chvalid.html#xmlIsCombiningQ'/>
-    <reference name='xmlIsDigit' href='html/libxml-chvalid.html#xmlIsDigit'/>
-    <reference name='xmlIsDigitGroup' href='html/libxml-chvalid.html#xmlIsDigitGroup'/>
-    <reference name='xmlIsDigitQ' href='html/libxml-chvalid.html#xmlIsDigitQ'/>
-    <reference name='xmlIsDigit_ch' href='html/libxml-chvalid.html#xmlIsDigit_ch'/>
-    <reference name='xmlIsExtender' href='html/libxml-chvalid.html#xmlIsExtender'/>
-    <reference name='xmlIsExtenderGroup' href='html/libxml-chvalid.html#xmlIsExtenderGroup'/>
-    <reference name='xmlIsExtenderQ' href='html/libxml-chvalid.html#xmlIsExtenderQ'/>
-    <reference name='xmlIsExtender_ch' href='html/libxml-chvalid.html#xmlIsExtender_ch'/>
-    <reference name='xmlIsID' href='html/libxml-valid.html#xmlIsID'/>
-    <reference name='xmlIsIdeographic' href='html/libxml-chvalid.html#xmlIsIdeographic'/>
-    <reference name='xmlIsIdeographicGroup' href='html/libxml-chvalid.html#xmlIsIdeographicGroup'/>
-    <reference name='xmlIsIdeographicQ' href='html/libxml-chvalid.html#xmlIsIdeographicQ'/>
-    <reference name='xmlIsLetter' href='html/libxml-parserInternals.html#xmlIsLetter'/>
-    <reference name='xmlIsMainThread' href='html/libxml-threads.html#xmlIsMainThread'/>
-    <reference name='xmlIsMixedElement' href='html/libxml-valid.html#xmlIsMixedElement'/>
-    <reference name='xmlIsPubidChar' href='html/libxml-chvalid.html#xmlIsPubidChar'/>
-    <reference name='xmlIsPubidCharQ' href='html/libxml-chvalid.html#xmlIsPubidCharQ'/>
-    <reference name='xmlIsPubidChar_ch' href='html/libxml-chvalid.html#xmlIsPubidChar_ch'/>
-    <reference name='xmlIsPubidChar_tab' href='html/libxml-chvalid.html#xmlIsPubidChar_tab'/>
-    <reference name='xmlIsRef' href='html/libxml-valid.html#xmlIsRef'/>
-    <reference name='xmlIsXHTML' href='html/libxml-tree.html#xmlIsXHTML'/>
-    <reference name='xmlKeepBlanksDefault' href='html/libxml-parser.html#xmlKeepBlanksDefault'/>
-    <reference name='xmlKeepBlanksDefaultValue' href='html/libxml-globals.html#xmlKeepBlanksDefaultValue'/>
-    <reference name='xmlLastElementChild' href='html/libxml-tree.html#xmlLastElementChild'/>
-    <reference name='xmlLastError' href='html/libxml-globals.html#xmlLastError'/>
-    <reference name='xmlLineNumbersDefault' href='html/libxml-parser.html#xmlLineNumbersDefault'/>
-    <reference name='xmlLineNumbersDefaultValue' href='html/libxml-globals.html#xmlLineNumbersDefaultValue'/>
-    <reference name='xmlLink' href='html/libxml-list.html#xmlLink'/>
-    <reference name='xmlLinkGetData' href='html/libxml-list.html#xmlLinkGetData'/>
-    <reference name='xmlLinkPtr' href='html/libxml-list.html#xmlLinkPtr'/>
-    <reference name='xmlList' href='html/libxml-list.html#xmlList'/>
-    <reference name='xmlListAppend' href='html/libxml-list.html#xmlListAppend'/>
-    <reference name='xmlListClear' href='html/libxml-list.html#xmlListClear'/>
-    <reference name='xmlListCopy' href='html/libxml-list.html#xmlListCopy'/>
-    <reference name='xmlListCreate' href='html/libxml-list.html#xmlListCreate'/>
-    <reference name='xmlListDataCompare' href='html/libxml-list.html#xmlListDataCompare'/>
-    <reference name='xmlListDeallocator' href='html/libxml-list.html#xmlListDeallocator'/>
-    <reference name='xmlListDelete' href='html/libxml-list.html#xmlListDelete'/>
-    <reference name='xmlListDup' href='html/libxml-list.html#xmlListDup'/>
-    <reference name='xmlListEmpty' href='html/libxml-list.html#xmlListEmpty'/>
-    <reference name='xmlListEnd' href='html/libxml-list.html#xmlListEnd'/>
-    <reference name='xmlListFront' href='html/libxml-list.html#xmlListFront'/>
-    <reference name='xmlListInsert' href='html/libxml-list.html#xmlListInsert'/>
-    <reference name='xmlListMerge' href='html/libxml-list.html#xmlListMerge'/>
-    <reference name='xmlListPopBack' href='html/libxml-list.html#xmlListPopBack'/>
-    <reference name='xmlListPopFront' href='html/libxml-list.html#xmlListPopFront'/>
-    <reference name='xmlListPtr' href='html/libxml-list.html#xmlListPtr'/>
-    <reference name='xmlListPushBack' href='html/libxml-list.html#xmlListPushBack'/>
-    <reference name='xmlListPushFront' href='html/libxml-list.html#xmlListPushFront'/>
-    <reference name='xmlListRemoveAll' href='html/libxml-list.html#xmlListRemoveAll'/>
-    <reference name='xmlListRemoveFirst' href='html/libxml-list.html#xmlListRemoveFirst'/>
-    <reference name='xmlListRemoveLast' href='html/libxml-list.html#xmlListRemoveLast'/>
-    <reference name='xmlListReverse' href='html/libxml-list.html#xmlListReverse'/>
-    <reference name='xmlListReverseSearch' href='html/libxml-list.html#xmlListReverseSearch'/>
-    <reference name='xmlListReverseWalk' href='html/libxml-list.html#xmlListReverseWalk'/>
-    <reference name='xmlListSearch' href='html/libxml-list.html#xmlListSearch'/>
-    <reference name='xmlListSize' href='html/libxml-list.html#xmlListSize'/>
-    <reference name='xmlListSort' href='html/libxml-list.html#xmlListSort'/>
-    <reference name='xmlListWalk' href='html/libxml-list.html#xmlListWalk'/>
-    <reference name='xmlListWalker' href='html/libxml-list.html#xmlListWalker'/>
-    <reference name='xmlLoadACatalog' href='html/libxml-catalog.html#xmlLoadACatalog'/>
-    <reference name='xmlLoadCatalog' href='html/libxml-catalog.html#xmlLoadCatalog'/>
-    <reference name='xmlLoadCatalogs' href='html/libxml-catalog.html#xmlLoadCatalogs'/>
-    <reference name='xmlLoadExtDtdDefaultValue' href='html/libxml-globals.html#xmlLoadExtDtdDefaultValue'/>
-    <reference name='xmlLoadExternalEntity' href='html/libxml-parser.html#xmlLoadExternalEntity'/>
-    <reference name='xmlLoadSGMLSuperCatalog' href='html/libxml-catalog.html#xmlLoadSGMLSuperCatalog'/>
-    <reference name='xmlLocationSet' href='html/libxml-xpointer.html#xmlLocationSet'/>
-    <reference name='xmlLocationSetPtr' href='html/libxml-xpointer.html#xmlLocationSetPtr'/>
-    <reference name='xmlLockLibrary' href='html/libxml-threads.html#xmlLockLibrary'/>
-    <reference name='xmlLsCountNode' href='html/libxml-debugXML.html#xmlLsCountNode'/>
-    <reference name='xmlLsOneNode' href='html/libxml-debugXML.html#xmlLsOneNode'/>
-    <reference name='xmlMalloc' href='html/libxml-globals.html#xmlMalloc'/>
-    <reference name='xmlMallocAtomic' href='html/libxml-globals.html#xmlMallocAtomic'/>
-    <reference name='xmlMallocAtomicLoc' href='html/libxml-xmlmemory.html#xmlMallocAtomicLoc'/>
-    <reference name='xmlMallocFunc' href='html/libxml-xmlmemory.html#xmlMallocFunc'/>
-    <reference name='xmlMallocLoc' href='html/libxml-xmlmemory.html#xmlMallocLoc'/>
-    <reference name='xmlMemBlocks' href='html/libxml-xmlmemory.html#xmlMemBlocks'/>
-    <reference name='xmlMemDisplay' href='html/libxml-xmlmemory.html#xmlMemDisplay'/>
-    <reference name='xmlMemDisplayLast' href='html/libxml-xmlmemory.html#xmlMemDisplayLast'/>
-    <reference name='xmlMemFree' href='html/libxml-xmlmemory.html#xmlMemFree'/>
-    <reference name='xmlMemGet' href='html/libxml-xmlmemory.html#xmlMemGet'/>
-    <reference name='xmlMemMalloc' href='html/libxml-xmlmemory.html#xmlMemMalloc'/>
-    <reference name='xmlMemRealloc' href='html/libxml-xmlmemory.html#xmlMemRealloc'/>
-    <reference name='xmlMemSetup' href='html/libxml-xmlmemory.html#xmlMemSetup'/>
-    <reference name='xmlMemShow' href='html/libxml-xmlmemory.html#xmlMemShow'/>
-    <reference name='xmlMemStrdup' href='html/libxml-globals.html#xmlMemStrdup'/>
-    <reference name='xmlMemStrdupLoc' href='html/libxml-xmlmemory.html#xmlMemStrdupLoc'/>
-    <reference name='xmlMemUsed' href='html/libxml-xmlmemory.html#xmlMemUsed'/>
-    <reference name='xmlMemoryDump' href='html/libxml-xmlmemory.html#xmlMemoryDump'/>
-    <reference name='xmlMemoryStrdup' href='html/libxml-xmlmemory.html#xmlMemoryStrdup'/>
-    <reference name='xmlModule' href='html/libxml-xmlmodule.html#xmlModule'/>
-    <reference name='xmlModuleClose' href='html/libxml-xmlmodule.html#xmlModuleClose'/>
-    <reference name='xmlModuleFree' href='html/libxml-xmlmodule.html#xmlModuleFree'/>
-    <reference name='xmlModuleOpen' href='html/libxml-xmlmodule.html#xmlModuleOpen'/>
-    <reference name='xmlModuleOption' href='html/libxml-xmlmodule.html#xmlModuleOption'/>
-    <reference name='xmlModulePtr' href='html/libxml-xmlmodule.html#xmlModulePtr'/>
-    <reference name='xmlModuleSymbol' href='html/libxml-xmlmodule.html#xmlModuleSymbol'/>
-    <reference name='xmlMutex' href='html/libxml-threads.html#xmlMutex'/>
-    <reference name='xmlMutexLock' href='html/libxml-threads.html#xmlMutexLock'/>
-    <reference name='xmlMutexPtr' href='html/libxml-threads.html#xmlMutexPtr'/>
-    <reference name='xmlMutexUnlock' href='html/libxml-threads.html#xmlMutexUnlock'/>
-    <reference name='xmlNamespaceParseNCName' href='html/libxml-parserInternals.html#xmlNamespaceParseNCName'/>
-    <reference name='xmlNamespaceParseNSDef' href='html/libxml-parserInternals.html#xmlNamespaceParseNSDef'/>
-    <reference name='xmlNamespaceParseQName' href='html/libxml-parserInternals.html#xmlNamespaceParseQName'/>
-    <reference name='xmlNanoFTPCheckResponse' href='html/libxml-nanoftp.html#xmlNanoFTPCheckResponse'/>
-    <reference name='xmlNanoFTPCleanup' href='html/libxml-nanoftp.html#xmlNanoFTPCleanup'/>
-    <reference name='xmlNanoFTPClose' href='html/libxml-nanoftp.html#xmlNanoFTPClose'/>
-    <reference name='xmlNanoFTPCloseConnection' href='html/libxml-nanoftp.html#xmlNanoFTPCloseConnection'/>
-    <reference name='xmlNanoFTPConnect' href='html/libxml-nanoftp.html#xmlNanoFTPConnect'/>
-    <reference name='xmlNanoFTPConnectTo' href='html/libxml-nanoftp.html#xmlNanoFTPConnectTo'/>
-    <reference name='xmlNanoFTPCwd' href='html/libxml-nanoftp.html#xmlNanoFTPCwd'/>
-    <reference name='xmlNanoFTPDele' href='html/libxml-nanoftp.html#xmlNanoFTPDele'/>
-    <reference name='xmlNanoFTPFreeCtxt' href='html/libxml-nanoftp.html#xmlNanoFTPFreeCtxt'/>
-    <reference name='xmlNanoFTPGet' href='html/libxml-nanoftp.html#xmlNanoFTPGet'/>
-    <reference name='xmlNanoFTPGetConnection' href='html/libxml-nanoftp.html#xmlNanoFTPGetConnection'/>
-    <reference name='xmlNanoFTPGetResponse' href='html/libxml-nanoftp.html#xmlNanoFTPGetResponse'/>
-    <reference name='xmlNanoFTPGetSocket' href='html/libxml-nanoftp.html#xmlNanoFTPGetSocket'/>
-    <reference name='xmlNanoFTPInit' href='html/libxml-nanoftp.html#xmlNanoFTPInit'/>
-    <reference name='xmlNanoFTPList' href='html/libxml-nanoftp.html#xmlNanoFTPList'/>
-    <reference name='xmlNanoFTPNewCtxt' href='html/libxml-nanoftp.html#xmlNanoFTPNewCtxt'/>
-    <reference name='xmlNanoFTPOpen' href='html/libxml-nanoftp.html#xmlNanoFTPOpen'/>
-    <reference name='xmlNanoFTPProxy' href='html/libxml-nanoftp.html#xmlNanoFTPProxy'/>
-    <reference name='xmlNanoFTPQuit' href='html/libxml-nanoftp.html#xmlNanoFTPQuit'/>
-    <reference name='xmlNanoFTPRead' href='html/libxml-nanoftp.html#xmlNanoFTPRead'/>
-    <reference name='xmlNanoFTPScanProxy' href='html/libxml-nanoftp.html#xmlNanoFTPScanProxy'/>
-    <reference name='xmlNanoFTPUpdateURL' href='html/libxml-nanoftp.html#xmlNanoFTPUpdateURL'/>
-    <reference name='xmlNanoHTTPAuthHeader' href='html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader'/>
-    <reference name='xmlNanoHTTPCleanup' href='html/libxml-nanohttp.html#xmlNanoHTTPCleanup'/>
-    <reference name='xmlNanoHTTPClose' href='html/libxml-nanohttp.html#xmlNanoHTTPClose'/>
-    <reference name='xmlNanoHTTPContentLength' href='html/libxml-nanohttp.html#xmlNanoHTTPContentLength'/>
-    <reference name='xmlNanoHTTPEncoding' href='html/libxml-nanohttp.html#xmlNanoHTTPEncoding'/>
-    <reference name='xmlNanoHTTPFetch' href='html/libxml-nanohttp.html#xmlNanoHTTPFetch'/>
-    <reference name='xmlNanoHTTPInit' href='html/libxml-nanohttp.html#xmlNanoHTTPInit'/>
-    <reference name='xmlNanoHTTPMethod' href='html/libxml-nanohttp.html#xmlNanoHTTPMethod'/>
-    <reference name='xmlNanoHTTPMethodRedir' href='html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir'/>
-    <reference name='xmlNanoHTTPMimeType' href='html/libxml-nanohttp.html#xmlNanoHTTPMimeType'/>
-    <reference name='xmlNanoHTTPOpen' href='html/libxml-nanohttp.html#xmlNanoHTTPOpen'/>
-    <reference name='xmlNanoHTTPOpenRedir' href='html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir'/>
-    <reference name='xmlNanoHTTPRead' href='html/libxml-nanohttp.html#xmlNanoHTTPRead'/>
-    <reference name='xmlNanoHTTPRedir' href='html/libxml-nanohttp.html#xmlNanoHTTPRedir'/>
-    <reference name='xmlNanoHTTPReturnCode' href='html/libxml-nanohttp.html#xmlNanoHTTPReturnCode'/>
-    <reference name='xmlNanoHTTPSave' href='html/libxml-nanohttp.html#xmlNanoHTTPSave'/>
-    <reference name='xmlNanoHTTPScanProxy' href='html/libxml-nanohttp.html#xmlNanoHTTPScanProxy'/>
-    <reference name='xmlNewAutomata' href='html/libxml-xmlautomata.html#xmlNewAutomata'/>
-    <reference name='xmlNewCDataBlock' href='html/libxml-tree.html#xmlNewCDataBlock'/>
-    <reference name='xmlNewCatalog' href='html/libxml-catalog.html#xmlNewCatalog'/>
-    <reference name='xmlNewCharEncodingHandler' href='html/libxml-encoding.html#xmlNewCharEncodingHandler'/>
-    <reference name='xmlNewCharRef' href='html/libxml-tree.html#xmlNewCharRef'/>
-    <reference name='xmlNewChild' href='html/libxml-tree.html#xmlNewChild'/>
-    <reference name='xmlNewComment' href='html/libxml-tree.html#xmlNewComment'/>
-    <reference name='xmlNewDoc' href='html/libxml-tree.html#xmlNewDoc'/>
-    <reference name='xmlNewDocComment' href='html/libxml-tree.html#xmlNewDocComment'/>
-    <reference name='xmlNewDocElementContent' href='html/libxml-valid.html#xmlNewDocElementContent'/>
-    <reference name='xmlNewDocFragment' href='html/libxml-tree.html#xmlNewDocFragment'/>
-    <reference name='xmlNewDocNode' href='html/libxml-tree.html#xmlNewDocNode'/>
-    <reference name='xmlNewDocNodeEatName' href='html/libxml-tree.html#xmlNewDocNodeEatName'/>
-    <reference name='xmlNewDocPI' href='html/libxml-tree.html#xmlNewDocPI'/>
-    <reference name='xmlNewDocProp' href='html/libxml-tree.html#xmlNewDocProp'/>
-    <reference name='xmlNewDocRawNode' href='html/libxml-tree.html#xmlNewDocRawNode'/>
-    <reference name='xmlNewDocText' href='html/libxml-tree.html#xmlNewDocText'/>
-    <reference name='xmlNewDocTextLen' href='html/libxml-tree.html#xmlNewDocTextLen'/>
-    <reference name='xmlNewDtd' href='html/libxml-tree.html#xmlNewDtd'/>
-    <reference name='xmlNewElementContent' href='html/libxml-valid.html#xmlNewElementContent'/>
-    <reference name='xmlNewEntity' href='html/libxml-entities.html#xmlNewEntity'/>
-    <reference name='xmlNewEntityInputStream' href='html/libxml-parserInternals.html#xmlNewEntityInputStream'/>
-    <reference name='xmlNewGlobalNs' href='html/libxml-tree.html#xmlNewGlobalNs'/>
-    <reference name='xmlNewIOInputStream' href='html/libxml-parser.html#xmlNewIOInputStream'/>
-    <reference name='xmlNewInputFromFile' href='html/libxml-parserInternals.html#xmlNewInputFromFile'/>
-    <reference name='xmlNewInputStream' href='html/libxml-parserInternals.html#xmlNewInputStream'/>
-    <reference name='xmlNewMutex' href='html/libxml-threads.html#xmlNewMutex'/>
-    <reference name='xmlNewNode' href='html/libxml-tree.html#xmlNewNode'/>
-    <reference name='xmlNewNodeEatName' href='html/libxml-tree.html#xmlNewNodeEatName'/>
-    <reference name='xmlNewNs' href='html/libxml-tree.html#xmlNewNs'/>
-    <reference name='xmlNewNsProp' href='html/libxml-tree.html#xmlNewNsProp'/>
-    <reference name='xmlNewNsPropEatName' href='html/libxml-tree.html#xmlNewNsPropEatName'/>
-    <reference name='xmlNewPI' href='html/libxml-tree.html#xmlNewPI'/>
-    <reference name='xmlNewParserCtxt' href='html/libxml-parser.html#xmlNewParserCtxt'/>
-    <reference name='xmlNewProp' href='html/libxml-tree.html#xmlNewProp'/>
-    <reference name='xmlNewRMutex' href='html/libxml-threads.html#xmlNewRMutex'/>
-    <reference name='xmlNewReference' href='html/libxml-tree.html#xmlNewReference'/>
-    <reference name='xmlNewStringInputStream' href='html/libxml-parserInternals.html#xmlNewStringInputStream'/>
-    <reference name='xmlNewText' href='html/libxml-tree.html#xmlNewText'/>
-    <reference name='xmlNewTextChild' href='html/libxml-tree.html#xmlNewTextChild'/>
-    <reference name='xmlNewTextLen' href='html/libxml-tree.html#xmlNewTextLen'/>
-    <reference name='xmlNewTextReader' href='html/libxml-xmlreader.html#xmlNewTextReader'/>
-    <reference name='xmlNewTextReaderFilename' href='html/libxml-xmlreader.html#xmlNewTextReaderFilename'/>
-    <reference name='xmlNewTextWriter' href='html/libxml-xmlwriter.html#xmlNewTextWriter'/>
-    <reference name='xmlNewTextWriterDoc' href='html/libxml-xmlwriter.html#xmlNewTextWriterDoc'/>
-    <reference name='xmlNewTextWriterFilename' href='html/libxml-xmlwriter.html#xmlNewTextWriterFilename'/>
-    <reference name='xmlNewTextWriterMemory' href='html/libxml-xmlwriter.html#xmlNewTextWriterMemory'/>
-    <reference name='xmlNewTextWriterPushParser' href='html/libxml-xmlwriter.html#xmlNewTextWriterPushParser'/>
-    <reference name='xmlNewTextWriterTree' href='html/libxml-xmlwriter.html#xmlNewTextWriterTree'/>
-    <reference name='xmlNewValidCtxt' href='html/libxml-valid.html#xmlNewValidCtxt'/>
-    <reference name='xmlNextChar' href='html/libxml-parserInternals.html#xmlNextChar'/>
-    <reference name='xmlNextElementSibling' href='html/libxml-tree.html#xmlNextElementSibling'/>
-    <reference name='xmlNoNetExternalEntityLoader' href='html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader'/>
-    <reference name='xmlNode' href='html/libxml-tree.html#xmlNode'/>
-    <reference name='xmlNodeAddContent' href='html/libxml-tree.html#xmlNodeAddContent'/>
-    <reference name='xmlNodeAddContentLen' href='html/libxml-tree.html#xmlNodeAddContentLen'/>
-    <reference name='xmlNodeBufGetContent' href='html/libxml-tree.html#xmlNodeBufGetContent'/>
-    <reference name='xmlNodeDump' href='html/libxml-tree.html#xmlNodeDump'/>
-    <reference name='xmlNodeDumpOutput' href='html/libxml-tree.html#xmlNodeDumpOutput'/>
-    <reference name='xmlNodeGetBase' href='html/libxml-tree.html#xmlNodeGetBase'/>
-    <reference name='xmlNodeGetContent' href='html/libxml-tree.html#xmlNodeGetContent'/>
-    <reference name='xmlNodeGetLang' href='html/libxml-tree.html#xmlNodeGetLang'/>
-    <reference name='xmlNodeGetSpacePreserve' href='html/libxml-tree.html#xmlNodeGetSpacePreserve'/>
-    <reference name='xmlNodeIsText' href='html/libxml-tree.html#xmlNodeIsText'/>
-    <reference name='xmlNodeListGetRawString' href='html/libxml-tree.html#xmlNodeListGetRawString'/>
-    <reference name='xmlNodeListGetString' href='html/libxml-tree.html#xmlNodeListGetString'/>
-    <reference name='xmlNodePtr' href='html/libxml-tree.html#xmlNodePtr'/>
-    <reference name='xmlNodeSet' href='html/libxml-xpath.html#xmlNodeSet'/>
-    <reference name='xmlNodeSetBase' href='html/libxml-tree.html#xmlNodeSetBase'/>
-    <reference name='xmlNodeSetContent' href='html/libxml-tree.html#xmlNodeSetContent'/>
-    <reference name='xmlNodeSetContentLen' href='html/libxml-tree.html#xmlNodeSetContentLen'/>
-    <reference name='xmlNodeSetLang' href='html/libxml-tree.html#xmlNodeSetLang'/>
-    <reference name='xmlNodeSetName' href='html/libxml-tree.html#xmlNodeSetName'/>
-    <reference name='xmlNodeSetPtr' href='html/libxml-xpath.html#xmlNodeSetPtr'/>
-    <reference name='xmlNodeSetSpacePreserve' href='html/libxml-tree.html#xmlNodeSetSpacePreserve'/>
-    <reference name='xmlNormalizeURIPath' href='html/libxml-uri.html#xmlNormalizeURIPath'/>
-    <reference name='xmlNormalizeWindowsPath' href='html/libxml-xmlIO.html#xmlNormalizeWindowsPath'/>
-    <reference name='xmlNotation' href='html/libxml-tree.html#xmlNotation'/>
-    <reference name='xmlNotationPtr' href='html/libxml-tree.html#xmlNotationPtr'/>
-    <reference name='xmlNotationTable' href='html/libxml-valid.html#xmlNotationTable'/>
-    <reference name='xmlNotationTablePtr' href='html/libxml-valid.html#xmlNotationTablePtr'/>
-    <reference name='xmlNs' href='html/libxml-tree.html#xmlNs'/>
-    <reference name='xmlNsPtr' href='html/libxml-tree.html#xmlNsPtr'/>
-    <reference name='xmlNsType' href='html/libxml-tree.html#xmlNsType'/>
-    <reference name='xmlOutputBuffer' href='html/libxml-tree.html#xmlOutputBuffer'/>
-    <reference name='xmlOutputBufferClose' href='html/libxml-xmlIO.html#xmlOutputBufferClose'/>
-    <reference name='xmlOutputBufferCreateBuffer' href='html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer'/>
-    <reference name='xmlOutputBufferCreateFd' href='html/libxml-xmlIO.html#xmlOutputBufferCreateFd'/>
-    <reference name='xmlOutputBufferCreateFile' href='html/libxml-xmlIO.html#xmlOutputBufferCreateFile'/>
-    <reference name='xmlOutputBufferCreateFilename' href='html/libxml-xmlIO.html#xmlOutputBufferCreateFilename'/>
-    <reference name='xmlOutputBufferCreateFilenameDefault' href='html/libxml-globals.html#xmlOutputBufferCreateFilenameDefault'/>
-    <reference name='xmlOutputBufferCreateFilenameFunc' href='html/libxml-globals.html#xmlOutputBufferCreateFilenameFunc'/>
-    <reference name='xmlOutputBufferCreateFilenameValue' href='html/libxml-globals.html#xmlOutputBufferCreateFilenameValue'/>
-    <reference name='xmlOutputBufferCreateIO' href='html/libxml-xmlIO.html#xmlOutputBufferCreateIO'/>
-    <reference name='xmlOutputBufferFlush' href='html/libxml-xmlIO.html#xmlOutputBufferFlush'/>
-    <reference name='xmlOutputBufferGetContent' href='html/libxml-xmlIO.html#xmlOutputBufferGetContent'/>
-    <reference name='xmlOutputBufferGetSize' href='html/libxml-xmlIO.html#xmlOutputBufferGetSize'/>
-    <reference name='xmlOutputBufferPtr' href='html/libxml-tree.html#xmlOutputBufferPtr'/>
-    <reference name='xmlOutputBufferWrite' href='html/libxml-xmlIO.html#xmlOutputBufferWrite'/>
-    <reference name='xmlOutputBufferWriteEscape' href='html/libxml-xmlIO.html#xmlOutputBufferWriteEscape'/>
-    <reference name='xmlOutputBufferWriteString' href='html/libxml-xmlIO.html#xmlOutputBufferWriteString'/>
-    <reference name='xmlOutputCloseCallback' href='html/libxml-xmlIO.html#xmlOutputCloseCallback'/>
-    <reference name='xmlOutputMatchCallback' href='html/libxml-xmlIO.html#xmlOutputMatchCallback'/>
-    <reference name='xmlOutputOpenCallback' href='html/libxml-xmlIO.html#xmlOutputOpenCallback'/>
-    <reference name='xmlOutputWriteCallback' href='html/libxml-xmlIO.html#xmlOutputWriteCallback'/>
-    <reference name='xmlParseAttValue' href='html/libxml-parserInternals.html#xmlParseAttValue'/>
-    <reference name='xmlParseAttribute' href='html/libxml-parserInternals.html#xmlParseAttribute'/>
-    <reference name='xmlParseAttributeListDecl' href='html/libxml-parserInternals.html#xmlParseAttributeListDecl'/>
-    <reference name='xmlParseAttributeType' href='html/libxml-parserInternals.html#xmlParseAttributeType'/>
-    <reference name='xmlParseBalancedChunkMemory' href='html/libxml-parser.html#xmlParseBalancedChunkMemory'/>
-    <reference name='xmlParseBalancedChunkMemoryRecover' href='html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover'/>
-    <reference name='xmlParseCDSect' href='html/libxml-parserInternals.html#xmlParseCDSect'/>
-    <reference name='xmlParseCatalogFile' href='html/libxml-catalog.html#xmlParseCatalogFile'/>
-    <reference name='xmlParseCharData' href='html/libxml-parserInternals.html#xmlParseCharData'/>
-    <reference name='xmlParseCharEncoding' href='html/libxml-encoding.html#xmlParseCharEncoding'/>
-    <reference name='xmlParseCharRef' href='html/libxml-parserInternals.html#xmlParseCharRef'/>
-    <reference name='xmlParseChunk' href='html/libxml-parser.html#xmlParseChunk'/>
-    <reference name='xmlParseComment' href='html/libxml-parserInternals.html#xmlParseComment'/>
-    <reference name='xmlParseContent' href='html/libxml-parserInternals.html#xmlParseContent'/>
-    <reference name='xmlParseCtxtExternalEntity' href='html/libxml-parser.html#xmlParseCtxtExternalEntity'/>
-    <reference name='xmlParseDTD' href='html/libxml-parser.html#xmlParseDTD'/>
-    <reference name='xmlParseDefaultDecl' href='html/libxml-parserInternals.html#xmlParseDefaultDecl'/>
-    <reference name='xmlParseDoc' href='html/libxml-parser.html#xmlParseDoc'/>
-    <reference name='xmlParseDocTypeDecl' href='html/libxml-parserInternals.html#xmlParseDocTypeDecl'/>
-    <reference name='xmlParseDocument' href='html/libxml-parser.html#xmlParseDocument'/>
-    <reference name='xmlParseElement' href='html/libxml-parserInternals.html#xmlParseElement'/>
-    <reference name='xmlParseElementChildrenContentDecl' href='html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl'/>
-    <reference name='xmlParseElementContentDecl' href='html/libxml-parserInternals.html#xmlParseElementContentDecl'/>
-    <reference name='xmlParseElementDecl' href='html/libxml-parserInternals.html#xmlParseElementDecl'/>
-    <reference name='xmlParseElementMixedContentDecl' href='html/libxml-parserInternals.html#xmlParseElementMixedContentDecl'/>
-    <reference name='xmlParseEncName' href='html/libxml-parserInternals.html#xmlParseEncName'/>
-    <reference name='xmlParseEncodingDecl' href='html/libxml-parserInternals.html#xmlParseEncodingDecl'/>
-    <reference name='xmlParseEndTag' href='html/libxml-parserInternals.html#xmlParseEndTag'/>
-    <reference name='xmlParseEntity' href='html/libxml-parser.html#xmlParseEntity'/>
-    <reference name='xmlParseEntityDecl' href='html/libxml-parserInternals.html#xmlParseEntityDecl'/>
-    <reference name='xmlParseEntityRef' href='html/libxml-parserInternals.html#xmlParseEntityRef'/>
-    <reference name='xmlParseEntityValue' href='html/libxml-parserInternals.html#xmlParseEntityValue'/>
-    <reference name='xmlParseEnumeratedType' href='html/libxml-parserInternals.html#xmlParseEnumeratedType'/>
-    <reference name='xmlParseEnumerationType' href='html/libxml-parserInternals.html#xmlParseEnumerationType'/>
-    <reference name='xmlParseExtParsedEnt' href='html/libxml-parser.html#xmlParseExtParsedEnt'/>
-    <reference name='xmlParseExternalEntity' href='html/libxml-parser.html#xmlParseExternalEntity'/>
-    <reference name='xmlParseExternalID' href='html/libxml-parserInternals.html#xmlParseExternalID'/>
-    <reference name='xmlParseExternalSubset' href='html/libxml-parserInternals.html#xmlParseExternalSubset'/>
-    <reference name='xmlParseFile' href='html/libxml-parser.html#xmlParseFile'/>
-    <reference name='xmlParseInNodeContext' href='html/libxml-parser.html#xmlParseInNodeContext'/>
-    <reference name='xmlParseMarkupDecl' href='html/libxml-parserInternals.html#xmlParseMarkupDecl'/>
-    <reference name='xmlParseMemory' href='html/libxml-parser.html#xmlParseMemory'/>
-    <reference name='xmlParseMisc' href='html/libxml-parserInternals.html#xmlParseMisc'/>
-    <reference name='xmlParseName' href='html/libxml-parserInternals.html#xmlParseName'/>
-    <reference name='xmlParseNamespace' href='html/libxml-parserInternals.html#xmlParseNamespace'/>
-    <reference name='xmlParseNmtoken' href='html/libxml-parserInternals.html#xmlParseNmtoken'/>
-    <reference name='xmlParseNotationDecl' href='html/libxml-parserInternals.html#xmlParseNotationDecl'/>
-    <reference name='xmlParseNotationType' href='html/libxml-parserInternals.html#xmlParseNotationType'/>
-    <reference name='xmlParsePEReference' href='html/libxml-parserInternals.html#xmlParsePEReference'/>
-    <reference name='xmlParsePI' href='html/libxml-parserInternals.html#xmlParsePI'/>
-    <reference name='xmlParsePITarget' href='html/libxml-parserInternals.html#xmlParsePITarget'/>
-    <reference name='xmlParsePubidLiteral' href='html/libxml-parserInternals.html#xmlParsePubidLiteral'/>
-    <reference name='xmlParseQuotedString' href='html/libxml-parserInternals.html#xmlParseQuotedString'/>
-    <reference name='xmlParseReference' href='html/libxml-parserInternals.html#xmlParseReference'/>
-    <reference name='xmlParseSDDecl' href='html/libxml-parserInternals.html#xmlParseSDDecl'/>
-    <reference name='xmlParseStartTag' href='html/libxml-parserInternals.html#xmlParseStartTag'/>
-    <reference name='xmlParseSystemLiteral' href='html/libxml-parserInternals.html#xmlParseSystemLiteral'/>
-    <reference name='xmlParseTextDecl' href='html/libxml-parserInternals.html#xmlParseTextDecl'/>
-    <reference name='xmlParseURI' href='html/libxml-uri.html#xmlParseURI'/>
-    <reference name='xmlParseURIRaw' href='html/libxml-uri.html#xmlParseURIRaw'/>
-    <reference name='xmlParseURIReference' href='html/libxml-uri.html#xmlParseURIReference'/>
-    <reference name='xmlParseVersionInfo' href='html/libxml-parserInternals.html#xmlParseVersionInfo'/>
-    <reference name='xmlParseVersionNum' href='html/libxml-parserInternals.html#xmlParseVersionNum'/>
-    <reference name='xmlParseXMLDecl' href='html/libxml-parserInternals.html#xmlParseXMLDecl'/>
-    <reference name='xmlParserAddNodeInfo' href='html/libxml-parser.html#xmlParserAddNodeInfo'/>
-    <reference name='xmlParserCtxt' href='html/libxml-tree.html#xmlParserCtxt'/>
-    <reference name='xmlParserCtxtPtr' href='html/libxml-tree.html#xmlParserCtxtPtr'/>
-    <reference name='xmlParserDebugEntities' href='html/libxml-globals.html#xmlParserDebugEntities'/>
-    <reference name='xmlParserError' href='html/libxml-xmlerror.html#xmlParserError'/>
-    <reference name='xmlParserErrors' href='html/libxml-xmlerror.html#xmlParserErrors'/>
-    <reference name='xmlParserFindNodeInfo' href='html/libxml-parser.html#xmlParserFindNodeInfo'/>
-    <reference name='xmlParserFindNodeInfoIndex' href='html/libxml-parser.html#xmlParserFindNodeInfoIndex'/>
-    <reference name='xmlParserGetDirectory' href='html/libxml-xmlIO.html#xmlParserGetDirectory'/>
-    <reference name='xmlParserHandlePEReference' href='html/libxml-parserInternals.html#xmlParserHandlePEReference'/>
-    <reference name='xmlParserHandleReference' href='html/libxml-parserInternals.html#xmlParserHandleReference'/>
-    <reference name='xmlParserInput' href='html/libxml-tree.html#xmlParserInput'/>
-    <reference name='xmlParserInputBuffer' href='html/libxml-tree.html#xmlParserInputBuffer'/>
-    <reference name='xmlParserInputBufferCreateFd' href='html/libxml-xmlIO.html#xmlParserInputBufferCreateFd'/>
-    <reference name='xmlParserInputBufferCreateFile' href='html/libxml-xmlIO.html#xmlParserInputBufferCreateFile'/>
-    <reference name='xmlParserInputBufferCreateFilename' href='html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename'/>
-    <reference name='xmlParserInputBufferCreateFilenameDefault' href='html/libxml-globals.html#xmlParserInputBufferCreateFilenameDefault'/>
-    <reference name='xmlParserInputBufferCreateFilenameFunc' href='html/libxml-globals.html#xmlParserInputBufferCreateFilenameFunc'/>
-    <reference name='xmlParserInputBufferCreateFilenameValue' href='html/libxml-globals.html#xmlParserInputBufferCreateFilenameValue'/>
-    <reference name='xmlParserInputBufferCreateIO' href='html/libxml-xmlIO.html#xmlParserInputBufferCreateIO'/>
-    <reference name='xmlParserInputBufferCreateMem' href='html/libxml-xmlIO.html#xmlParserInputBufferCreateMem'/>
-    <reference name='xmlParserInputBufferCreateStatic' href='html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic'/>
-    <reference name='xmlParserInputBufferGrow' href='html/libxml-xmlIO.html#xmlParserInputBufferGrow'/>
-    <reference name='xmlParserInputBufferPtr' href='html/libxml-tree.html#xmlParserInputBufferPtr'/>
-    <reference name='xmlParserInputBufferPush' href='html/libxml-xmlIO.html#xmlParserInputBufferPush'/>
-    <reference name='xmlParserInputBufferRead' href='html/libxml-xmlIO.html#xmlParserInputBufferRead'/>
-    <reference name='xmlParserInputDeallocate' href='html/libxml-parser.html#xmlParserInputDeallocate'/>
-    <reference name='xmlParserInputGrow' href='html/libxml-parser.html#xmlParserInputGrow'/>
-    <reference name='xmlParserInputPtr' href='html/libxml-tree.html#xmlParserInputPtr'/>
-    <reference name='xmlParserInputRead' href='html/libxml-parser.html#xmlParserInputRead'/>
-    <reference name='xmlParserInputShrink' href='html/libxml-parserInternals.html#xmlParserInputShrink'/>
-    <reference name='xmlParserInputState' href='html/libxml-parser.html#xmlParserInputState'/>
-    <reference name='xmlParserMaxDepth' href='html/libxml-parserInternals.html#xmlParserMaxDepth'/>
-    <reference name='xmlParserMode' href='html/libxml-parser.html#xmlParserMode'/>
-    <reference name='xmlParserNodeInfo' href='html/libxml-parser.html#xmlParserNodeInfo'/>
-    <reference name='xmlParserNodeInfoPtr' href='html/libxml-parser.html#xmlParserNodeInfoPtr'/>
-    <reference name='xmlParserNodeInfoSeq' href='html/libxml-parser.html#xmlParserNodeInfoSeq'/>
-    <reference name='xmlParserNodeInfoSeqPtr' href='html/libxml-parser.html#xmlParserNodeInfoSeqPtr'/>
-    <reference name='xmlParserOption' href='html/libxml-parser.html#xmlParserOption'/>
-    <reference name='xmlParserPrintFileContext' href='html/libxml-xmlerror.html#xmlParserPrintFileContext'/>
-    <reference name='xmlParserPrintFileInfo' href='html/libxml-xmlerror.html#xmlParserPrintFileInfo'/>
-    <reference name='xmlParserProperties' href='html/libxml-xmlreader.html#xmlParserProperties'/>
-    <reference name='xmlParserSeverities' href='html/libxml-xmlreader.html#xmlParserSeverities'/>
-    <reference name='xmlParserValidityError' href='html/libxml-xmlerror.html#xmlParserValidityError'/>
-    <reference name='xmlParserValidityWarning' href='html/libxml-xmlerror.html#xmlParserValidityWarning'/>
-    <reference name='xmlParserVersion' href='html/libxml-globals.html#xmlParserVersion'/>
-    <reference name='xmlParserWarning' href='html/libxml-xmlerror.html#xmlParserWarning'/>
-    <reference name='xmlPathToURI' href='html/libxml-uri.html#xmlPathToURI'/>
-    <reference name='xmlPattern' href='html/libxml-pattern.html#xmlPattern'/>
-    <reference name='xmlPatternFlags' href='html/libxml-pattern.html#xmlPatternFlags'/>
-    <reference name='xmlPatternFromRoot' href='html/libxml-pattern.html#xmlPatternFromRoot'/>
-    <reference name='xmlPatternGetStreamCtxt' href='html/libxml-pattern.html#xmlPatternGetStreamCtxt'/>
-    <reference name='xmlPatternMatch' href='html/libxml-pattern.html#xmlPatternMatch'/>
-    <reference name='xmlPatternMaxDepth' href='html/libxml-pattern.html#xmlPatternMaxDepth'/>
-    <reference name='xmlPatternMinDepth' href='html/libxml-pattern.html#xmlPatternMinDepth'/>
-    <reference name='xmlPatternPtr' href='html/libxml-pattern.html#xmlPatternPtr'/>
-    <reference name='xmlPatternStreamable' href='html/libxml-pattern.html#xmlPatternStreamable'/>
-    <reference name='xmlPatterncompile' href='html/libxml-pattern.html#xmlPatterncompile'/>
-    <reference name='xmlPedanticParserDefault' href='html/libxml-parser.html#xmlPedanticParserDefault'/>
-    <reference name='xmlPedanticParserDefaultValue' href='html/libxml-globals.html#xmlPedanticParserDefaultValue'/>
-    <reference name='xmlPopInput' href='html/libxml-parserInternals.html#xmlPopInput'/>
-    <reference name='xmlPopInputCallbacks' href='html/libxml-xmlIO.html#xmlPopInputCallbacks'/>
-    <reference name='xmlPopOutputCallbacks' href='html/libxml-xmlIO.html#xmlPopOutputCallbacks'/>
-    <reference name='xmlPreviousElementSibling' href='html/libxml-tree.html#xmlPreviousElementSibling'/>
-    <reference name='xmlPrintURI' href='html/libxml-uri.html#xmlPrintURI'/>
-    <reference name='xmlPushInput' href='html/libxml-parserInternals.html#xmlPushInput'/>
-    <reference name='xmlRMutex' href='html/libxml-threads.html#xmlRMutex'/>
-    <reference name='xmlRMutexLock' href='html/libxml-threads.html#xmlRMutexLock'/>
-    <reference name='xmlRMutexPtr' href='html/libxml-threads.html#xmlRMutexPtr'/>
-    <reference name='xmlRMutexUnlock' href='html/libxml-threads.html#xmlRMutexUnlock'/>
-    <reference name='xmlReadDoc' href='html/libxml-parser.html#xmlReadDoc'/>
-    <reference name='xmlReadFd' href='html/libxml-parser.html#xmlReadFd'/>
-    <reference name='xmlReadFile' href='html/libxml-parser.html#xmlReadFile'/>
-    <reference name='xmlReadIO' href='html/libxml-parser.html#xmlReadIO'/>
-    <reference name='xmlReadMemory' href='html/libxml-parser.html#xmlReadMemory'/>
-    <reference name='xmlReaderForDoc' href='html/libxml-xmlreader.html#xmlReaderForDoc'/>
-    <reference name='xmlReaderForFd' href='html/libxml-xmlreader.html#xmlReaderForFd'/>
-    <reference name='xmlReaderForFile' href='html/libxml-xmlreader.html#xmlReaderForFile'/>
-    <reference name='xmlReaderForIO' href='html/libxml-xmlreader.html#xmlReaderForIO'/>
-    <reference name='xmlReaderForMemory' href='html/libxml-xmlreader.html#xmlReaderForMemory'/>
-    <reference name='xmlReaderNewDoc' href='html/libxml-xmlreader.html#xmlReaderNewDoc'/>
-    <reference name='xmlReaderNewFd' href='html/libxml-xmlreader.html#xmlReaderNewFd'/>
-    <reference name='xmlReaderNewFile' href='html/libxml-xmlreader.html#xmlReaderNewFile'/>
-    <reference name='xmlReaderNewIO' href='html/libxml-xmlreader.html#xmlReaderNewIO'/>
-    <reference name='xmlReaderNewMemory' href='html/libxml-xmlreader.html#xmlReaderNewMemory'/>
-    <reference name='xmlReaderNewWalker' href='html/libxml-xmlreader.html#xmlReaderNewWalker'/>
-    <reference name='xmlReaderTypes' href='html/libxml-xmlreader.html#xmlReaderTypes'/>
-    <reference name='xmlReaderWalker' href='html/libxml-xmlreader.html#xmlReaderWalker'/>
-    <reference name='xmlRealloc' href='html/libxml-globals.html#xmlRealloc'/>
-    <reference name='xmlReallocFunc' href='html/libxml-xmlmemory.html#xmlReallocFunc'/>
-    <reference name='xmlReallocLoc' href='html/libxml-xmlmemory.html#xmlReallocLoc'/>
-    <reference name='xmlReconciliateNs' href='html/libxml-tree.html#xmlReconciliateNs'/>
-    <reference name='xmlRecoverDoc' href='html/libxml-parser.html#xmlRecoverDoc'/>
-    <reference name='xmlRecoverFile' href='html/libxml-parser.html#xmlRecoverFile'/>
-    <reference name='xmlRecoverMemory' href='html/libxml-parser.html#xmlRecoverMemory'/>
-    <reference name='xmlRef' href='html/libxml-tree.html#xmlRef'/>
-    <reference name='xmlRefPtr' href='html/libxml-tree.html#xmlRefPtr'/>
-    <reference name='xmlRefTable' href='html/libxml-valid.html#xmlRefTable'/>
-    <reference name='xmlRefTablePtr' href='html/libxml-valid.html#xmlRefTablePtr'/>
-    <reference name='xmlRegExecCallbacks' href='html/libxml-xmlregexp.html#xmlRegExecCallbacks'/>
-    <reference name='xmlRegExecCtxt' href='html/libxml-xmlregexp.html#xmlRegExecCtxt'/>
-    <reference name='xmlRegExecCtxtPtr' href='html/libxml-xmlregexp.html#xmlRegExecCtxtPtr'/>
-    <reference name='xmlRegExecErrInfo' href='html/libxml-xmlregexp.html#xmlRegExecErrInfo'/>
-    <reference name='xmlRegExecNextValues' href='html/libxml-xmlregexp.html#xmlRegExecNextValues'/>
-    <reference name='xmlRegExecPushString' href='html/libxml-xmlregexp.html#xmlRegExecPushString'/>
-    <reference name='xmlRegExecPushString2' href='html/libxml-xmlregexp.html#xmlRegExecPushString2'/>
-    <reference name='xmlRegFreeExecCtxt' href='html/libxml-xmlregexp.html#xmlRegFreeExecCtxt'/>
-    <reference name='xmlRegFreeRegexp' href='html/libxml-xmlregexp.html#xmlRegFreeRegexp'/>
-    <reference name='xmlRegNewExecCtxt' href='html/libxml-xmlregexp.html#xmlRegNewExecCtxt'/>
-    <reference name='xmlRegexp' href='html/libxml-xmlregexp.html#xmlRegexp'/>
-    <reference name='xmlRegexpCompile' href='html/libxml-xmlregexp.html#xmlRegexpCompile'/>
-    <reference name='xmlRegexpExec' href='html/libxml-xmlregexp.html#xmlRegexpExec'/>
-    <reference name='xmlRegexpIsDeterminist' href='html/libxml-xmlregexp.html#xmlRegexpIsDeterminist'/>
-    <reference name='xmlRegexpPrint' href='html/libxml-xmlregexp.html#xmlRegexpPrint'/>
-    <reference name='xmlRegexpPtr' href='html/libxml-xmlregexp.html#xmlRegexpPtr'/>
-    <reference name='xmlRegisterCharEncodingHandler' href='html/libxml-encoding.html#xmlRegisterCharEncodingHandler'/>
-    <reference name='xmlRegisterDefaultInputCallbacks' href='html/libxml-xmlIO.html#xmlRegisterDefaultInputCallbacks'/>
-    <reference name='xmlRegisterDefaultOutputCallbacks' href='html/libxml-xmlIO.html#xmlRegisterDefaultOutputCallbacks'/>
-    <reference name='xmlRegisterHTTPPostCallbacks' href='html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks'/>
-    <reference name='xmlRegisterInputCallbacks' href='html/libxml-xmlIO.html#xmlRegisterInputCallbacks'/>
-    <reference name='xmlRegisterNodeDefault' href='html/libxml-globals.html#xmlRegisterNodeDefault'/>
-    <reference name='xmlRegisterNodeDefaultValue' href='html/libxml-globals.html#xmlRegisterNodeDefaultValue'/>
-    <reference name='xmlRegisterNodeFunc' href='html/libxml-globals.html#xmlRegisterNodeFunc'/>
-    <reference name='xmlRegisterOutputCallbacks' href='html/libxml-xmlIO.html#xmlRegisterOutputCallbacks'/>
-    <reference name='xmlRelaxNG' href='html/libxml-relaxng.html#xmlRelaxNG'/>
-    <reference name='xmlRelaxNGCleanupTypes' href='html/libxml-relaxng.html#xmlRelaxNGCleanupTypes'/>
-    <reference name='xmlRelaxNGDump' href='html/libxml-relaxng.html#xmlRelaxNGDump'/>
-    <reference name='xmlRelaxNGDumpTree' href='html/libxml-relaxng.html#xmlRelaxNGDumpTree'/>
-    <reference name='xmlRelaxNGFree' href='html/libxml-relaxng.html#xmlRelaxNGFree'/>
-    <reference name='xmlRelaxNGFreeParserCtxt' href='html/libxml-relaxng.html#xmlRelaxNGFreeParserCtxt'/>
-    <reference name='xmlRelaxNGFreeValidCtxt' href='html/libxml-relaxng.html#xmlRelaxNGFreeValidCtxt'/>
-    <reference name='xmlRelaxNGGetParserErrors' href='html/libxml-relaxng.html#xmlRelaxNGGetParserErrors'/>
-    <reference name='xmlRelaxNGGetValidErrors' href='html/libxml-relaxng.html#xmlRelaxNGGetValidErrors'/>
-    <reference name='xmlRelaxNGInitTypes' href='html/libxml-relaxng.html#xmlRelaxNGInitTypes'/>
-    <reference name='xmlRelaxNGNewDocParserCtxt' href='html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt'/>
-    <reference name='xmlRelaxNGNewMemParserCtxt' href='html/libxml-relaxng.html#xmlRelaxNGNewMemParserCtxt'/>
-    <reference name='xmlRelaxNGNewParserCtxt' href='html/libxml-relaxng.html#xmlRelaxNGNewParserCtxt'/>
-    <reference name='xmlRelaxNGNewValidCtxt' href='html/libxml-relaxng.html#xmlRelaxNGNewValidCtxt'/>
-    <reference name='xmlRelaxNGParse' href='html/libxml-relaxng.html#xmlRelaxNGParse'/>
-    <reference name='xmlRelaxNGParserCtxt' href='html/libxml-relaxng.html#xmlRelaxNGParserCtxt'/>
-    <reference name='xmlRelaxNGParserCtxtPtr' href='html/libxml-relaxng.html#xmlRelaxNGParserCtxtPtr'/>
-    <reference name='xmlRelaxNGParserFlag' href='html/libxml-relaxng.html#xmlRelaxNGParserFlag'/>
-    <reference name='xmlRelaxNGPtr' href='html/libxml-relaxng.html#xmlRelaxNGPtr'/>
-    <reference name='xmlRelaxNGSetParserErrors' href='html/libxml-relaxng.html#xmlRelaxNGSetParserErrors'/>
-    <reference name='xmlRelaxNGSetParserStructuredErrors' href='html/libxml-relaxng.html#xmlRelaxNGSetParserStructuredErrors'/>
-    <reference name='xmlRelaxNGSetValidErrors' href='html/libxml-relaxng.html#xmlRelaxNGSetValidErrors'/>
-    <reference name='xmlRelaxNGSetValidStructuredErrors' href='html/libxml-relaxng.html#xmlRelaxNGSetValidStructuredErrors'/>
-    <reference name='xmlRelaxNGValidCtxt' href='html/libxml-relaxng.html#xmlRelaxNGValidCtxt'/>
-    <reference name='xmlRelaxNGValidCtxtPtr' href='html/libxml-relaxng.html#xmlRelaxNGValidCtxtPtr'/>
-    <reference name='xmlRelaxNGValidErr' href='html/libxml-relaxng.html#xmlRelaxNGValidErr'/>
-    <reference name='xmlRelaxNGValidateDoc' href='html/libxml-relaxng.html#xmlRelaxNGValidateDoc'/>
-    <reference name='xmlRelaxNGValidateFullElement' href='html/libxml-relaxng.html#xmlRelaxNGValidateFullElement'/>
-    <reference name='xmlRelaxNGValidatePopElement' href='html/libxml-relaxng.html#xmlRelaxNGValidatePopElement'/>
-    <reference name='xmlRelaxNGValidatePushCData' href='html/libxml-relaxng.html#xmlRelaxNGValidatePushCData'/>
-    <reference name='xmlRelaxNGValidatePushElement' href='html/libxml-relaxng.html#xmlRelaxNGValidatePushElement'/>
-    <reference name='xmlRelaxNGValidityErrorFunc' href='html/libxml-relaxng.html#xmlRelaxNGValidityErrorFunc'/>
-    <reference name='xmlRelaxNGValidityWarningFunc' href='html/libxml-relaxng.html#xmlRelaxNGValidityWarningFunc'/>
-    <reference name='xmlRelaxParserSetFlag' href='html/libxml-relaxng.html#xmlRelaxParserSetFlag'/>
-    <reference name='xmlRemoveID' href='html/libxml-valid.html#xmlRemoveID'/>
-    <reference name='xmlRemoveProp' href='html/libxml-tree.html#xmlRemoveProp'/>
-    <reference name='xmlRemoveRef' href='html/libxml-valid.html#xmlRemoveRef'/>
-    <reference name='xmlReplaceNode' href='html/libxml-tree.html#xmlReplaceNode'/>
-    <reference name='xmlResetError' href='html/libxml-xmlerror.html#xmlResetError'/>
-    <reference name='xmlResetLastError' href='html/libxml-xmlerror.html#xmlResetLastError'/>
-    <reference name='xmlRootNode' href='html/libxml-tree.html#xmlRootNode'/>
-    <reference name='xmlSAX2AttributeDecl' href='html/libxml-SAX2.html#xmlSAX2AttributeDecl'/>
-    <reference name='xmlSAX2CDataBlock' href='html/libxml-SAX2.html#xmlSAX2CDataBlock'/>
-    <reference name='xmlSAX2Characters' href='html/libxml-SAX2.html#xmlSAX2Characters'/>
-    <reference name='xmlSAX2Comment' href='html/libxml-SAX2.html#xmlSAX2Comment'/>
-    <reference name='xmlSAX2ElementDecl' href='html/libxml-SAX2.html#xmlSAX2ElementDecl'/>
-    <reference name='xmlSAX2EndDocument' href='html/libxml-SAX2.html#xmlSAX2EndDocument'/>
-    <reference name='xmlSAX2EndElement' href='html/libxml-SAX2.html#xmlSAX2EndElement'/>
-    <reference name='xmlSAX2EndElementNs' href='html/libxml-SAX2.html#xmlSAX2EndElementNs'/>
-    <reference name='xmlSAX2EntityDecl' href='html/libxml-SAX2.html#xmlSAX2EntityDecl'/>
-    <reference name='xmlSAX2ExternalSubset' href='html/libxml-SAX2.html#xmlSAX2ExternalSubset'/>
-    <reference name='xmlSAX2GetColumnNumber' href='html/libxml-SAX2.html#xmlSAX2GetColumnNumber'/>
-    <reference name='xmlSAX2GetEntity' href='html/libxml-SAX2.html#xmlSAX2GetEntity'/>
-    <reference name='xmlSAX2GetLineNumber' href='html/libxml-SAX2.html#xmlSAX2GetLineNumber'/>
-    <reference name='xmlSAX2GetParameterEntity' href='html/libxml-SAX2.html#xmlSAX2GetParameterEntity'/>
-    <reference name='xmlSAX2GetPublicId' href='html/libxml-SAX2.html#xmlSAX2GetPublicId'/>
-    <reference name='xmlSAX2GetSystemId' href='html/libxml-SAX2.html#xmlSAX2GetSystemId'/>
-    <reference name='xmlSAX2HasExternalSubset' href='html/libxml-SAX2.html#xmlSAX2HasExternalSubset'/>
-    <reference name='xmlSAX2HasInternalSubset' href='html/libxml-SAX2.html#xmlSAX2HasInternalSubset'/>
-    <reference name='xmlSAX2IgnorableWhitespace' href='html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace'/>
-    <reference name='xmlSAX2InitDefaultSAXHandler' href='html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler'/>
-    <reference name='xmlSAX2InitHtmlDefaultSAXHandler' href='html/libxml-SAX2.html#xmlSAX2InitHtmlDefaultSAXHandler'/>
-    <reference name='xmlSAX2InternalSubset' href='html/libxml-SAX2.html#xmlSAX2InternalSubset'/>
-    <reference name='xmlSAX2IsStandalone' href='html/libxml-SAX2.html#xmlSAX2IsStandalone'/>
-    <reference name='xmlSAX2NotationDecl' href='html/libxml-SAX2.html#xmlSAX2NotationDecl'/>
-    <reference name='xmlSAX2ProcessingInstruction' href='html/libxml-SAX2.html#xmlSAX2ProcessingInstruction'/>
-    <reference name='xmlSAX2Reference' href='html/libxml-SAX2.html#xmlSAX2Reference'/>
-    <reference name='xmlSAX2ResolveEntity' href='html/libxml-SAX2.html#xmlSAX2ResolveEntity'/>
-    <reference name='xmlSAX2SetDocumentLocator' href='html/libxml-SAX2.html#xmlSAX2SetDocumentLocator'/>
-    <reference name='xmlSAX2StartDocument' href='html/libxml-SAX2.html#xmlSAX2StartDocument'/>
-    <reference name='xmlSAX2StartElement' href='html/libxml-SAX2.html#xmlSAX2StartElement'/>
-    <reference name='xmlSAX2StartElementNs' href='html/libxml-SAX2.html#xmlSAX2StartElementNs'/>
-    <reference name='xmlSAX2UnparsedEntityDecl' href='html/libxml-SAX2.html#xmlSAX2UnparsedEntityDecl'/>
-    <reference name='xmlSAXDefaultVersion' href='html/libxml-SAX2.html#xmlSAXDefaultVersion'/>
-    <reference name='xmlSAXHandler' href='html/libxml-tree.html#xmlSAXHandler'/>
-    <reference name='xmlSAXHandlerPtr' href='html/libxml-tree.html#xmlSAXHandlerPtr'/>
-    <reference name='xmlSAXHandlerV1' href='html/libxml-parser.html#xmlSAXHandlerV1'/>
-    <reference name='xmlSAXHandlerV1Ptr' href='html/libxml-parser.html#xmlSAXHandlerV1Ptr'/>
-    <reference name='xmlSAXLocator' href='html/libxml-tree.html#xmlSAXLocator'/>
-    <reference name='xmlSAXLocatorPtr' href='html/libxml-tree.html#xmlSAXLocatorPtr'/>
-    <reference name='xmlSAXParseDTD' href='html/libxml-parser.html#xmlSAXParseDTD'/>
-    <reference name='xmlSAXParseDoc' href='html/libxml-parser.html#xmlSAXParseDoc'/>
-    <reference name='xmlSAXParseEntity' href='html/libxml-parser.html#xmlSAXParseEntity'/>
-    <reference name='xmlSAXParseFile' href='html/libxml-parser.html#xmlSAXParseFile'/>
-    <reference name='xmlSAXParseFileWithData' href='html/libxml-parser.html#xmlSAXParseFileWithData'/>
-    <reference name='xmlSAXParseMemory' href='html/libxml-parser.html#xmlSAXParseMemory'/>
-    <reference name='xmlSAXParseMemoryWithData' href='html/libxml-parser.html#xmlSAXParseMemoryWithData'/>
-    <reference name='xmlSAXUserParseFile' href='html/libxml-parser.html#xmlSAXUserParseFile'/>
-    <reference name='xmlSAXUserParseMemory' href='html/libxml-parser.html#xmlSAXUserParseMemory'/>
-    <reference name='xmlSAXVersion' href='html/libxml-SAX2.html#xmlSAXVersion'/>
-    <reference name='xmlSaveClose' href='html/libxml-xmlsave.html#xmlSaveClose'/>
-    <reference name='xmlSaveCtxt' href='html/libxml-xmlsave.html#xmlSaveCtxt'/>
-    <reference name='xmlSaveCtxtPtr' href='html/libxml-xmlsave.html#xmlSaveCtxtPtr'/>
-    <reference name='xmlSaveDoc' href='html/libxml-xmlsave.html#xmlSaveDoc'/>
-    <reference name='xmlSaveFile' href='html/libxml-tree.html#xmlSaveFile'/>
-    <reference name='xmlSaveFileEnc' href='html/libxml-tree.html#xmlSaveFileEnc'/>
-    <reference name='xmlSaveFileTo' href='html/libxml-tree.html#xmlSaveFileTo'/>
-    <reference name='xmlSaveFlush' href='html/libxml-xmlsave.html#xmlSaveFlush'/>
-    <reference name='xmlSaveFormatFile' href='html/libxml-tree.html#xmlSaveFormatFile'/>
-    <reference name='xmlSaveFormatFileEnc' href='html/libxml-tree.html#xmlSaveFormatFileEnc'/>
-    <reference name='xmlSaveFormatFileTo' href='html/libxml-tree.html#xmlSaveFormatFileTo'/>
-    <reference name='xmlSaveNoEmptyTags' href='html/libxml-globals.html#xmlSaveNoEmptyTags'/>
-    <reference name='xmlSaveOption' href='html/libxml-xmlsave.html#xmlSaveOption'/>
-    <reference name='xmlSaveSetAttrEscape' href='html/libxml-xmlsave.html#xmlSaveSetAttrEscape'/>
-    <reference name='xmlSaveSetEscape' href='html/libxml-xmlsave.html#xmlSaveSetEscape'/>
-    <reference name='xmlSaveToBuffer' href='html/libxml-xmlsave.html#xmlSaveToBuffer'/>
-    <reference name='xmlSaveToFd' href='html/libxml-xmlsave.html#xmlSaveToFd'/>
-    <reference name='xmlSaveToFilename' href='html/libxml-xmlsave.html#xmlSaveToFilename'/>
-    <reference name='xmlSaveToIO' href='html/libxml-xmlsave.html#xmlSaveToIO'/>
-    <reference name='xmlSaveTree' href='html/libxml-xmlsave.html#xmlSaveTree'/>
-    <reference name='xmlSaveUri' href='html/libxml-uri.html#xmlSaveUri'/>
-    <reference name='xmlScanName' href='html/libxml-parserInternals.html#xmlScanName'/>
-    <reference name='xmlSchema' href='html/libxml-xmlschemas.html#xmlSchema'/>
-    <reference name='xmlSchemaAnnot' href='html/libxml-schemasInternals.html#xmlSchemaAnnot'/>
-    <reference name='xmlSchemaAnnotPtr' href='html/libxml-schemasInternals.html#xmlSchemaAnnotPtr'/>
-    <reference name='xmlSchemaAttribute' href='html/libxml-schemasInternals.html#xmlSchemaAttribute'/>
-    <reference name='xmlSchemaAttributeGroup' href='html/libxml-schemasInternals.html#xmlSchemaAttributeGroup'/>
-    <reference name='xmlSchemaAttributeGroupPtr' href='html/libxml-schemasInternals.html#xmlSchemaAttributeGroupPtr'/>
-    <reference name='xmlSchemaAttributeLink' href='html/libxml-schemasInternals.html#xmlSchemaAttributeLink'/>
-    <reference name='xmlSchemaAttributeLinkPtr' href='html/libxml-schemasInternals.html#xmlSchemaAttributeLinkPtr'/>
-    <reference name='xmlSchemaAttributePtr' href='html/libxml-schemasInternals.html#xmlSchemaAttributePtr'/>
-    <reference name='xmlSchemaCheckFacet' href='html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet'/>
-    <reference name='xmlSchemaCleanupTypes' href='html/libxml-xmlschemastypes.html#xmlSchemaCleanupTypes'/>
-    <reference name='xmlSchemaCollapseString' href='html/libxml-xmlschemastypes.html#xmlSchemaCollapseString'/>
-    <reference name='xmlSchemaCompareValues' href='html/libxml-xmlschemastypes.html#xmlSchemaCompareValues'/>
-    <reference name='xmlSchemaCompareValuesWhtsp' href='html/libxml-xmlschemastypes.html#xmlSchemaCompareValuesWhtsp'/>
-    <reference name='xmlSchemaContentType' href='html/libxml-schemasInternals.html#xmlSchemaContentType'/>
-    <reference name='xmlSchemaCopyValue' href='html/libxml-xmlschemastypes.html#xmlSchemaCopyValue'/>
-    <reference name='xmlSchemaDump' href='html/libxml-xmlschemas.html#xmlSchemaDump'/>
-    <reference name='xmlSchemaElement' href='html/libxml-schemasInternals.html#xmlSchemaElement'/>
-    <reference name='xmlSchemaElementPtr' href='html/libxml-schemasInternals.html#xmlSchemaElementPtr'/>
-    <reference name='xmlSchemaFacet' href='html/libxml-schemasInternals.html#xmlSchemaFacet'/>
-    <reference name='xmlSchemaFacetLink' href='html/libxml-schemasInternals.html#xmlSchemaFacetLink'/>
-    <reference name='xmlSchemaFacetLinkPtr' href='html/libxml-schemasInternals.html#xmlSchemaFacetLinkPtr'/>
-    <reference name='xmlSchemaFacetPtr' href='html/libxml-schemasInternals.html#xmlSchemaFacetPtr'/>
-    <reference name='xmlSchemaFree' href='html/libxml-xmlschemas.html#xmlSchemaFree'/>
-    <reference name='xmlSchemaFreeFacet' href='html/libxml-xmlschemastypes.html#xmlSchemaFreeFacet'/>
-    <reference name='xmlSchemaFreeParserCtxt' href='html/libxml-xmlschemas.html#xmlSchemaFreeParserCtxt'/>
-    <reference name='xmlSchemaFreeType' href='html/libxml-schemasInternals.html#xmlSchemaFreeType'/>
-    <reference name='xmlSchemaFreeValidCtxt' href='html/libxml-xmlschemas.html#xmlSchemaFreeValidCtxt'/>
-    <reference name='xmlSchemaFreeValue' href='html/libxml-xmlschemastypes.html#xmlSchemaFreeValue'/>
-    <reference name='xmlSchemaFreeWildcard' href='html/libxml-schemasInternals.html#xmlSchemaFreeWildcard'/>
-    <reference name='xmlSchemaGetBuiltInListSimpleTypeItemType' href='html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-    <reference name='xmlSchemaGetBuiltInType' href='html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInType'/>
-    <reference name='xmlSchemaGetCanonValue' href='html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue'/>
-    <reference name='xmlSchemaGetCanonValueWhtsp' href='html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp'/>
-    <reference name='xmlSchemaGetFacetValueAsULong' href='html/libxml-xmlschemastypes.html#xmlSchemaGetFacetValueAsULong'/>
-    <reference name='xmlSchemaGetParserErrors' href='html/libxml-xmlschemas.html#xmlSchemaGetParserErrors'/>
-    <reference name='xmlSchemaGetPredefinedType' href='html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType'/>
-    <reference name='xmlSchemaGetValType' href='html/libxml-xmlschemastypes.html#xmlSchemaGetValType'/>
-    <reference name='xmlSchemaGetValidErrors' href='html/libxml-xmlschemas.html#xmlSchemaGetValidErrors'/>
-    <reference name='xmlSchemaInitTypes' href='html/libxml-xmlschemastypes.html#xmlSchemaInitTypes'/>
-    <reference name='xmlSchemaIsBuiltInTypeFacet' href='html/libxml-xmlschemastypes.html#xmlSchemaIsBuiltInTypeFacet'/>
-    <reference name='xmlSchemaIsValid' href='html/libxml-xmlschemas.html#xmlSchemaIsValid'/>
-    <reference name='xmlSchemaNewDocParserCtxt' href='html/libxml-xmlschemas.html#xmlSchemaNewDocParserCtxt'/>
-    <reference name='xmlSchemaNewFacet' href='html/libxml-xmlschemastypes.html#xmlSchemaNewFacet'/>
-    <reference name='xmlSchemaNewMemParserCtxt' href='html/libxml-xmlschemas.html#xmlSchemaNewMemParserCtxt'/>
-    <reference name='xmlSchemaNewNOTATIONValue' href='html/libxml-xmlschemastypes.html#xmlSchemaNewNOTATIONValue'/>
-    <reference name='xmlSchemaNewParserCtxt' href='html/libxml-xmlschemas.html#xmlSchemaNewParserCtxt'/>
-    <reference name='xmlSchemaNewQNameValue' href='html/libxml-xmlschemastypes.html#xmlSchemaNewQNameValue'/>
-    <reference name='xmlSchemaNewStringValue' href='html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue'/>
-    <reference name='xmlSchemaNewValidCtxt' href='html/libxml-xmlschemas.html#xmlSchemaNewValidCtxt'/>
-    <reference name='xmlSchemaNotation' href='html/libxml-schemasInternals.html#xmlSchemaNotation'/>
-    <reference name='xmlSchemaNotationPtr' href='html/libxml-schemasInternals.html#xmlSchemaNotationPtr'/>
-    <reference name='xmlSchemaParse' href='html/libxml-xmlschemas.html#xmlSchemaParse'/>
-    <reference name='xmlSchemaParserCtxt' href='html/libxml-xmlschemas.html#xmlSchemaParserCtxt'/>
-    <reference name='xmlSchemaParserCtxtPtr' href='html/libxml-xmlschemas.html#xmlSchemaParserCtxtPtr'/>
-    <reference name='xmlSchemaPtr' href='html/libxml-xmlschemas.html#xmlSchemaPtr'/>
-    <reference name='xmlSchemaSAXPlug' href='html/libxml-xmlschemas.html#xmlSchemaSAXPlug'/>
-    <reference name='xmlSchemaSAXPlugPtr' href='html/libxml-xmlschemas.html#xmlSchemaSAXPlugPtr'/>
-    <reference name='xmlSchemaSAXPlugStruct' href='html/libxml-xmlschemas.html#xmlSchemaSAXPlugStruct'/>
-    <reference name='xmlSchemaSAXUnplug' href='html/libxml-xmlschemas.html#xmlSchemaSAXUnplug'/>
-    <reference name='xmlSchemaSetParserErrors' href='html/libxml-xmlschemas.html#xmlSchemaSetParserErrors'/>
-    <reference name='xmlSchemaSetParserStructuredErrors' href='html/libxml-xmlschemas.html#xmlSchemaSetParserStructuredErrors'/>
-    <reference name='xmlSchemaSetValidErrors' href='html/libxml-xmlschemas.html#xmlSchemaSetValidErrors'/>
-    <reference name='xmlSchemaSetValidOptions' href='html/libxml-xmlschemas.html#xmlSchemaSetValidOptions'/>
-    <reference name='xmlSchemaSetValidStructuredErrors' href='html/libxml-xmlschemas.html#xmlSchemaSetValidStructuredErrors'/>
-    <reference name='xmlSchemaType' href='html/libxml-schemasInternals.html#xmlSchemaType'/>
-    <reference name='xmlSchemaTypeLink' href='html/libxml-schemasInternals.html#xmlSchemaTypeLink'/>
-    <reference name='xmlSchemaTypeLinkPtr' href='html/libxml-schemasInternals.html#xmlSchemaTypeLinkPtr'/>
-    <reference name='xmlSchemaTypePtr' href='html/libxml-schemasInternals.html#xmlSchemaTypePtr'/>
-    <reference name='xmlSchemaTypeType' href='html/libxml-schemasInternals.html#xmlSchemaTypeType'/>
-    <reference name='xmlSchemaVal' href='html/libxml-schemasInternals.html#xmlSchemaVal'/>
-    <reference name='xmlSchemaValPredefTypeNode' href='html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode'/>
-    <reference name='xmlSchemaValPredefTypeNodeNoNorm' href='html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm'/>
-    <reference name='xmlSchemaValPtr' href='html/libxml-schemasInternals.html#xmlSchemaValPtr'/>
-    <reference name='xmlSchemaValType' href='html/libxml-schemasInternals.html#xmlSchemaValType'/>
-    <reference name='xmlSchemaValidCtxt' href='html/libxml-xmlschemas.html#xmlSchemaValidCtxt'/>
-    <reference name='xmlSchemaValidCtxtGetOptions' href='html/libxml-xmlschemas.html#xmlSchemaValidCtxtGetOptions'/>
-    <reference name='xmlSchemaValidCtxtGetParserCtxt' href='html/libxml-xmlschemas.html#xmlSchemaValidCtxtGetParserCtxt'/>
-    <reference name='xmlSchemaValidCtxtPtr' href='html/libxml-xmlschemas.html#xmlSchemaValidCtxtPtr'/>
-    <reference name='xmlSchemaValidError' href='html/libxml-xmlschemas.html#xmlSchemaValidError'/>
-    <reference name='xmlSchemaValidOption' href='html/libxml-xmlschemas.html#xmlSchemaValidOption'/>
-    <reference name='xmlSchemaValidateDoc' href='html/libxml-xmlschemas.html#xmlSchemaValidateDoc'/>
-    <reference name='xmlSchemaValidateFacet' href='html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet'/>
-    <reference name='xmlSchemaValidateFacetWhtsp' href='html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp'/>
-    <reference name='xmlSchemaValidateFile' href='html/libxml-xmlschemas.html#xmlSchemaValidateFile'/>
-    <reference name='xmlSchemaValidateLengthFacet' href='html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet'/>
-    <reference name='xmlSchemaValidateLengthFacetWhtsp' href='html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp'/>
-    <reference name='xmlSchemaValidateListSimpleTypeFacet' href='html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet'/>
-    <reference name='xmlSchemaValidateOneElement' href='html/libxml-xmlschemas.html#xmlSchemaValidateOneElement'/>
-    <reference name='xmlSchemaValidatePredefinedType' href='html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType'/>
-    <reference name='xmlSchemaValidateSetFilename' href='html/libxml-xmlschemas.html#xmlSchemaValidateSetFilename'/>
-    <reference name='xmlSchemaValidateSetLocator' href='html/libxml-xmlschemas.html#xmlSchemaValidateSetLocator'/>
-    <reference name='xmlSchemaValidateStream' href='html/libxml-xmlschemas.html#xmlSchemaValidateStream'/>
-    <reference name='xmlSchemaValidityErrorFunc' href='html/libxml-xmlschemas.html#xmlSchemaValidityErrorFunc'/>
-    <reference name='xmlSchemaValidityLocatorFunc' href='html/libxml-xmlschemas.html#xmlSchemaValidityLocatorFunc'/>
-    <reference name='xmlSchemaValidityWarningFunc' href='html/libxml-xmlschemas.html#xmlSchemaValidityWarningFunc'/>
-    <reference name='xmlSchemaValueAppend' href='html/libxml-xmlschemastypes.html#xmlSchemaValueAppend'/>
-    <reference name='xmlSchemaValueGetAsBoolean' href='html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsBoolean'/>
-    <reference name='xmlSchemaValueGetAsString' href='html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsString'/>
-    <reference name='xmlSchemaValueGetNext' href='html/libxml-xmlschemastypes.html#xmlSchemaValueGetNext'/>
-    <reference name='xmlSchemaWhiteSpaceReplace' href='html/libxml-xmlschemastypes.html#xmlSchemaWhiteSpaceReplace'/>
-    <reference name='xmlSchemaWhitespaceValueType' href='html/libxml-xmlschemastypes.html#xmlSchemaWhitespaceValueType'/>
-    <reference name='xmlSchemaWildcard' href='html/libxml-schemasInternals.html#xmlSchemaWildcard'/>
-    <reference name='xmlSchemaWildcardNs' href='html/libxml-schemasInternals.html#xmlSchemaWildcardNs'/>
-    <reference name='xmlSchemaWildcardNsPtr' href='html/libxml-schemasInternals.html#xmlSchemaWildcardNsPtr'/>
-    <reference name='xmlSchemaWildcardPtr' href='html/libxml-schemasInternals.html#xmlSchemaWildcardPtr'/>
-    <reference name='xmlSchematron' href='html/libxml-schematron.html#xmlSchematron'/>
-    <reference name='xmlSchematronFree' href='html/libxml-schematron.html#xmlSchematronFree'/>
-    <reference name='xmlSchematronFreeParserCtxt' href='html/libxml-schematron.html#xmlSchematronFreeParserCtxt'/>
-    <reference name='xmlSchematronFreeValidCtxt' href='html/libxml-schematron.html#xmlSchematronFreeValidCtxt'/>
-    <reference name='xmlSchematronNewDocParserCtxt' href='html/libxml-schematron.html#xmlSchematronNewDocParserCtxt'/>
-    <reference name='xmlSchematronNewMemParserCtxt' href='html/libxml-schematron.html#xmlSchematronNewMemParserCtxt'/>
-    <reference name='xmlSchematronNewParserCtxt' href='html/libxml-schematron.html#xmlSchematronNewParserCtxt'/>
-    <reference name='xmlSchematronNewValidCtxt' href='html/libxml-schematron.html#xmlSchematronNewValidCtxt'/>
-    <reference name='xmlSchematronParse' href='html/libxml-schematron.html#xmlSchematronParse'/>
-    <reference name='xmlSchematronParserCtxt' href='html/libxml-schematron.html#xmlSchematronParserCtxt'/>
-    <reference name='xmlSchematronParserCtxtPtr' href='html/libxml-schematron.html#xmlSchematronParserCtxtPtr'/>
-    <reference name='xmlSchematronPtr' href='html/libxml-schematron.html#xmlSchematronPtr'/>
-    <reference name='xmlSchematronSetValidStructuredErrors' href='html/libxml-schematron.html#xmlSchematronSetValidStructuredErrors'/>
-    <reference name='xmlSchematronValidCtxt' href='html/libxml-schematron.html#xmlSchematronValidCtxt'/>
-    <reference name='xmlSchematronValidCtxtPtr' href='html/libxml-schematron.html#xmlSchematronValidCtxtPtr'/>
-    <reference name='xmlSchematronValidOptions' href='html/libxml-schematron.html#xmlSchematronValidOptions'/>
-    <reference name='xmlSchematronValidateDoc' href='html/libxml-schematron.html#xmlSchematronValidateDoc'/>
-    <reference name='xmlSchematronValidityErrorFunc' href='html/libxml-schematron.html#xmlSchematronValidityErrorFunc'/>
-    <reference name='xmlSchematronValidityWarningFunc' href='html/libxml-schematron.html#xmlSchematronValidityWarningFunc'/>
-    <reference name='xmlSearchNs' href='html/libxml-tree.html#xmlSearchNs'/>
-    <reference name='xmlSearchNsByHref' href='html/libxml-tree.html#xmlSearchNsByHref'/>
-    <reference name='xmlSetBufferAllocationScheme' href='html/libxml-tree.html#xmlSetBufferAllocationScheme'/>
-    <reference name='xmlSetCompressMode' href='html/libxml-tree.html#xmlSetCompressMode'/>
-    <reference name='xmlSetDocCompressMode' href='html/libxml-tree.html#xmlSetDocCompressMode'/>
-    <reference name='xmlSetEntityReferenceFunc' href='html/libxml-parserInternals.html#xmlSetEntityReferenceFunc'/>
-    <reference name='xmlSetExternalEntityLoader' href='html/libxml-parser.html#xmlSetExternalEntityLoader'/>
-    <reference name='xmlSetFeature' href='html/libxml-parser.html#xmlSetFeature'/>
-    <reference name='xmlSetGenericErrorFunc' href='html/libxml-xmlerror.html#xmlSetGenericErrorFunc'/>
-    <reference name='xmlSetListDoc' href='html/libxml-tree.html#xmlSetListDoc'/>
-    <reference name='xmlSetNs' href='html/libxml-tree.html#xmlSetNs'/>
-    <reference name='xmlSetNsProp' href='html/libxml-tree.html#xmlSetNsProp'/>
-    <reference name='xmlSetProp' href='html/libxml-tree.html#xmlSetProp'/>
-    <reference name='xmlSetStructuredErrorFunc' href='html/libxml-xmlerror.html#xmlSetStructuredErrorFunc'/>
-    <reference name='xmlSetTreeDoc' href='html/libxml-tree.html#xmlSetTreeDoc'/>
-    <reference name='xmlSetupParserForBuffer' href='html/libxml-parser.html#xmlSetupParserForBuffer'/>
-    <reference name='xmlShell' href='html/libxml-debugXML.html#xmlShell'/>
-    <reference name='xmlShellBase' href='html/libxml-debugXML.html#xmlShellBase'/>
-    <reference name='xmlShellCat' href='html/libxml-debugXML.html#xmlShellCat'/>
-    <reference name='xmlShellCmd' href='html/libxml-debugXML.html#xmlShellCmd'/>
-    <reference name='xmlShellCtxt' href='html/libxml-debugXML.html#xmlShellCtxt'/>
-    <reference name='xmlShellCtxtPtr' href='html/libxml-debugXML.html#xmlShellCtxtPtr'/>
-    <reference name='xmlShellDir' href='html/libxml-debugXML.html#xmlShellDir'/>
-    <reference name='xmlShellDu' href='html/libxml-debugXML.html#xmlShellDu'/>
-    <reference name='xmlShellList' href='html/libxml-debugXML.html#xmlShellList'/>
-    <reference name='xmlShellLoad' href='html/libxml-debugXML.html#xmlShellLoad'/>
-    <reference name='xmlShellPrintNode' href='html/libxml-debugXML.html#xmlShellPrintNode'/>
-    <reference name='xmlShellPrintXPathError' href='html/libxml-debugXML.html#xmlShellPrintXPathError'/>
-    <reference name='xmlShellPrintXPathResult' href='html/libxml-debugXML.html#xmlShellPrintXPathResult'/>
-    <reference name='xmlShellPwd' href='html/libxml-debugXML.html#xmlShellPwd'/>
-    <reference name='xmlShellReadlineFunc' href='html/libxml-debugXML.html#xmlShellReadlineFunc'/>
-    <reference name='xmlShellSave' href='html/libxml-debugXML.html#xmlShellSave'/>
-    <reference name='xmlShellValidate' href='html/libxml-debugXML.html#xmlShellValidate'/>
-    <reference name='xmlShellWrite' href='html/libxml-debugXML.html#xmlShellWrite'/>
-    <reference name='xmlSkipBlankChars' href='html/libxml-parserInternals.html#xmlSkipBlankChars'/>
-    <reference name='xmlSnprintfElementContent' href='html/libxml-valid.html#xmlSnprintfElementContent'/>
-    <reference name='xmlSplitQName' href='html/libxml-parserInternals.html#xmlSplitQName'/>
-    <reference name='xmlSplitQName2' href='html/libxml-tree.html#xmlSplitQName2'/>
-    <reference name='xmlSplitQName3' href='html/libxml-tree.html#xmlSplitQName3'/>
-    <reference name='xmlSprintfElementContent' href='html/libxml-valid.html#xmlSprintfElementContent'/>
-    <reference name='xmlStartTag' href='html/libxml-parser.html#xmlStartTag'/>
-    <reference name='xmlStopParser' href='html/libxml-parser.html#xmlStopParser'/>
-    <reference name='xmlStrEqual' href='html/libxml-xmlstring.html#xmlStrEqual'/>
-    <reference name='xmlStrPrintf' href='html/libxml-xmlstring.html#xmlStrPrintf'/>
-    <reference name='xmlStrQEqual' href='html/libxml-xmlstring.html#xmlStrQEqual'/>
-    <reference name='xmlStrVPrintf' href='html/libxml-xmlstring.html#xmlStrVPrintf'/>
-    <reference name='xmlStrcasecmp' href='html/libxml-xmlstring.html#xmlStrcasecmp'/>
-    <reference name='xmlStrcasestr' href='html/libxml-xmlstring.html#xmlStrcasestr'/>
-    <reference name='xmlStrcat' href='html/libxml-xmlstring.html#xmlStrcat'/>
-    <reference name='xmlStrchr' href='html/libxml-xmlstring.html#xmlStrchr'/>
-    <reference name='xmlStrcmp' href='html/libxml-xmlstring.html#xmlStrcmp'/>
-    <reference name='xmlStrdup' href='html/libxml-xmlstring.html#xmlStrdup'/>
-    <reference name='xmlStrdupFunc' href='html/libxml-xmlmemory.html#xmlStrdupFunc'/>
-    <reference name='xmlStreamCtxt' href='html/libxml-pattern.html#xmlStreamCtxt'/>
-    <reference name='xmlStreamCtxtPtr' href='html/libxml-pattern.html#xmlStreamCtxtPtr'/>
-    <reference name='xmlStreamPop' href='html/libxml-pattern.html#xmlStreamPop'/>
-    <reference name='xmlStreamPush' href='html/libxml-pattern.html#xmlStreamPush'/>
-    <reference name='xmlStreamPushAttr' href='html/libxml-pattern.html#xmlStreamPushAttr'/>
-    <reference name='xmlStreamPushNode' href='html/libxml-pattern.html#xmlStreamPushNode'/>
-    <reference name='xmlStreamWantsAnyNode' href='html/libxml-pattern.html#xmlStreamWantsAnyNode'/>
-    <reference name='xmlStringComment' href='html/libxml-parserInternals.html#xmlStringComment'/>
-    <reference name='xmlStringCurrentChar' href='html/libxml-parserInternals.html#xmlStringCurrentChar'/>
-    <reference name='xmlStringDecodeEntities' href='html/libxml-parserInternals.html#xmlStringDecodeEntities'/>
-    <reference name='xmlStringGetNodeList' href='html/libxml-tree.html#xmlStringGetNodeList'/>
-    <reference name='xmlStringLenDecodeEntities' href='html/libxml-parserInternals.html#xmlStringLenDecodeEntities'/>
-    <reference name='xmlStringLenGetNodeList' href='html/libxml-tree.html#xmlStringLenGetNodeList'/>
-    <reference name='xmlStringText' href='html/libxml-parserInternals.html#xmlStringText'/>
-    <reference name='xmlStringTextNoenc' href='html/libxml-parserInternals.html#xmlStringTextNoenc'/>
-    <reference name='xmlStrlen' href='html/libxml-xmlstring.html#xmlStrlen'/>
-    <reference name='xmlStrncasecmp' href='html/libxml-xmlstring.html#xmlStrncasecmp'/>
-    <reference name='xmlStrncat' href='html/libxml-xmlstring.html#xmlStrncat'/>
-    <reference name='xmlStrncatNew' href='html/libxml-xmlstring.html#xmlStrncatNew'/>
-    <reference name='xmlStrncmp' href='html/libxml-xmlstring.html#xmlStrncmp'/>
-    <reference name='xmlStrndup' href='html/libxml-xmlstring.html#xmlStrndup'/>
-    <reference name='xmlStrstr' href='html/libxml-xmlstring.html#xmlStrstr'/>
-    <reference name='xmlStrsub' href='html/libxml-xmlstring.html#xmlStrsub'/>
-    <reference name='xmlStructuredError' href='html/libxml-globals.html#xmlStructuredError'/>
-    <reference name='xmlStructuredErrorContext' href='html/libxml-globals.html#xmlStructuredErrorContext'/>
-    <reference name='xmlStructuredErrorFunc' href='html/libxml-xmlerror.html#xmlStructuredErrorFunc'/>
-    <reference name='xmlSubstituteEntitiesDefault' href='html/libxml-parser.html#xmlSubstituteEntitiesDefault'/>
-    <reference name='xmlSubstituteEntitiesDefaultValue' href='html/libxml-globals.html#xmlSubstituteEntitiesDefaultValue'/>
-    <reference name='xmlSwitchEncoding' href='html/libxml-parserInternals.html#xmlSwitchEncoding'/>
-    <reference name='xmlSwitchInputEncoding' href='html/libxml-parserInternals.html#xmlSwitchInputEncoding'/>
-    <reference name='xmlSwitchToEncoding' href='html/libxml-parserInternals.html#xmlSwitchToEncoding'/>
-    <reference name='xmlTextConcat' href='html/libxml-tree.html#xmlTextConcat'/>
-    <reference name='xmlTextMerge' href='html/libxml-tree.html#xmlTextMerge'/>
-    <reference name='xmlTextReader' href='html/libxml-xmlreader.html#xmlTextReader'/>
-    <reference name='xmlTextReaderAttributeCount' href='html/libxml-xmlreader.html#xmlTextReaderAttributeCount'/>
-    <reference name='xmlTextReaderBaseUri' href='html/libxml-xmlreader.html#xmlTextReaderBaseUri'/>
-    <reference name='xmlTextReaderByteConsumed' href='html/libxml-xmlreader.html#xmlTextReaderByteConsumed'/>
-    <reference name='xmlTextReaderClose' href='html/libxml-xmlreader.html#xmlTextReaderClose'/>
-    <reference name='xmlTextReaderConstBaseUri' href='html/libxml-xmlreader.html#xmlTextReaderConstBaseUri'/>
-    <reference name='xmlTextReaderConstEncoding' href='html/libxml-xmlreader.html#xmlTextReaderConstEncoding'/>
-    <reference name='xmlTextReaderConstLocalName' href='html/libxml-xmlreader.html#xmlTextReaderConstLocalName'/>
-    <reference name='xmlTextReaderConstName' href='html/libxml-xmlreader.html#xmlTextReaderConstName'/>
-    <reference name='xmlTextReaderConstNamespaceUri' href='html/libxml-xmlreader.html#xmlTextReaderConstNamespaceUri'/>
-    <reference name='xmlTextReaderConstPrefix' href='html/libxml-xmlreader.html#xmlTextReaderConstPrefix'/>
-    <reference name='xmlTextReaderConstString' href='html/libxml-xmlreader.html#xmlTextReaderConstString'/>
-    <reference name='xmlTextReaderConstValue' href='html/libxml-xmlreader.html#xmlTextReaderConstValue'/>
-    <reference name='xmlTextReaderConstXmlLang' href='html/libxml-xmlreader.html#xmlTextReaderConstXmlLang'/>
-    <reference name='xmlTextReaderConstXmlVersion' href='html/libxml-xmlreader.html#xmlTextReaderConstXmlVersion'/>
-    <reference name='xmlTextReaderCurrentDoc' href='html/libxml-xmlreader.html#xmlTextReaderCurrentDoc'/>
-    <reference name='xmlTextReaderCurrentNode' href='html/libxml-xmlreader.html#xmlTextReaderCurrentNode'/>
-    <reference name='xmlTextReaderDepth' href='html/libxml-xmlreader.html#xmlTextReaderDepth'/>
-    <reference name='xmlTextReaderErrorFunc' href='html/libxml-xmlreader.html#xmlTextReaderErrorFunc'/>
-    <reference name='xmlTextReaderExpand' href='html/libxml-xmlreader.html#xmlTextReaderExpand'/>
-    <reference name='xmlTextReaderGetAttribute' href='html/libxml-xmlreader.html#xmlTextReaderGetAttribute'/>
-    <reference name='xmlTextReaderGetAttributeNo' href='html/libxml-xmlreader.html#xmlTextReaderGetAttributeNo'/>
-    <reference name='xmlTextReaderGetAttributeNs' href='html/libxml-xmlreader.html#xmlTextReaderGetAttributeNs'/>
-    <reference name='xmlTextReaderGetErrorHandler' href='html/libxml-xmlreader.html#xmlTextReaderGetErrorHandler'/>
-    <reference name='xmlTextReaderGetParserColumnNumber' href='html/libxml-xmlreader.html#xmlTextReaderGetParserColumnNumber'/>
-    <reference name='xmlTextReaderGetParserLineNumber' href='html/libxml-xmlreader.html#xmlTextReaderGetParserLineNumber'/>
-    <reference name='xmlTextReaderGetParserProp' href='html/libxml-xmlreader.html#xmlTextReaderGetParserProp'/>
-    <reference name='xmlTextReaderGetRemainder' href='html/libxml-xmlreader.html#xmlTextReaderGetRemainder'/>
-    <reference name='xmlTextReaderHasAttributes' href='html/libxml-xmlreader.html#xmlTextReaderHasAttributes'/>
-    <reference name='xmlTextReaderHasValue' href='html/libxml-xmlreader.html#xmlTextReaderHasValue'/>
-    <reference name='xmlTextReaderIsDefault' href='html/libxml-xmlreader.html#xmlTextReaderIsDefault'/>
-    <reference name='xmlTextReaderIsEmptyElement' href='html/libxml-xmlreader.html#xmlTextReaderIsEmptyElement'/>
-    <reference name='xmlTextReaderIsNamespaceDecl' href='html/libxml-xmlreader.html#xmlTextReaderIsNamespaceDecl'/>
-    <reference name='xmlTextReaderIsValid' href='html/libxml-xmlreader.html#xmlTextReaderIsValid'/>
-    <reference name='xmlTextReaderLocalName' href='html/libxml-xmlreader.html#xmlTextReaderLocalName'/>
-    <reference name='xmlTextReaderLocatorBaseURI' href='html/libxml-xmlreader.html#xmlTextReaderLocatorBaseURI'/>
-    <reference name='xmlTextReaderLocatorLineNumber' href='html/libxml-xmlreader.html#xmlTextReaderLocatorLineNumber'/>
-    <reference name='xmlTextReaderLocatorPtr' href='html/libxml-xmlreader.html#xmlTextReaderLocatorPtr'/>
-    <reference name='xmlTextReaderLookupNamespace' href='html/libxml-xmlreader.html#xmlTextReaderLookupNamespace'/>
-    <reference name='xmlTextReaderMode' href='html/libxml-xmlreader.html#xmlTextReaderMode'/>
-    <reference name='xmlTextReaderMoveToAttribute' href='html/libxml-xmlreader.html#xmlTextReaderMoveToAttribute'/>
-    <reference name='xmlTextReaderMoveToAttributeNo' href='html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNo'/>
-    <reference name='xmlTextReaderMoveToAttributeNs' href='html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNs'/>
-    <reference name='xmlTextReaderMoveToElement' href='html/libxml-xmlreader.html#xmlTextReaderMoveToElement'/>
-    <reference name='xmlTextReaderMoveToFirstAttribute' href='html/libxml-xmlreader.html#xmlTextReaderMoveToFirstAttribute'/>
-    <reference name='xmlTextReaderMoveToNextAttribute' href='html/libxml-xmlreader.html#xmlTextReaderMoveToNextAttribute'/>
-    <reference name='xmlTextReaderName' href='html/libxml-xmlreader.html#xmlTextReaderName'/>
-    <reference name='xmlTextReaderNamespaceUri' href='html/libxml-xmlreader.html#xmlTextReaderNamespaceUri'/>
-    <reference name='xmlTextReaderNext' href='html/libxml-xmlreader.html#xmlTextReaderNext'/>
-    <reference name='xmlTextReaderNextSibling' href='html/libxml-xmlreader.html#xmlTextReaderNextSibling'/>
-    <reference name='xmlTextReaderNodeType' href='html/libxml-xmlreader.html#xmlTextReaderNodeType'/>
-    <reference name='xmlTextReaderNormalization' href='html/libxml-xmlreader.html#xmlTextReaderNormalization'/>
-    <reference name='xmlTextReaderPrefix' href='html/libxml-xmlreader.html#xmlTextReaderPrefix'/>
-    <reference name='xmlTextReaderPreserve' href='html/libxml-xmlreader.html#xmlTextReaderPreserve'/>
-    <reference name='xmlTextReaderPreservePattern' href='html/libxml-xmlreader.html#xmlTextReaderPreservePattern'/>
-    <reference name='xmlTextReaderPtr' href='html/libxml-xmlreader.html#xmlTextReaderPtr'/>
-    <reference name='xmlTextReaderQuoteChar' href='html/libxml-xmlreader.html#xmlTextReaderQuoteChar'/>
-    <reference name='xmlTextReaderRead' href='html/libxml-xmlreader.html#xmlTextReaderRead'/>
-    <reference name='xmlTextReaderReadAttributeValue' href='html/libxml-xmlreader.html#xmlTextReaderReadAttributeValue'/>
-    <reference name='xmlTextReaderReadInnerXml' href='html/libxml-xmlreader.html#xmlTextReaderReadInnerXml'/>
-    <reference name='xmlTextReaderReadOuterXml' href='html/libxml-xmlreader.html#xmlTextReaderReadOuterXml'/>
-    <reference name='xmlTextReaderReadState' href='html/libxml-xmlreader.html#xmlTextReaderReadState'/>
-    <reference name='xmlTextReaderReadString' href='html/libxml-xmlreader.html#xmlTextReaderReadString'/>
-    <reference name='xmlTextReaderRelaxNGSetSchema' href='html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema'/>
-    <reference name='xmlTextReaderRelaxNGValidate' href='html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate'/>
-    <reference name='xmlTextReaderRelaxNGValidateCtxt' href='html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidateCtxt'/>
-    <reference name='xmlTextReaderSchemaValidate' href='html/libxml-xmlreader.html#xmlTextReaderSchemaValidate'/>
-    <reference name='xmlTextReaderSchemaValidateCtxt' href='html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt'/>
-    <reference name='xmlTextReaderSetErrorHandler' href='html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler'/>
-    <reference name='xmlTextReaderSetParserProp' href='html/libxml-xmlreader.html#xmlTextReaderSetParserProp'/>
-    <reference name='xmlTextReaderSetSchema' href='html/libxml-xmlreader.html#xmlTextReaderSetSchema'/>
-    <reference name='xmlTextReaderSetStructuredErrorHandler' href='html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler'/>
-    <reference name='xmlTextReaderSetup' href='html/libxml-xmlreader.html#xmlTextReaderSetup'/>
-    <reference name='xmlTextReaderStandalone' href='html/libxml-xmlreader.html#xmlTextReaderStandalone'/>
-    <reference name='xmlTextReaderValue' href='html/libxml-xmlreader.html#xmlTextReaderValue'/>
-    <reference name='xmlTextReaderXmlLang' href='html/libxml-xmlreader.html#xmlTextReaderXmlLang'/>
-    <reference name='xmlTextWriter' href='html/libxml-xmlwriter.html#xmlTextWriter'/>
-    <reference name='xmlTextWriterEndAttribute' href='html/libxml-xmlwriter.html#xmlTextWriterEndAttribute'/>
-    <reference name='xmlTextWriterEndCDATA' href='html/libxml-xmlwriter.html#xmlTextWriterEndCDATA'/>
-    <reference name='xmlTextWriterEndComment' href='html/libxml-xmlwriter.html#xmlTextWriterEndComment'/>
-    <reference name='xmlTextWriterEndDTD' href='html/libxml-xmlwriter.html#xmlTextWriterEndDTD'/>
-    <reference name='xmlTextWriterEndDTDAttlist' href='html/libxml-xmlwriter.html#xmlTextWriterEndDTDAttlist'/>
-    <reference name='xmlTextWriterEndDTDElement' href='html/libxml-xmlwriter.html#xmlTextWriterEndDTDElement'/>
-    <reference name='xmlTextWriterEndDTDEntity' href='html/libxml-xmlwriter.html#xmlTextWriterEndDTDEntity'/>
-    <reference name='xmlTextWriterEndDocument' href='html/libxml-xmlwriter.html#xmlTextWriterEndDocument'/>
-    <reference name='xmlTextWriterEndElement' href='html/libxml-xmlwriter.html#xmlTextWriterEndElement'/>
-    <reference name='xmlTextWriterEndPI' href='html/libxml-xmlwriter.html#xmlTextWriterEndPI'/>
-    <reference name='xmlTextWriterFlush' href='html/libxml-xmlwriter.html#xmlTextWriterFlush'/>
-    <reference name='xmlTextWriterFullEndElement' href='html/libxml-xmlwriter.html#xmlTextWriterFullEndElement'/>
-    <reference name='xmlTextWriterPtr' href='html/libxml-xmlwriter.html#xmlTextWriterPtr'/>
-    <reference name='xmlTextWriterSetIndent' href='html/libxml-xmlwriter.html#xmlTextWriterSetIndent'/>
-    <reference name='xmlTextWriterSetIndentString' href='html/libxml-xmlwriter.html#xmlTextWriterSetIndentString'/>
-    <reference name='xmlTextWriterSetQuoteChar' href='html/libxml-xmlwriter.html#xmlTextWriterSetQuoteChar'/>
-    <reference name='xmlTextWriterStartAttribute' href='html/libxml-xmlwriter.html#xmlTextWriterStartAttribute'/>
-    <reference name='xmlTextWriterStartAttributeNS' href='html/libxml-xmlwriter.html#xmlTextWriterStartAttributeNS'/>
-    <reference name='xmlTextWriterStartCDATA' href='html/libxml-xmlwriter.html#xmlTextWriterStartCDATA'/>
-    <reference name='xmlTextWriterStartComment' href='html/libxml-xmlwriter.html#xmlTextWriterStartComment'/>
-    <reference name='xmlTextWriterStartDTD' href='html/libxml-xmlwriter.html#xmlTextWriterStartDTD'/>
-    <reference name='xmlTextWriterStartDTDAttlist' href='html/libxml-xmlwriter.html#xmlTextWriterStartDTDAttlist'/>
-    <reference name='xmlTextWriterStartDTDElement' href='html/libxml-xmlwriter.html#xmlTextWriterStartDTDElement'/>
-    <reference name='xmlTextWriterStartDTDEntity' href='html/libxml-xmlwriter.html#xmlTextWriterStartDTDEntity'/>
-    <reference name='xmlTextWriterStartDocument' href='html/libxml-xmlwriter.html#xmlTextWriterStartDocument'/>
-    <reference name='xmlTextWriterStartElement' href='html/libxml-xmlwriter.html#xmlTextWriterStartElement'/>
-    <reference name='xmlTextWriterStartElementNS' href='html/libxml-xmlwriter.html#xmlTextWriterStartElementNS'/>
-    <reference name='xmlTextWriterStartPI' href='html/libxml-xmlwriter.html#xmlTextWriterStartPI'/>
-    <reference name='xmlTextWriterWriteAttribute' href='html/libxml-xmlwriter.html#xmlTextWriterWriteAttribute'/>
-    <reference name='xmlTextWriterWriteAttributeNS' href='html/libxml-xmlwriter.html#xmlTextWriterWriteAttributeNS'/>
-    <reference name='xmlTextWriterWriteBase64' href='html/libxml-xmlwriter.html#xmlTextWriterWriteBase64'/>
-    <reference name='xmlTextWriterWriteBinHex' href='html/libxml-xmlwriter.html#xmlTextWriterWriteBinHex'/>
-    <reference name='xmlTextWriterWriteCDATA' href='html/libxml-xmlwriter.html#xmlTextWriterWriteCDATA'/>
-    <reference name='xmlTextWriterWriteComment' href='html/libxml-xmlwriter.html#xmlTextWriterWriteComment'/>
-    <reference name='xmlTextWriterWriteDTD' href='html/libxml-xmlwriter.html#xmlTextWriterWriteDTD'/>
-    <reference name='xmlTextWriterWriteDTDAttlist' href='html/libxml-xmlwriter.html#xmlTextWriterWriteDTDAttlist'/>
-    <reference name='xmlTextWriterWriteDTDElement' href='html/libxml-xmlwriter.html#xmlTextWriterWriteDTDElement'/>
-    <reference name='xmlTextWriterWriteDTDEntity' href='html/libxml-xmlwriter.html#xmlTextWriterWriteDTDEntity'/>
-    <reference name='xmlTextWriterWriteDTDExternalEntity' href='html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntity'/>
-    <reference name='xmlTextWriterWriteDTDExternalEntityContents' href='html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntityContents'/>
-    <reference name='xmlTextWriterWriteDTDInternalEntity' href='html/libxml-xmlwriter.html#xmlTextWriterWriteDTDInternalEntity'/>
-    <reference name='xmlTextWriterWriteDTDNotation' href='html/libxml-xmlwriter.html#xmlTextWriterWriteDTDNotation'/>
-    <reference name='xmlTextWriterWriteDocType' href='html/libxml-xmlwriter.html#xmlTextWriterWriteDocType'/>
-    <reference name='xmlTextWriterWriteElement' href='html/libxml-xmlwriter.html#xmlTextWriterWriteElement'/>
-    <reference name='xmlTextWriterWriteElementNS' href='html/libxml-xmlwriter.html#xmlTextWriterWriteElementNS'/>
-    <reference name='xmlTextWriterWriteFormatAttribute' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttribute'/>
-    <reference name='xmlTextWriterWriteFormatAttributeNS' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttributeNS'/>
-    <reference name='xmlTextWriterWriteFormatCDATA' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatCDATA'/>
-    <reference name='xmlTextWriterWriteFormatComment' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatComment'/>
-    <reference name='xmlTextWriterWriteFormatDTD' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTD'/>
-    <reference name='xmlTextWriterWriteFormatDTDAttlist' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDAttlist'/>
-    <reference name='xmlTextWriterWriteFormatDTDElement' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDElement'/>
-    <reference name='xmlTextWriterWriteFormatDTDInternalEntity' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDInternalEntity'/>
-    <reference name='xmlTextWriterWriteFormatElement' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElement'/>
-    <reference name='xmlTextWriterWriteFormatElementNS' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElementNS'/>
-    <reference name='xmlTextWriterWriteFormatPI' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatPI'/>
-    <reference name='xmlTextWriterWriteFormatRaw' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatRaw'/>
-    <reference name='xmlTextWriterWriteFormatString' href='html/libxml-xmlwriter.html#xmlTextWriterWriteFormatString'/>
-    <reference name='xmlTextWriterWritePI' href='html/libxml-xmlwriter.html#xmlTextWriterWritePI'/>
-    <reference name='xmlTextWriterWriteProcessingInstruction' href='html/libxml-xmlwriter.html#xmlTextWriterWriteProcessingInstruction'/>
-    <reference name='xmlTextWriterWriteRaw' href='html/libxml-xmlwriter.html#xmlTextWriterWriteRaw'/>
-    <reference name='xmlTextWriterWriteRawLen' href='html/libxml-xmlwriter.html#xmlTextWriterWriteRawLen'/>
-    <reference name='xmlTextWriterWriteString' href='html/libxml-xmlwriter.html#xmlTextWriterWriteString'/>
-    <reference name='xmlTextWriterWriteVFormatAttribute' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttribute'/>
-    <reference name='xmlTextWriterWriteVFormatAttributeNS' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttributeNS'/>
-    <reference name='xmlTextWriterWriteVFormatCDATA' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatCDATA'/>
-    <reference name='xmlTextWriterWriteVFormatComment' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatComment'/>
-    <reference name='xmlTextWriterWriteVFormatDTD' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTD'/>
-    <reference name='xmlTextWriterWriteVFormatDTDAttlist' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDAttlist'/>
-    <reference name='xmlTextWriterWriteVFormatDTDElement' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDElement'/>
-    <reference name='xmlTextWriterWriteVFormatDTDInternalEntity' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDInternalEntity'/>
-    <reference name='xmlTextWriterWriteVFormatElement' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElement'/>
-    <reference name='xmlTextWriterWriteVFormatElementNS' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElementNS'/>
-    <reference name='xmlTextWriterWriteVFormatPI' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatPI'/>
-    <reference name='xmlTextWriterWriteVFormatRaw' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatRaw'/>
-    <reference name='xmlTextWriterWriteVFormatString' href='html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatString'/>
-    <reference name='xmlThrDefBufferAllocScheme' href='html/libxml-globals.html#xmlThrDefBufferAllocScheme'/>
-    <reference name='xmlThrDefDefaultBufferSize' href='html/libxml-globals.html#xmlThrDefDefaultBufferSize'/>
-    <reference name='xmlThrDefDeregisterNodeDefault' href='html/libxml-globals.html#xmlThrDefDeregisterNodeDefault'/>
-    <reference name='xmlThrDefDoValidityCheckingDefaultValue' href='html/libxml-globals.html#xmlThrDefDoValidityCheckingDefaultValue'/>
-    <reference name='xmlThrDefGetWarningsDefaultValue' href='html/libxml-globals.html#xmlThrDefGetWarningsDefaultValue'/>
-    <reference name='xmlThrDefIndentTreeOutput' href='html/libxml-globals.html#xmlThrDefIndentTreeOutput'/>
-    <reference name='xmlThrDefKeepBlanksDefaultValue' href='html/libxml-globals.html#xmlThrDefKeepBlanksDefaultValue'/>
-    <reference name='xmlThrDefLineNumbersDefaultValue' href='html/libxml-globals.html#xmlThrDefLineNumbersDefaultValue'/>
-    <reference name='xmlThrDefLoadExtDtdDefaultValue' href='html/libxml-globals.html#xmlThrDefLoadExtDtdDefaultValue'/>
-    <reference name='xmlThrDefOutputBufferCreateFilenameDefault' href='html/libxml-globals.html#xmlThrDefOutputBufferCreateFilenameDefault'/>
-    <reference name='xmlThrDefParserDebugEntities' href='html/libxml-globals.html#xmlThrDefParserDebugEntities'/>
-    <reference name='xmlThrDefParserInputBufferCreateFilenameDefault' href='html/libxml-globals.html#xmlThrDefParserInputBufferCreateFilenameDefault'/>
-    <reference name='xmlThrDefPedanticParserDefaultValue' href='html/libxml-globals.html#xmlThrDefPedanticParserDefaultValue'/>
-    <reference name='xmlThrDefRegisterNodeDefault' href='html/libxml-globals.html#xmlThrDefRegisterNodeDefault'/>
-    <reference name='xmlThrDefSaveNoEmptyTags' href='html/libxml-globals.html#xmlThrDefSaveNoEmptyTags'/>
-    <reference name='xmlThrDefSetGenericErrorFunc' href='html/libxml-globals.html#xmlThrDefSetGenericErrorFunc'/>
-    <reference name='xmlThrDefSetStructuredErrorFunc' href='html/libxml-globals.html#xmlThrDefSetStructuredErrorFunc'/>
-    <reference name='xmlThrDefSubstituteEntitiesDefaultValue' href='html/libxml-globals.html#xmlThrDefSubstituteEntitiesDefaultValue'/>
-    <reference name='xmlThrDefTreeIndentString' href='html/libxml-globals.html#xmlThrDefTreeIndentString'/>
-    <reference name='xmlTreeIndentString' href='html/libxml-globals.html#xmlTreeIndentString'/>
-    <reference name='xmlUCSIsAegeanNumbers' href='html/libxml-xmlunicode.html#xmlUCSIsAegeanNumbers'/>
-    <reference name='xmlUCSIsAlphabeticPresentationForms' href='html/libxml-xmlunicode.html#xmlUCSIsAlphabeticPresentationForms'/>
-    <reference name='xmlUCSIsArabic' href='html/libxml-xmlunicode.html#xmlUCSIsArabic'/>
-    <reference name='xmlUCSIsArabicPresentationFormsA' href='html/libxml-xmlunicode.html#xmlUCSIsArabicPresentationFormsA'/>
-    <reference name='xmlUCSIsArabicPresentationFormsB' href='html/libxml-xmlunicode.html#xmlUCSIsArabicPresentationFormsB'/>
-    <reference name='xmlUCSIsArmenian' href='html/libxml-xmlunicode.html#xmlUCSIsArmenian'/>
-    <reference name='xmlUCSIsArrows' href='html/libxml-xmlunicode.html#xmlUCSIsArrows'/>
-    <reference name='xmlUCSIsBasicLatin' href='html/libxml-xmlunicode.html#xmlUCSIsBasicLatin'/>
-    <reference name='xmlUCSIsBengali' href='html/libxml-xmlunicode.html#xmlUCSIsBengali'/>
-    <reference name='xmlUCSIsBlock' href='html/libxml-xmlunicode.html#xmlUCSIsBlock'/>
-    <reference name='xmlUCSIsBlockElements' href='html/libxml-xmlunicode.html#xmlUCSIsBlockElements'/>
-    <reference name='xmlUCSIsBopomofo' href='html/libxml-xmlunicode.html#xmlUCSIsBopomofo'/>
-    <reference name='xmlUCSIsBopomofoExtended' href='html/libxml-xmlunicode.html#xmlUCSIsBopomofoExtended'/>
-    <reference name='xmlUCSIsBoxDrawing' href='html/libxml-xmlunicode.html#xmlUCSIsBoxDrawing'/>
-    <reference name='xmlUCSIsBraillePatterns' href='html/libxml-xmlunicode.html#xmlUCSIsBraillePatterns'/>
-    <reference name='xmlUCSIsBuhid' href='html/libxml-xmlunicode.html#xmlUCSIsBuhid'/>
-    <reference name='xmlUCSIsByzantineMusicalSymbols' href='html/libxml-xmlunicode.html#xmlUCSIsByzantineMusicalSymbols'/>
-    <reference name='xmlUCSIsCJKCompatibility' href='html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibility'/>
-    <reference name='xmlUCSIsCJKCompatibilityForms' href='html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityForms'/>
-    <reference name='xmlUCSIsCJKCompatibilityIdeographs' href='html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityIdeographs'/>
-    <reference name='xmlUCSIsCJKCompatibilityIdeographsSupplement' href='html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityIdeographsSupplement'/>
-    <reference name='xmlUCSIsCJKRadicalsSupplement' href='html/libxml-xmlunicode.html#xmlUCSIsCJKRadicalsSupplement'/>
-    <reference name='xmlUCSIsCJKSymbolsandPunctuation' href='html/libxml-xmlunicode.html#xmlUCSIsCJKSymbolsandPunctuation'/>
-    <reference name='xmlUCSIsCJKUnifiedIdeographs' href='html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographs'/>
-    <reference name='xmlUCSIsCJKUnifiedIdeographsExtensionA' href='html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographsExtensionA'/>
-    <reference name='xmlUCSIsCJKUnifiedIdeographsExtensionB' href='html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographsExtensionB'/>
-    <reference name='xmlUCSIsCat' href='html/libxml-xmlunicode.html#xmlUCSIsCat'/>
-    <reference name='xmlUCSIsCatC' href='html/libxml-xmlunicode.html#xmlUCSIsCatC'/>
-    <reference name='xmlUCSIsCatCc' href='html/libxml-xmlunicode.html#xmlUCSIsCatCc'/>
-    <reference name='xmlUCSIsCatCf' href='html/libxml-xmlunicode.html#xmlUCSIsCatCf'/>
-    <reference name='xmlUCSIsCatCo' href='html/libxml-xmlunicode.html#xmlUCSIsCatCo'/>
-    <reference name='xmlUCSIsCatCs' href='html/libxml-xmlunicode.html#xmlUCSIsCatCs'/>
-    <reference name='xmlUCSIsCatL' href='html/libxml-xmlunicode.html#xmlUCSIsCatL'/>
-    <reference name='xmlUCSIsCatLl' href='html/libxml-xmlunicode.html#xmlUCSIsCatLl'/>
-    <reference name='xmlUCSIsCatLm' href='html/libxml-xmlunicode.html#xmlUCSIsCatLm'/>
-    <reference name='xmlUCSIsCatLo' href='html/libxml-xmlunicode.html#xmlUCSIsCatLo'/>
-    <reference name='xmlUCSIsCatLt' href='html/libxml-xmlunicode.html#xmlUCSIsCatLt'/>
-    <reference name='xmlUCSIsCatLu' href='html/libxml-xmlunicode.html#xmlUCSIsCatLu'/>
-    <reference name='xmlUCSIsCatM' href='html/libxml-xmlunicode.html#xmlUCSIsCatM'/>
-    <reference name='xmlUCSIsCatMc' href='html/libxml-xmlunicode.html#xmlUCSIsCatMc'/>
-    <reference name='xmlUCSIsCatMe' href='html/libxml-xmlunicode.html#xmlUCSIsCatMe'/>
-    <reference name='xmlUCSIsCatMn' href='html/libxml-xmlunicode.html#xmlUCSIsCatMn'/>
-    <reference name='xmlUCSIsCatN' href='html/libxml-xmlunicode.html#xmlUCSIsCatN'/>
-    <reference name='xmlUCSIsCatNd' href='html/libxml-xmlunicode.html#xmlUCSIsCatNd'/>
-    <reference name='xmlUCSIsCatNl' href='html/libxml-xmlunicode.html#xmlUCSIsCatNl'/>
-    <reference name='xmlUCSIsCatNo' href='html/libxml-xmlunicode.html#xmlUCSIsCatNo'/>
-    <reference name='xmlUCSIsCatP' href='html/libxml-xmlunicode.html#xmlUCSIsCatP'/>
-    <reference name='xmlUCSIsCatPc' href='html/libxml-xmlunicode.html#xmlUCSIsCatPc'/>
-    <reference name='xmlUCSIsCatPd' href='html/libxml-xmlunicode.html#xmlUCSIsCatPd'/>
-    <reference name='xmlUCSIsCatPe' href='html/libxml-xmlunicode.html#xmlUCSIsCatPe'/>
-    <reference name='xmlUCSIsCatPf' href='html/libxml-xmlunicode.html#xmlUCSIsCatPf'/>
-    <reference name='xmlUCSIsCatPi' href='html/libxml-xmlunicode.html#xmlUCSIsCatPi'/>
-    <reference name='xmlUCSIsCatPo' href='html/libxml-xmlunicode.html#xmlUCSIsCatPo'/>
-    <reference name='xmlUCSIsCatPs' href='html/libxml-xmlunicode.html#xmlUCSIsCatPs'/>
-    <reference name='xmlUCSIsCatS' href='html/libxml-xmlunicode.html#xmlUCSIsCatS'/>
-    <reference name='xmlUCSIsCatSc' href='html/libxml-xmlunicode.html#xmlUCSIsCatSc'/>
-    <reference name='xmlUCSIsCatSk' href='html/libxml-xmlunicode.html#xmlUCSIsCatSk'/>
-    <reference name='xmlUCSIsCatSm' href='html/libxml-xmlunicode.html#xmlUCSIsCatSm'/>
-    <reference name='xmlUCSIsCatSo' href='html/libxml-xmlunicode.html#xmlUCSIsCatSo'/>
-    <reference name='xmlUCSIsCatZ' href='html/libxml-xmlunicode.html#xmlUCSIsCatZ'/>
-    <reference name='xmlUCSIsCatZl' href='html/libxml-xmlunicode.html#xmlUCSIsCatZl'/>
-    <reference name='xmlUCSIsCatZp' href='html/libxml-xmlunicode.html#xmlUCSIsCatZp'/>
-    <reference name='xmlUCSIsCatZs' href='html/libxml-xmlunicode.html#xmlUCSIsCatZs'/>
-    <reference name='xmlUCSIsCherokee' href='html/libxml-xmlunicode.html#xmlUCSIsCherokee'/>
-    <reference name='xmlUCSIsCombiningDiacriticalMarks' href='html/libxml-xmlunicode.html#xmlUCSIsCombiningDiacriticalMarks'/>
-    <reference name='xmlUCSIsCombiningDiacriticalMarksforSymbols' href='html/libxml-xmlunicode.html#xmlUCSIsCombiningDiacriticalMarksforSymbols'/>
-    <reference name='xmlUCSIsCombiningHalfMarks' href='html/libxml-xmlunicode.html#xmlUCSIsCombiningHalfMarks'/>
-    <reference name='xmlUCSIsCombiningMarksforSymbols' href='html/libxml-xmlunicode.html#xmlUCSIsCombiningMarksforSymbols'/>
-    <reference name='xmlUCSIsControlPictures' href='html/libxml-xmlunicode.html#xmlUCSIsControlPictures'/>
-    <reference name='xmlUCSIsCurrencySymbols' href='html/libxml-xmlunicode.html#xmlUCSIsCurrencySymbols'/>
-    <reference name='xmlUCSIsCypriotSyllabary' href='html/libxml-xmlunicode.html#xmlUCSIsCypriotSyllabary'/>
-    <reference name='xmlUCSIsCyrillic' href='html/libxml-xmlunicode.html#xmlUCSIsCyrillic'/>
-    <reference name='xmlUCSIsCyrillicSupplement' href='html/libxml-xmlunicode.html#xmlUCSIsCyrillicSupplement'/>
-    <reference name='xmlUCSIsDeseret' href='html/libxml-xmlunicode.html#xmlUCSIsDeseret'/>
-    <reference name='xmlUCSIsDevanagari' href='html/libxml-xmlunicode.html#xmlUCSIsDevanagari'/>
-    <reference name='xmlUCSIsDingbats' href='html/libxml-xmlunicode.html#xmlUCSIsDingbats'/>
-    <reference name='xmlUCSIsEnclosedAlphanumerics' href='html/libxml-xmlunicode.html#xmlUCSIsEnclosedAlphanumerics'/>
-    <reference name='xmlUCSIsEnclosedCJKLettersandMonths' href='html/libxml-xmlunicode.html#xmlUCSIsEnclosedCJKLettersandMonths'/>
-    <reference name='xmlUCSIsEthiopic' href='html/libxml-xmlunicode.html#xmlUCSIsEthiopic'/>
-    <reference name='xmlUCSIsGeneralPunctuation' href='html/libxml-xmlunicode.html#xmlUCSIsGeneralPunctuation'/>
-    <reference name='xmlUCSIsGeometricShapes' href='html/libxml-xmlunicode.html#xmlUCSIsGeometricShapes'/>
-    <reference name='xmlUCSIsGeorgian' href='html/libxml-xmlunicode.html#xmlUCSIsGeorgian'/>
-    <reference name='xmlUCSIsGothic' href='html/libxml-xmlunicode.html#xmlUCSIsGothic'/>
-    <reference name='xmlUCSIsGreek' href='html/libxml-xmlunicode.html#xmlUCSIsGreek'/>
-    <reference name='xmlUCSIsGreekExtended' href='html/libxml-xmlunicode.html#xmlUCSIsGreekExtended'/>
-    <reference name='xmlUCSIsGreekandCoptic' href='html/libxml-xmlunicode.html#xmlUCSIsGreekandCoptic'/>
-    <reference name='xmlUCSIsGujarati' href='html/libxml-xmlunicode.html#xmlUCSIsGujarati'/>
-    <reference name='xmlUCSIsGurmukhi' href='html/libxml-xmlunicode.html#xmlUCSIsGurmukhi'/>
-    <reference name='xmlUCSIsHalfwidthandFullwidthForms' href='html/libxml-xmlunicode.html#xmlUCSIsHalfwidthandFullwidthForms'/>
-    <reference name='xmlUCSIsHangulCompatibilityJamo' href='html/libxml-xmlunicode.html#xmlUCSIsHangulCompatibilityJamo'/>
-    <reference name='xmlUCSIsHangulJamo' href='html/libxml-xmlunicode.html#xmlUCSIsHangulJamo'/>
-    <reference name='xmlUCSIsHangulSyllables' href='html/libxml-xmlunicode.html#xmlUCSIsHangulSyllables'/>
-    <reference name='xmlUCSIsHanunoo' href='html/libxml-xmlunicode.html#xmlUCSIsHanunoo'/>
-    <reference name='xmlUCSIsHebrew' href='html/libxml-xmlunicode.html#xmlUCSIsHebrew'/>
-    <reference name='xmlUCSIsHighPrivateUseSurrogates' href='html/libxml-xmlunicode.html#xmlUCSIsHighPrivateUseSurrogates'/>
-    <reference name='xmlUCSIsHighSurrogates' href='html/libxml-xmlunicode.html#xmlUCSIsHighSurrogates'/>
-    <reference name='xmlUCSIsHiragana' href='html/libxml-xmlunicode.html#xmlUCSIsHiragana'/>
-    <reference name='xmlUCSIsIPAExtensions' href='html/libxml-xmlunicode.html#xmlUCSIsIPAExtensions'/>
-    <reference name='xmlUCSIsIdeographicDescriptionCharacters' href='html/libxml-xmlunicode.html#xmlUCSIsIdeographicDescriptionCharacters'/>
-    <reference name='xmlUCSIsKanbun' href='html/libxml-xmlunicode.html#xmlUCSIsKanbun'/>
-    <reference name='xmlUCSIsKangxiRadicals' href='html/libxml-xmlunicode.html#xmlUCSIsKangxiRadicals'/>
-    <reference name='xmlUCSIsKannada' href='html/libxml-xmlunicode.html#xmlUCSIsKannada'/>
-    <reference name='xmlUCSIsKatakana' href='html/libxml-xmlunicode.html#xmlUCSIsKatakana'/>
-    <reference name='xmlUCSIsKatakanaPhoneticExtensions' href='html/libxml-xmlunicode.html#xmlUCSIsKatakanaPhoneticExtensions'/>
-    <reference name='xmlUCSIsKhmer' href='html/libxml-xmlunicode.html#xmlUCSIsKhmer'/>
-    <reference name='xmlUCSIsKhmerSymbols' href='html/libxml-xmlunicode.html#xmlUCSIsKhmerSymbols'/>
-    <reference name='xmlUCSIsLao' href='html/libxml-xmlunicode.html#xmlUCSIsLao'/>
-    <reference name='xmlUCSIsLatin1Supplement' href='html/libxml-xmlunicode.html#xmlUCSIsLatin1Supplement'/>
-    <reference name='xmlUCSIsLatinExtendedA' href='html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedA'/>
-    <reference name='xmlUCSIsLatinExtendedAdditional' href='html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedAdditional'/>
-    <reference name='xmlUCSIsLatinExtendedB' href='html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedB'/>
-    <reference name='xmlUCSIsLetterlikeSymbols' href='html/libxml-xmlunicode.html#xmlUCSIsLetterlikeSymbols'/>
-    <reference name='xmlUCSIsLimbu' href='html/libxml-xmlunicode.html#xmlUCSIsLimbu'/>
-    <reference name='xmlUCSIsLinearBIdeograms' href='html/libxml-xmlunicode.html#xmlUCSIsLinearBIdeograms'/>
-    <reference name='xmlUCSIsLinearBSyllabary' href='html/libxml-xmlunicode.html#xmlUCSIsLinearBSyllabary'/>
-    <reference name='xmlUCSIsLowSurrogates' href='html/libxml-xmlunicode.html#xmlUCSIsLowSurrogates'/>
-    <reference name='xmlUCSIsMalayalam' href='html/libxml-xmlunicode.html#xmlUCSIsMalayalam'/>
-    <reference name='xmlUCSIsMathematicalAlphanumericSymbols' href='html/libxml-xmlunicode.html#xmlUCSIsMathematicalAlphanumericSymbols'/>
-    <reference name='xmlUCSIsMathematicalOperators' href='html/libxml-xmlunicode.html#xmlUCSIsMathematicalOperators'/>
-    <reference name='xmlUCSIsMiscellaneousMathematicalSymbolsA' href='html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousMathematicalSymbolsA'/>
-    <reference name='xmlUCSIsMiscellaneousMathematicalSymbolsB' href='html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousMathematicalSymbolsB'/>
-    <reference name='xmlUCSIsMiscellaneousSymbols' href='html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousSymbols'/>
-    <reference name='xmlUCSIsMiscellaneousSymbolsandArrows' href='html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousSymbolsandArrows'/>
-    <reference name='xmlUCSIsMiscellaneousTechnical' href='html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousTechnical'/>
-    <reference name='xmlUCSIsMongolian' href='html/libxml-xmlunicode.html#xmlUCSIsMongolian'/>
-    <reference name='xmlUCSIsMusicalSymbols' href='html/libxml-xmlunicode.html#xmlUCSIsMusicalSymbols'/>
-    <reference name='xmlUCSIsMyanmar' href='html/libxml-xmlunicode.html#xmlUCSIsMyanmar'/>
-    <reference name='xmlUCSIsNumberForms' href='html/libxml-xmlunicode.html#xmlUCSIsNumberForms'/>
-    <reference name='xmlUCSIsOgham' href='html/libxml-xmlunicode.html#xmlUCSIsOgham'/>
-    <reference name='xmlUCSIsOldItalic' href='html/libxml-xmlunicode.html#xmlUCSIsOldItalic'/>
-    <reference name='xmlUCSIsOpticalCharacterRecognition' href='html/libxml-xmlunicode.html#xmlUCSIsOpticalCharacterRecognition'/>
-    <reference name='xmlUCSIsOriya' href='html/libxml-xmlunicode.html#xmlUCSIsOriya'/>
-    <reference name='xmlUCSIsOsmanya' href='html/libxml-xmlunicode.html#xmlUCSIsOsmanya'/>
-    <reference name='xmlUCSIsPhoneticExtensions' href='html/libxml-xmlunicode.html#xmlUCSIsPhoneticExtensions'/>
-    <reference name='xmlUCSIsPrivateUse' href='html/libxml-xmlunicode.html#xmlUCSIsPrivateUse'/>
-    <reference name='xmlUCSIsPrivateUseArea' href='html/libxml-xmlunicode.html#xmlUCSIsPrivateUseArea'/>
-    <reference name='xmlUCSIsRunic' href='html/libxml-xmlunicode.html#xmlUCSIsRunic'/>
-    <reference name='xmlUCSIsShavian' href='html/libxml-xmlunicode.html#xmlUCSIsShavian'/>
-    <reference name='xmlUCSIsSinhala' href='html/libxml-xmlunicode.html#xmlUCSIsSinhala'/>
-    <reference name='xmlUCSIsSmallFormVariants' href='html/libxml-xmlunicode.html#xmlUCSIsSmallFormVariants'/>
-    <reference name='xmlUCSIsSpacingModifierLetters' href='html/libxml-xmlunicode.html#xmlUCSIsSpacingModifierLetters'/>
-    <reference name='xmlUCSIsSpecials' href='html/libxml-xmlunicode.html#xmlUCSIsSpecials'/>
-    <reference name='xmlUCSIsSuperscriptsandSubscripts' href='html/libxml-xmlunicode.html#xmlUCSIsSuperscriptsandSubscripts'/>
-    <reference name='xmlUCSIsSupplementalArrowsA' href='html/libxml-xmlunicode.html#xmlUCSIsSupplementalArrowsA'/>
-    <reference name='xmlUCSIsSupplementalArrowsB' href='html/libxml-xmlunicode.html#xmlUCSIsSupplementalArrowsB'/>
-    <reference name='xmlUCSIsSupplementalMathematicalOperators' href='html/libxml-xmlunicode.html#xmlUCSIsSupplementalMathematicalOperators'/>
-    <reference name='xmlUCSIsSupplementaryPrivateUseAreaA' href='html/libxml-xmlunicode.html#xmlUCSIsSupplementaryPrivateUseAreaA'/>
-    <reference name='xmlUCSIsSupplementaryPrivateUseAreaB' href='html/libxml-xmlunicode.html#xmlUCSIsSupplementaryPrivateUseAreaB'/>
-    <reference name='xmlUCSIsSyriac' href='html/libxml-xmlunicode.html#xmlUCSIsSyriac'/>
-    <reference name='xmlUCSIsTagalog' href='html/libxml-xmlunicode.html#xmlUCSIsTagalog'/>
-    <reference name='xmlUCSIsTagbanwa' href='html/libxml-xmlunicode.html#xmlUCSIsTagbanwa'/>
-    <reference name='xmlUCSIsTags' href='html/libxml-xmlunicode.html#xmlUCSIsTags'/>
-    <reference name='xmlUCSIsTaiLe' href='html/libxml-xmlunicode.html#xmlUCSIsTaiLe'/>
-    <reference name='xmlUCSIsTaiXuanJingSymbols' href='html/libxml-xmlunicode.html#xmlUCSIsTaiXuanJingSymbols'/>
-    <reference name='xmlUCSIsTamil' href='html/libxml-xmlunicode.html#xmlUCSIsTamil'/>
-    <reference name='xmlUCSIsTelugu' href='html/libxml-xmlunicode.html#xmlUCSIsTelugu'/>
-    <reference name='xmlUCSIsThaana' href='html/libxml-xmlunicode.html#xmlUCSIsThaana'/>
-    <reference name='xmlUCSIsThai' href='html/libxml-xmlunicode.html#xmlUCSIsThai'/>
-    <reference name='xmlUCSIsTibetan' href='html/libxml-xmlunicode.html#xmlUCSIsTibetan'/>
-    <reference name='xmlUCSIsUgaritic' href='html/libxml-xmlunicode.html#xmlUCSIsUgaritic'/>
-    <reference name='xmlUCSIsUnifiedCanadianAboriginalSyllabics' href='html/libxml-xmlunicode.html#xmlUCSIsUnifiedCanadianAboriginalSyllabics'/>
-    <reference name='xmlUCSIsVariationSelectors' href='html/libxml-xmlunicode.html#xmlUCSIsVariationSelectors'/>
-    <reference name='xmlUCSIsVariationSelectorsSupplement' href='html/libxml-xmlunicode.html#xmlUCSIsVariationSelectorsSupplement'/>
-    <reference name='xmlUCSIsYiRadicals' href='html/libxml-xmlunicode.html#xmlUCSIsYiRadicals'/>
-    <reference name='xmlUCSIsYiSyllables' href='html/libxml-xmlunicode.html#xmlUCSIsYiSyllables'/>
-    <reference name='xmlUCSIsYijingHexagramSymbols' href='html/libxml-xmlunicode.html#xmlUCSIsYijingHexagramSymbols'/>
-    <reference name='xmlURI' href='html/libxml-uri.html#xmlURI'/>
-    <reference name='xmlURIEscape' href='html/libxml-uri.html#xmlURIEscape'/>
-    <reference name='xmlURIEscapeStr' href='html/libxml-uri.html#xmlURIEscapeStr'/>
-    <reference name='xmlURIPtr' href='html/libxml-uri.html#xmlURIPtr'/>
-    <reference name='xmlURIUnescapeString' href='html/libxml-uri.html#xmlURIUnescapeString'/>
-    <reference name='xmlUTF8Charcmp' href='html/libxml-xmlstring.html#xmlUTF8Charcmp'/>
-    <reference name='xmlUTF8Size' href='html/libxml-xmlstring.html#xmlUTF8Size'/>
-    <reference name='xmlUTF8Strlen' href='html/libxml-xmlstring.html#xmlUTF8Strlen'/>
-    <reference name='xmlUTF8Strloc' href='html/libxml-xmlstring.html#xmlUTF8Strloc'/>
-    <reference name='xmlUTF8Strndup' href='html/libxml-xmlstring.html#xmlUTF8Strndup'/>
-    <reference name='xmlUTF8Strpos' href='html/libxml-xmlstring.html#xmlUTF8Strpos'/>
-    <reference name='xmlUTF8Strsize' href='html/libxml-xmlstring.html#xmlUTF8Strsize'/>
-    <reference name='xmlUTF8Strsub' href='html/libxml-xmlstring.html#xmlUTF8Strsub'/>
-    <reference name='xmlUnlinkNode' href='html/libxml-tree.html#xmlUnlinkNode'/>
-    <reference name='xmlUnlockLibrary' href='html/libxml-threads.html#xmlUnlockLibrary'/>
-    <reference name='xmlUnsetNsProp' href='html/libxml-tree.html#xmlUnsetNsProp'/>
-    <reference name='xmlUnsetProp' href='html/libxml-tree.html#xmlUnsetProp'/>
-    <reference name='xmlValidBuildContentModel' href='html/libxml-valid.html#xmlValidBuildContentModel'/>
-    <reference name='xmlValidCtxt' href='html/libxml-valid.html#xmlValidCtxt'/>
-    <reference name='xmlValidCtxtNormalizeAttributeValue' href='html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue'/>
-    <reference name='xmlValidCtxtPtr' href='html/libxml-valid.html#xmlValidCtxtPtr'/>
-    <reference name='xmlValidGetPotentialChildren' href='html/libxml-valid.html#xmlValidGetPotentialChildren'/>
-    <reference name='xmlValidGetValidElements' href='html/libxml-valid.html#xmlValidGetValidElements'/>
-    <reference name='xmlValidNormalizeAttributeValue' href='html/libxml-valid.html#xmlValidNormalizeAttributeValue'/>
-    <reference name='xmlValidState' href='html/libxml-valid.html#xmlValidState'/>
-    <reference name='xmlValidStatePtr' href='html/libxml-valid.html#xmlValidStatePtr'/>
-    <reference name='xmlValidateAttributeDecl' href='html/libxml-valid.html#xmlValidateAttributeDecl'/>
-    <reference name='xmlValidateAttributeValue' href='html/libxml-valid.html#xmlValidateAttributeValue'/>
-    <reference name='xmlValidateDocument' href='html/libxml-valid.html#xmlValidateDocument'/>
-    <reference name='xmlValidateDocumentFinal' href='html/libxml-valid.html#xmlValidateDocumentFinal'/>
-    <reference name='xmlValidateDtd' href='html/libxml-valid.html#xmlValidateDtd'/>
-    <reference name='xmlValidateDtdFinal' href='html/libxml-valid.html#xmlValidateDtdFinal'/>
-    <reference name='xmlValidateElement' href='html/libxml-valid.html#xmlValidateElement'/>
-    <reference name='xmlValidateElementDecl' href='html/libxml-valid.html#xmlValidateElementDecl'/>
-    <reference name='xmlValidateNCName' href='html/libxml-tree.html#xmlValidateNCName'/>
-    <reference name='xmlValidateNMToken' href='html/libxml-tree.html#xmlValidateNMToken'/>
-    <reference name='xmlValidateName' href='html/libxml-tree.html#xmlValidateName'/>
-    <reference name='xmlValidateNameValue' href='html/libxml-valid.html#xmlValidateNameValue'/>
-    <reference name='xmlValidateNamesValue' href='html/libxml-valid.html#xmlValidateNamesValue'/>
-    <reference name='xmlValidateNmtokenValue' href='html/libxml-valid.html#xmlValidateNmtokenValue'/>
-    <reference name='xmlValidateNmtokensValue' href='html/libxml-valid.html#xmlValidateNmtokensValue'/>
-    <reference name='xmlValidateNotationDecl' href='html/libxml-valid.html#xmlValidateNotationDecl'/>
-    <reference name='xmlValidateNotationUse' href='html/libxml-valid.html#xmlValidateNotationUse'/>
-    <reference name='xmlValidateOneAttribute' href='html/libxml-valid.html#xmlValidateOneAttribute'/>
-    <reference name='xmlValidateOneElement' href='html/libxml-valid.html#xmlValidateOneElement'/>
-    <reference name='xmlValidateOneNamespace' href='html/libxml-valid.html#xmlValidateOneNamespace'/>
-    <reference name='xmlValidatePopElement' href='html/libxml-valid.html#xmlValidatePopElement'/>
-    <reference name='xmlValidatePushCData' href='html/libxml-valid.html#xmlValidatePushCData'/>
-    <reference name='xmlValidatePushElement' href='html/libxml-valid.html#xmlValidatePushElement'/>
-    <reference name='xmlValidateQName' href='html/libxml-tree.html#xmlValidateQName'/>
-    <reference name='xmlValidateRoot' href='html/libxml-valid.html#xmlValidateRoot'/>
-    <reference name='xmlValidityErrorFunc' href='html/libxml-valid.html#xmlValidityErrorFunc'/>
-    <reference name='xmlValidityWarningFunc' href='html/libxml-valid.html#xmlValidityWarningFunc'/>
-    <reference name='xmlXIncludeCtxt' href='html/libxml-xinclude.html#xmlXIncludeCtxt'/>
-    <reference name='xmlXIncludeCtxtPtr' href='html/libxml-xinclude.html#xmlXIncludeCtxtPtr'/>
-    <reference name='xmlXIncludeFreeContext' href='html/libxml-xinclude.html#xmlXIncludeFreeContext'/>
-    <reference name='xmlXIncludeNewContext' href='html/libxml-xinclude.html#xmlXIncludeNewContext'/>
-    <reference name='xmlXIncludeProcess' href='html/libxml-xinclude.html#xmlXIncludeProcess'/>
-    <reference name='xmlXIncludeProcessFlags' href='html/libxml-xinclude.html#xmlXIncludeProcessFlags'/>
-    <reference name='xmlXIncludeProcessFlagsData' href='html/libxml-xinclude.html#xmlXIncludeProcessFlagsData'/>
-    <reference name='xmlXIncludeProcessNode' href='html/libxml-xinclude.html#xmlXIncludeProcessNode'/>
-    <reference name='xmlXIncludeProcessTree' href='html/libxml-xinclude.html#xmlXIncludeProcessTree'/>
-    <reference name='xmlXIncludeProcessTreeFlags' href='html/libxml-xinclude.html#xmlXIncludeProcessTreeFlags'/>
-    <reference name='xmlXIncludeProcessTreeFlagsData' href='html/libxml-xinclude.html#xmlXIncludeProcessTreeFlagsData'/>
-    <reference name='xmlXIncludeSetFlags' href='html/libxml-xinclude.html#xmlXIncludeSetFlags'/>
-    <reference name='xmlXPathAddValues' href='html/libxml-xpathInternals.html#xmlXPathAddValues'/>
-    <reference name='xmlXPathAxis' href='html/libxml-xpath.html#xmlXPathAxis'/>
-    <reference name='xmlXPathAxisFunc' href='html/libxml-xpath.html#xmlXPathAxisFunc'/>
-    <reference name='xmlXPathAxisPtr' href='html/libxml-xpath.html#xmlXPathAxisPtr'/>
-    <reference name='xmlXPathBooleanFunction' href='html/libxml-xpathInternals.html#xmlXPathBooleanFunction'/>
-    <reference name='xmlXPathCastBooleanToNumber' href='html/libxml-xpath.html#xmlXPathCastBooleanToNumber'/>
-    <reference name='xmlXPathCastBooleanToString' href='html/libxml-xpath.html#xmlXPathCastBooleanToString'/>
-    <reference name='xmlXPathCastNodeSetToBoolean' href='html/libxml-xpath.html#xmlXPathCastNodeSetToBoolean'/>
-    <reference name='xmlXPathCastNodeSetToNumber' href='html/libxml-xpath.html#xmlXPathCastNodeSetToNumber'/>
-    <reference name='xmlXPathCastNodeSetToString' href='html/libxml-xpath.html#xmlXPathCastNodeSetToString'/>
-    <reference name='xmlXPathCastNodeToNumber' href='html/libxml-xpath.html#xmlXPathCastNodeToNumber'/>
-    <reference name='xmlXPathCastNodeToString' href='html/libxml-xpath.html#xmlXPathCastNodeToString'/>
-    <reference name='xmlXPathCastNumberToBoolean' href='html/libxml-xpath.html#xmlXPathCastNumberToBoolean'/>
-    <reference name='xmlXPathCastNumberToString' href='html/libxml-xpath.html#xmlXPathCastNumberToString'/>
-    <reference name='xmlXPathCastStringToBoolean' href='html/libxml-xpath.html#xmlXPathCastStringToBoolean'/>
-    <reference name='xmlXPathCastStringToNumber' href='html/libxml-xpath.html#xmlXPathCastStringToNumber'/>
-    <reference name='xmlXPathCastToBoolean' href='html/libxml-xpath.html#xmlXPathCastToBoolean'/>
-    <reference name='xmlXPathCastToNumber' href='html/libxml-xpath.html#xmlXPathCastToNumber'/>
-    <reference name='xmlXPathCastToString' href='html/libxml-xpath.html#xmlXPathCastToString'/>
-    <reference name='xmlXPathCeilingFunction' href='html/libxml-xpathInternals.html#xmlXPathCeilingFunction'/>
-    <reference name='xmlXPathCheckError' href='html/libxml-xpathInternals.html#xmlXPathCheckError'/>
-    <reference name='xmlXPathCmpNodes' href='html/libxml-xpath.html#xmlXPathCmpNodes'/>
-    <reference name='xmlXPathCompExpr' href='html/libxml-xpath.html#xmlXPathCompExpr'/>
-    <reference name='xmlXPathCompExprPtr' href='html/libxml-xpath.html#xmlXPathCompExprPtr'/>
-    <reference name='xmlXPathCompareValues' href='html/libxml-xpathInternals.html#xmlXPathCompareValues'/>
-    <reference name='xmlXPathCompile' href='html/libxml-xpath.html#xmlXPathCompile'/>
-    <reference name='xmlXPathCompiledEval' href='html/libxml-xpath.html#xmlXPathCompiledEval'/>
-    <reference name='xmlXPathCompiledEvalToBoolean' href='html/libxml-xpath.html#xmlXPathCompiledEvalToBoolean'/>
-    <reference name='xmlXPathConcatFunction' href='html/libxml-xpathInternals.html#xmlXPathConcatFunction'/>
-    <reference name='xmlXPathContainsFunction' href='html/libxml-xpathInternals.html#xmlXPathContainsFunction'/>
-    <reference name='xmlXPathContext' href='html/libxml-xpath.html#xmlXPathContext'/>
-    <reference name='xmlXPathContextPtr' href='html/libxml-xpath.html#xmlXPathContextPtr'/>
-    <reference name='xmlXPathContextSetCache' href='html/libxml-xpath.html#xmlXPathContextSetCache'/>
-    <reference name='xmlXPathConvertBoolean' href='html/libxml-xpath.html#xmlXPathConvertBoolean'/>
-    <reference name='xmlXPathConvertFunc' href='html/libxml-xpath.html#xmlXPathConvertFunc'/>
-    <reference name='xmlXPathConvertNumber' href='html/libxml-xpath.html#xmlXPathConvertNumber'/>
-    <reference name='xmlXPathConvertString' href='html/libxml-xpath.html#xmlXPathConvertString'/>
-    <reference name='xmlXPathCountFunction' href='html/libxml-xpathInternals.html#xmlXPathCountFunction'/>
-    <reference name='xmlXPathCtxtCompile' href='html/libxml-xpath.html#xmlXPathCtxtCompile'/>
-    <reference name='xmlXPathDebugDumpCompExpr' href='html/libxml-xpathInternals.html#xmlXPathDebugDumpCompExpr'/>
-    <reference name='xmlXPathDebugDumpObject' href='html/libxml-xpathInternals.html#xmlXPathDebugDumpObject'/>
-    <reference name='xmlXPathDifference' href='html/libxml-xpathInternals.html#xmlXPathDifference'/>
-    <reference name='xmlXPathDistinct' href='html/libxml-xpathInternals.html#xmlXPathDistinct'/>
-    <reference name='xmlXPathDistinctSorted' href='html/libxml-xpathInternals.html#xmlXPathDistinctSorted'/>
-    <reference name='xmlXPathDivValues' href='html/libxml-xpathInternals.html#xmlXPathDivValues'/>
-    <reference name='xmlXPathEmptyNodeSet' href='html/libxml-xpathInternals.html#xmlXPathEmptyNodeSet'/>
-    <reference name='xmlXPathEqualValues' href='html/libxml-xpathInternals.html#xmlXPathEqualValues'/>
-    <reference name='xmlXPathErr' href='html/libxml-xpathInternals.html#xmlXPathErr'/>
-    <reference name='xmlXPathError' href='html/libxml-xpath.html#xmlXPathError'/>
-    <reference name='xmlXPathEval' href='html/libxml-xpath.html#xmlXPathEval'/>
-    <reference name='xmlXPathEvalExpr' href='html/libxml-xpathInternals.html#xmlXPathEvalExpr'/>
-    <reference name='xmlXPathEvalExpression' href='html/libxml-xpath.html#xmlXPathEvalExpression'/>
-    <reference name='xmlXPathEvalFunc' href='html/libxml-xpath.html#xmlXPathEvalFunc'/>
-    <reference name='xmlXPathEvalPredicate' href='html/libxml-xpath.html#xmlXPathEvalPredicate'/>
-    <reference name='xmlXPathEvaluatePredicateResult' href='html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult'/>
-    <reference name='xmlXPathFalseFunction' href='html/libxml-xpathInternals.html#xmlXPathFalseFunction'/>
-    <reference name='xmlXPathFloorFunction' href='html/libxml-xpathInternals.html#xmlXPathFloorFunction'/>
-    <reference name='xmlXPathFreeCompExpr' href='html/libxml-xpath.html#xmlXPathFreeCompExpr'/>
-    <reference name='xmlXPathFreeContext' href='html/libxml-xpath.html#xmlXPathFreeContext'/>
-    <reference name='xmlXPathFreeNodeSet' href='html/libxml-xpath.html#xmlXPathFreeNodeSet'/>
-    <reference name='xmlXPathFreeNodeSetList' href='html/libxml-xpath.html#xmlXPathFreeNodeSetList'/>
-    <reference name='xmlXPathFreeObject' href='html/libxml-xpath.html#xmlXPathFreeObject'/>
-    <reference name='xmlXPathFreeParserContext' href='html/libxml-xpathInternals.html#xmlXPathFreeParserContext'/>
-    <reference name='xmlXPathFuncLookupFunc' href='html/libxml-xpath.html#xmlXPathFuncLookupFunc'/>
-    <reference name='xmlXPathFuncPtr' href='html/libxml-xpath.html#xmlXPathFuncPtr'/>
-    <reference name='xmlXPathFunct' href='html/libxml-xpath.html#xmlXPathFunct'/>
-    <reference name='xmlXPathFunction' href='html/libxml-xpath.html#xmlXPathFunction'/>
-    <reference name='xmlXPathFunctionLookup' href='html/libxml-xpathInternals.html#xmlXPathFunctionLookup'/>
-    <reference name='xmlXPathFunctionLookupNS' href='html/libxml-xpathInternals.html#xmlXPathFunctionLookupNS'/>
-    <reference name='xmlXPathGetContextNode' href='html/libxml-xpathInternals.html#xmlXPathGetContextNode'/>
-    <reference name='xmlXPathGetDocument' href='html/libxml-xpathInternals.html#xmlXPathGetDocument'/>
-    <reference name='xmlXPathGetError' href='html/libxml-xpathInternals.html#xmlXPathGetError'/>
-    <reference name='xmlXPathHasSameNodes' href='html/libxml-xpathInternals.html#xmlXPathHasSameNodes'/>
-    <reference name='xmlXPathIdFunction' href='html/libxml-xpathInternals.html#xmlXPathIdFunction'/>
-    <reference name='xmlXPathInit' href='html/libxml-xpath.html#xmlXPathInit'/>
-    <reference name='xmlXPathIntersection' href='html/libxml-xpathInternals.html#xmlXPathIntersection'/>
-    <reference name='xmlXPathIsInf' href='html/libxml-xpath.html#xmlXPathIsInf'/>
-    <reference name='xmlXPathIsNaN' href='html/libxml-xpath.html#xmlXPathIsNaN'/>
-    <reference name='xmlXPathIsNodeType' href='html/libxml-xpathInternals.html#xmlXPathIsNodeType'/>
-    <reference name='xmlXPathLangFunction' href='html/libxml-xpathInternals.html#xmlXPathLangFunction'/>
-    <reference name='xmlXPathLastFunction' href='html/libxml-xpathInternals.html#xmlXPathLastFunction'/>
-    <reference name='xmlXPathLeading' href='html/libxml-xpathInternals.html#xmlXPathLeading'/>
-    <reference name='xmlXPathLeadingSorted' href='html/libxml-xpathInternals.html#xmlXPathLeadingSorted'/>
-    <reference name='xmlXPathLocalNameFunction' href='html/libxml-xpathInternals.html#xmlXPathLocalNameFunction'/>
-    <reference name='xmlXPathModValues' href='html/libxml-xpathInternals.html#xmlXPathModValues'/>
-    <reference name='xmlXPathMultValues' href='html/libxml-xpathInternals.html#xmlXPathMultValues'/>
-    <reference name='xmlXPathNAN' href='html/libxml-xpath.html#xmlXPathNAN'/>
-    <reference name='xmlXPathNINF' href='html/libxml-xpath.html#xmlXPathNINF'/>
-    <reference name='xmlXPathNamespaceURIFunction' href='html/libxml-xpathInternals.html#xmlXPathNamespaceURIFunction'/>
-    <reference name='xmlXPathNewBoolean' href='html/libxml-xpathInternals.html#xmlXPathNewBoolean'/>
-    <reference name='xmlXPathNewCString' href='html/libxml-xpathInternals.html#xmlXPathNewCString'/>
-    <reference name='xmlXPathNewContext' href='html/libxml-xpath.html#xmlXPathNewContext'/>
-    <reference name='xmlXPathNewFloat' href='html/libxml-xpathInternals.html#xmlXPathNewFloat'/>
-    <reference name='xmlXPathNewNodeSet' href='html/libxml-xpathInternals.html#xmlXPathNewNodeSet'/>
-    <reference name='xmlXPathNewNodeSetList' href='html/libxml-xpathInternals.html#xmlXPathNewNodeSetList'/>
-    <reference name='xmlXPathNewParserContext' href='html/libxml-xpathInternals.html#xmlXPathNewParserContext'/>
-    <reference name='xmlXPathNewString' href='html/libxml-xpathInternals.html#xmlXPathNewString'/>
-    <reference name='xmlXPathNewValueTree' href='html/libxml-xpathInternals.html#xmlXPathNewValueTree'/>
-    <reference name='xmlXPathNextAncestor' href='html/libxml-xpathInternals.html#xmlXPathNextAncestor'/>
-    <reference name='xmlXPathNextAncestorOrSelf' href='html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf'/>
-    <reference name='xmlXPathNextAttribute' href='html/libxml-xpathInternals.html#xmlXPathNextAttribute'/>
-    <reference name='xmlXPathNextChild' href='html/libxml-xpathInternals.html#xmlXPathNextChild'/>
-    <reference name='xmlXPathNextDescendant' href='html/libxml-xpathInternals.html#xmlXPathNextDescendant'/>
-    <reference name='xmlXPathNextDescendantOrSelf' href='html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf'/>
-    <reference name='xmlXPathNextFollowing' href='html/libxml-xpathInternals.html#xmlXPathNextFollowing'/>
-    <reference name='xmlXPathNextFollowingSibling' href='html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling'/>
-    <reference name='xmlXPathNextNamespace' href='html/libxml-xpathInternals.html#xmlXPathNextNamespace'/>
-    <reference name='xmlXPathNextParent' href='html/libxml-xpathInternals.html#xmlXPathNextParent'/>
-    <reference name='xmlXPathNextPreceding' href='html/libxml-xpathInternals.html#xmlXPathNextPreceding'/>
-    <reference name='xmlXPathNextPrecedingSibling' href='html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling'/>
-    <reference name='xmlXPathNextSelf' href='html/libxml-xpathInternals.html#xmlXPathNextSelf'/>
-    <reference name='xmlXPathNodeEval' href='html/libxml-xpath.html#xmlXPathNodeEval'/>
-    <reference name='xmlXPathNodeLeading' href='html/libxml-xpathInternals.html#xmlXPathNodeLeading'/>
-    <reference name='xmlXPathNodeLeadingSorted' href='html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted'/>
-    <reference name='xmlXPathNodeSetAdd' href='html/libxml-xpathInternals.html#xmlXPathNodeSetAdd'/>
-    <reference name='xmlXPathNodeSetAddNs' href='html/libxml-xpathInternals.html#xmlXPathNodeSetAddNs'/>
-    <reference name='xmlXPathNodeSetAddUnique' href='html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique'/>
-    <reference name='xmlXPathNodeSetContains' href='html/libxml-xpathInternals.html#xmlXPathNodeSetContains'/>
-    <reference name='xmlXPathNodeSetCreate' href='html/libxml-xpath.html#xmlXPathNodeSetCreate'/>
-    <reference name='xmlXPathNodeSetDel' href='html/libxml-xpathInternals.html#xmlXPathNodeSetDel'/>
-    <reference name='xmlXPathNodeSetFreeNs' href='html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs'/>
-    <reference name='xmlXPathNodeSetGetLength' href='html/libxml-xpath.html#xmlXPathNodeSetGetLength'/>
-    <reference name='xmlXPathNodeSetIsEmpty' href='html/libxml-xpath.html#xmlXPathNodeSetIsEmpty'/>
-    <reference name='xmlXPathNodeSetItem' href='html/libxml-xpath.html#xmlXPathNodeSetItem'/>
-    <reference name='xmlXPathNodeSetMerge' href='html/libxml-xpathInternals.html#xmlXPathNodeSetMerge'/>
-    <reference name='xmlXPathNodeSetRemove' href='html/libxml-xpathInternals.html#xmlXPathNodeSetRemove'/>
-    <reference name='xmlXPathNodeSetSort' href='html/libxml-xpathInternals.html#xmlXPathNodeSetSort'/>
-    <reference name='xmlXPathNodeTrailing' href='html/libxml-xpathInternals.html#xmlXPathNodeTrailing'/>
-    <reference name='xmlXPathNodeTrailingSorted' href='html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted'/>
-    <reference name='xmlXPathNormalizeFunction' href='html/libxml-xpathInternals.html#xmlXPathNormalizeFunction'/>
-    <reference name='xmlXPathNotEqualValues' href='html/libxml-xpathInternals.html#xmlXPathNotEqualValues'/>
-    <reference name='xmlXPathNotFunction' href='html/libxml-xpathInternals.html#xmlXPathNotFunction'/>
-    <reference name='xmlXPathNsLookup' href='html/libxml-xpathInternals.html#xmlXPathNsLookup'/>
-    <reference name='xmlXPathNumberFunction' href='html/libxml-xpathInternals.html#xmlXPathNumberFunction'/>
-    <reference name='xmlXPathObject' href='html/libxml-xpath.html#xmlXPathObject'/>
-    <reference name='xmlXPathObjectCopy' href='html/libxml-xpath.html#xmlXPathObjectCopy'/>
-    <reference name='xmlXPathObjectPtr' href='html/libxml-xpath.html#xmlXPathObjectPtr'/>
-    <reference name='xmlXPathObjectType' href='html/libxml-xpath.html#xmlXPathObjectType'/>
-    <reference name='xmlXPathOrderDocElems' href='html/libxml-xpath.html#xmlXPathOrderDocElems'/>
-    <reference name='xmlXPathPINF' href='html/libxml-xpath.html#xmlXPathPINF'/>
-    <reference name='xmlXPathParseNCName' href='html/libxml-xpathInternals.html#xmlXPathParseNCName'/>
-    <reference name='xmlXPathParseName' href='html/libxml-xpathInternals.html#xmlXPathParseName'/>
-    <reference name='xmlXPathParserContext' href='html/libxml-xpath.html#xmlXPathParserContext'/>
-    <reference name='xmlXPathParserContextPtr' href='html/libxml-xpath.html#xmlXPathParserContextPtr'/>
-    <reference name='xmlXPathPopBoolean' href='html/libxml-xpathInternals.html#xmlXPathPopBoolean'/>
-    <reference name='xmlXPathPopExternal' href='html/libxml-xpathInternals.html#xmlXPathPopExternal'/>
-    <reference name='xmlXPathPopNodeSet' href='html/libxml-xpathInternals.html#xmlXPathPopNodeSet'/>
-    <reference name='xmlXPathPopNumber' href='html/libxml-xpathInternals.html#xmlXPathPopNumber'/>
-    <reference name='xmlXPathPopString' href='html/libxml-xpathInternals.html#xmlXPathPopString'/>
-    <reference name='xmlXPathPositionFunction' href='html/libxml-xpathInternals.html#xmlXPathPositionFunction'/>
-    <reference name='xmlXPathRegisterAllFunctions' href='html/libxml-xpathInternals.html#xmlXPathRegisterAllFunctions'/>
-    <reference name='xmlXPathRegisterFunc' href='html/libxml-xpathInternals.html#xmlXPathRegisterFunc'/>
-    <reference name='xmlXPathRegisterFuncLookup' href='html/libxml-xpathInternals.html#xmlXPathRegisterFuncLookup'/>
-    <reference name='xmlXPathRegisterFuncNS' href='html/libxml-xpathInternals.html#xmlXPathRegisterFuncNS'/>
-    <reference name='xmlXPathRegisterNs' href='html/libxml-xpathInternals.html#xmlXPathRegisterNs'/>
-    <reference name='xmlXPathRegisterVariable' href='html/libxml-xpathInternals.html#xmlXPathRegisterVariable'/>
-    <reference name='xmlXPathRegisterVariableLookup' href='html/libxml-xpathInternals.html#xmlXPathRegisterVariableLookup'/>
-    <reference name='xmlXPathRegisterVariableNS' href='html/libxml-xpathInternals.html#xmlXPathRegisterVariableNS'/>
-    <reference name='xmlXPathRegisteredFuncsCleanup' href='html/libxml-xpathInternals.html#xmlXPathRegisteredFuncsCleanup'/>
-    <reference name='xmlXPathRegisteredNsCleanup' href='html/libxml-xpathInternals.html#xmlXPathRegisteredNsCleanup'/>
-    <reference name='xmlXPathRegisteredVariablesCleanup' href='html/libxml-xpathInternals.html#xmlXPathRegisteredVariablesCleanup'/>
-    <reference name='xmlXPathReturnBoolean' href='html/libxml-xpathInternals.html#xmlXPathReturnBoolean'/>
-    <reference name='xmlXPathReturnEmptyNodeSet' href='html/libxml-xpathInternals.html#xmlXPathReturnEmptyNodeSet'/>
-    <reference name='xmlXPathReturnEmptyString' href='html/libxml-xpathInternals.html#xmlXPathReturnEmptyString'/>
-    <reference name='xmlXPathReturnExternal' href='html/libxml-xpathInternals.html#xmlXPathReturnExternal'/>
-    <reference name='xmlXPathReturnFalse' href='html/libxml-xpathInternals.html#xmlXPathReturnFalse'/>
-    <reference name='xmlXPathReturnNodeSet' href='html/libxml-xpathInternals.html#xmlXPathReturnNodeSet'/>
-    <reference name='xmlXPathReturnNumber' href='html/libxml-xpathInternals.html#xmlXPathReturnNumber'/>
-    <reference name='xmlXPathReturnString' href='html/libxml-xpathInternals.html#xmlXPathReturnString'/>
-    <reference name='xmlXPathReturnTrue' href='html/libxml-xpathInternals.html#xmlXPathReturnTrue'/>
-    <reference name='xmlXPathRoot' href='html/libxml-xpathInternals.html#xmlXPathRoot'/>
-    <reference name='xmlXPathRoundFunction' href='html/libxml-xpathInternals.html#xmlXPathRoundFunction'/>
-    <reference name='xmlXPathSetArityError' href='html/libxml-xpathInternals.html#xmlXPathSetArityError'/>
-    <reference name='xmlXPathSetContextNode' href='html/libxml-xpath.html#xmlXPathSetContextNode'/>
-    <reference name='xmlXPathSetError' href='html/libxml-xpathInternals.html#xmlXPathSetError'/>
-    <reference name='xmlXPathSetTypeError' href='html/libxml-xpathInternals.html#xmlXPathSetTypeError'/>
-    <reference name='xmlXPathStackIsExternal' href='html/libxml-xpathInternals.html#xmlXPathStackIsExternal'/>
-    <reference name='xmlXPathStackIsNodeSet' href='html/libxml-xpathInternals.html#xmlXPathStackIsNodeSet'/>
-    <reference name='xmlXPathStartsWithFunction' href='html/libxml-xpathInternals.html#xmlXPathStartsWithFunction'/>
-    <reference name='xmlXPathStringEvalNumber' href='html/libxml-xpathInternals.html#xmlXPathStringEvalNumber'/>
-    <reference name='xmlXPathStringFunction' href='html/libxml-xpathInternals.html#xmlXPathStringFunction'/>
-    <reference name='xmlXPathStringLengthFunction' href='html/libxml-xpathInternals.html#xmlXPathStringLengthFunction'/>
-    <reference name='xmlXPathSubValues' href='html/libxml-xpathInternals.html#xmlXPathSubValues'/>
-    <reference name='xmlXPathSubstringAfterFunction' href='html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction'/>
-    <reference name='xmlXPathSubstringBeforeFunction' href='html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction'/>
-    <reference name='xmlXPathSubstringFunction' href='html/libxml-xpathInternals.html#xmlXPathSubstringFunction'/>
-    <reference name='xmlXPathSumFunction' href='html/libxml-xpathInternals.html#xmlXPathSumFunction'/>
-    <reference name='xmlXPathTrailing' href='html/libxml-xpathInternals.html#xmlXPathTrailing'/>
-    <reference name='xmlXPathTrailingSorted' href='html/libxml-xpathInternals.html#xmlXPathTrailingSorted'/>
-    <reference name='xmlXPathTranslateFunction' href='html/libxml-xpathInternals.html#xmlXPathTranslateFunction'/>
-    <reference name='xmlXPathTrueFunction' href='html/libxml-xpathInternals.html#xmlXPathTrueFunction'/>
-    <reference name='xmlXPathType' href='html/libxml-xpath.html#xmlXPathType'/>
-    <reference name='xmlXPathTypePtr' href='html/libxml-xpath.html#xmlXPathTypePtr'/>
-    <reference name='xmlXPathValueFlipSign' href='html/libxml-xpathInternals.html#xmlXPathValueFlipSign'/>
-    <reference name='xmlXPathVariable' href='html/libxml-xpath.html#xmlXPathVariable'/>
-    <reference name='xmlXPathVariableLookup' href='html/libxml-xpathInternals.html#xmlXPathVariableLookup'/>
-    <reference name='xmlXPathVariableLookupFunc' href='html/libxml-xpath.html#xmlXPathVariableLookupFunc'/>
-    <reference name='xmlXPathVariableLookupNS' href='html/libxml-xpathInternals.html#xmlXPathVariableLookupNS'/>
-    <reference name='xmlXPathVariablePtr' href='html/libxml-xpath.html#xmlXPathVariablePtr'/>
-    <reference name='xmlXPathWrapCString' href='html/libxml-xpathInternals.html#xmlXPathWrapCString'/>
-    <reference name='xmlXPathWrapExternal' href='html/libxml-xpathInternals.html#xmlXPathWrapExternal'/>
-    <reference name='xmlXPathWrapNodeSet' href='html/libxml-xpathInternals.html#xmlXPathWrapNodeSet'/>
-    <reference name='xmlXPathWrapString' href='html/libxml-xpathInternals.html#xmlXPathWrapString'/>
-    <reference name='xmlXPatherror' href='html/libxml-xpathInternals.html#xmlXPatherror'/>
-    <reference name='xmlXPtrBuildNodeList' href='html/libxml-xpointer.html#xmlXPtrBuildNodeList'/>
-    <reference name='xmlXPtrEval' href='html/libxml-xpointer.html#xmlXPtrEval'/>
-    <reference name='xmlXPtrEvalRangePredicate' href='html/libxml-xpointer.html#xmlXPtrEvalRangePredicate'/>
-    <reference name='xmlXPtrFreeLocationSet' href='html/libxml-xpointer.html#xmlXPtrFreeLocationSet'/>
-    <reference name='xmlXPtrLocationSetAdd' href='html/libxml-xpointer.html#xmlXPtrLocationSetAdd'/>
-    <reference name='xmlXPtrLocationSetCreate' href='html/libxml-xpointer.html#xmlXPtrLocationSetCreate'/>
-    <reference name='xmlXPtrLocationSetDel' href='html/libxml-xpointer.html#xmlXPtrLocationSetDel'/>
-    <reference name='xmlXPtrLocationSetMerge' href='html/libxml-xpointer.html#xmlXPtrLocationSetMerge'/>
-    <reference name='xmlXPtrLocationSetRemove' href='html/libxml-xpointer.html#xmlXPtrLocationSetRemove'/>
-    <reference name='xmlXPtrNewCollapsedRange' href='html/libxml-xpointer.html#xmlXPtrNewCollapsedRange'/>
-    <reference name='xmlXPtrNewContext' href='html/libxml-xpointer.html#xmlXPtrNewContext'/>
-    <reference name='xmlXPtrNewLocationSetNodeSet' href='html/libxml-xpointer.html#xmlXPtrNewLocationSetNodeSet'/>
-    <reference name='xmlXPtrNewLocationSetNodes' href='html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes'/>
-    <reference name='xmlXPtrNewRange' href='html/libxml-xpointer.html#xmlXPtrNewRange'/>
-    <reference name='xmlXPtrNewRangeNodeObject' href='html/libxml-xpointer.html#xmlXPtrNewRangeNodeObject'/>
-    <reference name='xmlXPtrNewRangeNodePoint' href='html/libxml-xpointer.html#xmlXPtrNewRangeNodePoint'/>
-    <reference name='xmlXPtrNewRangeNodes' href='html/libxml-xpointer.html#xmlXPtrNewRangeNodes'/>
-    <reference name='xmlXPtrNewRangePointNode' href='html/libxml-xpointer.html#xmlXPtrNewRangePointNode'/>
-    <reference name='xmlXPtrNewRangePoints' href='html/libxml-xpointer.html#xmlXPtrNewRangePoints'/>
-    <reference name='xmlXPtrRangeToFunction' href='html/libxml-xpointer.html#xmlXPtrRangeToFunction'/>
-    <reference name='xmlXPtrWrapLocationSet' href='html/libxml-xpointer.html#xmlXPtrWrapLocationSet'/>
-  </references>
-  <alpha>
-    <letter name='A'>
-      <ref name='ATTRIBUTE_UNUSED'/>
-    </letter>
-    <letter name='B'>
-      <ref name='BAD_CAST'/>
-      <ref name='BASE_BUFFER_SIZE'/>
-    </letter>
-    <letter name='C'>
-      <ref name='CAST_TO_BOOLEAN'/>
-      <ref name='CAST_TO_NUMBER'/>
-      <ref name='CAST_TO_STRING'/>
-      <ref name='CHECK_ARITY'/>
-      <ref name='CHECK_ERROR'/>
-      <ref name='CHECK_ERROR0'/>
-      <ref name='CHECK_TYPE'/>
-      <ref name='CHECK_TYPE0'/>
-    </letter>
-    <letter name='D'>
-      <ref name='DEBUG_MEMORY'/>
-      <ref name='DEBUG_MEMORY_LOCATION'/>
-    </letter>
-    <letter name='H'>
-      <ref name='HTML_COMMENT_NODE'/>
-      <ref name='HTML_DEPRECATED'/>
-      <ref name='HTML_ENTITY_REF_NODE'/>
-      <ref name='HTML_INVALID'/>
-      <ref name='HTML_NA'/>
-      <ref name='HTML_PARSE_COMPACT'/>
-      <ref name='HTML_PARSE_IGNORE_ENC'/>
-      <ref name='HTML_PARSE_NOBLANKS'/>
-      <ref name='HTML_PARSE_NODEFDTD'/>
-      <ref name='HTML_PARSE_NOERROR'/>
-      <ref name='HTML_PARSE_NOIMPLIED'/>
-      <ref name='HTML_PARSE_NONET'/>
-      <ref name='HTML_PARSE_NOWARNING'/>
-      <ref name='HTML_PARSE_PEDANTIC'/>
-      <ref name='HTML_PARSE_RECOVER'/>
-      <ref name='HTML_PI_NODE'/>
-      <ref name='HTML_PRESERVE_NODE'/>
-      <ref name='HTML_REQUIRED'/>
-      <ref name='HTML_TEXT_NODE'/>
-      <ref name='HTML_VALID'/>
-    </letter>
-    <letter name='I'>
-      <ref name='INPUT_CHUNK'/>
-      <ref name='INVALID_SOCKET'/>
-      <ref name='IS_ASCII_DIGIT'/>
-      <ref name='IS_ASCII_LETTER'/>
-      <ref name='IS_BASECHAR'/>
-      <ref name='IS_BLANK'/>
-      <ref name='IS_BLANK_CH'/>
-      <ref name='IS_BYTE_CHAR'/>
-      <ref name='IS_CHAR'/>
-      <ref name='IS_CHAR_CH'/>
-      <ref name='IS_COMBINING'/>
-      <ref name='IS_COMBINING_CH'/>
-      <ref name='IS_DIGIT'/>
-      <ref name='IS_DIGIT_CH'/>
-      <ref name='IS_EXTENDER'/>
-      <ref name='IS_EXTENDER_CH'/>
-      <ref name='IS_IDEOGRAPHIC'/>
-      <ref name='IS_LETTER'/>
-      <ref name='IS_LETTER_CH'/>
-      <ref name='IS_PUBIDCHAR'/>
-      <ref name='IS_PUBIDCHAR_CH'/>
-    </letter>
-    <letter name='L'>
-      <ref name='LIBXML2_NEW_BUFFER'/>
-      <ref name='LIBXML_ATTR_ALLOC_SIZE'/>
-      <ref name='LIBXML_ATTR_FORMAT'/>
-      <ref name='LIBXML_AUTOMATA_ENABLED'/>
-      <ref name='LIBXML_C14N_ENABLED'/>
-      <ref name='LIBXML_CATALOG_ENABLED'/>
-      <ref name='LIBXML_DEBUG_ENABLED'/>
-      <ref name='LIBXML_DEBUG_RUNTIME'/>
-      <ref name='LIBXML_DLL_IMPORT'/>
-      <ref name='LIBXML_DOTTED_VERSION'/>
-      <ref name='LIBXML_EXPR_ENABLED'/>
-      <ref name='LIBXML_FTP_ENABLED'/>
-      <ref name='LIBXML_HTML_ENABLED'/>
-      <ref name='LIBXML_HTTP_ENABLED'/>
-      <ref name='LIBXML_ICONV_ENABLED'/>
-      <ref name='LIBXML_ICU_ENABLED'/>
-      <ref name='LIBXML_ISO8859X_ENABLED'/>
-      <ref name='LIBXML_LEGACY_ENABLED'/>
-      <ref name='LIBXML_LZMA_ENABLED'/>
-      <ref name='LIBXML_MODULES_ENABLED'/>
-      <ref name='LIBXML_MODULE_EXTENSION'/>
-      <ref name='LIBXML_OUTPUT_ENABLED'/>
-      <ref name='LIBXML_PATTERN_ENABLED'/>
-      <ref name='LIBXML_PUSH_ENABLED'/>
-      <ref name='LIBXML_READER_ENABLED'/>
-      <ref name='LIBXML_REGEXP_ENABLED'/>
-      <ref name='LIBXML_SAX1_ENABLED'/>
-      <ref name='LIBXML_SCHEMAS_ENABLED'/>
-      <ref name='LIBXML_SCHEMATRON_ENABLED'/>
-      <ref name='LIBXML_TEST_VERSION'/>
-      <ref name='LIBXML_THREAD_ALLOC_ENABLED'/>
-      <ref name='LIBXML_THREAD_ENABLED'/>
-      <ref name='LIBXML_TREE_ENABLED'/>
-      <ref name='LIBXML_UNICODE_ENABLED'/>
-      <ref name='LIBXML_VALID_ENABLED'/>
-      <ref name='LIBXML_VERSION'/>
-      <ref name='LIBXML_VERSION_EXTRA'/>
-      <ref name='LIBXML_VERSION_STRING'/>
-      <ref name='LIBXML_WRITER_ENABLED'/>
-      <ref name='LIBXML_XINCLUDE_ENABLED'/>
-      <ref name='LIBXML_XPATH_ENABLED'/>
-      <ref name='LIBXML_XPTR_ENABLED'/>
-      <ref name='LIBXML_XPTR_LOCS_ENABLED'/>
-      <ref name='LIBXML_ZLIB_ENABLED'/>
-    </letter>
-    <letter name='M'>
-      <ref name='MOVETO_ENDTAG'/>
-      <ref name='MOVETO_STARTTAG'/>
-    </letter>
-    <letter name='S'>
-      <ref name='SKIP_EOL'/>
-      <ref name='SOCKET'/>
-    </letter>
-    <letter name='U'>
-      <ref name='UTF8ToHtml'/>
-      <ref name='UTF8Toisolat1'/>
-    </letter>
-    <letter name='W'>
-      <ref name='WITHOUT_TRIO'/>
-      <ref name='WITH_TRIO'/>
-    </letter>
-    <letter name='X'>
-      <ref name='XINCLUDE_FALLBACK'/>
-      <ref name='XINCLUDE_HREF'/>
-      <ref name='XINCLUDE_NODE'/>
-      <ref name='XINCLUDE_NS'/>
-      <ref name='XINCLUDE_OLD_NS'/>
-      <ref name='XINCLUDE_PARSE'/>
-      <ref name='XINCLUDE_PARSE_ENCODING'/>
-      <ref name='XINCLUDE_PARSE_TEXT'/>
-      <ref name='XINCLUDE_PARSE_XML'/>
-      <ref name='XINCLUDE_PARSE_XPOINTER'/>
-      <ref name='XLINK_ACTUATE_AUTO'/>
-      <ref name='XLINK_ACTUATE_NONE'/>
-      <ref name='XLINK_ACTUATE_ONREQUEST'/>
-      <ref name='XLINK_SHOW_EMBED'/>
-      <ref name='XLINK_SHOW_NEW'/>
-      <ref name='XLINK_SHOW_NONE'/>
-      <ref name='XLINK_SHOW_REPLACE'/>
-      <ref name='XLINK_TYPE_EXTENDED'/>
-      <ref name='XLINK_TYPE_EXTENDED_SET'/>
-      <ref name='XLINK_TYPE_NONE'/>
-      <ref name='XLINK_TYPE_SIMPLE'/>
-      <ref name='XMLCALL'/>
-      <ref name='XMLCDECL'/>
-      <ref name='XMLPUBFUN'/>
-      <ref name='XMLPUBLIC'/>
-      <ref name='XMLPUBVAR'/>
-      <ref name='XML_ATTRIBUTE_CDATA'/>
-      <ref name='XML_ATTRIBUTE_DECL'/>
-      <ref name='XML_ATTRIBUTE_ENTITIES'/>
-      <ref name='XML_ATTRIBUTE_ENTITY'/>
-      <ref name='XML_ATTRIBUTE_ENUMERATION'/>
-      <ref name='XML_ATTRIBUTE_FIXED'/>
-      <ref name='XML_ATTRIBUTE_ID'/>
-      <ref name='XML_ATTRIBUTE_IDREF'/>
-      <ref name='XML_ATTRIBUTE_IDREFS'/>
-      <ref name='XML_ATTRIBUTE_IMPLIED'/>
-      <ref name='XML_ATTRIBUTE_NMTOKEN'/>
-      <ref name='XML_ATTRIBUTE_NMTOKENS'/>
-      <ref name='XML_ATTRIBUTE_NODE'/>
-      <ref name='XML_ATTRIBUTE_NONE'/>
-      <ref name='XML_ATTRIBUTE_NOTATION'/>
-      <ref name='XML_ATTRIBUTE_REQUIRED'/>
-      <ref name='XML_BUFFER_ALLOC_BOUNDED'/>
-      <ref name='XML_BUFFER_ALLOC_DOUBLEIT'/>
-      <ref name='XML_BUFFER_ALLOC_EXACT'/>
-      <ref name='XML_BUFFER_ALLOC_HYBRID'/>
-      <ref name='XML_BUFFER_ALLOC_IMMUTABLE'/>
-      <ref name='XML_BUFFER_ALLOC_IO'/>
-      <ref name='XML_BUF_OVERFLOW'/>
-      <ref name='XML_C14N_1_0'/>
-      <ref name='XML_C14N_1_1'/>
-      <ref name='XML_C14N_CREATE_CTXT'/>
-      <ref name='XML_C14N_CREATE_STACK'/>
-      <ref name='XML_C14N_EXCLUSIVE_1_0'/>
-      <ref name='XML_C14N_INVALID_NODE'/>
-      <ref name='XML_C14N_RELATIVE_NAMESPACE'/>
-      <ref name='XML_C14N_REQUIRES_UTF8'/>
-      <ref name='XML_C14N_UNKNOW_NODE'/>
-      <ref name='XML_CAST_FPTR'/>
-      <ref name='XML_CATALOGS_NAMESPACE'/>
-      <ref name='XML_CATALOG_ENTRY_BROKEN'/>
-      <ref name='XML_CATALOG_MISSING_ATTR'/>
-      <ref name='XML_CATALOG_NOT_CATALOG'/>
-      <ref name='XML_CATALOG_PI'/>
-      <ref name='XML_CATALOG_PREFER_VALUE'/>
-      <ref name='XML_CATALOG_RECURSION'/>
-      <ref name='XML_CATA_ALLOW_ALL'/>
-      <ref name='XML_CATA_ALLOW_DOCUMENT'/>
-      <ref name='XML_CATA_ALLOW_GLOBAL'/>
-      <ref name='XML_CATA_ALLOW_NONE'/>
-      <ref name='XML_CATA_PREFER_NONE'/>
-      <ref name='XML_CATA_PREFER_PUBLIC'/>
-      <ref name='XML_CATA_PREFER_SYSTEM'/>
-      <ref name='XML_CDATA_SECTION_NODE'/>
-      <ref name='XML_CHAR_ENCODING_2022_JP'/>
-      <ref name='XML_CHAR_ENCODING_8859_1'/>
-      <ref name='XML_CHAR_ENCODING_8859_2'/>
-      <ref name='XML_CHAR_ENCODING_8859_3'/>
-      <ref name='XML_CHAR_ENCODING_8859_4'/>
-      <ref name='XML_CHAR_ENCODING_8859_5'/>
-      <ref name='XML_CHAR_ENCODING_8859_6'/>
-      <ref name='XML_CHAR_ENCODING_8859_7'/>
-      <ref name='XML_CHAR_ENCODING_8859_8'/>
-      <ref name='XML_CHAR_ENCODING_8859_9'/>
-      <ref name='XML_CHAR_ENCODING_ASCII'/>
-      <ref name='XML_CHAR_ENCODING_EBCDIC'/>
-      <ref name='XML_CHAR_ENCODING_ERROR'/>
-      <ref name='XML_CHAR_ENCODING_EUC_JP'/>
-      <ref name='XML_CHAR_ENCODING_NONE'/>
-      <ref name='XML_CHAR_ENCODING_SHIFT_JIS'/>
-      <ref name='XML_CHAR_ENCODING_UCS2'/>
-      <ref name='XML_CHAR_ENCODING_UCS4BE'/>
-      <ref name='XML_CHAR_ENCODING_UCS4LE'/>
-      <ref name='XML_CHAR_ENCODING_UCS4_2143'/>
-      <ref name='XML_CHAR_ENCODING_UCS4_3412'/>
-      <ref name='XML_CHAR_ENCODING_UTF16BE'/>
-      <ref name='XML_CHAR_ENCODING_UTF16LE'/>
-      <ref name='XML_CHAR_ENCODING_UTF8'/>
-      <ref name='XML_CHECK_ENTITY_TYPE'/>
-      <ref name='XML_CHECK_FOUND_ATTRIBUTE'/>
-      <ref name='XML_CHECK_FOUND_CDATA'/>
-      <ref name='XML_CHECK_FOUND_COMMENT'/>
-      <ref name='XML_CHECK_FOUND_DOCTYPE'/>
-      <ref name='XML_CHECK_FOUND_ELEMENT'/>
-      <ref name='XML_CHECK_FOUND_ENTITY'/>
-      <ref name='XML_CHECK_FOUND_ENTITYREF'/>
-      <ref name='XML_CHECK_FOUND_FRAGMENT'/>
-      <ref name='XML_CHECK_FOUND_NOTATION'/>
-      <ref name='XML_CHECK_FOUND_PI'/>
-      <ref name='XML_CHECK_FOUND_TEXT'/>
-      <ref name='XML_CHECK_NAME_NOT_NULL'/>
-      <ref name='XML_CHECK_NOT_ATTR'/>
-      <ref name='XML_CHECK_NOT_ATTR_DECL'/>
-      <ref name='XML_CHECK_NOT_DTD'/>
-      <ref name='XML_CHECK_NOT_ELEM_DECL'/>
-      <ref name='XML_CHECK_NOT_ENTITY_DECL'/>
-      <ref name='XML_CHECK_NOT_NCNAME'/>
-      <ref name='XML_CHECK_NOT_NS_DECL'/>
-      <ref name='XML_CHECK_NOT_UTF8'/>
-      <ref name='XML_CHECK_NO_DICT'/>
-      <ref name='XML_CHECK_NO_DOC'/>
-      <ref name='XML_CHECK_NO_ELEM'/>
-      <ref name='XML_CHECK_NO_HREF'/>
-      <ref name='XML_CHECK_NO_NAME'/>
-      <ref name='XML_CHECK_NO_NEXT'/>
-      <ref name='XML_CHECK_NO_PARENT'/>
-      <ref name='XML_CHECK_NO_PREV'/>
-      <ref name='XML_CHECK_NS_ANCESTOR'/>
-      <ref name='XML_CHECK_NS_SCOPE'/>
-      <ref name='XML_CHECK_OUTSIDE_DICT'/>
-      <ref name='XML_CHECK_UNKNOWN_NODE'/>
-      <ref name='XML_CHECK_WRONG_DOC'/>
-      <ref name='XML_CHECK_WRONG_NAME'/>
-      <ref name='XML_CHECK_WRONG_NEXT'/>
-      <ref name='XML_CHECK_WRONG_PARENT'/>
-      <ref name='XML_CHECK_WRONG_PREV'/>
-      <ref name='XML_COMMENT_NODE'/>
-      <ref name='XML_COMPLETE_ATTRS'/>
-      <ref name='XML_DEFAULT_VERSION'/>
-      <ref name='XML_DEPRECATED'/>
-      <ref name='XML_DETECT_IDS'/>
-      <ref name='XML_DOCB_DOCUMENT_NODE'/>
-      <ref name='XML_DOCUMENT_FRAG_NODE'/>
-      <ref name='XML_DOCUMENT_NODE'/>
-      <ref name='XML_DOCUMENT_TYPE_NODE'/>
-      <ref name='XML_DOC_DTDVALID'/>
-      <ref name='XML_DOC_HTML'/>
-      <ref name='XML_DOC_INTERNAL'/>
-      <ref name='XML_DOC_NSVALID'/>
-      <ref name='XML_DOC_OLD10'/>
-      <ref name='XML_DOC_USERBUILT'/>
-      <ref name='XML_DOC_WELLFORMED'/>
-      <ref name='XML_DOC_XINCLUDE'/>
-      <ref name='XML_DTD_ATTRIBUTE_DEFAULT'/>
-      <ref name='XML_DTD_ATTRIBUTE_REDEFINED'/>
-      <ref name='XML_DTD_ATTRIBUTE_VALUE'/>
-      <ref name='XML_DTD_CONTENT_ERROR'/>
-      <ref name='XML_DTD_CONTENT_MODEL'/>
-      <ref name='XML_DTD_CONTENT_NOT_DETERMINIST'/>
-      <ref name='XML_DTD_DIFFERENT_PREFIX'/>
-      <ref name='XML_DTD_DUP_TOKEN'/>
-      <ref name='XML_DTD_ELEM_DEFAULT_NAMESPACE'/>
-      <ref name='XML_DTD_ELEM_NAMESPACE'/>
-      <ref name='XML_DTD_ELEM_REDEFINED'/>
-      <ref name='XML_DTD_EMPTY_NOTATION'/>
-      <ref name='XML_DTD_ENTITY_TYPE'/>
-      <ref name='XML_DTD_ID_FIXED'/>
-      <ref name='XML_DTD_ID_REDEFINED'/>
-      <ref name='XML_DTD_ID_SUBSET'/>
-      <ref name='XML_DTD_INVALID_CHILD'/>
-      <ref name='XML_DTD_INVALID_DEFAULT'/>
-      <ref name='XML_DTD_LOAD_ERROR'/>
-      <ref name='XML_DTD_MISSING_ATTRIBUTE'/>
-      <ref name='XML_DTD_MIXED_CORRUPT'/>
-      <ref name='XML_DTD_MULTIPLE_ID'/>
-      <ref name='XML_DTD_NODE'/>
-      <ref name='XML_DTD_NOTATION_REDEFINED'/>
-      <ref name='XML_DTD_NOTATION_VALUE'/>
-      <ref name='XML_DTD_NOT_EMPTY'/>
-      <ref name='XML_DTD_NOT_PCDATA'/>
-      <ref name='XML_DTD_NOT_STANDALONE'/>
-      <ref name='XML_DTD_NO_DOC'/>
-      <ref name='XML_DTD_NO_DTD'/>
-      <ref name='XML_DTD_NO_ELEM_NAME'/>
-      <ref name='XML_DTD_NO_PREFIX'/>
-      <ref name='XML_DTD_NO_ROOT'/>
-      <ref name='XML_DTD_ROOT_NAME'/>
-      <ref name='XML_DTD_STANDALONE_DEFAULTED'/>
-      <ref name='XML_DTD_STANDALONE_WHITE_SPACE'/>
-      <ref name='XML_DTD_UNKNOWN_ATTRIBUTE'/>
-      <ref name='XML_DTD_UNKNOWN_ELEM'/>
-      <ref name='XML_DTD_UNKNOWN_ENTITY'/>
-      <ref name='XML_DTD_UNKNOWN_ID'/>
-      <ref name='XML_DTD_UNKNOWN_NOTATION'/>
-      <ref name='XML_DTD_XMLID_TYPE'/>
-      <ref name='XML_DTD_XMLID_VALUE'/>
-      <ref name='XML_ELEMENT_CONTENT_ELEMENT'/>
-      <ref name='XML_ELEMENT_CONTENT_MULT'/>
-      <ref name='XML_ELEMENT_CONTENT_ONCE'/>
-      <ref name='XML_ELEMENT_CONTENT_OPT'/>
-      <ref name='XML_ELEMENT_CONTENT_OR'/>
-      <ref name='XML_ELEMENT_CONTENT_PCDATA'/>
-      <ref name='XML_ELEMENT_CONTENT_PLUS'/>
-      <ref name='XML_ELEMENT_CONTENT_SEQ'/>
-      <ref name='XML_ELEMENT_DECL'/>
-      <ref name='XML_ELEMENT_NODE'/>
-      <ref name='XML_ELEMENT_TYPE_ANY'/>
-      <ref name='XML_ELEMENT_TYPE_ELEMENT'/>
-      <ref name='XML_ELEMENT_TYPE_EMPTY'/>
-      <ref name='XML_ELEMENT_TYPE_MIXED'/>
-      <ref name='XML_ELEMENT_TYPE_UNDEFINED'/>
-      <ref name='XML_ENTITY_DECL'/>
-      <ref name='XML_ENTITY_NODE'/>
-      <ref name='XML_ENTITY_REF_NODE'/>
-      <ref name='XML_ERR_ATTLIST_NOT_FINISHED'/>
-      <ref name='XML_ERR_ATTLIST_NOT_STARTED'/>
-      <ref name='XML_ERR_ATTRIBUTE_NOT_FINISHED'/>
-      <ref name='XML_ERR_ATTRIBUTE_NOT_STARTED'/>
-      <ref name='XML_ERR_ATTRIBUTE_REDEFINED'/>
-      <ref name='XML_ERR_ATTRIBUTE_WITHOUT_VALUE'/>
-      <ref name='XML_ERR_CDATA_NOT_FINISHED'/>
-      <ref name='XML_ERR_CHARREF_AT_EOF'/>
-      <ref name='XML_ERR_CHARREF_IN_DTD'/>
-      <ref name='XML_ERR_CHARREF_IN_EPILOG'/>
-      <ref name='XML_ERR_CHARREF_IN_PROLOG'/>
-      <ref name='XML_ERR_COMMENT_ABRUPTLY_ENDED'/>
-      <ref name='XML_ERR_COMMENT_NOT_FINISHED'/>
-      <ref name='XML_ERR_CONDSEC_INVALID'/>
-      <ref name='XML_ERR_CONDSEC_INVALID_KEYWORD'/>
-      <ref name='XML_ERR_CONDSEC_NOT_FINISHED'/>
-      <ref name='XML_ERR_CONDSEC_NOT_STARTED'/>
-      <ref name='XML_ERR_DOCTYPE_NOT_FINISHED'/>
-      <ref name='XML_ERR_DOCUMENT_EMPTY'/>
-      <ref name='XML_ERR_DOCUMENT_END'/>
-      <ref name='XML_ERR_DOCUMENT_START'/>
-      <ref name='XML_ERR_ELEMCONTENT_NOT_FINISHED'/>
-      <ref name='XML_ERR_ELEMCONTENT_NOT_STARTED'/>
-      <ref name='XML_ERR_ENCODING_NAME'/>
-      <ref name='XML_ERR_ENTITYREF_AT_EOF'/>
-      <ref name='XML_ERR_ENTITYREF_IN_DTD'/>
-      <ref name='XML_ERR_ENTITYREF_IN_EPILOG'/>
-      <ref name='XML_ERR_ENTITYREF_IN_PROLOG'/>
-      <ref name='XML_ERR_ENTITYREF_NO_NAME'/>
-      <ref name='XML_ERR_ENTITYREF_SEMICOL_MISSING'/>
-      <ref name='XML_ERR_ENTITY_BOUNDARY'/>
-      <ref name='XML_ERR_ENTITY_CHAR_ERROR'/>
-      <ref name='XML_ERR_ENTITY_IS_EXTERNAL'/>
-      <ref name='XML_ERR_ENTITY_IS_PARAMETER'/>
-      <ref name='XML_ERR_ENTITY_LOOP'/>
-      <ref name='XML_ERR_ENTITY_NOT_FINISHED'/>
-      <ref name='XML_ERR_ENTITY_NOT_STARTED'/>
-      <ref name='XML_ERR_ENTITY_PE_INTERNAL'/>
-      <ref name='XML_ERR_ENTITY_PROCESSING'/>
-      <ref name='XML_ERR_EQUAL_REQUIRED'/>
-      <ref name='XML_ERR_ERROR'/>
-      <ref name='XML_ERR_EXTRA_CONTENT'/>
-      <ref name='XML_ERR_EXT_ENTITY_STANDALONE'/>
-      <ref name='XML_ERR_EXT_SUBSET_NOT_FINISHED'/>
-      <ref name='XML_ERR_FATAL'/>
-      <ref name='XML_ERR_GT_REQUIRED'/>
-      <ref name='XML_ERR_HYPHEN_IN_COMMENT'/>
-      <ref name='XML_ERR_INTERNAL_ERROR'/>
-      <ref name='XML_ERR_INVALID_CHAR'/>
-      <ref name='XML_ERR_INVALID_CHARREF'/>
-      <ref name='XML_ERR_INVALID_DEC_CHARREF'/>
-      <ref name='XML_ERR_INVALID_ENCODING'/>
-      <ref name='XML_ERR_INVALID_HEX_CHARREF'/>
-      <ref name='XML_ERR_INVALID_URI'/>
-      <ref name='XML_ERR_LITERAL_NOT_FINISHED'/>
-      <ref name='XML_ERR_LITERAL_NOT_STARTED'/>
-      <ref name='XML_ERR_LTSLASH_REQUIRED'/>
-      <ref name='XML_ERR_LT_IN_ATTRIBUTE'/>
-      <ref name='XML_ERR_LT_REQUIRED'/>
-      <ref name='XML_ERR_MISPLACED_CDATA_END'/>
-      <ref name='XML_ERR_MISSING_ENCODING'/>
-      <ref name='XML_ERR_MIXED_NOT_FINISHED'/>
-      <ref name='XML_ERR_MIXED_NOT_STARTED'/>
-      <ref name='XML_ERR_NAME_REQUIRED'/>
-      <ref name='XML_ERR_NAME_TOO_LONG'/>
-      <ref name='XML_ERR_NMTOKEN_REQUIRED'/>
-      <ref name='XML_ERR_NONE'/>
-      <ref name='XML_ERR_NOTATION_NOT_FINISHED'/>
-      <ref name='XML_ERR_NOTATION_NOT_STARTED'/>
-      <ref name='XML_ERR_NOTATION_PROCESSING'/>
-      <ref name='XML_ERR_NOT_STANDALONE'/>
-      <ref name='XML_ERR_NOT_WELL_BALANCED'/>
-      <ref name='XML_ERR_NO_DTD'/>
-      <ref name='XML_ERR_NO_MEMORY'/>
-      <ref name='XML_ERR_NS_DECL_ERROR'/>
-      <ref name='XML_ERR_OK'/>
-      <ref name='XML_ERR_PCDATA_REQUIRED'/>
-      <ref name='XML_ERR_PEREF_AT_EOF'/>
-      <ref name='XML_ERR_PEREF_IN_EPILOG'/>
-      <ref name='XML_ERR_PEREF_IN_INT_SUBSET'/>
-      <ref name='XML_ERR_PEREF_IN_PROLOG'/>
-      <ref name='XML_ERR_PEREF_NO_NAME'/>
-      <ref name='XML_ERR_PEREF_SEMICOL_MISSING'/>
-      <ref name='XML_ERR_PI_NOT_FINISHED'/>
-      <ref name='XML_ERR_PI_NOT_STARTED'/>
-      <ref name='XML_ERR_PUBID_REQUIRED'/>
-      <ref name='XML_ERR_RESERVED_XML_NAME'/>
-      <ref name='XML_ERR_SEPARATOR_REQUIRED'/>
-      <ref name='XML_ERR_SPACE_REQUIRED'/>
-      <ref name='XML_ERR_STANDALONE_VALUE'/>
-      <ref name='XML_ERR_STRING_NOT_CLOSED'/>
-      <ref name='XML_ERR_STRING_NOT_STARTED'/>
-      <ref name='XML_ERR_TAG_NAME_MISMATCH'/>
-      <ref name='XML_ERR_TAG_NOT_FINISHED'/>
-      <ref name='XML_ERR_UNDECLARED_ENTITY'/>
-      <ref name='XML_ERR_UNKNOWN_ENCODING'/>
-      <ref name='XML_ERR_UNKNOWN_VERSION'/>
-      <ref name='XML_ERR_UNPARSED_ENTITY'/>
-      <ref name='XML_ERR_UNSUPPORTED_ENCODING'/>
-      <ref name='XML_ERR_URI_FRAGMENT'/>
-      <ref name='XML_ERR_URI_REQUIRED'/>
-      <ref name='XML_ERR_USER_STOP'/>
-      <ref name='XML_ERR_VALUE_REQUIRED'/>
-      <ref name='XML_ERR_VERSION_MISMATCH'/>
-      <ref name='XML_ERR_VERSION_MISSING'/>
-      <ref name='XML_ERR_WARNING'/>
-      <ref name='XML_ERR_XMLDECL_NOT_FINISHED'/>
-      <ref name='XML_ERR_XMLDECL_NOT_STARTED'/>
-      <ref name='XML_EXP_ATOM'/>
-      <ref name='XML_EXP_COUNT'/>
-      <ref name='XML_EXP_EMPTY'/>
-      <ref name='XML_EXP_FORBID'/>
-      <ref name='XML_EXP_OR'/>
-      <ref name='XML_EXP_SEQ'/>
-      <ref name='XML_EXTERNAL_GENERAL_PARSED_ENTITY'/>
-      <ref name='XML_EXTERNAL_GENERAL_UNPARSED_ENTITY'/>
-      <ref name='XML_EXTERNAL_PARAMETER_ENTITY'/>
-      <ref name='XML_FROM_BUFFER'/>
-      <ref name='XML_FROM_C14N'/>
-      <ref name='XML_FROM_CATALOG'/>
-      <ref name='XML_FROM_CHECK'/>
-      <ref name='XML_FROM_DATATYPE'/>
-      <ref name='XML_FROM_DTD'/>
-      <ref name='XML_FROM_FTP'/>
-      <ref name='XML_FROM_HTML'/>
-      <ref name='XML_FROM_HTTP'/>
-      <ref name='XML_FROM_I18N'/>
-      <ref name='XML_FROM_IO'/>
-      <ref name='XML_FROM_MEMORY'/>
-      <ref name='XML_FROM_MODULE'/>
-      <ref name='XML_FROM_NAMESPACE'/>
-      <ref name='XML_FROM_NONE'/>
-      <ref name='XML_FROM_OUTPUT'/>
-      <ref name='XML_FROM_PARSER'/>
-      <ref name='XML_FROM_REGEXP'/>
-      <ref name='XML_FROM_RELAXNGP'/>
-      <ref name='XML_FROM_RELAXNGV'/>
-      <ref name='XML_FROM_SCHEMASP'/>
-      <ref name='XML_FROM_SCHEMASV'/>
-      <ref name='XML_FROM_SCHEMATRONV'/>
-      <ref name='XML_FROM_TREE'/>
-      <ref name='XML_FROM_URI'/>
-      <ref name='XML_FROM_VALID'/>
-      <ref name='XML_FROM_WRITER'/>
-      <ref name='XML_FROM_XINCLUDE'/>
-      <ref name='XML_FROM_XPATH'/>
-      <ref name='XML_FROM_XPOINTER'/>
-      <ref name='XML_FROM_XSLT'/>
-      <ref name='XML_FTP_ACCNT'/>
-      <ref name='XML_FTP_EPSV_ANSWER'/>
-      <ref name='XML_FTP_PASV_ANSWER'/>
-      <ref name='XML_FTP_URL_SYNTAX'/>
-      <ref name='XML_GET_CONTENT'/>
-      <ref name='XML_GET_LINE'/>
-      <ref name='XML_HTML_DOCUMENT_NODE'/>
-      <ref name='XML_HTML_INCORRECTLY_OPENED_COMMENT'/>
-      <ref name='XML_HTML_STRUCURE_ERROR'/>
-      <ref name='XML_HTML_UNKNOWN_TAG'/>
-      <ref name='XML_HTTP_UNKNOWN_HOST'/>
-      <ref name='XML_HTTP_URL_SYNTAX'/>
-      <ref name='XML_HTTP_USE_IP'/>
-      <ref name='XML_I18N_CONV_FAILED'/>
-      <ref name='XML_I18N_EXCESS_HANDLER'/>
-      <ref name='XML_I18N_NO_HANDLER'/>
-      <ref name='XML_I18N_NO_NAME'/>
-      <ref name='XML_I18N_NO_OUTPUT'/>
-      <ref name='XML_INTERNAL_GENERAL_ENTITY'/>
-      <ref name='XML_INTERNAL_PARAMETER_ENTITY'/>
-      <ref name='XML_INTERNAL_PREDEFINED_ENTITY'/>
-      <ref name='XML_IO_BUFFER_FULL'/>
-      <ref name='XML_IO_EACCES'/>
-      <ref name='XML_IO_EADDRINUSE'/>
-      <ref name='XML_IO_EAFNOSUPPORT'/>
-      <ref name='XML_IO_EAGAIN'/>
-      <ref name='XML_IO_EALREADY'/>
-      <ref name='XML_IO_EBADF'/>
-      <ref name='XML_IO_EBADMSG'/>
-      <ref name='XML_IO_EBUSY'/>
-      <ref name='XML_IO_ECANCELED'/>
-      <ref name='XML_IO_ECHILD'/>
-      <ref name='XML_IO_ECONNREFUSED'/>
-      <ref name='XML_IO_EDEADLK'/>
-      <ref name='XML_IO_EDOM'/>
-      <ref name='XML_IO_EEXIST'/>
-      <ref name='XML_IO_EFAULT'/>
-      <ref name='XML_IO_EFBIG'/>
-      <ref name='XML_IO_EINPROGRESS'/>
-      <ref name='XML_IO_EINTR'/>
-      <ref name='XML_IO_EINVAL'/>
-      <ref name='XML_IO_EIO'/>
-      <ref name='XML_IO_EISCONN'/>
-      <ref name='XML_IO_EISDIR'/>
-      <ref name='XML_IO_EMFILE'/>
-      <ref name='XML_IO_EMLINK'/>
-      <ref name='XML_IO_EMSGSIZE'/>
-      <ref name='XML_IO_ENAMETOOLONG'/>
-      <ref name='XML_IO_ENCODER'/>
-      <ref name='XML_IO_ENETUNREACH'/>
-      <ref name='XML_IO_ENFILE'/>
-      <ref name='XML_IO_ENODEV'/>
-      <ref name='XML_IO_ENOENT'/>
-      <ref name='XML_IO_ENOEXEC'/>
-      <ref name='XML_IO_ENOLCK'/>
-      <ref name='XML_IO_ENOMEM'/>
-      <ref name='XML_IO_ENOSPC'/>
-      <ref name='XML_IO_ENOSYS'/>
-      <ref name='XML_IO_ENOTDIR'/>
-      <ref name='XML_IO_ENOTEMPTY'/>
-      <ref name='XML_IO_ENOTSOCK'/>
-      <ref name='XML_IO_ENOTSUP'/>
-      <ref name='XML_IO_ENOTTY'/>
-      <ref name='XML_IO_ENXIO'/>
-      <ref name='XML_IO_EPERM'/>
-      <ref name='XML_IO_EPIPE'/>
-      <ref name='XML_IO_ERANGE'/>
-      <ref name='XML_IO_EROFS'/>
-      <ref name='XML_IO_ESPIPE'/>
-      <ref name='XML_IO_ESRCH'/>
-      <ref name='XML_IO_ETIMEDOUT'/>
-      <ref name='XML_IO_EXDEV'/>
-      <ref name='XML_IO_FLUSH'/>
-      <ref name='XML_IO_LOAD_ERROR'/>
-      <ref name='XML_IO_NETWORK_ATTEMPT'/>
-      <ref name='XML_IO_NO_INPUT'/>
-      <ref name='XML_IO_UNKNOWN'/>
-      <ref name='XML_IO_WRITE'/>
-      <ref name='XML_LOCAL_NAMESPACE'/>
-      <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-      <ref name='XML_MAX_LOOKUP_LIMIT'/>
-      <ref name='XML_MAX_NAMELEN'/>
-      <ref name='XML_MAX_NAME_LENGTH'/>
-      <ref name='XML_MAX_TEXT_LENGTH'/>
-      <ref name='XML_MODULE_CLOSE'/>
-      <ref name='XML_MODULE_LAZY'/>
-      <ref name='XML_MODULE_LOCAL'/>
-      <ref name='XML_MODULE_OPEN'/>
-      <ref name='XML_NAMESPACE_DECL'/>
-      <ref name='XML_NOTATION_NODE'/>
-      <ref name='XML_NS_ERR_ATTRIBUTE_REDEFINED'/>
-      <ref name='XML_NS_ERR_COLON'/>
-      <ref name='XML_NS_ERR_EMPTY'/>
-      <ref name='XML_NS_ERR_QNAME'/>
-      <ref name='XML_NS_ERR_UNDEFINED_NAMESPACE'/>
-      <ref name='XML_NS_ERR_XML_NAMESPACE'/>
-      <ref name='XML_PARSER_ATTRIBUTE_VALUE'/>
-      <ref name='XML_PARSER_CDATA_SECTION'/>
-      <ref name='XML_PARSER_COMMENT'/>
-      <ref name='XML_PARSER_CONTENT'/>
-      <ref name='XML_PARSER_DEFAULTATTRS'/>
-      <ref name='XML_PARSER_DTD'/>
-      <ref name='XML_PARSER_END_TAG'/>
-      <ref name='XML_PARSER_ENTITY_DECL'/>
-      <ref name='XML_PARSER_ENTITY_VALUE'/>
-      <ref name='XML_PARSER_EOF'/>
-      <ref name='XML_PARSER_EPILOG'/>
-      <ref name='XML_PARSER_IGNORE'/>
-      <ref name='XML_PARSER_LOADDTD'/>
-      <ref name='XML_PARSER_MISC'/>
-      <ref name='XML_PARSER_PI'/>
-      <ref name='XML_PARSER_PROLOG'/>
-      <ref name='XML_PARSER_PUBLIC_LITERAL'/>
-      <ref name='XML_PARSER_SEVERITY_ERROR'/>
-      <ref name='XML_PARSER_SEVERITY_VALIDITY_ERROR'/>
-      <ref name='XML_PARSER_SEVERITY_VALIDITY_WARNING'/>
-      <ref name='XML_PARSER_SEVERITY_WARNING'/>
-      <ref name='XML_PARSER_START'/>
-      <ref name='XML_PARSER_START_TAG'/>
-      <ref name='XML_PARSER_SUBST_ENTITIES'/>
-      <ref name='XML_PARSER_SYSTEM_LITERAL'/>
-      <ref name='XML_PARSER_VALIDATE'/>
-      <ref name='XML_PARSE_BIG_LINES'/>
-      <ref name='XML_PARSE_COMPACT'/>
-      <ref name='XML_PARSE_DOM'/>
-      <ref name='XML_PARSE_DTDATTR'/>
-      <ref name='XML_PARSE_DTDLOAD'/>
-      <ref name='XML_PARSE_DTDVALID'/>
-      <ref name='XML_PARSE_HUGE'/>
-      <ref name='XML_PARSE_IGNORE_ENC'/>
-      <ref name='XML_PARSE_NOBASEFIX'/>
-      <ref name='XML_PARSE_NOBLANKS'/>
-      <ref name='XML_PARSE_NOCDATA'/>
-      <ref name='XML_PARSE_NODICT'/>
-      <ref name='XML_PARSE_NOENT'/>
-      <ref name='XML_PARSE_NOERROR'/>
-      <ref name='XML_PARSE_NONET'/>
-      <ref name='XML_PARSE_NOWARNING'/>
-      <ref name='XML_PARSE_NOXINCNODE'/>
-      <ref name='XML_PARSE_NSCLEAN'/>
-      <ref name='XML_PARSE_OLD10'/>
-      <ref name='XML_PARSE_OLDSAX'/>
-      <ref name='XML_PARSE_PEDANTIC'/>
-      <ref name='XML_PARSE_PUSH_DOM'/>
-      <ref name='XML_PARSE_PUSH_SAX'/>
-      <ref name='XML_PARSE_READER'/>
-      <ref name='XML_PARSE_RECOVER'/>
-      <ref name='XML_PARSE_SAX'/>
-      <ref name='XML_PARSE_SAX1'/>
-      <ref name='XML_PARSE_UNKNOWN'/>
-      <ref name='XML_PARSE_XINCLUDE'/>
-      <ref name='XML_PATTERN_DEFAULT'/>
-      <ref name='XML_PATTERN_XPATH'/>
-      <ref name='XML_PATTERN_XSFIELD'/>
-      <ref name='XML_PATTERN_XSSEL'/>
-      <ref name='XML_PI_NODE'/>
-      <ref name='XML_READER_TYPE_ATTRIBUTE'/>
-      <ref name='XML_READER_TYPE_CDATA'/>
-      <ref name='XML_READER_TYPE_COMMENT'/>
-      <ref name='XML_READER_TYPE_DOCUMENT'/>
-      <ref name='XML_READER_TYPE_DOCUMENT_FRAGMENT'/>
-      <ref name='XML_READER_TYPE_DOCUMENT_TYPE'/>
-      <ref name='XML_READER_TYPE_ELEMENT'/>
-      <ref name='XML_READER_TYPE_END_ELEMENT'/>
-      <ref name='XML_READER_TYPE_END_ENTITY'/>
-      <ref name='XML_READER_TYPE_ENTITY'/>
-      <ref name='XML_READER_TYPE_ENTITY_REFERENCE'/>
-      <ref name='XML_READER_TYPE_NONE'/>
-      <ref name='XML_READER_TYPE_NOTATION'/>
-      <ref name='XML_READER_TYPE_PROCESSING_INSTRUCTION'/>
-      <ref name='XML_READER_TYPE_SIGNIFICANT_WHITESPACE'/>
-      <ref name='XML_READER_TYPE_TEXT'/>
-      <ref name='XML_READER_TYPE_WHITESPACE'/>
-      <ref name='XML_READER_TYPE_XML_DECLARATION'/>
-      <ref name='XML_REGEXP_COMPILE_ERROR'/>
-      <ref name='XML_RELAXNGP_CRNG'/>
-      <ref name='XML_RELAXNGP_FREE_DOC'/>
-      <ref name='XML_RELAXNGP_NONE'/>
-      <ref name='XML_RELAXNG_ERR_ATTREXTRANS'/>
-      <ref name='XML_RELAXNG_ERR_ATTRNAME'/>
-      <ref name='XML_RELAXNG_ERR_ATTRNONS'/>
-      <ref name='XML_RELAXNG_ERR_ATTRVALID'/>
-      <ref name='XML_RELAXNG_ERR_ATTRWRONGNS'/>
-      <ref name='XML_RELAXNG_ERR_CONTENTVALID'/>
-      <ref name='XML_RELAXNG_ERR_DATAELEM'/>
-      <ref name='XML_RELAXNG_ERR_DATATYPE'/>
-      <ref name='XML_RELAXNG_ERR_DUPID'/>
-      <ref name='XML_RELAXNG_ERR_ELEMEXTRANS'/>
-      <ref name='XML_RELAXNG_ERR_ELEMNAME'/>
-      <ref name='XML_RELAXNG_ERR_ELEMNONS'/>
-      <ref name='XML_RELAXNG_ERR_ELEMNOTEMPTY'/>
-      <ref name='XML_RELAXNG_ERR_ELEMWRONG'/>
-      <ref name='XML_RELAXNG_ERR_ELEMWRONGNS'/>
-      <ref name='XML_RELAXNG_ERR_EXTRACONTENT'/>
-      <ref name='XML_RELAXNG_ERR_EXTRADATA'/>
-      <ref name='XML_RELAXNG_ERR_INTEREXTRA'/>
-      <ref name='XML_RELAXNG_ERR_INTERNAL'/>
-      <ref name='XML_RELAXNG_ERR_INTERNODATA'/>
-      <ref name='XML_RELAXNG_ERR_INTERSEQ'/>
-      <ref name='XML_RELAXNG_ERR_INVALIDATTR'/>
-      <ref name='XML_RELAXNG_ERR_LACKDATA'/>
-      <ref name='XML_RELAXNG_ERR_LIST'/>
-      <ref name='XML_RELAXNG_ERR_LISTELEM'/>
-      <ref name='XML_RELAXNG_ERR_LISTEMPTY'/>
-      <ref name='XML_RELAXNG_ERR_LISTEXTRA'/>
-      <ref name='XML_RELAXNG_ERR_MEMORY'/>
-      <ref name='XML_RELAXNG_ERR_NODEFINE'/>
-      <ref name='XML_RELAXNG_ERR_NOELEM'/>
-      <ref name='XML_RELAXNG_ERR_NOGRAMMAR'/>
-      <ref name='XML_RELAXNG_ERR_NOSTATE'/>
-      <ref name='XML_RELAXNG_ERR_NOTELEM'/>
-      <ref name='XML_RELAXNG_ERR_TEXTWRONG'/>
-      <ref name='XML_RELAXNG_ERR_TYPE'/>
-      <ref name='XML_RELAXNG_ERR_TYPECMP'/>
-      <ref name='XML_RELAXNG_ERR_TYPEVAL'/>
-      <ref name='XML_RELAXNG_ERR_VALELEM'/>
-      <ref name='XML_RELAXNG_ERR_VALUE'/>
-      <ref name='XML_RELAXNG_OK'/>
-      <ref name='XML_RNGP_ANYNAME_ATTR_ANCESTOR'/>
-      <ref name='XML_RNGP_ATTRIBUTE_CHILDREN'/>
-      <ref name='XML_RNGP_ATTRIBUTE_CONTENT'/>
-      <ref name='XML_RNGP_ATTRIBUTE_EMPTY'/>
-      <ref name='XML_RNGP_ATTRIBUTE_NOOP'/>
-      <ref name='XML_RNGP_ATTR_CONFLICT'/>
-      <ref name='XML_RNGP_CHOICE_CONTENT'/>
-      <ref name='XML_RNGP_CHOICE_EMPTY'/>
-      <ref name='XML_RNGP_CREATE_FAILURE'/>
-      <ref name='XML_RNGP_DATA_CONTENT'/>
-      <ref name='XML_RNGP_DEFINE_CREATE_FAILED'/>
-      <ref name='XML_RNGP_DEFINE_EMPTY'/>
-      <ref name='XML_RNGP_DEFINE_MISSING'/>
-      <ref name='XML_RNGP_DEFINE_NAME_MISSING'/>
-      <ref name='XML_RNGP_DEF_CHOICE_AND_INTERLEAVE'/>
-      <ref name='XML_RNGP_ELEMENT_CONTENT'/>
-      <ref name='XML_RNGP_ELEMENT_EMPTY'/>
-      <ref name='XML_RNGP_ELEMENT_NAME'/>
-      <ref name='XML_RNGP_ELEMENT_NO_CONTENT'/>
-      <ref name='XML_RNGP_ELEM_CONTENT_EMPTY'/>
-      <ref name='XML_RNGP_ELEM_CONTENT_ERROR'/>
-      <ref name='XML_RNGP_ELEM_TEXT_CONFLICT'/>
-      <ref name='XML_RNGP_EMPTY'/>
-      <ref name='XML_RNGP_EMPTY_CONSTRUCT'/>
-      <ref name='XML_RNGP_EMPTY_CONTENT'/>
-      <ref name='XML_RNGP_EMPTY_NOT_EMPTY'/>
-      <ref name='XML_RNGP_ERROR_TYPE_LIB'/>
-      <ref name='XML_RNGP_EXCEPT_EMPTY'/>
-      <ref name='XML_RNGP_EXCEPT_MISSING'/>
-      <ref name='XML_RNGP_EXCEPT_MULTIPLE'/>
-      <ref name='XML_RNGP_EXCEPT_NO_CONTENT'/>
-      <ref name='XML_RNGP_EXTERNALREF_EMTPY'/>
-      <ref name='XML_RNGP_EXTERNALREF_RECURSE'/>
-      <ref name='XML_RNGP_EXTERNAL_REF_FAILURE'/>
-      <ref name='XML_RNGP_FORBIDDEN_ATTRIBUTE'/>
-      <ref name='XML_RNGP_FOREIGN_ELEMENT'/>
-      <ref name='XML_RNGP_GRAMMAR_CONTENT'/>
-      <ref name='XML_RNGP_GRAMMAR_EMPTY'/>
-      <ref name='XML_RNGP_GRAMMAR_MISSING'/>
-      <ref name='XML_RNGP_GRAMMAR_NO_START'/>
-      <ref name='XML_RNGP_GROUP_ATTR_CONFLICT'/>
-      <ref name='XML_RNGP_HREF_ERROR'/>
-      <ref name='XML_RNGP_INCLUDE_EMPTY'/>
-      <ref name='XML_RNGP_INCLUDE_FAILURE'/>
-      <ref name='XML_RNGP_INCLUDE_RECURSE'/>
-      <ref name='XML_RNGP_INTERLEAVE_ADD'/>
-      <ref name='XML_RNGP_INTERLEAVE_CREATE_FAILED'/>
-      <ref name='XML_RNGP_INTERLEAVE_EMPTY'/>
-      <ref name='XML_RNGP_INTERLEAVE_NO_CONTENT'/>
-      <ref name='XML_RNGP_INVALID_DEFINE_NAME'/>
-      <ref name='XML_RNGP_INVALID_URI'/>
-      <ref name='XML_RNGP_INVALID_VALUE'/>
-      <ref name='XML_RNGP_MISSING_HREF'/>
-      <ref name='XML_RNGP_NAME_MISSING'/>
-      <ref name='XML_RNGP_NEED_COMBINE'/>
-      <ref name='XML_RNGP_NOTALLOWED_NOT_EMPTY'/>
-      <ref name='XML_RNGP_NSNAME_ATTR_ANCESTOR'/>
-      <ref name='XML_RNGP_NSNAME_NO_NS'/>
-      <ref name='XML_RNGP_PARAM_FORBIDDEN'/>
-      <ref name='XML_RNGP_PARAM_NAME_MISSING'/>
-      <ref name='XML_RNGP_PARENTREF_CREATE_FAILED'/>
-      <ref name='XML_RNGP_PARENTREF_NAME_INVALID'/>
-      <ref name='XML_RNGP_PARENTREF_NOT_EMPTY'/>
-      <ref name='XML_RNGP_PARENTREF_NO_NAME'/>
-      <ref name='XML_RNGP_PARENTREF_NO_PARENT'/>
-      <ref name='XML_RNGP_PARSE_ERROR'/>
-      <ref name='XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME'/>
-      <ref name='XML_RNGP_PAT_ATTR_ATTR'/>
-      <ref name='XML_RNGP_PAT_ATTR_ELEM'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_ATTR'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_ELEM'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_EMPTY'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_GROUP'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_LIST'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_ONEMORE'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_REF'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_TEXT'/>
-      <ref name='XML_RNGP_PAT_LIST_ATTR'/>
-      <ref name='XML_RNGP_PAT_LIST_ELEM'/>
-      <ref name='XML_RNGP_PAT_LIST_INTERLEAVE'/>
-      <ref name='XML_RNGP_PAT_LIST_LIST'/>
-      <ref name='XML_RNGP_PAT_LIST_REF'/>
-      <ref name='XML_RNGP_PAT_LIST_TEXT'/>
-      <ref name='XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME'/>
-      <ref name='XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME'/>
-      <ref name='XML_RNGP_PAT_ONEMORE_GROUP_ATTR'/>
-      <ref name='XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR'/>
-      <ref name='XML_RNGP_PAT_START_ATTR'/>
-      <ref name='XML_RNGP_PAT_START_DATA'/>
-      <ref name='XML_RNGP_PAT_START_EMPTY'/>
-      <ref name='XML_RNGP_PAT_START_GROUP'/>
-      <ref name='XML_RNGP_PAT_START_INTERLEAVE'/>
-      <ref name='XML_RNGP_PAT_START_LIST'/>
-      <ref name='XML_RNGP_PAT_START_ONEMORE'/>
-      <ref name='XML_RNGP_PAT_START_TEXT'/>
-      <ref name='XML_RNGP_PAT_START_VALUE'/>
-      <ref name='XML_RNGP_PREFIX_UNDEFINED'/>
-      <ref name='XML_RNGP_REF_CREATE_FAILED'/>
-      <ref name='XML_RNGP_REF_CYCLE'/>
-      <ref name='XML_RNGP_REF_NAME_INVALID'/>
-      <ref name='XML_RNGP_REF_NOT_EMPTY'/>
-      <ref name='XML_RNGP_REF_NO_DEF'/>
-      <ref name='XML_RNGP_REF_NO_NAME'/>
-      <ref name='XML_RNGP_START_CHOICE_AND_INTERLEAVE'/>
-      <ref name='XML_RNGP_START_CONTENT'/>
-      <ref name='XML_RNGP_START_EMPTY'/>
-      <ref name='XML_RNGP_START_MISSING'/>
-      <ref name='XML_RNGP_TEXT_EXPECTED'/>
-      <ref name='XML_RNGP_TEXT_HAS_CHILD'/>
-      <ref name='XML_RNGP_TYPE_MISSING'/>
-      <ref name='XML_RNGP_TYPE_NOT_FOUND'/>
-      <ref name='XML_RNGP_TYPE_VALUE'/>
-      <ref name='XML_RNGP_UNKNOWN_ATTRIBUTE'/>
-      <ref name='XML_RNGP_UNKNOWN_COMBINE'/>
-      <ref name='XML_RNGP_UNKNOWN_CONSTRUCT'/>
-      <ref name='XML_RNGP_UNKNOWN_TYPE_LIB'/>
-      <ref name='XML_RNGP_URI_FRAGMENT'/>
-      <ref name='XML_RNGP_URI_NOT_ABSOLUTE'/>
-      <ref name='XML_RNGP_VALUE_EMPTY'/>
-      <ref name='XML_RNGP_VALUE_NO_CONTENT'/>
-      <ref name='XML_RNGP_XMLNS_NAME'/>
-      <ref name='XML_RNGP_XML_NS'/>
-      <ref name='XML_SAVE_AS_HTML'/>
-      <ref name='XML_SAVE_AS_XML'/>
-      <ref name='XML_SAVE_CHAR_INVALID'/>
-      <ref name='XML_SAVE_FORMAT'/>
-      <ref name='XML_SAVE_NOT_UTF8'/>
-      <ref name='XML_SAVE_NO_DECL'/>
-      <ref name='XML_SAVE_NO_DOCTYPE'/>
-      <ref name='XML_SAVE_NO_EMPTY'/>
-      <ref name='XML_SAVE_NO_XHTML'/>
-      <ref name='XML_SAVE_UNKNOWN_ENCODING'/>
-      <ref name='XML_SAVE_WSNONSIG'/>
-      <ref name='XML_SAVE_XHTML'/>
-      <ref name='XML_SAX2_MAGIC'/>
-      <ref name='XML_SCHEMAP_AG_PROPS_CORRECT'/>
-      <ref name='XML_SCHEMAP_ATTRFORMDEFAULT_VALUE'/>
-      <ref name='XML_SCHEMAP_ATTRGRP_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_ATTR_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_AU_PROPS_CORRECT'/>
-      <ref name='XML_SCHEMAP_AU_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_A_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_A_PROPS_CORRECT_3'/>
-      <ref name='XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_COS_ALL_LIMITED'/>
-      <ref name='XML_SCHEMAP_COS_CT_EXTENDS_1_1'/>
-      <ref name='XML_SCHEMAP_COS_CT_EXTENDS_1_2'/>
-      <ref name='XML_SCHEMAP_COS_CT_EXTENDS_1_3'/>
-      <ref name='XML_SCHEMAP_COS_ST_DERIVED_OK_2_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_DERIVED_OK_2_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_1_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_1_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5'/>
-      <ref name='XML_SCHEMAP_COS_VALID_DEFAULT_1'/>
-      <ref name='XML_SCHEMAP_COS_VALID_DEFAULT_2_1'/>
-      <ref name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1'/>
-      <ref name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2'/>
-      <ref name='XML_SCHEMAP_CT_PROPS_CORRECT_1'/>
-      <ref name='XML_SCHEMAP_CT_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_CT_PROPS_CORRECT_3'/>
-      <ref name='XML_SCHEMAP_CT_PROPS_CORRECT_4'/>
-      <ref name='XML_SCHEMAP_CT_PROPS_CORRECT_5'/>
-      <ref name='XML_SCHEMAP_CVC_SIMPLE_TYPE'/>
-      <ref name='XML_SCHEMAP_C_PROPS_CORRECT'/>
-      <ref name='XML_SCHEMAP_DEF_AND_PREFIX'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3'/>
-      <ref name='XML_SCHEMAP_ELEMFORMDEFAULT_VALUE'/>
-      <ref name='XML_SCHEMAP_ELEM_DEFAULT_FIXED'/>
-      <ref name='XML_SCHEMAP_ELEM_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_EXTENSION_NO_BASE'/>
-      <ref name='XML_SCHEMAP_E_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_E_PROPS_CORRECT_3'/>
-      <ref name='XML_SCHEMAP_E_PROPS_CORRECT_4'/>
-      <ref name='XML_SCHEMAP_E_PROPS_CORRECT_5'/>
-      <ref name='XML_SCHEMAP_E_PROPS_CORRECT_6'/>
-      <ref name='XML_SCHEMAP_FACET_NO_VALUE'/>
-      <ref name='XML_SCHEMAP_FAILED_BUILD_IMPORT'/>
-      <ref name='XML_SCHEMAP_FAILED_LOAD'/>
-      <ref name='XML_SCHEMAP_FAILED_PARSE'/>
-      <ref name='XML_SCHEMAP_GROUP_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI'/>
-      <ref name='XML_SCHEMAP_IMPORT_REDEFINE_NSNAME'/>
-      <ref name='XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI'/>
-      <ref name='XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI'/>
-      <ref name='XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI'/>
-      <ref name='XML_SCHEMAP_INTERNAL'/>
-      <ref name='XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE'/>
-      <ref name='XML_SCHEMAP_INVALID_ATTR_COMBINATION'/>
-      <ref name='XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION'/>
-      <ref name='XML_SCHEMAP_INVALID_ATTR_NAME'/>
-      <ref name='XML_SCHEMAP_INVALID_ATTR_USE'/>
-      <ref name='XML_SCHEMAP_INVALID_BOOLEAN'/>
-      <ref name='XML_SCHEMAP_INVALID_ENUM'/>
-      <ref name='XML_SCHEMAP_INVALID_FACET'/>
-      <ref name='XML_SCHEMAP_INVALID_FACET_VALUE'/>
-      <ref name='XML_SCHEMAP_INVALID_MAXOCCURS'/>
-      <ref name='XML_SCHEMAP_INVALID_MINOCCURS'/>
-      <ref name='XML_SCHEMAP_INVALID_REF_AND_SUBTYPE'/>
-      <ref name='XML_SCHEMAP_INVALID_WHITE_SPACE'/>
-      <ref name='XML_SCHEMAP_MG_PROPS_CORRECT_1'/>
-      <ref name='XML_SCHEMAP_MG_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD'/>
-      <ref name='XML_SCHEMAP_NOATTR_NOREF'/>
-      <ref name='XML_SCHEMAP_NOROOT'/>
-      <ref name='XML_SCHEMAP_NOTATION_NO_NAME'/>
-      <ref name='XML_SCHEMAP_NOTHING_TO_PARSE'/>
-      <ref name='XML_SCHEMAP_NOTYPE_NOREF'/>
-      <ref name='XML_SCHEMAP_NOT_DETERMINISTIC'/>
-      <ref name='XML_SCHEMAP_NOT_SCHEMA'/>
-      <ref name='XML_SCHEMAP_NO_XMLNS'/>
-      <ref name='XML_SCHEMAP_NO_XSI'/>
-      <ref name='XML_SCHEMAP_PREFIX_UNDEFINED'/>
-      <ref name='XML_SCHEMAP_P_PROPS_CORRECT_1'/>
-      <ref name='XML_SCHEMAP_P_PROPS_CORRECT_2_1'/>
-      <ref name='XML_SCHEMAP_P_PROPS_CORRECT_2_2'/>
-      <ref name='XML_SCHEMAP_RECURSIVE'/>
-      <ref name='XML_SCHEMAP_REDEFINED_ATTR'/>
-      <ref name='XML_SCHEMAP_REDEFINED_ATTRGROUP'/>
-      <ref name='XML_SCHEMAP_REDEFINED_ELEMENT'/>
-      <ref name='XML_SCHEMAP_REDEFINED_GROUP'/>
-      <ref name='XML_SCHEMAP_REDEFINED_NOTATION'/>
-      <ref name='XML_SCHEMAP_REDEFINED_TYPE'/>
-      <ref name='XML_SCHEMAP_REF_AND_CONTENT'/>
-      <ref name='XML_SCHEMAP_REF_AND_SUBTYPE'/>
-      <ref name='XML_SCHEMAP_REGEXP_INVALID'/>
-      <ref name='XML_SCHEMAP_RESTRICTION_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_S4S_ATTR_INVALID_VALUE'/>
-      <ref name='XML_SCHEMAP_S4S_ATTR_MISSING'/>
-      <ref name='XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED'/>
-      <ref name='XML_SCHEMAP_S4S_ELEM_MISSING'/>
-      <ref name='XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED'/>
-      <ref name='XML_SCHEMAP_SIMPLETYPE_NONAME'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_1'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_2'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_3_1'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_3_2'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_4'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3'/>
-      <ref name='XML_SCHEMAP_SRC_CT_1'/>
-      <ref name='XML_SCHEMAP_SRC_ELEMENT_1'/>
-      <ref name='XML_SCHEMAP_SRC_ELEMENT_2_1'/>
-      <ref name='XML_SCHEMAP_SRC_ELEMENT_2_2'/>
-      <ref name='XML_SCHEMAP_SRC_ELEMENT_3'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_1_1'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_1_2'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_2'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_2_1'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_2_2'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_3_1'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_3_2'/>
-      <ref name='XML_SCHEMAP_SRC_INCLUDE'/>
-      <ref name='XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE'/>
-      <ref name='XML_SCHEMAP_SRC_REDEFINE'/>
-      <ref name='XML_SCHEMAP_SRC_RESOLVE'/>
-      <ref name='XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE'/>
-      <ref name='XML_SCHEMAP_SRC_SIMPLE_TYPE_1'/>
-      <ref name='XML_SCHEMAP_SRC_SIMPLE_TYPE_2'/>
-      <ref name='XML_SCHEMAP_SRC_SIMPLE_TYPE_3'/>
-      <ref name='XML_SCHEMAP_SRC_SIMPLE_TYPE_4'/>
-      <ref name='XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES'/>
-      <ref name='XML_SCHEMAP_ST_PROPS_CORRECT_1'/>
-      <ref name='XML_SCHEMAP_ST_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_ST_PROPS_CORRECT_3'/>
-      <ref name='XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE'/>
-      <ref name='XML_SCHEMAP_TYPE_AND_SUBTYPE'/>
-      <ref name='XML_SCHEMAP_UNION_NOT_EXPRESSIBLE'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ALL_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ATTR_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_BASE_TYPE'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_CHOICE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ELEM_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_FACET_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_FACET_TYPE'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_GROUP_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_IMPORT_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_LIST_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_MEMBER_TYPE'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_NOTATION_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_PREFIX'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_REF'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_TYPE'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_UNION_CHILD'/>
-      <ref name='XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH'/>
-      <ref name='XML_SCHEMAP_WARN_ATTR_REDECL_PROH'/>
-      <ref name='XML_SCHEMAP_WARN_SKIP_SCHEMA'/>
-      <ref name='XML_SCHEMAP_WARN_UNLOCATED_SCHEMA'/>
-      <ref name='XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER'/>
-      <ref name='XML_SCHEMAS_ANYATTR_LAX'/>
-      <ref name='XML_SCHEMAS_ANYATTR_SKIP'/>
-      <ref name='XML_SCHEMAS_ANYATTR_STRICT'/>
-      <ref name='XML_SCHEMAS_ANYSIMPLETYPE'/>
-      <ref name='XML_SCHEMAS_ANYTYPE'/>
-      <ref name='XML_SCHEMAS_ANYURI'/>
-      <ref name='XML_SCHEMAS_ANY_LAX'/>
-      <ref name='XML_SCHEMAS_ANY_SKIP'/>
-      <ref name='XML_SCHEMAS_ANY_STRICT'/>
-      <ref name='XML_SCHEMAS_ATTRGROUP_GLOBAL'/>
-      <ref name='XML_SCHEMAS_ATTRGROUP_HAS_REFS'/>
-      <ref name='XML_SCHEMAS_ATTRGROUP_MARKED'/>
-      <ref name='XML_SCHEMAS_ATTRGROUP_REDEFINED'/>
-      <ref name='XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED'/>
-      <ref name='XML_SCHEMAS_ATTR_FIXED'/>
-      <ref name='XML_SCHEMAS_ATTR_GLOBAL'/>
-      <ref name='XML_SCHEMAS_ATTR_INTERNAL_RESOLVED'/>
-      <ref name='XML_SCHEMAS_ATTR_NSDEFAULT'/>
-      <ref name='XML_SCHEMAS_ATTR_USE_OPTIONAL'/>
-      <ref name='XML_SCHEMAS_ATTR_USE_PROHIBITED'/>
-      <ref name='XML_SCHEMAS_ATTR_USE_REQUIRED'/>
-      <ref name='XML_SCHEMAS_BASE64BINARY'/>
-      <ref name='XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION'/>
-      <ref name='XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION'/>
-      <ref name='XML_SCHEMAS_BOOLEAN'/>
-      <ref name='XML_SCHEMAS_BYTE'/>
-      <ref name='XML_SCHEMAS_DATE'/>
-      <ref name='XML_SCHEMAS_DATETIME'/>
-      <ref name='XML_SCHEMAS_DECIMAL'/>
-      <ref name='XML_SCHEMAS_DOUBLE'/>
-      <ref name='XML_SCHEMAS_DURATION'/>
-      <ref name='XML_SCHEMAS_ELEM_ABSTRACT'/>
-      <ref name='XML_SCHEMAS_ELEM_BLOCK_ABSENT'/>
-      <ref name='XML_SCHEMAS_ELEM_BLOCK_EXTENSION'/>
-      <ref name='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION'/>
-      <ref name='XML_SCHEMAS_ELEM_CIRCULAR'/>
-      <ref name='XML_SCHEMAS_ELEM_DEFAULT'/>
-      <ref name='XML_SCHEMAS_ELEM_FINAL_ABSENT'/>
-      <ref name='XML_SCHEMAS_ELEM_FINAL_EXTENSION'/>
-      <ref name='XML_SCHEMAS_ELEM_FINAL_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_ELEM_FIXED'/>
-      <ref name='XML_SCHEMAS_ELEM_GLOBAL'/>
-      <ref name='XML_SCHEMAS_ELEM_INTERNAL_CHECKED'/>
-      <ref name='XML_SCHEMAS_ELEM_INTERNAL_RESOLVED'/>
-      <ref name='XML_SCHEMAS_ELEM_NILLABLE'/>
-      <ref name='XML_SCHEMAS_ELEM_NSDEFAULT'/>
-      <ref name='XML_SCHEMAS_ELEM_REF'/>
-      <ref name='XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD'/>
-      <ref name='XML_SCHEMAS_ELEM_TOPLEVEL'/>
-      <ref name='XML_SCHEMAS_ENTITIES'/>
-      <ref name='XML_SCHEMAS_ENTITY'/>
-      <ref name='XML_SCHEMAS_ERR_'/>
-      <ref name='XML_SCHEMAS_ERR_ATTRINVALID'/>
-      <ref name='XML_SCHEMAS_ERR_ATTRUNKNOWN'/>
-      <ref name='XML_SCHEMAS_ERR_CONSTRUCT'/>
-      <ref name='XML_SCHEMAS_ERR_ELEMCONT'/>
-      <ref name='XML_SCHEMAS_ERR_EXTRACONTENT'/>
-      <ref name='XML_SCHEMAS_ERR_FACET'/>
-      <ref name='XML_SCHEMAS_ERR_HAVEDEFAULT'/>
-      <ref name='XML_SCHEMAS_ERR_INTERNAL'/>
-      <ref name='XML_SCHEMAS_ERR_INVALIDATTR'/>
-      <ref name='XML_SCHEMAS_ERR_INVALIDELEM'/>
-      <ref name='XML_SCHEMAS_ERR_ISABSTRACT'/>
-      <ref name='XML_SCHEMAS_ERR_MISSING'/>
-      <ref name='XML_SCHEMAS_ERR_NOROLLBACK'/>
-      <ref name='XML_SCHEMAS_ERR_NOROOT'/>
-      <ref name='XML_SCHEMAS_ERR_NOTDETERMINIST'/>
-      <ref name='XML_SCHEMAS_ERR_NOTEMPTY'/>
-      <ref name='XML_SCHEMAS_ERR_NOTNILLABLE'/>
-      <ref name='XML_SCHEMAS_ERR_NOTSIMPLE'/>
-      <ref name='XML_SCHEMAS_ERR_NOTTOPLEVEL'/>
-      <ref name='XML_SCHEMAS_ERR_NOTYPE'/>
-      <ref name='XML_SCHEMAS_ERR_OK'/>
-      <ref name='XML_SCHEMAS_ERR_UNDECLAREDELEM'/>
-      <ref name='XML_SCHEMAS_ERR_VALUE'/>
-      <ref name='XML_SCHEMAS_ERR_WRONGELEM'/>
-      <ref name='XML_SCHEMAS_ERR_XXX'/>
-      <ref name='XML_SCHEMAS_FACET_COLLAPSE'/>
-      <ref name='XML_SCHEMAS_FACET_PRESERVE'/>
-      <ref name='XML_SCHEMAS_FACET_REPLACE'/>
-      <ref name='XML_SCHEMAS_FACET_UNKNOWN'/>
-      <ref name='XML_SCHEMAS_FINAL_DEFAULT_EXTENSION'/>
-      <ref name='XML_SCHEMAS_FINAL_DEFAULT_LIST'/>
-      <ref name='XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_FINAL_DEFAULT_UNION'/>
-      <ref name='XML_SCHEMAS_FLOAT'/>
-      <ref name='XML_SCHEMAS_GDAY'/>
-      <ref name='XML_SCHEMAS_GMONTH'/>
-      <ref name='XML_SCHEMAS_GMONTHDAY'/>
-      <ref name='XML_SCHEMAS_GYEAR'/>
-      <ref name='XML_SCHEMAS_GYEARMONTH'/>
-      <ref name='XML_SCHEMAS_HEXBINARY'/>
-      <ref name='XML_SCHEMAS_ID'/>
-      <ref name='XML_SCHEMAS_IDREF'/>
-      <ref name='XML_SCHEMAS_IDREFS'/>
-      <ref name='XML_SCHEMAS_INCLUDING_CONVERT_NS'/>
-      <ref name='XML_SCHEMAS_INT'/>
-      <ref name='XML_SCHEMAS_INTEGER'/>
-      <ref name='XML_SCHEMAS_LANGUAGE'/>
-      <ref name='XML_SCHEMAS_LONG'/>
-      <ref name='XML_SCHEMAS_NAME'/>
-      <ref name='XML_SCHEMAS_NCNAME'/>
-      <ref name='XML_SCHEMAS_NINTEGER'/>
-      <ref name='XML_SCHEMAS_NMTOKEN'/>
-      <ref name='XML_SCHEMAS_NMTOKENS'/>
-      <ref name='XML_SCHEMAS_NNINTEGER'/>
-      <ref name='XML_SCHEMAS_NORMSTRING'/>
-      <ref name='XML_SCHEMAS_NOTATION'/>
-      <ref name='XML_SCHEMAS_NPINTEGER'/>
-      <ref name='XML_SCHEMAS_PINTEGER'/>
-      <ref name='XML_SCHEMAS_QNAME'/>
-      <ref name='XML_SCHEMAS_QUALIF_ATTR'/>
-      <ref name='XML_SCHEMAS_QUALIF_ELEM'/>
-      <ref name='XML_SCHEMAS_SHORT'/>
-      <ref name='XML_SCHEMAS_STRING'/>
-      <ref name='XML_SCHEMAS_TIME'/>
-      <ref name='XML_SCHEMAS_TOKEN'/>
-      <ref name='XML_SCHEMAS_TYPE_ABSTRACT'/>
-      <ref name='XML_SCHEMAS_TYPE_BLOCK_DEFAULT'/>
-      <ref name='XML_SCHEMAS_TYPE_BLOCK_EXTENSION'/>
-      <ref name='XML_SCHEMAS_TYPE_BLOCK_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE'/>
-      <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION'/>
-      <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_TYPE_FACETSNEEDVALUE'/>
-      <ref name='XML_SCHEMAS_TYPE_FINAL_DEFAULT'/>
-      <ref name='XML_SCHEMAS_TYPE_FINAL_EXTENSION'/>
-      <ref name='XML_SCHEMAS_TYPE_FINAL_LIST'/>
-      <ref name='XML_SCHEMAS_TYPE_FINAL_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_TYPE_FINAL_UNION'/>
-      <ref name='XML_SCHEMAS_TYPE_FIXUP_1'/>
-      <ref name='XML_SCHEMAS_TYPE_GLOBAL'/>
-      <ref name='XML_SCHEMAS_TYPE_HAS_FACETS'/>
-      <ref name='XML_SCHEMAS_TYPE_INTERNAL_INVALID'/>
-      <ref name='XML_SCHEMAS_TYPE_INTERNAL_RESOLVED'/>
-      <ref name='XML_SCHEMAS_TYPE_MARKED'/>
-      <ref name='XML_SCHEMAS_TYPE_MIXED'/>
-      <ref name='XML_SCHEMAS_TYPE_NORMVALUENEEDED'/>
-      <ref name='XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD'/>
-      <ref name='XML_SCHEMAS_TYPE_REDEFINED'/>
-      <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-      <ref name='XML_SCHEMAS_TYPE_VARIETY_ATOMIC'/>
-      <ref name='XML_SCHEMAS_TYPE_VARIETY_LIST'/>
-      <ref name='XML_SCHEMAS_TYPE_VARIETY_UNION'/>
-      <ref name='XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE'/>
-      <ref name='XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE'/>
-      <ref name='XML_SCHEMAS_TYPE_WHITESPACE_REPLACE'/>
-      <ref name='XML_SCHEMAS_UBYTE'/>
-      <ref name='XML_SCHEMAS_UINT'/>
-      <ref name='XML_SCHEMAS_ULONG'/>
-      <ref name='XML_SCHEMAS_UNKNOWN'/>
-      <ref name='XML_SCHEMAS_USHORT'/>
-      <ref name='XML_SCHEMAS_WILDCARD_COMPLETE'/>
-      <ref name='XML_SCHEMATRONV_ASSERT'/>
-      <ref name='XML_SCHEMATRONV_REPORT'/>
-      <ref name='XML_SCHEMATRON_OUT_BUFFER'/>
-      <ref name='XML_SCHEMATRON_OUT_ERROR'/>
-      <ref name='XML_SCHEMATRON_OUT_FILE'/>
-      <ref name='XML_SCHEMATRON_OUT_IO'/>
-      <ref name='XML_SCHEMATRON_OUT_QUIET'/>
-      <ref name='XML_SCHEMATRON_OUT_TEXT'/>
-      <ref name='XML_SCHEMATRON_OUT_XML'/>
-      <ref name='XML_SCHEMAV_ATTRINVALID'/>
-      <ref name='XML_SCHEMAV_ATTRUNKNOWN'/>
-      <ref name='XML_SCHEMAV_CONSTRUCT'/>
-      <ref name='XML_SCHEMAV_CVC_ATTRIBUTE_1'/>
-      <ref name='XML_SCHEMAV_CVC_ATTRIBUTE_2'/>
-      <ref name='XML_SCHEMAV_CVC_ATTRIBUTE_3'/>
-      <ref name='XML_SCHEMAV_CVC_ATTRIBUTE_4'/>
-      <ref name='XML_SCHEMAV_CVC_AU'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_1'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_4'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2'/>
-      <ref name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2'/>
-      <ref name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_2'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_3_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_3_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_3_2_2'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_4_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_4_2'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_4_3'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_1_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_1_2'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_2_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_2_2_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_2_2_2_2'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_6'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_7'/>
-      <ref name='XML_SCHEMAV_CVC_ENUMERATION_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_FACET_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_IDC'/>
-      <ref name='XML_SCHEMAV_CVC_LENGTH_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MAXLENGTH_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MININCLUSIVE_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MINLENGTH_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_PATTERN_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_TOTALDIGITS_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_TYPE_1'/>
-      <ref name='XML_SCHEMAV_CVC_TYPE_2'/>
-      <ref name='XML_SCHEMAV_CVC_TYPE_3_1_1'/>
-      <ref name='XML_SCHEMAV_CVC_TYPE_3_1_2'/>
-      <ref name='XML_SCHEMAV_CVC_WILDCARD'/>
-      <ref name='XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING'/>
-      <ref name='XML_SCHEMAV_ELEMCONT'/>
-      <ref name='XML_SCHEMAV_ELEMENT_CONTENT'/>
-      <ref name='XML_SCHEMAV_EXTRACONTENT'/>
-      <ref name='XML_SCHEMAV_FACET'/>
-      <ref name='XML_SCHEMAV_HAVEDEFAULT'/>
-      <ref name='XML_SCHEMAV_INTERNAL'/>
-      <ref name='XML_SCHEMAV_INVALIDATTR'/>
-      <ref name='XML_SCHEMAV_INVALIDELEM'/>
-      <ref name='XML_SCHEMAV_ISABSTRACT'/>
-      <ref name='XML_SCHEMAV_MISC'/>
-      <ref name='XML_SCHEMAV_MISSING'/>
-      <ref name='XML_SCHEMAV_NOROLLBACK'/>
-      <ref name='XML_SCHEMAV_NOROOT'/>
-      <ref name='XML_SCHEMAV_NOTDETERMINIST'/>
-      <ref name='XML_SCHEMAV_NOTEMPTY'/>
-      <ref name='XML_SCHEMAV_NOTNILLABLE'/>
-      <ref name='XML_SCHEMAV_NOTSIMPLE'/>
-      <ref name='XML_SCHEMAV_NOTTOPLEVEL'/>
-      <ref name='XML_SCHEMAV_NOTYPE'/>
-      <ref name='XML_SCHEMAV_UNDECLAREDELEM'/>
-      <ref name='XML_SCHEMAV_VALUE'/>
-      <ref name='XML_SCHEMAV_WRONGELEM'/>
-      <ref name='XML_SCHEMA_CONTENT_ANY'/>
-      <ref name='XML_SCHEMA_CONTENT_BASIC'/>
-      <ref name='XML_SCHEMA_CONTENT_ELEMENTS'/>
-      <ref name='XML_SCHEMA_CONTENT_EMPTY'/>
-      <ref name='XML_SCHEMA_CONTENT_MIXED'/>
-      <ref name='XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS'/>
-      <ref name='XML_SCHEMA_CONTENT_SIMPLE'/>
-      <ref name='XML_SCHEMA_CONTENT_UNKNOWN'/>
-      <ref name='XML_SCHEMA_EXTRA_ATTR_USE_PROHIB'/>
-      <ref name='XML_SCHEMA_EXTRA_QNAMEREF'/>
-      <ref name='XML_SCHEMA_FACET_ENUMERATION'/>
-      <ref name='XML_SCHEMA_FACET_FRACTIONDIGITS'/>
-      <ref name='XML_SCHEMA_FACET_LENGTH'/>
-      <ref name='XML_SCHEMA_FACET_MAXEXCLUSIVE'/>
-      <ref name='XML_SCHEMA_FACET_MAXINCLUSIVE'/>
-      <ref name='XML_SCHEMA_FACET_MAXLENGTH'/>
-      <ref name='XML_SCHEMA_FACET_MINEXCLUSIVE'/>
-      <ref name='XML_SCHEMA_FACET_MININCLUSIVE'/>
-      <ref name='XML_SCHEMA_FACET_MINLENGTH'/>
-      <ref name='XML_SCHEMA_FACET_PATTERN'/>
-      <ref name='XML_SCHEMA_FACET_TOTALDIGITS'/>
-      <ref name='XML_SCHEMA_FACET_WHITESPACE'/>
-      <ref name='XML_SCHEMA_TYPE_ALL'/>
-      <ref name='XML_SCHEMA_TYPE_ANY'/>
-      <ref name='XML_SCHEMA_TYPE_ANY_ATTRIBUTE'/>
-      <ref name='XML_SCHEMA_TYPE_ATTRIBUTE'/>
-      <ref name='XML_SCHEMA_TYPE_ATTRIBUTEGROUP'/>
-      <ref name='XML_SCHEMA_TYPE_ATTRIBUTE_USE'/>
-      <ref name='XML_SCHEMA_TYPE_BASIC'/>
-      <ref name='XML_SCHEMA_TYPE_CHOICE'/>
-      <ref name='XML_SCHEMA_TYPE_COMPLEX'/>
-      <ref name='XML_SCHEMA_TYPE_COMPLEX_CONTENT'/>
-      <ref name='XML_SCHEMA_TYPE_ELEMENT'/>
-      <ref name='XML_SCHEMA_TYPE_EXTENSION'/>
-      <ref name='XML_SCHEMA_TYPE_FACET'/>
-      <ref name='XML_SCHEMA_TYPE_GROUP'/>
-      <ref name='XML_SCHEMA_TYPE_IDC_KEY'/>
-      <ref name='XML_SCHEMA_TYPE_IDC_KEYREF'/>
-      <ref name='XML_SCHEMA_TYPE_IDC_UNIQUE'/>
-      <ref name='XML_SCHEMA_TYPE_LIST'/>
-      <ref name='XML_SCHEMA_TYPE_NOTATION'/>
-      <ref name='XML_SCHEMA_TYPE_PARTICLE'/>
-      <ref name='XML_SCHEMA_TYPE_RESTRICTION'/>
-      <ref name='XML_SCHEMA_TYPE_SEQUENCE'/>
-      <ref name='XML_SCHEMA_TYPE_SIMPLE'/>
-      <ref name='XML_SCHEMA_TYPE_SIMPLE_CONTENT'/>
-      <ref name='XML_SCHEMA_TYPE_UNION'/>
-      <ref name='XML_SCHEMA_TYPE_UR'/>
-      <ref name='XML_SCHEMA_VAL_VC_I_CREATE'/>
-      <ref name='XML_SCHEMA_WHITESPACE_COLLAPSE'/>
-      <ref name='XML_SCHEMA_WHITESPACE_PRESERVE'/>
-      <ref name='XML_SCHEMA_WHITESPACE_REPLACE'/>
-      <ref name='XML_SCHEMA_WHITESPACE_UNKNOWN'/>
-      <ref name='XML_SKIP_IDS'/>
-      <ref name='XML_SUBSTITUTE_BOTH'/>
-      <ref name='XML_SUBSTITUTE_NONE'/>
-      <ref name='XML_SUBSTITUTE_PEREF'/>
-      <ref name='XML_SUBSTITUTE_REF'/>
-      <ref name='XML_TEXTREADER_MODE_CLOSED'/>
-      <ref name='XML_TEXTREADER_MODE_EOF'/>
-      <ref name='XML_TEXTREADER_MODE_ERROR'/>
-      <ref name='XML_TEXTREADER_MODE_INITIAL'/>
-      <ref name='XML_TEXTREADER_MODE_INTERACTIVE'/>
-      <ref name='XML_TEXTREADER_MODE_READING'/>
-      <ref name='XML_TEXT_NODE'/>
-      <ref name='XML_TREE_INVALID_DEC'/>
-      <ref name='XML_TREE_INVALID_HEX'/>
-      <ref name='XML_TREE_NOT_UTF8'/>
-      <ref name='XML_TREE_UNTERMINATED_ENTITY'/>
-      <ref name='XML_VCTXT_DTD_VALIDATED'/>
-      <ref name='XML_VCTXT_USE_PCTXT'/>
-      <ref name='XML_WAR_CATALOG_PI'/>
-      <ref name='XML_WAR_ENTITY_REDEFINED'/>
-      <ref name='XML_WAR_LANG_VALUE'/>
-      <ref name='XML_WAR_NS_COLUMN'/>
-      <ref name='XML_WAR_NS_URI'/>
-      <ref name='XML_WAR_NS_URI_RELATIVE'/>
-      <ref name='XML_WAR_SPACE_VALUE'/>
-      <ref name='XML_WAR_UNDECLARED_ENTITY'/>
-      <ref name='XML_WAR_UNKNOWN_VERSION'/>
-      <ref name='XML_WITH_AUTOMATA'/>
-      <ref name='XML_WITH_C14N'/>
-      <ref name='XML_WITH_CATALOG'/>
-      <ref name='XML_WITH_DEBUG'/>
-      <ref name='XML_WITH_DEBUG_MEM'/>
-      <ref name='XML_WITH_DEBUG_RUN'/>
-      <ref name='XML_WITH_EXPR'/>
-      <ref name='XML_WITH_FTP'/>
-      <ref name='XML_WITH_HTML'/>
-      <ref name='XML_WITH_HTTP'/>
-      <ref name='XML_WITH_ICONV'/>
-      <ref name='XML_WITH_ICU'/>
-      <ref name='XML_WITH_ISO8859X'/>
-      <ref name='XML_WITH_LEGACY'/>
-      <ref name='XML_WITH_LZMA'/>
-      <ref name='XML_WITH_MODULES'/>
-      <ref name='XML_WITH_NONE'/>
-      <ref name='XML_WITH_OUTPUT'/>
-      <ref name='XML_WITH_PATTERN'/>
-      <ref name='XML_WITH_PUSH'/>
-      <ref name='XML_WITH_READER'/>
-      <ref name='XML_WITH_REGEXP'/>
-      <ref name='XML_WITH_SAX1'/>
-      <ref name='XML_WITH_SCHEMAS'/>
-      <ref name='XML_WITH_SCHEMATRON'/>
-      <ref name='XML_WITH_THREAD'/>
-      <ref name='XML_WITH_TREE'/>
-      <ref name='XML_WITH_UNICODE'/>
-      <ref name='XML_WITH_VALID'/>
-      <ref name='XML_WITH_WRITER'/>
-      <ref name='XML_WITH_XINCLUDE'/>
-      <ref name='XML_WITH_XPATH'/>
-      <ref name='XML_WITH_XPTR'/>
-      <ref name='XML_WITH_ZLIB'/>
-      <ref name='XML_XINCLUDE_BUILD_FAILED'/>
-      <ref name='XML_XINCLUDE_DEPRECATED_NS'/>
-      <ref name='XML_XINCLUDE_END'/>
-      <ref name='XML_XINCLUDE_ENTITY_DEF_MISMATCH'/>
-      <ref name='XML_XINCLUDE_FALLBACKS_IN_INCLUDE'/>
-      <ref name='XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE'/>
-      <ref name='XML_XINCLUDE_FRAGMENT_ID'/>
-      <ref name='XML_XINCLUDE_HREF_URI'/>
-      <ref name='XML_XINCLUDE_INCLUDE_IN_INCLUDE'/>
-      <ref name='XML_XINCLUDE_INVALID_CHAR'/>
-      <ref name='XML_XINCLUDE_MULTIPLE_ROOT'/>
-      <ref name='XML_XINCLUDE_NO_FALLBACK'/>
-      <ref name='XML_XINCLUDE_NO_HREF'/>
-      <ref name='XML_XINCLUDE_PARSE_VALUE'/>
-      <ref name='XML_XINCLUDE_RECURSION'/>
-      <ref name='XML_XINCLUDE_START'/>
-      <ref name='XML_XINCLUDE_TEXT_DOCUMENT'/>
-      <ref name='XML_XINCLUDE_TEXT_FRAGMENT'/>
-      <ref name='XML_XINCLUDE_UNKNOWN_ENCODING'/>
-      <ref name='XML_XINCLUDE_XPTR_FAILED'/>
-      <ref name='XML_XINCLUDE_XPTR_RESULT'/>
-      <ref name='XML_XML_ID'/>
-      <ref name='XML_XML_NAMESPACE'/>
-      <ref name='XML_XPATH_CHECKNS'/>
-      <ref name='XML_XPATH_ENCODING_ERROR'/>
-      <ref name='XML_XPATH_EXPRESSION_OK'/>
-      <ref name='XML_XPATH_EXPR_ERROR'/>
-      <ref name='XML_XPATH_INVALID_ARITY'/>
-      <ref name='XML_XPATH_INVALID_CHAR_ERROR'/>
-      <ref name='XML_XPATH_INVALID_CTXT_POSITION'/>
-      <ref name='XML_XPATH_INVALID_CTXT_SIZE'/>
-      <ref name='XML_XPATH_INVALID_OPERAND'/>
-      <ref name='XML_XPATH_INVALID_PREDICATE_ERROR'/>
-      <ref name='XML_XPATH_INVALID_TYPE'/>
-      <ref name='XML_XPATH_MEMORY_ERROR'/>
-      <ref name='XML_XPATH_NOVAR'/>
-      <ref name='XML_XPATH_NUMBER_ERROR'/>
-      <ref name='XML_XPATH_START_LITERAL_ERROR'/>
-      <ref name='XML_XPATH_UNCLOSED_ERROR'/>
-      <ref name='XML_XPATH_UNDEF_PREFIX_ERROR'/>
-      <ref name='XML_XPATH_UNDEF_VARIABLE_ERROR'/>
-      <ref name='XML_XPATH_UNFINISHED_LITERAL_ERROR'/>
-      <ref name='XML_XPATH_UNKNOWN_FUNC_ERROR'/>
-      <ref name='XML_XPATH_VARIABLE_REF_ERROR'/>
-      <ref name='XML_XPTR_CHILDSEQ_START'/>
-      <ref name='XML_XPTR_EVAL_FAILED'/>
-      <ref name='XML_XPTR_EXTRA_OBJECTS'/>
-      <ref name='XML_XPTR_RESOURCE_ERROR'/>
-      <ref name='XML_XPTR_SUB_RESOURCE_ERROR'/>
-      <ref name='XML_XPTR_SYNTAX_ERROR'/>
-      <ref name='XML_XPTR_UNKNOWN_SCHEME'/>
-      <ref name='XPATH_BOOLEAN'/>
-      <ref name='XPATH_ENCODING_ERROR'/>
-      <ref name='XPATH_EXPRESSION_OK'/>
-      <ref name='XPATH_EXPR_ERROR'/>
-      <ref name='XPATH_FORBID_VARIABLE_ERROR'/>
-      <ref name='XPATH_INVALID_ARITY'/>
-      <ref name='XPATH_INVALID_CHAR_ERROR'/>
-      <ref name='XPATH_INVALID_CTXT'/>
-      <ref name='XPATH_INVALID_CTXT_POSITION'/>
-      <ref name='XPATH_INVALID_CTXT_SIZE'/>
-      <ref name='XPATH_INVALID_OPERAND'/>
-      <ref name='XPATH_INVALID_PREDICATE_ERROR'/>
-      <ref name='XPATH_INVALID_TYPE'/>
-      <ref name='XPATH_LOCATIONSET'/>
-      <ref name='XPATH_MEMORY_ERROR'/>
-      <ref name='XPATH_NODESET'/>
-      <ref name='XPATH_NUMBER'/>
-      <ref name='XPATH_NUMBER_ERROR'/>
-      <ref name='XPATH_OP_LIMIT_EXCEEDED'/>
-      <ref name='XPATH_POINT'/>
-      <ref name='XPATH_RANGE'/>
-      <ref name='XPATH_RECURSION_LIMIT_EXCEEDED'/>
-      <ref name='XPATH_STACK_ERROR'/>
-      <ref name='XPATH_START_LITERAL_ERROR'/>
-      <ref name='XPATH_STRING'/>
-      <ref name='XPATH_UNCLOSED_ERROR'/>
-      <ref name='XPATH_UNDEFINED'/>
-      <ref name='XPATH_UNDEF_PREFIX_ERROR'/>
-      <ref name='XPATH_UNDEF_VARIABLE_ERROR'/>
-      <ref name='XPATH_UNFINISHED_LITERAL_ERROR'/>
-      <ref name='XPATH_UNKNOWN_FUNC_ERROR'/>
-      <ref name='XPATH_USERS'/>
-      <ref name='XPATH_VARIABLE_REF_ERROR'/>
-      <ref name='XPATH_XSLT_TREE'/>
-      <ref name='XPTR_RESOURCE_ERROR'/>
-      <ref name='XPTR_SUB_RESOURCE_ERROR'/>
-      <ref name='XPTR_SYNTAX_ERROR'/>
-      <ref name='XP_ERROR'/>
-      <ref name='XP_ERROR0'/>
-    </letter>
-    <letter name='_'>
-      <ref name='_htmlElemDesc'/>
-      <ref name='_htmlEntityDesc'/>
-      <ref name='_xlinkHandler'/>
-      <ref name='_xmlAttr'/>
-      <ref name='_xmlAttribute'/>
-      <ref name='_xmlBuffer'/>
-      <ref name='_xmlChLRange'/>
-      <ref name='_xmlChRangeGroup'/>
-      <ref name='_xmlChSRange'/>
-      <ref name='_xmlCharEncodingHandler'/>
-      <ref name='_xmlDOMWrapCtxt'/>
-      <ref name='_xmlDoc'/>
-      <ref name='_xmlDtd'/>
-      <ref name='_xmlElement'/>
-      <ref name='_xmlElementContent'/>
-      <ref name='_xmlEntity'/>
-      <ref name='_xmlEnumeration'/>
-      <ref name='_xmlError'/>
-      <ref name='_xmlGlobalState'/>
-      <ref name='_xmlID'/>
-      <ref name='_xmlLocationSet'/>
-      <ref name='_xmlNode'/>
-      <ref name='_xmlNodeSet'/>
-      <ref name='_xmlNotation'/>
-      <ref name='_xmlNs'/>
-      <ref name='_xmlOutputBuffer'/>
-      <ref name='_xmlParserCtxt'/>
-      <ref name='_xmlParserInput'/>
-      <ref name='_xmlParserInputBuffer'/>
-      <ref name='_xmlParserNodeInfo'/>
-      <ref name='_xmlParserNodeInfoSeq'/>
-      <ref name='_xmlRef'/>
-      <ref name='_xmlSAXHandler'/>
-      <ref name='_xmlSAXHandlerV1'/>
-      <ref name='_xmlSAXLocator'/>
-      <ref name='_xmlSchema'/>
-      <ref name='_xmlSchemaAnnot'/>
-      <ref name='_xmlSchemaAttribute'/>
-      <ref name='_xmlSchemaAttributeGroup'/>
-      <ref name='_xmlSchemaAttributeLink'/>
-      <ref name='_xmlSchemaElement'/>
-      <ref name='_xmlSchemaFacet'/>
-      <ref name='_xmlSchemaFacetLink'/>
-      <ref name='_xmlSchemaNotation'/>
-      <ref name='_xmlSchemaType'/>
-      <ref name='_xmlSchemaTypeLink'/>
-      <ref name='_xmlSchemaWildcard'/>
-      <ref name='_xmlSchemaWildcardNs'/>
-      <ref name='_xmlShellCtxt'/>
-      <ref name='_xmlURI'/>
-      <ref name='_xmlValidCtxt'/>
-      <ref name='_xmlXPathAxis'/>
-      <ref name='_xmlXPathContext'/>
-      <ref name='_xmlXPathFunct'/>
-      <ref name='_xmlXPathObject'/>
-      <ref name='_xmlXPathParserContext'/>
-      <ref name='_xmlXPathType'/>
-      <ref name='_xmlXPathVariable'/>
-    </letter>
-    <letter name='a'>
-      <ref name='attribute'/>
-      <ref name='attributeDecl'/>
-      <ref name='attributeDeclSAXFunc'/>
-      <ref name='attributeSAXFunc'/>
-    </letter>
-    <letter name='c'>
-      <ref name='cdataBlock'/>
-      <ref name='cdataBlockSAXFunc'/>
-      <ref name='characters'/>
-      <ref name='charactersSAXFunc'/>
-      <ref name='checkNamespace'/>
-      <ref name='comment'/>
-      <ref name='commentSAXFunc'/>
-    </letter>
-    <letter name='e'>
-      <ref name='elementDecl'/>
-      <ref name='elementDeclSAXFunc'/>
-      <ref name='emptyExp'/>
-      <ref name='endDocument'/>
-      <ref name='endDocumentSAXFunc'/>
-      <ref name='endElement'/>
-      <ref name='endElementNsSAX2Func'/>
-      <ref name='endElementSAXFunc'/>
-      <ref name='entityDecl'/>
-      <ref name='entityDeclSAXFunc'/>
-      <ref name='errorSAXFunc'/>
-      <ref name='externalSubset'/>
-      <ref name='externalSubsetSAXFunc'/>
-    </letter>
-    <letter name='f'>
-      <ref name='fatalErrorSAXFunc'/>
-      <ref name='forbiddenExp'/>
-      <ref name='ftpDataCallback'/>
-      <ref name='ftpListCallback'/>
-    </letter>
-    <letter name='g'>
-      <ref name='getColumnNumber'/>
-      <ref name='getEntity'/>
-      <ref name='getEntitySAXFunc'/>
-      <ref name='getLineNumber'/>
-      <ref name='getNamespace'/>
-      <ref name='getParameterEntity'/>
-      <ref name='getParameterEntitySAXFunc'/>
-      <ref name='getPublicId'/>
-      <ref name='getSystemId'/>
-      <ref name='globalNamespace'/>
-    </letter>
-    <letter name='h'>
-      <ref name='hasExternalSubset'/>
-      <ref name='hasExternalSubsetSAXFunc'/>
-      <ref name='hasInternalSubset'/>
-      <ref name='hasInternalSubsetSAXFunc'/>
-      <ref name='htmlAttrAllowed'/>
-      <ref name='htmlAutoCloseTag'/>
-      <ref name='htmlCreateFileParserCtxt'/>
-      <ref name='htmlCreateMemoryParserCtxt'/>
-      <ref name='htmlCreatePushParserCtxt'/>
-      <ref name='htmlCtxtReadDoc'/>
-      <ref name='htmlCtxtReadFd'/>
-      <ref name='htmlCtxtReadFile'/>
-      <ref name='htmlCtxtReadIO'/>
-      <ref name='htmlCtxtReadMemory'/>
-      <ref name='htmlCtxtReset'/>
-      <ref name='htmlCtxtUseOptions'/>
-      <ref name='htmlDefaultSAXHandler'/>
-      <ref name='htmlDefaultSAXHandlerInit'/>
-      <ref name='htmlDefaultSubelement'/>
-      <ref name='htmlDocContentDumpFormatOutput'/>
-      <ref name='htmlDocContentDumpOutput'/>
-      <ref name='htmlDocDump'/>
-      <ref name='htmlDocDumpMemory'/>
-      <ref name='htmlDocDumpMemoryFormat'/>
-      <ref name='htmlDocPtr'/>
-      <ref name='htmlElemDesc'/>
-      <ref name='htmlElemDescPtr'/>
-      <ref name='htmlElementAllowedHere'/>
-      <ref name='htmlElementAllowedHereDesc'/>
-      <ref name='htmlElementStatusHere'/>
-      <ref name='htmlEncodeEntities'/>
-      <ref name='htmlEntityDesc'/>
-      <ref name='htmlEntityDescPtr'/>
-      <ref name='htmlEntityLookup'/>
-      <ref name='htmlEntityValueLookup'/>
-      <ref name='htmlFreeParserCtxt'/>
-      <ref name='htmlGetMetaEncoding'/>
-      <ref name='htmlHandleOmittedElem'/>
-      <ref name='htmlInitAutoClose'/>
-      <ref name='htmlIsAutoClosed'/>
-      <ref name='htmlIsBooleanAttr'/>
-      <ref name='htmlIsScriptAttribute'/>
-      <ref name='htmlNewDoc'/>
-      <ref name='htmlNewDocNoDtD'/>
-      <ref name='htmlNewParserCtxt'/>
-      <ref name='htmlNodeDump'/>
-      <ref name='htmlNodeDumpFile'/>
-      <ref name='htmlNodeDumpFileFormat'/>
-      <ref name='htmlNodeDumpFormatOutput'/>
-      <ref name='htmlNodeDumpOutput'/>
-      <ref name='htmlNodePtr'/>
-      <ref name='htmlNodeStatus'/>
-      <ref name='htmlParseCharRef'/>
-      <ref name='htmlParseChunk'/>
-      <ref name='htmlParseDoc'/>
-      <ref name='htmlParseDocument'/>
-      <ref name='htmlParseElement'/>
-      <ref name='htmlParseEntityRef'/>
-      <ref name='htmlParseFile'/>
-      <ref name='htmlParserCtxt'/>
-      <ref name='htmlParserCtxtPtr'/>
-      <ref name='htmlParserInput'/>
-      <ref name='htmlParserInputPtr'/>
-      <ref name='htmlParserNodeInfo'/>
-      <ref name='htmlParserOption'/>
-      <ref name='htmlReadDoc'/>
-      <ref name='htmlReadFd'/>
-      <ref name='htmlReadFile'/>
-      <ref name='htmlReadIO'/>
-      <ref name='htmlReadMemory'/>
-      <ref name='htmlRequiredAttrs'/>
-      <ref name='htmlSAXHandler'/>
-      <ref name='htmlSAXHandlerPtr'/>
-      <ref name='htmlSAXParseDoc'/>
-      <ref name='htmlSAXParseFile'/>
-      <ref name='htmlSaveFile'/>
-      <ref name='htmlSaveFileEnc'/>
-      <ref name='htmlSaveFileFormat'/>
-      <ref name='htmlSetMetaEncoding'/>
-      <ref name='htmlStatus'/>
-      <ref name='htmlTagLookup'/>
-    </letter>
-    <letter name='i'>
-      <ref name='ignorableWhitespace'/>
-      <ref name='ignorableWhitespaceSAXFunc'/>
-      <ref name='initGenericErrorDefaultFunc'/>
-      <ref name='inithtmlDefaultSAXHandler'/>
-      <ref name='initxmlDefaultSAXHandler'/>
-      <ref name='inputPop'/>
-      <ref name='inputPush'/>
-      <ref name='internalSubset'/>
-      <ref name='internalSubsetSAXFunc'/>
-      <ref name='isStandalone'/>
-      <ref name='isStandaloneSAXFunc'/>
-      <ref name='isolat1ToUTF8'/>
-    </letter>
-    <letter name='n'>
-      <ref name='namePop'/>
-      <ref name='namePush'/>
-      <ref name='namespaceDecl'/>
-      <ref name='nodePop'/>
-      <ref name='nodePush'/>
-      <ref name='notationDecl'/>
-      <ref name='notationDeclSAXFunc'/>
-    </letter>
-    <letter name='o'>
-      <ref name='oldXMLWDcompatibility'/>
-    </letter>
-    <letter name='p'>
-      <ref name='processingInstruction'/>
-      <ref name='processingInstructionSAXFunc'/>
-    </letter>
-    <letter name='r'>
-      <ref name='reference'/>
-      <ref name='referenceSAXFunc'/>
-      <ref name='resolveEntity'/>
-      <ref name='resolveEntitySAXFunc'/>
-    </letter>
-    <letter name='s'>
-      <ref name='setDocumentLocator'/>
-      <ref name='setDocumentLocatorSAXFunc'/>
-      <ref name='setNamespace'/>
-      <ref name='startDocument'/>
-      <ref name='startDocumentSAXFunc'/>
-      <ref name='startElement'/>
-      <ref name='startElementNsSAX2Func'/>
-      <ref name='startElementSAXFunc'/>
-    </letter>
-    <letter name='u'>
-      <ref name='unparsedEntityDecl'/>
-      <ref name='unparsedEntityDeclSAXFunc'/>
-    </letter>
-    <letter name='v'>
-      <ref name='valuePop'/>
-      <ref name='valuePush'/>
-    </letter>
-    <letter name='w'>
-      <ref name='warningSAXFunc'/>
-    </letter>
-    <letter name='x'>
-      <ref name='xlinkActuate'/>
-      <ref name='xlinkExtendedLinkFunk'/>
-      <ref name='xlinkExtendedLinkSetFunk'/>
-      <ref name='xlinkGetDefaultDetect'/>
-      <ref name='xlinkGetDefaultHandler'/>
-      <ref name='xlinkHRef'/>
-      <ref name='xlinkHandler'/>
-      <ref name='xlinkHandlerPtr'/>
-      <ref name='xlinkIsLink'/>
-      <ref name='xlinkNodeDetectFunc'/>
-      <ref name='xlinkRole'/>
-      <ref name='xlinkSetDefaultDetect'/>
-      <ref name='xlinkSetDefaultHandler'/>
-      <ref name='xlinkShow'/>
-      <ref name='xlinkSimpleLinkFunk'/>
-      <ref name='xlinkTitle'/>
-      <ref name='xlinkType'/>
-      <ref name='xmlACatalogAdd'/>
-      <ref name='xmlACatalogDump'/>
-      <ref name='xmlACatalogRemove'/>
-      <ref name='xmlACatalogResolve'/>
-      <ref name='xmlACatalogResolvePublic'/>
-      <ref name='xmlACatalogResolveSystem'/>
-      <ref name='xmlACatalogResolveURI'/>
-      <ref name='xmlAddAttributeDecl'/>
-      <ref name='xmlAddChild'/>
-      <ref name='xmlAddChildList'/>
-      <ref name='xmlAddDocEntity'/>
-      <ref name='xmlAddDtdEntity'/>
-      <ref name='xmlAddElementDecl'/>
-      <ref name='xmlAddEncodingAlias'/>
-      <ref name='xmlAddID'/>
-      <ref name='xmlAddNextSibling'/>
-      <ref name='xmlAddNotationDecl'/>
-      <ref name='xmlAddPrevSibling'/>
-      <ref name='xmlAddRef'/>
-      <ref name='xmlAddSibling'/>
-      <ref name='xmlAllocOutputBuffer'/>
-      <ref name='xmlAllocParserInputBuffer'/>
-      <ref name='xmlAttr'/>
-      <ref name='xmlAttrPtr'/>
-      <ref name='xmlAttrSerializeTxtContent'/>
-      <ref name='xmlAttribute'/>
-      <ref name='xmlAttributeDefault'/>
-      <ref name='xmlAttributePtr'/>
-      <ref name='xmlAttributeTable'/>
-      <ref name='xmlAttributeTablePtr'/>
-      <ref name='xmlAttributeType'/>
-      <ref name='xmlAutomata'/>
-      <ref name='xmlAutomataCompile'/>
-      <ref name='xmlAutomataGetInitState'/>
-      <ref name='xmlAutomataIsDeterminist'/>
-      <ref name='xmlAutomataNewAllTrans'/>
-      <ref name='xmlAutomataNewCountTrans'/>
-      <ref name='xmlAutomataNewCountTrans2'/>
-      <ref name='xmlAutomataNewCountedTrans'/>
-      <ref name='xmlAutomataNewCounter'/>
-      <ref name='xmlAutomataNewCounterTrans'/>
-      <ref name='xmlAutomataNewEpsilon'/>
-      <ref name='xmlAutomataNewNegTrans'/>
-      <ref name='xmlAutomataNewOnceTrans'/>
-      <ref name='xmlAutomataNewOnceTrans2'/>
-      <ref name='xmlAutomataNewState'/>
-      <ref name='xmlAutomataNewTransition'/>
-      <ref name='xmlAutomataNewTransition2'/>
-      <ref name='xmlAutomataPtr'/>
-      <ref name='xmlAutomataSetFinalState'/>
-      <ref name='xmlAutomataState'/>
-      <ref name='xmlAutomataStatePtr'/>
-      <ref name='xmlBoolToText'/>
-      <ref name='xmlBuf'/>
-      <ref name='xmlBufContent'/>
-      <ref name='xmlBufEnd'/>
-      <ref name='xmlBufGetNodeContent'/>
-      <ref name='xmlBufNodeDump'/>
-      <ref name='xmlBufPtr'/>
-      <ref name='xmlBufShrink'/>
-      <ref name='xmlBufUse'/>
-      <ref name='xmlBuffer'/>
-      <ref name='xmlBufferAdd'/>
-      <ref name='xmlBufferAddHead'/>
-      <ref name='xmlBufferAllocScheme'/>
-      <ref name='xmlBufferAllocationScheme'/>
-      <ref name='xmlBufferCCat'/>
-      <ref name='xmlBufferCat'/>
-      <ref name='xmlBufferContent'/>
-      <ref name='xmlBufferCreate'/>
-      <ref name='xmlBufferCreateSize'/>
-      <ref name='xmlBufferCreateStatic'/>
-      <ref name='xmlBufferDetach'/>
-      <ref name='xmlBufferDump'/>
-      <ref name='xmlBufferEmpty'/>
-      <ref name='xmlBufferFree'/>
-      <ref name='xmlBufferGrow'/>
-      <ref name='xmlBufferLength'/>
-      <ref name='xmlBufferPtr'/>
-      <ref name='xmlBufferResize'/>
-      <ref name='xmlBufferSetAllocationScheme'/>
-      <ref name='xmlBufferShrink'/>
-      <ref name='xmlBufferWriteCHAR'/>
-      <ref name='xmlBufferWriteChar'/>
-      <ref name='xmlBufferWriteQuotedString'/>
-      <ref name='xmlBuildQName'/>
-      <ref name='xmlBuildRelativeURI'/>
-      <ref name='xmlBuildURI'/>
-      <ref name='xmlByteConsumed'/>
-      <ref name='xmlC14NDocDumpMemory'/>
-      <ref name='xmlC14NDocSave'/>
-      <ref name='xmlC14NDocSaveTo'/>
-      <ref name='xmlC14NExecute'/>
-      <ref name='xmlC14NIsVisibleCallback'/>
-      <ref name='xmlC14NMode'/>
-      <ref name='xmlCanonicPath'/>
-      <ref name='xmlCatalog'/>
-      <ref name='xmlCatalogAdd'/>
-      <ref name='xmlCatalogAddLocal'/>
-      <ref name='xmlCatalogAllow'/>
-      <ref name='xmlCatalogCleanup'/>
-      <ref name='xmlCatalogConvert'/>
-      <ref name='xmlCatalogDump'/>
-      <ref name='xmlCatalogFreeLocal'/>
-      <ref name='xmlCatalogGetDefaults'/>
-      <ref name='xmlCatalogGetPublic'/>
-      <ref name='xmlCatalogGetSystem'/>
-      <ref name='xmlCatalogIsEmpty'/>
-      <ref name='xmlCatalogLocalResolve'/>
-      <ref name='xmlCatalogLocalResolveURI'/>
-      <ref name='xmlCatalogPrefer'/>
-      <ref name='xmlCatalogPtr'/>
-      <ref name='xmlCatalogRemove'/>
-      <ref name='xmlCatalogResolve'/>
-      <ref name='xmlCatalogResolvePublic'/>
-      <ref name='xmlCatalogResolveSystem'/>
-      <ref name='xmlCatalogResolveURI'/>
-      <ref name='xmlCatalogSetDebug'/>
-      <ref name='xmlCatalogSetDefaultPrefer'/>
-      <ref name='xmlCatalogSetDefaults'/>
-      <ref name='xmlChLRange'/>
-      <ref name='xmlChLRangePtr'/>
-      <ref name='xmlChRangeGroup'/>
-      <ref name='xmlChRangeGroupPtr'/>
-      <ref name='xmlChSRange'/>
-      <ref name='xmlChSRangePtr'/>
-      <ref name='xmlChar'/>
-      <ref name='xmlCharEncCloseFunc'/>
-      <ref name='xmlCharEncFirstLine'/>
-      <ref name='xmlCharEncInFunc'/>
-      <ref name='xmlCharEncOutFunc'/>
-      <ref name='xmlCharEncoding'/>
-      <ref name='xmlCharEncodingHandler'/>
-      <ref name='xmlCharEncodingHandlerPtr'/>
-      <ref name='xmlCharEncodingInputFunc'/>
-      <ref name='xmlCharEncodingOutputFunc'/>
-      <ref name='xmlCharInRange'/>
-      <ref name='xmlCharStrdup'/>
-      <ref name='xmlCharStrndup'/>
-      <ref name='xmlCheckFilename'/>
-      <ref name='xmlCheckHTTPInput'/>
-      <ref name='xmlCheckLanguageID'/>
-      <ref name='xmlCheckUTF8'/>
-      <ref name='xmlCheckVersion'/>
-      <ref name='xmlChildElementCount'/>
-      <ref name='xmlChildrenNode'/>
-      <ref name='xmlCleanupCharEncodingHandlers'/>
-      <ref name='xmlCleanupEncodingAliases'/>
-      <ref name='xmlCleanupGlobals'/>
-      <ref name='xmlCleanupInputCallbacks'/>
-      <ref name='xmlCleanupMemory'/>
-      <ref name='xmlCleanupOutputCallbacks'/>
-      <ref name='xmlCleanupParser'/>
-      <ref name='xmlCleanupPredefinedEntities'/>
-      <ref name='xmlCleanupThreads'/>
-      <ref name='xmlClearNodeInfoSeq'/>
-      <ref name='xmlClearParserCtxt'/>
-      <ref name='xmlConvertSGMLCatalog'/>
-      <ref name='xmlCopyAttributeTable'/>
-      <ref name='xmlCopyChar'/>
-      <ref name='xmlCopyCharMultiByte'/>
-      <ref name='xmlCopyDoc'/>
-      <ref name='xmlCopyDocElementContent'/>
-      <ref name='xmlCopyDtd'/>
-      <ref name='xmlCopyElementContent'/>
-      <ref name='xmlCopyElementTable'/>
-      <ref name='xmlCopyEntitiesTable'/>
-      <ref name='xmlCopyEnumeration'/>
-      <ref name='xmlCopyError'/>
-      <ref name='xmlCopyNamespace'/>
-      <ref name='xmlCopyNamespaceList'/>
-      <ref name='xmlCopyNode'/>
-      <ref name='xmlCopyNodeList'/>
-      <ref name='xmlCopyNotationTable'/>
-      <ref name='xmlCopyProp'/>
-      <ref name='xmlCopyPropList'/>
-      <ref name='xmlCreateDocParserCtxt'/>
-      <ref name='xmlCreateEntitiesTable'/>
-      <ref name='xmlCreateEntityParserCtxt'/>
-      <ref name='xmlCreateEnumeration'/>
-      <ref name='xmlCreateFileParserCtxt'/>
-      <ref name='xmlCreateIOParserCtxt'/>
-      <ref name='xmlCreateIntSubset'/>
-      <ref name='xmlCreateMemoryParserCtxt'/>
-      <ref name='xmlCreatePushParserCtxt'/>
-      <ref name='xmlCreateURI'/>
-      <ref name='xmlCreateURLParserCtxt'/>
-      <ref name='xmlCtxtGetLastError'/>
-      <ref name='xmlCtxtReadDoc'/>
-      <ref name='xmlCtxtReadFd'/>
-      <ref name='xmlCtxtReadFile'/>
-      <ref name='xmlCtxtReadIO'/>
-      <ref name='xmlCtxtReadMemory'/>
-      <ref name='xmlCtxtReset'/>
-      <ref name='xmlCtxtResetLastError'/>
-      <ref name='xmlCtxtResetPush'/>
-      <ref name='xmlCtxtUseOptions'/>
-      <ref name='xmlCurrentChar'/>
-      <ref name='xmlDOMWrapAcquireNsFunction'/>
-      <ref name='xmlDOMWrapAdoptNode'/>
-      <ref name='xmlDOMWrapCloneNode'/>
-      <ref name='xmlDOMWrapCtxt'/>
-      <ref name='xmlDOMWrapCtxtPtr'/>
-      <ref name='xmlDOMWrapFreeCtxt'/>
-      <ref name='xmlDOMWrapNewCtxt'/>
-      <ref name='xmlDOMWrapReconcileNamespaces'/>
-      <ref name='xmlDOMWrapRemoveNode'/>
-      <ref name='xmlDebugCheckDocument'/>
-      <ref name='xmlDebugDumpAttr'/>
-      <ref name='xmlDebugDumpAttrList'/>
-      <ref name='xmlDebugDumpDTD'/>
-      <ref name='xmlDebugDumpDocument'/>
-      <ref name='xmlDebugDumpDocumentHead'/>
-      <ref name='xmlDebugDumpEntities'/>
-      <ref name='xmlDebugDumpNode'/>
-      <ref name='xmlDebugDumpNodeList'/>
-      <ref name='xmlDebugDumpOneNode'/>
-      <ref name='xmlDebugDumpString'/>
-      <ref name='xmlDecodeEntities'/>
-      <ref name='xmlDefaultBufferSize'/>
-      <ref name='xmlDefaultSAXHandler'/>
-      <ref name='xmlDefaultSAXHandlerInit'/>
-      <ref name='xmlDefaultSAXLocator'/>
-      <ref name='xmlDelEncodingAlias'/>
-      <ref name='xmlDeregisterNodeDefault'/>
-      <ref name='xmlDeregisterNodeDefaultValue'/>
-      <ref name='xmlDeregisterNodeFunc'/>
-      <ref name='xmlDetectCharEncoding'/>
-      <ref name='xmlDict'/>
-      <ref name='xmlDictCleanup'/>
-      <ref name='xmlDictCreate'/>
-      <ref name='xmlDictCreateSub'/>
-      <ref name='xmlDictExists'/>
-      <ref name='xmlDictFree'/>
-      <ref name='xmlDictGetUsage'/>
-      <ref name='xmlDictLookup'/>
-      <ref name='xmlDictOwns'/>
-      <ref name='xmlDictPtr'/>
-      <ref name='xmlDictQLookup'/>
-      <ref name='xmlDictReference'/>
-      <ref name='xmlDictSetLimit'/>
-      <ref name='xmlDictSize'/>
-      <ref name='xmlDllMain'/>
-      <ref name='xmlDoValidityCheckingDefaultValue'/>
-      <ref name='xmlDoc'/>
-      <ref name='xmlDocCopyNode'/>
-      <ref name='xmlDocCopyNodeList'/>
-      <ref name='xmlDocDump'/>
-      <ref name='xmlDocDumpFormatMemory'/>
-      <ref name='xmlDocDumpFormatMemoryEnc'/>
-      <ref name='xmlDocDumpMemory'/>
-      <ref name='xmlDocDumpMemoryEnc'/>
-      <ref name='xmlDocFormatDump'/>
-      <ref name='xmlDocGetRootElement'/>
-      <ref name='xmlDocProperties'/>
-      <ref name='xmlDocPtr'/>
-      <ref name='xmlDocSetRootElement'/>
-      <ref name='xmlDtd'/>
-      <ref name='xmlDtdPtr'/>
-      <ref name='xmlDumpAttributeDecl'/>
-      <ref name='xmlDumpAttributeTable'/>
-      <ref name='xmlDumpElementDecl'/>
-      <ref name='xmlDumpElementTable'/>
-      <ref name='xmlDumpEntitiesTable'/>
-      <ref name='xmlDumpEntityDecl'/>
-      <ref name='xmlDumpNotationDecl'/>
-      <ref name='xmlDumpNotationTable'/>
-      <ref name='xmlElemDump'/>
-      <ref name='xmlElement'/>
-      <ref name='xmlElementContent'/>
-      <ref name='xmlElementContentOccur'/>
-      <ref name='xmlElementContentPtr'/>
-      <ref name='xmlElementContentType'/>
-      <ref name='xmlElementPtr'/>
-      <ref name='xmlElementTable'/>
-      <ref name='xmlElementTablePtr'/>
-      <ref name='xmlElementType'/>
-      <ref name='xmlElementTypeVal'/>
-      <ref name='xmlEncodeEntities'/>
-      <ref name='xmlEncodeEntitiesReentrant'/>
-      <ref name='xmlEncodeSpecialChars'/>
-      <ref name='xmlEntitiesTable'/>
-      <ref name='xmlEntitiesTablePtr'/>
-      <ref name='xmlEntity'/>
-      <ref name='xmlEntityPtr'/>
-      <ref name='xmlEntityReferenceFunc'/>
-      <ref name='xmlEntityType'/>
-      <ref name='xmlEnumeration'/>
-      <ref name='xmlEnumerationPtr'/>
-      <ref name='xmlErrMemory'/>
-      <ref name='xmlError'/>
-      <ref name='xmlErrorDomain'/>
-      <ref name='xmlErrorLevel'/>
-      <ref name='xmlErrorPtr'/>
-      <ref name='xmlExpCtxt'/>
-      <ref name='xmlExpCtxtNbCons'/>
-      <ref name='xmlExpCtxtNbNodes'/>
-      <ref name='xmlExpCtxtPtr'/>
-      <ref name='xmlExpDump'/>
-      <ref name='xmlExpExpDerive'/>
-      <ref name='xmlExpFree'/>
-      <ref name='xmlExpFreeCtxt'/>
-      <ref name='xmlExpGetLanguage'/>
-      <ref name='xmlExpGetStart'/>
-      <ref name='xmlExpIsNillable'/>
-      <ref name='xmlExpMaxToken'/>
-      <ref name='xmlExpNewAtom'/>
-      <ref name='xmlExpNewCtxt'/>
-      <ref name='xmlExpNewOr'/>
-      <ref name='xmlExpNewRange'/>
-      <ref name='xmlExpNewSeq'/>
-      <ref name='xmlExpNode'/>
-      <ref name='xmlExpNodePtr'/>
-      <ref name='xmlExpNodeType'/>
-      <ref name='xmlExpParse'/>
-      <ref name='xmlExpRef'/>
-      <ref name='xmlExpStringDerive'/>
-      <ref name='xmlExpSubsume'/>
-      <ref name='xmlExternalEntityLoader'/>
-      <ref name='xmlFeature'/>
-      <ref name='xmlFileClose'/>
-      <ref name='xmlFileMatch'/>
-      <ref name='xmlFileOpen'/>
-      <ref name='xmlFileRead'/>
-      <ref name='xmlFindCharEncodingHandler'/>
-      <ref name='xmlFirstElementChild'/>
-      <ref name='xmlFree'/>
-      <ref name='xmlFreeAttributeTable'/>
-      <ref name='xmlFreeAutomata'/>
-      <ref name='xmlFreeCatalog'/>
-      <ref name='xmlFreeDoc'/>
-      <ref name='xmlFreeDocElementContent'/>
-      <ref name='xmlFreeDtd'/>
-      <ref name='xmlFreeElementContent'/>
-      <ref name='xmlFreeElementTable'/>
-      <ref name='xmlFreeEntitiesTable'/>
-      <ref name='xmlFreeEnumeration'/>
-      <ref name='xmlFreeFunc'/>
-      <ref name='xmlFreeIDTable'/>
-      <ref name='xmlFreeInputStream'/>
-      <ref name='xmlFreeMutex'/>
-      <ref name='xmlFreeNode'/>
-      <ref name='xmlFreeNodeList'/>
-      <ref name='xmlFreeNotationTable'/>
-      <ref name='xmlFreeNs'/>
-      <ref name='xmlFreeNsList'/>
-      <ref name='xmlFreeParserCtxt'/>
-      <ref name='xmlFreeParserInputBuffer'/>
-      <ref name='xmlFreePattern'/>
-      <ref name='xmlFreePatternList'/>
-      <ref name='xmlFreeProp'/>
-      <ref name='xmlFreePropList'/>
-      <ref name='xmlFreeRMutex'/>
-      <ref name='xmlFreeRefTable'/>
-      <ref name='xmlFreeStreamCtxt'/>
-      <ref name='xmlFreeTextReader'/>
-      <ref name='xmlFreeTextWriter'/>
-      <ref name='xmlFreeURI'/>
-      <ref name='xmlFreeValidCtxt'/>
-      <ref name='xmlGcMemGet'/>
-      <ref name='xmlGcMemSetup'/>
-      <ref name='xmlGenericError'/>
-      <ref name='xmlGenericErrorContext'/>
-      <ref name='xmlGenericErrorFunc'/>
-      <ref name='xmlGetBufferAllocationScheme'/>
-      <ref name='xmlGetCharEncodingHandler'/>
-      <ref name='xmlGetCharEncodingName'/>
-      <ref name='xmlGetCompressMode'/>
-      <ref name='xmlGetDocCompressMode'/>
-      <ref name='xmlGetDocEntity'/>
-      <ref name='xmlGetDtdAttrDesc'/>
-      <ref name='xmlGetDtdElementDesc'/>
-      <ref name='xmlGetDtdEntity'/>
-      <ref name='xmlGetDtdNotationDesc'/>
-      <ref name='xmlGetDtdQAttrDesc'/>
-      <ref name='xmlGetDtdQElementDesc'/>
-      <ref name='xmlGetEncodingAlias'/>
-      <ref name='xmlGetExternalEntityLoader'/>
-      <ref name='xmlGetFeature'/>
-      <ref name='xmlGetFeaturesList'/>
-      <ref name='xmlGetGlobalState'/>
-      <ref name='xmlGetID'/>
-      <ref name='xmlGetIntSubset'/>
-      <ref name='xmlGetLastChild'/>
-      <ref name='xmlGetLastError'/>
-      <ref name='xmlGetLineNo'/>
-      <ref name='xmlGetNoNsProp'/>
-      <ref name='xmlGetNodePath'/>
-      <ref name='xmlGetNsList'/>
-      <ref name='xmlGetNsProp'/>
-      <ref name='xmlGetParameterEntity'/>
-      <ref name='xmlGetPredefinedEntity'/>
-      <ref name='xmlGetProp'/>
-      <ref name='xmlGetRefs'/>
-      <ref name='xmlGetThreadId'/>
-      <ref name='xmlGetUTF8Char'/>
-      <ref name='xmlGetWarningsDefaultValue'/>
-      <ref name='xmlGlobalState'/>
-      <ref name='xmlGlobalStatePtr'/>
-      <ref name='xmlHandleEntity'/>
-      <ref name='xmlHasFeature'/>
-      <ref name='xmlHasNsProp'/>
-      <ref name='xmlHasProp'/>
-      <ref name='xmlHashAddEntry'/>
-      <ref name='xmlHashAddEntry2'/>
-      <ref name='xmlHashAddEntry3'/>
-      <ref name='xmlHashCopier'/>
-      <ref name='xmlHashCopy'/>
-      <ref name='xmlHashCreate'/>
-      <ref name='xmlHashCreateDict'/>
-      <ref name='xmlHashDeallocator'/>
-      <ref name='xmlHashDefaultDeallocator'/>
-      <ref name='xmlHashFree'/>
-      <ref name='xmlHashLookup'/>
-      <ref name='xmlHashLookup2'/>
-      <ref name='xmlHashLookup3'/>
-      <ref name='xmlHashQLookup'/>
-      <ref name='xmlHashQLookup2'/>
-      <ref name='xmlHashQLookup3'/>
-      <ref name='xmlHashRemoveEntry'/>
-      <ref name='xmlHashRemoveEntry2'/>
-      <ref name='xmlHashRemoveEntry3'/>
-      <ref name='xmlHashScan'/>
-      <ref name='xmlHashScan3'/>
-      <ref name='xmlHashScanFull'/>
-      <ref name='xmlHashScanFull3'/>
-      <ref name='xmlHashScanner'/>
-      <ref name='xmlHashScannerFull'/>
-      <ref name='xmlHashSize'/>
-      <ref name='xmlHashTable'/>
-      <ref name='xmlHashTablePtr'/>
-      <ref name='xmlHashUpdateEntry'/>
-      <ref name='xmlHashUpdateEntry2'/>
-      <ref name='xmlHashUpdateEntry3'/>
-      <ref name='xmlID'/>
-      <ref name='xmlIDPtr'/>
-      <ref name='xmlIDTable'/>
-      <ref name='xmlIDTablePtr'/>
-      <ref name='xmlIOFTPClose'/>
-      <ref name='xmlIOFTPMatch'/>
-      <ref name='xmlIOFTPOpen'/>
-      <ref name='xmlIOFTPRead'/>
-      <ref name='xmlIOHTTPClose'/>
-      <ref name='xmlIOHTTPMatch'/>
-      <ref name='xmlIOHTTPOpen'/>
-      <ref name='xmlIOHTTPOpenW'/>
-      <ref name='xmlIOHTTPRead'/>
-      <ref name='xmlIOParseDTD'/>
-      <ref name='xmlIndentTreeOutput'/>
-      <ref name='xmlInitCharEncodingHandlers'/>
-      <ref name='xmlInitGlobals'/>
-      <ref name='xmlInitMemory'/>
-      <ref name='xmlInitNodeInfoSeq'/>
-      <ref name='xmlInitParser'/>
-      <ref name='xmlInitParserCtxt'/>
-      <ref name='xmlInitThreads'/>
-      <ref name='xmlInitializeCatalog'/>
-      <ref name='xmlInitializeDict'/>
-      <ref name='xmlInitializeGlobalState'/>
-      <ref name='xmlInitializePredefinedEntities'/>
-      <ref name='xmlInputCloseCallback'/>
-      <ref name='xmlInputMatchCallback'/>
-      <ref name='xmlInputOpenCallback'/>
-      <ref name='xmlInputReadCallback'/>
-      <ref name='xmlIsBaseChar'/>
-      <ref name='xmlIsBaseCharGroup'/>
-      <ref name='xmlIsBaseCharQ'/>
-      <ref name='xmlIsBaseChar_ch'/>
-      <ref name='xmlIsBlank'/>
-      <ref name='xmlIsBlankNode'/>
-      <ref name='xmlIsBlankQ'/>
-      <ref name='xmlIsBlank_ch'/>
-      <ref name='xmlIsChar'/>
-      <ref name='xmlIsCharGroup'/>
-      <ref name='xmlIsCharQ'/>
-      <ref name='xmlIsChar_ch'/>
-      <ref name='xmlIsCombining'/>
-      <ref name='xmlIsCombiningGroup'/>
-      <ref name='xmlIsCombiningQ'/>
-      <ref name='xmlIsDigit'/>
-      <ref name='xmlIsDigitGroup'/>
-      <ref name='xmlIsDigitQ'/>
-      <ref name='xmlIsDigit_ch'/>
-      <ref name='xmlIsExtender'/>
-      <ref name='xmlIsExtenderGroup'/>
-      <ref name='xmlIsExtenderQ'/>
-      <ref name='xmlIsExtender_ch'/>
-      <ref name='xmlIsID'/>
-      <ref name='xmlIsIdeographic'/>
-      <ref name='xmlIsIdeographicGroup'/>
-      <ref name='xmlIsIdeographicQ'/>
-      <ref name='xmlIsLetter'/>
-      <ref name='xmlIsMainThread'/>
-      <ref name='xmlIsMixedElement'/>
-      <ref name='xmlIsPubidChar'/>
-      <ref name='xmlIsPubidCharQ'/>
-      <ref name='xmlIsPubidChar_ch'/>
-      <ref name='xmlIsPubidChar_tab'/>
-      <ref name='xmlIsRef'/>
-      <ref name='xmlIsXHTML'/>
-      <ref name='xmlKeepBlanksDefault'/>
-      <ref name='xmlKeepBlanksDefaultValue'/>
-      <ref name='xmlLastElementChild'/>
-      <ref name='xmlLastError'/>
-      <ref name='xmlLineNumbersDefault'/>
-      <ref name='xmlLineNumbersDefaultValue'/>
-      <ref name='xmlLink'/>
-      <ref name='xmlLinkGetData'/>
-      <ref name='xmlLinkPtr'/>
-      <ref name='xmlList'/>
-      <ref name='xmlListAppend'/>
-      <ref name='xmlListClear'/>
-      <ref name='xmlListCopy'/>
-      <ref name='xmlListCreate'/>
-      <ref name='xmlListDataCompare'/>
-      <ref name='xmlListDeallocator'/>
-      <ref name='xmlListDelete'/>
-      <ref name='xmlListDup'/>
-      <ref name='xmlListEmpty'/>
-      <ref name='xmlListEnd'/>
-      <ref name='xmlListFront'/>
-      <ref name='xmlListInsert'/>
-      <ref name='xmlListMerge'/>
-      <ref name='xmlListPopBack'/>
-      <ref name='xmlListPopFront'/>
-      <ref name='xmlListPtr'/>
-      <ref name='xmlListPushBack'/>
-      <ref name='xmlListPushFront'/>
-      <ref name='xmlListRemoveAll'/>
-      <ref name='xmlListRemoveFirst'/>
-      <ref name='xmlListRemoveLast'/>
-      <ref name='xmlListReverse'/>
-      <ref name='xmlListReverseSearch'/>
-      <ref name='xmlListReverseWalk'/>
-      <ref name='xmlListSearch'/>
-      <ref name='xmlListSize'/>
-      <ref name='xmlListSort'/>
-      <ref name='xmlListWalk'/>
-      <ref name='xmlListWalker'/>
-      <ref name='xmlLoadACatalog'/>
-      <ref name='xmlLoadCatalog'/>
-      <ref name='xmlLoadCatalogs'/>
-      <ref name='xmlLoadExtDtdDefaultValue'/>
-      <ref name='xmlLoadExternalEntity'/>
-      <ref name='xmlLoadSGMLSuperCatalog'/>
-      <ref name='xmlLocationSet'/>
-      <ref name='xmlLocationSetPtr'/>
-      <ref name='xmlLockLibrary'/>
-      <ref name='xmlLsCountNode'/>
-      <ref name='xmlLsOneNode'/>
-      <ref name='xmlMalloc'/>
-      <ref name='xmlMallocAtomic'/>
-      <ref name='xmlMallocAtomicLoc'/>
-      <ref name='xmlMallocFunc'/>
-      <ref name='xmlMallocLoc'/>
-      <ref name='xmlMemBlocks'/>
-      <ref name='xmlMemDisplay'/>
-      <ref name='xmlMemDisplayLast'/>
-      <ref name='xmlMemFree'/>
-      <ref name='xmlMemGet'/>
-      <ref name='xmlMemMalloc'/>
-      <ref name='xmlMemRealloc'/>
-      <ref name='xmlMemSetup'/>
-      <ref name='xmlMemShow'/>
-      <ref name='xmlMemStrdup'/>
-      <ref name='xmlMemStrdupLoc'/>
-      <ref name='xmlMemUsed'/>
-      <ref name='xmlMemoryDump'/>
-      <ref name='xmlMemoryStrdup'/>
-      <ref name='xmlModule'/>
-      <ref name='xmlModuleClose'/>
-      <ref name='xmlModuleFree'/>
-      <ref name='xmlModuleOpen'/>
-      <ref name='xmlModuleOption'/>
-      <ref name='xmlModulePtr'/>
-      <ref name='xmlModuleSymbol'/>
-      <ref name='xmlMutex'/>
-      <ref name='xmlMutexLock'/>
-      <ref name='xmlMutexPtr'/>
-      <ref name='xmlMutexUnlock'/>
-      <ref name='xmlNamespaceParseNCName'/>
-      <ref name='xmlNamespaceParseNSDef'/>
-      <ref name='xmlNamespaceParseQName'/>
-      <ref name='xmlNanoFTPCheckResponse'/>
-      <ref name='xmlNanoFTPCleanup'/>
-      <ref name='xmlNanoFTPClose'/>
-      <ref name='xmlNanoFTPCloseConnection'/>
-      <ref name='xmlNanoFTPConnect'/>
-      <ref name='xmlNanoFTPConnectTo'/>
-      <ref name='xmlNanoFTPCwd'/>
-      <ref name='xmlNanoFTPDele'/>
-      <ref name='xmlNanoFTPFreeCtxt'/>
-      <ref name='xmlNanoFTPGet'/>
-      <ref name='xmlNanoFTPGetConnection'/>
-      <ref name='xmlNanoFTPGetResponse'/>
-      <ref name='xmlNanoFTPGetSocket'/>
-      <ref name='xmlNanoFTPInit'/>
-      <ref name='xmlNanoFTPList'/>
-      <ref name='xmlNanoFTPNewCtxt'/>
-      <ref name='xmlNanoFTPOpen'/>
-      <ref name='xmlNanoFTPProxy'/>
-      <ref name='xmlNanoFTPQuit'/>
-      <ref name='xmlNanoFTPRead'/>
-      <ref name='xmlNanoFTPScanProxy'/>
-      <ref name='xmlNanoFTPUpdateURL'/>
-      <ref name='xmlNanoHTTPAuthHeader'/>
-      <ref name='xmlNanoHTTPCleanup'/>
-      <ref name='xmlNanoHTTPClose'/>
-      <ref name='xmlNanoHTTPContentLength'/>
-      <ref name='xmlNanoHTTPEncoding'/>
-      <ref name='xmlNanoHTTPFetch'/>
-      <ref name='xmlNanoHTTPInit'/>
-      <ref name='xmlNanoHTTPMethod'/>
-      <ref name='xmlNanoHTTPMethodRedir'/>
-      <ref name='xmlNanoHTTPMimeType'/>
-      <ref name='xmlNanoHTTPOpen'/>
-      <ref name='xmlNanoHTTPOpenRedir'/>
-      <ref name='xmlNanoHTTPRead'/>
-      <ref name='xmlNanoHTTPRedir'/>
-      <ref name='xmlNanoHTTPReturnCode'/>
-      <ref name='xmlNanoHTTPSave'/>
-      <ref name='xmlNanoHTTPScanProxy'/>
-      <ref name='xmlNewAutomata'/>
-      <ref name='xmlNewCDataBlock'/>
-      <ref name='xmlNewCatalog'/>
-      <ref name='xmlNewCharEncodingHandler'/>
-      <ref name='xmlNewCharRef'/>
-      <ref name='xmlNewChild'/>
-      <ref name='xmlNewComment'/>
-      <ref name='xmlNewDoc'/>
-      <ref name='xmlNewDocComment'/>
-      <ref name='xmlNewDocElementContent'/>
-      <ref name='xmlNewDocFragment'/>
-      <ref name='xmlNewDocNode'/>
-      <ref name='xmlNewDocNodeEatName'/>
-      <ref name='xmlNewDocPI'/>
-      <ref name='xmlNewDocProp'/>
-      <ref name='xmlNewDocRawNode'/>
-      <ref name='xmlNewDocText'/>
-      <ref name='xmlNewDocTextLen'/>
-      <ref name='xmlNewDtd'/>
-      <ref name='xmlNewElementContent'/>
-      <ref name='xmlNewEntity'/>
-      <ref name='xmlNewEntityInputStream'/>
-      <ref name='xmlNewGlobalNs'/>
-      <ref name='xmlNewIOInputStream'/>
-      <ref name='xmlNewInputFromFile'/>
-      <ref name='xmlNewInputStream'/>
-      <ref name='xmlNewMutex'/>
-      <ref name='xmlNewNode'/>
-      <ref name='xmlNewNodeEatName'/>
-      <ref name='xmlNewNs'/>
-      <ref name='xmlNewNsProp'/>
-      <ref name='xmlNewNsPropEatName'/>
-      <ref name='xmlNewPI'/>
-      <ref name='xmlNewParserCtxt'/>
-      <ref name='xmlNewProp'/>
-      <ref name='xmlNewRMutex'/>
-      <ref name='xmlNewReference'/>
-      <ref name='xmlNewStringInputStream'/>
-      <ref name='xmlNewText'/>
-      <ref name='xmlNewTextChild'/>
-      <ref name='xmlNewTextLen'/>
-      <ref name='xmlNewTextReader'/>
-      <ref name='xmlNewTextReaderFilename'/>
-      <ref name='xmlNewTextWriter'/>
-      <ref name='xmlNewTextWriterDoc'/>
-      <ref name='xmlNewTextWriterFilename'/>
-      <ref name='xmlNewTextWriterMemory'/>
-      <ref name='xmlNewTextWriterPushParser'/>
-      <ref name='xmlNewTextWriterTree'/>
-      <ref name='xmlNewValidCtxt'/>
-      <ref name='xmlNextChar'/>
-      <ref name='xmlNextElementSibling'/>
-      <ref name='xmlNoNetExternalEntityLoader'/>
-      <ref name='xmlNode'/>
-      <ref name='xmlNodeAddContent'/>
-      <ref name='xmlNodeAddContentLen'/>
-      <ref name='xmlNodeBufGetContent'/>
-      <ref name='xmlNodeDump'/>
-      <ref name='xmlNodeDumpOutput'/>
-      <ref name='xmlNodeGetBase'/>
-      <ref name='xmlNodeGetContent'/>
-      <ref name='xmlNodeGetLang'/>
-      <ref name='xmlNodeGetSpacePreserve'/>
-      <ref name='xmlNodeIsText'/>
-      <ref name='xmlNodeListGetRawString'/>
-      <ref name='xmlNodeListGetString'/>
-      <ref name='xmlNodePtr'/>
-      <ref name='xmlNodeSet'/>
-      <ref name='xmlNodeSetBase'/>
-      <ref name='xmlNodeSetContent'/>
-      <ref name='xmlNodeSetContentLen'/>
-      <ref name='xmlNodeSetLang'/>
-      <ref name='xmlNodeSetName'/>
-      <ref name='xmlNodeSetPtr'/>
-      <ref name='xmlNodeSetSpacePreserve'/>
-      <ref name='xmlNormalizeURIPath'/>
-      <ref name='xmlNormalizeWindowsPath'/>
-      <ref name='xmlNotation'/>
-      <ref name='xmlNotationPtr'/>
-      <ref name='xmlNotationTable'/>
-      <ref name='xmlNotationTablePtr'/>
-      <ref name='xmlNs'/>
-      <ref name='xmlNsPtr'/>
-      <ref name='xmlNsType'/>
-      <ref name='xmlOutputBuffer'/>
-      <ref name='xmlOutputBufferClose'/>
-      <ref name='xmlOutputBufferCreateBuffer'/>
-      <ref name='xmlOutputBufferCreateFd'/>
-      <ref name='xmlOutputBufferCreateFile'/>
-      <ref name='xmlOutputBufferCreateFilename'/>
-      <ref name='xmlOutputBufferCreateFilenameDefault'/>
-      <ref name='xmlOutputBufferCreateFilenameFunc'/>
-      <ref name='xmlOutputBufferCreateFilenameValue'/>
-      <ref name='xmlOutputBufferCreateIO'/>
-      <ref name='xmlOutputBufferFlush'/>
-      <ref name='xmlOutputBufferGetContent'/>
-      <ref name='xmlOutputBufferGetSize'/>
-      <ref name='xmlOutputBufferPtr'/>
-      <ref name='xmlOutputBufferWrite'/>
-      <ref name='xmlOutputBufferWriteEscape'/>
-      <ref name='xmlOutputBufferWriteString'/>
-      <ref name='xmlOutputCloseCallback'/>
-      <ref name='xmlOutputMatchCallback'/>
-      <ref name='xmlOutputOpenCallback'/>
-      <ref name='xmlOutputWriteCallback'/>
-      <ref name='xmlParseAttValue'/>
-      <ref name='xmlParseAttribute'/>
-      <ref name='xmlParseAttributeListDecl'/>
-      <ref name='xmlParseAttributeType'/>
-      <ref name='xmlParseBalancedChunkMemory'/>
-      <ref name='xmlParseBalancedChunkMemoryRecover'/>
-      <ref name='xmlParseCDSect'/>
-      <ref name='xmlParseCatalogFile'/>
-      <ref name='xmlParseCharData'/>
-      <ref name='xmlParseCharEncoding'/>
-      <ref name='xmlParseCharRef'/>
-      <ref name='xmlParseChunk'/>
-      <ref name='xmlParseComment'/>
-      <ref name='xmlParseContent'/>
-      <ref name='xmlParseCtxtExternalEntity'/>
-      <ref name='xmlParseDTD'/>
-      <ref name='xmlParseDefaultDecl'/>
-      <ref name='xmlParseDoc'/>
-      <ref name='xmlParseDocTypeDecl'/>
-      <ref name='xmlParseDocument'/>
-      <ref name='xmlParseElement'/>
-      <ref name='xmlParseElementChildrenContentDecl'/>
-      <ref name='xmlParseElementContentDecl'/>
-      <ref name='xmlParseElementDecl'/>
-      <ref name='xmlParseElementMixedContentDecl'/>
-      <ref name='xmlParseEncName'/>
-      <ref name='xmlParseEncodingDecl'/>
-      <ref name='xmlParseEndTag'/>
-      <ref name='xmlParseEntity'/>
-      <ref name='xmlParseEntityDecl'/>
-      <ref name='xmlParseEntityRef'/>
-      <ref name='xmlParseEntityValue'/>
-      <ref name='xmlParseEnumeratedType'/>
-      <ref name='xmlParseEnumerationType'/>
-      <ref name='xmlParseExtParsedEnt'/>
-      <ref name='xmlParseExternalEntity'/>
-      <ref name='xmlParseExternalID'/>
-      <ref name='xmlParseExternalSubset'/>
-      <ref name='xmlParseFile'/>
-      <ref name='xmlParseInNodeContext'/>
-      <ref name='xmlParseMarkupDecl'/>
-      <ref name='xmlParseMemory'/>
-      <ref name='xmlParseMisc'/>
-      <ref name='xmlParseName'/>
-      <ref name='xmlParseNamespace'/>
-      <ref name='xmlParseNmtoken'/>
-      <ref name='xmlParseNotationDecl'/>
-      <ref name='xmlParseNotationType'/>
-      <ref name='xmlParsePEReference'/>
-      <ref name='xmlParsePI'/>
-      <ref name='xmlParsePITarget'/>
-      <ref name='xmlParsePubidLiteral'/>
-      <ref name='xmlParseQuotedString'/>
-      <ref name='xmlParseReference'/>
-      <ref name='xmlParseSDDecl'/>
-      <ref name='xmlParseStartTag'/>
-      <ref name='xmlParseSystemLiteral'/>
-      <ref name='xmlParseTextDecl'/>
-      <ref name='xmlParseURI'/>
-      <ref name='xmlParseURIRaw'/>
-      <ref name='xmlParseURIReference'/>
-      <ref name='xmlParseVersionInfo'/>
-      <ref name='xmlParseVersionNum'/>
-      <ref name='xmlParseXMLDecl'/>
-      <ref name='xmlParserAddNodeInfo'/>
-      <ref name='xmlParserCtxt'/>
-      <ref name='xmlParserCtxtPtr'/>
-      <ref name='xmlParserDebugEntities'/>
-      <ref name='xmlParserError'/>
-      <ref name='xmlParserErrors'/>
-      <ref name='xmlParserFindNodeInfo'/>
-      <ref name='xmlParserFindNodeInfoIndex'/>
-      <ref name='xmlParserGetDirectory'/>
-      <ref name='xmlParserHandlePEReference'/>
-      <ref name='xmlParserHandleReference'/>
-      <ref name='xmlParserInput'/>
-      <ref name='xmlParserInputBuffer'/>
-      <ref name='xmlParserInputBufferCreateFd'/>
-      <ref name='xmlParserInputBufferCreateFile'/>
-      <ref name='xmlParserInputBufferCreateFilename'/>
-      <ref name='xmlParserInputBufferCreateFilenameDefault'/>
-      <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-      <ref name='xmlParserInputBufferCreateFilenameValue'/>
-      <ref name='xmlParserInputBufferCreateIO'/>
-      <ref name='xmlParserInputBufferCreateMem'/>
-      <ref name='xmlParserInputBufferCreateStatic'/>
-      <ref name='xmlParserInputBufferGrow'/>
-      <ref name='xmlParserInputBufferPtr'/>
-      <ref name='xmlParserInputBufferPush'/>
-      <ref name='xmlParserInputBufferRead'/>
-      <ref name='xmlParserInputDeallocate'/>
-      <ref name='xmlParserInputGrow'/>
-      <ref name='xmlParserInputPtr'/>
-      <ref name='xmlParserInputRead'/>
-      <ref name='xmlParserInputShrink'/>
-      <ref name='xmlParserInputState'/>
-      <ref name='xmlParserMaxDepth'/>
-      <ref name='xmlParserMode'/>
-      <ref name='xmlParserNodeInfo'/>
-      <ref name='xmlParserNodeInfoPtr'/>
-      <ref name='xmlParserNodeInfoSeq'/>
-      <ref name='xmlParserNodeInfoSeqPtr'/>
-      <ref name='xmlParserOption'/>
-      <ref name='xmlParserPrintFileContext'/>
-      <ref name='xmlParserPrintFileInfo'/>
-      <ref name='xmlParserProperties'/>
-      <ref name='xmlParserSeverities'/>
-      <ref name='xmlParserValidityError'/>
-      <ref name='xmlParserValidityWarning'/>
-      <ref name='xmlParserVersion'/>
-      <ref name='xmlParserWarning'/>
-      <ref name='xmlPathToURI'/>
-      <ref name='xmlPattern'/>
-      <ref name='xmlPatternFlags'/>
-      <ref name='xmlPatternFromRoot'/>
-      <ref name='xmlPatternGetStreamCtxt'/>
-      <ref name='xmlPatternMatch'/>
-      <ref name='xmlPatternMaxDepth'/>
-      <ref name='xmlPatternMinDepth'/>
-      <ref name='xmlPatternPtr'/>
-      <ref name='xmlPatternStreamable'/>
-      <ref name='xmlPatterncompile'/>
-      <ref name='xmlPedanticParserDefault'/>
-      <ref name='xmlPedanticParserDefaultValue'/>
-      <ref name='xmlPopInput'/>
-      <ref name='xmlPopInputCallbacks'/>
-      <ref name='xmlPopOutputCallbacks'/>
-      <ref name='xmlPreviousElementSibling'/>
-      <ref name='xmlPrintURI'/>
-      <ref name='xmlPushInput'/>
-      <ref name='xmlRMutex'/>
-      <ref name='xmlRMutexLock'/>
-      <ref name='xmlRMutexPtr'/>
-      <ref name='xmlRMutexUnlock'/>
-      <ref name='xmlReadDoc'/>
-      <ref name='xmlReadFd'/>
-      <ref name='xmlReadFile'/>
-      <ref name='xmlReadIO'/>
-      <ref name='xmlReadMemory'/>
-      <ref name='xmlReaderForDoc'/>
-      <ref name='xmlReaderForFd'/>
-      <ref name='xmlReaderForFile'/>
-      <ref name='xmlReaderForIO'/>
-      <ref name='xmlReaderForMemory'/>
-      <ref name='xmlReaderNewDoc'/>
-      <ref name='xmlReaderNewFd'/>
-      <ref name='xmlReaderNewFile'/>
-      <ref name='xmlReaderNewIO'/>
-      <ref name='xmlReaderNewMemory'/>
-      <ref name='xmlReaderNewWalker'/>
-      <ref name='xmlReaderTypes'/>
-      <ref name='xmlReaderWalker'/>
-      <ref name='xmlRealloc'/>
-      <ref name='xmlReallocFunc'/>
-      <ref name='xmlReallocLoc'/>
-      <ref name='xmlReconciliateNs'/>
-      <ref name='xmlRecoverDoc'/>
-      <ref name='xmlRecoverFile'/>
-      <ref name='xmlRecoverMemory'/>
-      <ref name='xmlRef'/>
-      <ref name='xmlRefPtr'/>
-      <ref name='xmlRefTable'/>
-      <ref name='xmlRefTablePtr'/>
-      <ref name='xmlRegExecCallbacks'/>
-      <ref name='xmlRegExecCtxt'/>
-      <ref name='xmlRegExecCtxtPtr'/>
-      <ref name='xmlRegExecErrInfo'/>
-      <ref name='xmlRegExecNextValues'/>
-      <ref name='xmlRegExecPushString'/>
-      <ref name='xmlRegExecPushString2'/>
-      <ref name='xmlRegFreeExecCtxt'/>
-      <ref name='xmlRegFreeRegexp'/>
-      <ref name='xmlRegNewExecCtxt'/>
-      <ref name='xmlRegexp'/>
-      <ref name='xmlRegexpCompile'/>
-      <ref name='xmlRegexpExec'/>
-      <ref name='xmlRegexpIsDeterminist'/>
-      <ref name='xmlRegexpPrint'/>
-      <ref name='xmlRegexpPtr'/>
-      <ref name='xmlRegisterCharEncodingHandler'/>
-      <ref name='xmlRegisterDefaultInputCallbacks'/>
-      <ref name='xmlRegisterDefaultOutputCallbacks'/>
-      <ref name='xmlRegisterHTTPPostCallbacks'/>
-      <ref name='xmlRegisterInputCallbacks'/>
-      <ref name='xmlRegisterNodeDefault'/>
-      <ref name='xmlRegisterNodeDefaultValue'/>
-      <ref name='xmlRegisterNodeFunc'/>
-      <ref name='xmlRegisterOutputCallbacks'/>
-      <ref name='xmlRelaxNG'/>
-      <ref name='xmlRelaxNGCleanupTypes'/>
-      <ref name='xmlRelaxNGDump'/>
-      <ref name='xmlRelaxNGDumpTree'/>
-      <ref name='xmlRelaxNGFree'/>
-      <ref name='xmlRelaxNGFreeParserCtxt'/>
-      <ref name='xmlRelaxNGFreeValidCtxt'/>
-      <ref name='xmlRelaxNGGetParserErrors'/>
-      <ref name='xmlRelaxNGGetValidErrors'/>
-      <ref name='xmlRelaxNGInitTypes'/>
-      <ref name='xmlRelaxNGNewDocParserCtxt'/>
-      <ref name='xmlRelaxNGNewMemParserCtxt'/>
-      <ref name='xmlRelaxNGNewParserCtxt'/>
-      <ref name='xmlRelaxNGNewValidCtxt'/>
-      <ref name='xmlRelaxNGParse'/>
-      <ref name='xmlRelaxNGParserCtxt'/>
-      <ref name='xmlRelaxNGParserCtxtPtr'/>
-      <ref name='xmlRelaxNGParserFlag'/>
-      <ref name='xmlRelaxNGPtr'/>
-      <ref name='xmlRelaxNGSetParserErrors'/>
-      <ref name='xmlRelaxNGSetParserStructuredErrors'/>
-      <ref name='xmlRelaxNGSetValidErrors'/>
-      <ref name='xmlRelaxNGSetValidStructuredErrors'/>
-      <ref name='xmlRelaxNGValidCtxt'/>
-      <ref name='xmlRelaxNGValidCtxtPtr'/>
-      <ref name='xmlRelaxNGValidErr'/>
-      <ref name='xmlRelaxNGValidateDoc'/>
-      <ref name='xmlRelaxNGValidateFullElement'/>
-      <ref name='xmlRelaxNGValidatePopElement'/>
-      <ref name='xmlRelaxNGValidatePushCData'/>
-      <ref name='xmlRelaxNGValidatePushElement'/>
-      <ref name='xmlRelaxNGValidityErrorFunc'/>
-      <ref name='xmlRelaxNGValidityWarningFunc'/>
-      <ref name='xmlRelaxParserSetFlag'/>
-      <ref name='xmlRemoveID'/>
-      <ref name='xmlRemoveProp'/>
-      <ref name='xmlRemoveRef'/>
-      <ref name='xmlReplaceNode'/>
-      <ref name='xmlResetError'/>
-      <ref name='xmlResetLastError'/>
-      <ref name='xmlRootNode'/>
-      <ref name='xmlSAX2AttributeDecl'/>
-      <ref name='xmlSAX2CDataBlock'/>
-      <ref name='xmlSAX2Characters'/>
-      <ref name='xmlSAX2Comment'/>
-      <ref name='xmlSAX2ElementDecl'/>
-      <ref name='xmlSAX2EndDocument'/>
-      <ref name='xmlSAX2EndElement'/>
-      <ref name='xmlSAX2EndElementNs'/>
-      <ref name='xmlSAX2EntityDecl'/>
-      <ref name='xmlSAX2ExternalSubset'/>
-      <ref name='xmlSAX2GetColumnNumber'/>
-      <ref name='xmlSAX2GetEntity'/>
-      <ref name='xmlSAX2GetLineNumber'/>
-      <ref name='xmlSAX2GetParameterEntity'/>
-      <ref name='xmlSAX2GetPublicId'/>
-      <ref name='xmlSAX2GetSystemId'/>
-      <ref name='xmlSAX2HasExternalSubset'/>
-      <ref name='xmlSAX2HasInternalSubset'/>
-      <ref name='xmlSAX2IgnorableWhitespace'/>
-      <ref name='xmlSAX2InitDefaultSAXHandler'/>
-      <ref name='xmlSAX2InitHtmlDefaultSAXHandler'/>
-      <ref name='xmlSAX2InternalSubset'/>
-      <ref name='xmlSAX2IsStandalone'/>
-      <ref name='xmlSAX2NotationDecl'/>
-      <ref name='xmlSAX2ProcessingInstruction'/>
-      <ref name='xmlSAX2Reference'/>
-      <ref name='xmlSAX2ResolveEntity'/>
-      <ref name='xmlSAX2SetDocumentLocator'/>
-      <ref name='xmlSAX2StartDocument'/>
-      <ref name='xmlSAX2StartElement'/>
-      <ref name='xmlSAX2StartElementNs'/>
-      <ref name='xmlSAX2UnparsedEntityDecl'/>
-      <ref name='xmlSAXDefaultVersion'/>
-      <ref name='xmlSAXHandler'/>
-      <ref name='xmlSAXHandlerPtr'/>
-      <ref name='xmlSAXHandlerV1'/>
-      <ref name='xmlSAXHandlerV1Ptr'/>
-      <ref name='xmlSAXLocator'/>
-      <ref name='xmlSAXLocatorPtr'/>
-      <ref name='xmlSAXParseDTD'/>
-      <ref name='xmlSAXParseDoc'/>
-      <ref name='xmlSAXParseEntity'/>
-      <ref name='xmlSAXParseFile'/>
-      <ref name='xmlSAXParseFileWithData'/>
-      <ref name='xmlSAXParseMemory'/>
-      <ref name='xmlSAXParseMemoryWithData'/>
-      <ref name='xmlSAXUserParseFile'/>
-      <ref name='xmlSAXUserParseMemory'/>
-      <ref name='xmlSAXVersion'/>
-      <ref name='xmlSaveClose'/>
-      <ref name='xmlSaveCtxt'/>
-      <ref name='xmlSaveCtxtPtr'/>
-      <ref name='xmlSaveDoc'/>
-      <ref name='xmlSaveFile'/>
-      <ref name='xmlSaveFileEnc'/>
-      <ref name='xmlSaveFileTo'/>
-      <ref name='xmlSaveFlush'/>
-      <ref name='xmlSaveFormatFile'/>
-      <ref name='xmlSaveFormatFileEnc'/>
-      <ref name='xmlSaveFormatFileTo'/>
-      <ref name='xmlSaveNoEmptyTags'/>
-      <ref name='xmlSaveOption'/>
-      <ref name='xmlSaveSetAttrEscape'/>
-      <ref name='xmlSaveSetEscape'/>
-      <ref name='xmlSaveToBuffer'/>
-      <ref name='xmlSaveToFd'/>
-      <ref name='xmlSaveToFilename'/>
-      <ref name='xmlSaveToIO'/>
-      <ref name='xmlSaveTree'/>
-      <ref name='xmlSaveUri'/>
-      <ref name='xmlScanName'/>
-      <ref name='xmlSchema'/>
-      <ref name='xmlSchemaAnnot'/>
-      <ref name='xmlSchemaAnnotPtr'/>
-      <ref name='xmlSchemaAttribute'/>
-      <ref name='xmlSchemaAttributeGroup'/>
-      <ref name='xmlSchemaAttributeGroupPtr'/>
-      <ref name='xmlSchemaAttributeLink'/>
-      <ref name='xmlSchemaAttributeLinkPtr'/>
-      <ref name='xmlSchemaAttributePtr'/>
-      <ref name='xmlSchemaCheckFacet'/>
-      <ref name='xmlSchemaCleanupTypes'/>
-      <ref name='xmlSchemaCollapseString'/>
-      <ref name='xmlSchemaCompareValues'/>
-      <ref name='xmlSchemaCompareValuesWhtsp'/>
-      <ref name='xmlSchemaContentType'/>
-      <ref name='xmlSchemaCopyValue'/>
-      <ref name='xmlSchemaDump'/>
-      <ref name='xmlSchemaElement'/>
-      <ref name='xmlSchemaElementPtr'/>
-      <ref name='xmlSchemaFacet'/>
-      <ref name='xmlSchemaFacetLink'/>
-      <ref name='xmlSchemaFacetLinkPtr'/>
-      <ref name='xmlSchemaFacetPtr'/>
-      <ref name='xmlSchemaFree'/>
-      <ref name='xmlSchemaFreeFacet'/>
-      <ref name='xmlSchemaFreeParserCtxt'/>
-      <ref name='xmlSchemaFreeType'/>
-      <ref name='xmlSchemaFreeValidCtxt'/>
-      <ref name='xmlSchemaFreeValue'/>
-      <ref name='xmlSchemaFreeWildcard'/>
-      <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-      <ref name='xmlSchemaGetBuiltInType'/>
-      <ref name='xmlSchemaGetCanonValue'/>
-      <ref name='xmlSchemaGetCanonValueWhtsp'/>
-      <ref name='xmlSchemaGetFacetValueAsULong'/>
-      <ref name='xmlSchemaGetParserErrors'/>
-      <ref name='xmlSchemaGetPredefinedType'/>
-      <ref name='xmlSchemaGetValType'/>
-      <ref name='xmlSchemaGetValidErrors'/>
-      <ref name='xmlSchemaInitTypes'/>
-      <ref name='xmlSchemaIsBuiltInTypeFacet'/>
-      <ref name='xmlSchemaIsValid'/>
-      <ref name='xmlSchemaNewDocParserCtxt'/>
-      <ref name='xmlSchemaNewFacet'/>
-      <ref name='xmlSchemaNewMemParserCtxt'/>
-      <ref name='xmlSchemaNewNOTATIONValue'/>
-      <ref name='xmlSchemaNewParserCtxt'/>
-      <ref name='xmlSchemaNewQNameValue'/>
-      <ref name='xmlSchemaNewStringValue'/>
-      <ref name='xmlSchemaNewValidCtxt'/>
-      <ref name='xmlSchemaNotation'/>
-      <ref name='xmlSchemaNotationPtr'/>
-      <ref name='xmlSchemaParse'/>
-      <ref name='xmlSchemaParserCtxt'/>
-      <ref name='xmlSchemaParserCtxtPtr'/>
-      <ref name='xmlSchemaPtr'/>
-      <ref name='xmlSchemaSAXPlug'/>
-      <ref name='xmlSchemaSAXPlugPtr'/>
-      <ref name='xmlSchemaSAXPlugStruct'/>
-      <ref name='xmlSchemaSAXUnplug'/>
-      <ref name='xmlSchemaSetParserErrors'/>
-      <ref name='xmlSchemaSetParserStructuredErrors'/>
-      <ref name='xmlSchemaSetValidErrors'/>
-      <ref name='xmlSchemaSetValidOptions'/>
-      <ref name='xmlSchemaSetValidStructuredErrors'/>
-      <ref name='xmlSchemaType'/>
-      <ref name='xmlSchemaTypeLink'/>
-      <ref name='xmlSchemaTypeLinkPtr'/>
-      <ref name='xmlSchemaTypePtr'/>
-      <ref name='xmlSchemaTypeType'/>
-      <ref name='xmlSchemaVal'/>
-      <ref name='xmlSchemaValPredefTypeNode'/>
-      <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-      <ref name='xmlSchemaValPtr'/>
-      <ref name='xmlSchemaValType'/>
-      <ref name='xmlSchemaValidCtxt'/>
-      <ref name='xmlSchemaValidCtxtGetOptions'/>
-      <ref name='xmlSchemaValidCtxtGetParserCtxt'/>
-      <ref name='xmlSchemaValidCtxtPtr'/>
-      <ref name='xmlSchemaValidError'/>
-      <ref name='xmlSchemaValidOption'/>
-      <ref name='xmlSchemaValidateDoc'/>
-      <ref name='xmlSchemaValidateFacet'/>
-      <ref name='xmlSchemaValidateFacetWhtsp'/>
-      <ref name='xmlSchemaValidateFile'/>
-      <ref name='xmlSchemaValidateLengthFacet'/>
-      <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-      <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-      <ref name='xmlSchemaValidateOneElement'/>
-      <ref name='xmlSchemaValidatePredefinedType'/>
-      <ref name='xmlSchemaValidateSetFilename'/>
-      <ref name='xmlSchemaValidateSetLocator'/>
-      <ref name='xmlSchemaValidateStream'/>
-      <ref name='xmlSchemaValidityErrorFunc'/>
-      <ref name='xmlSchemaValidityLocatorFunc'/>
-      <ref name='xmlSchemaValidityWarningFunc'/>
-      <ref name='xmlSchemaValueAppend'/>
-      <ref name='xmlSchemaValueGetAsBoolean'/>
-      <ref name='xmlSchemaValueGetAsString'/>
-      <ref name='xmlSchemaValueGetNext'/>
-      <ref name='xmlSchemaWhiteSpaceReplace'/>
-      <ref name='xmlSchemaWhitespaceValueType'/>
-      <ref name='xmlSchemaWildcard'/>
-      <ref name='xmlSchemaWildcardNs'/>
-      <ref name='xmlSchemaWildcardNsPtr'/>
-      <ref name='xmlSchemaWildcardPtr'/>
-      <ref name='xmlSchematron'/>
-      <ref name='xmlSchematronFree'/>
-      <ref name='xmlSchematronFreeParserCtxt'/>
-      <ref name='xmlSchematronFreeValidCtxt'/>
-      <ref name='xmlSchematronNewDocParserCtxt'/>
-      <ref name='xmlSchematronNewMemParserCtxt'/>
-      <ref name='xmlSchematronNewParserCtxt'/>
-      <ref name='xmlSchematronNewValidCtxt'/>
-      <ref name='xmlSchematronParse'/>
-      <ref name='xmlSchematronParserCtxt'/>
-      <ref name='xmlSchematronParserCtxtPtr'/>
-      <ref name='xmlSchematronPtr'/>
-      <ref name='xmlSchematronSetValidStructuredErrors'/>
-      <ref name='xmlSchematronValidCtxt'/>
-      <ref name='xmlSchematronValidCtxtPtr'/>
-      <ref name='xmlSchematronValidOptions'/>
-      <ref name='xmlSchematronValidateDoc'/>
-      <ref name='xmlSchematronValidityErrorFunc'/>
-      <ref name='xmlSchematronValidityWarningFunc'/>
-      <ref name='xmlSearchNs'/>
-      <ref name='xmlSearchNsByHref'/>
-      <ref name='xmlSetBufferAllocationScheme'/>
-      <ref name='xmlSetCompressMode'/>
-      <ref name='xmlSetDocCompressMode'/>
-      <ref name='xmlSetEntityReferenceFunc'/>
-      <ref name='xmlSetExternalEntityLoader'/>
-      <ref name='xmlSetFeature'/>
-      <ref name='xmlSetGenericErrorFunc'/>
-      <ref name='xmlSetListDoc'/>
-      <ref name='xmlSetNs'/>
-      <ref name='xmlSetNsProp'/>
-      <ref name='xmlSetProp'/>
-      <ref name='xmlSetStructuredErrorFunc'/>
-      <ref name='xmlSetTreeDoc'/>
-      <ref name='xmlSetupParserForBuffer'/>
-      <ref name='xmlShell'/>
-      <ref name='xmlShellBase'/>
-      <ref name='xmlShellCat'/>
-      <ref name='xmlShellCmd'/>
-      <ref name='xmlShellCtxt'/>
-      <ref name='xmlShellCtxtPtr'/>
-      <ref name='xmlShellDir'/>
-      <ref name='xmlShellDu'/>
-      <ref name='xmlShellList'/>
-      <ref name='xmlShellLoad'/>
-      <ref name='xmlShellPrintNode'/>
-      <ref name='xmlShellPrintXPathError'/>
-      <ref name='xmlShellPrintXPathResult'/>
-      <ref name='xmlShellPwd'/>
-      <ref name='xmlShellReadlineFunc'/>
-      <ref name='xmlShellSave'/>
-      <ref name='xmlShellValidate'/>
-      <ref name='xmlShellWrite'/>
-      <ref name='xmlSkipBlankChars'/>
-      <ref name='xmlSnprintfElementContent'/>
-      <ref name='xmlSplitQName'/>
-      <ref name='xmlSplitQName2'/>
-      <ref name='xmlSplitQName3'/>
-      <ref name='xmlSprintfElementContent'/>
-      <ref name='xmlStartTag'/>
-      <ref name='xmlStopParser'/>
-      <ref name='xmlStrEqual'/>
-      <ref name='xmlStrPrintf'/>
-      <ref name='xmlStrQEqual'/>
-      <ref name='xmlStrVPrintf'/>
-      <ref name='xmlStrcasecmp'/>
-      <ref name='xmlStrcasestr'/>
-      <ref name='xmlStrcat'/>
-      <ref name='xmlStrchr'/>
-      <ref name='xmlStrcmp'/>
-      <ref name='xmlStrdup'/>
-      <ref name='xmlStrdupFunc'/>
-      <ref name='xmlStreamCtxt'/>
-      <ref name='xmlStreamCtxtPtr'/>
-      <ref name='xmlStreamPop'/>
-      <ref name='xmlStreamPush'/>
-      <ref name='xmlStreamPushAttr'/>
-      <ref name='xmlStreamPushNode'/>
-      <ref name='xmlStreamWantsAnyNode'/>
-      <ref name='xmlStringComment'/>
-      <ref name='xmlStringCurrentChar'/>
-      <ref name='xmlStringDecodeEntities'/>
-      <ref name='xmlStringGetNodeList'/>
-      <ref name='xmlStringLenDecodeEntities'/>
-      <ref name='xmlStringLenGetNodeList'/>
-      <ref name='xmlStringText'/>
-      <ref name='xmlStringTextNoenc'/>
-      <ref name='xmlStrlen'/>
-      <ref name='xmlStrncasecmp'/>
-      <ref name='xmlStrncat'/>
-      <ref name='xmlStrncatNew'/>
-      <ref name='xmlStrncmp'/>
-      <ref name='xmlStrndup'/>
-      <ref name='xmlStrstr'/>
-      <ref name='xmlStrsub'/>
-      <ref name='xmlStructuredError'/>
-      <ref name='xmlStructuredErrorContext'/>
-      <ref name='xmlStructuredErrorFunc'/>
-      <ref name='xmlSubstituteEntitiesDefault'/>
-      <ref name='xmlSubstituteEntitiesDefaultValue'/>
-      <ref name='xmlSwitchEncoding'/>
-      <ref name='xmlSwitchInputEncoding'/>
-      <ref name='xmlSwitchToEncoding'/>
-      <ref name='xmlTextConcat'/>
-      <ref name='xmlTextMerge'/>
-      <ref name='xmlTextReader'/>
-      <ref name='xmlTextReaderAttributeCount'/>
-      <ref name='xmlTextReaderBaseUri'/>
-      <ref name='xmlTextReaderByteConsumed'/>
-      <ref name='xmlTextReaderClose'/>
-      <ref name='xmlTextReaderConstBaseUri'/>
-      <ref name='xmlTextReaderConstEncoding'/>
-      <ref name='xmlTextReaderConstLocalName'/>
-      <ref name='xmlTextReaderConstName'/>
-      <ref name='xmlTextReaderConstNamespaceUri'/>
-      <ref name='xmlTextReaderConstPrefix'/>
-      <ref name='xmlTextReaderConstString'/>
-      <ref name='xmlTextReaderConstValue'/>
-      <ref name='xmlTextReaderConstXmlLang'/>
-      <ref name='xmlTextReaderConstXmlVersion'/>
-      <ref name='xmlTextReaderCurrentDoc'/>
-      <ref name='xmlTextReaderCurrentNode'/>
-      <ref name='xmlTextReaderDepth'/>
-      <ref name='xmlTextReaderErrorFunc'/>
-      <ref name='xmlTextReaderExpand'/>
-      <ref name='xmlTextReaderGetAttribute'/>
-      <ref name='xmlTextReaderGetAttributeNo'/>
-      <ref name='xmlTextReaderGetAttributeNs'/>
-      <ref name='xmlTextReaderGetErrorHandler'/>
-      <ref name='xmlTextReaderGetParserColumnNumber'/>
-      <ref name='xmlTextReaderGetParserLineNumber'/>
-      <ref name='xmlTextReaderGetParserProp'/>
-      <ref name='xmlTextReaderGetRemainder'/>
-      <ref name='xmlTextReaderHasAttributes'/>
-      <ref name='xmlTextReaderHasValue'/>
-      <ref name='xmlTextReaderIsDefault'/>
-      <ref name='xmlTextReaderIsEmptyElement'/>
-      <ref name='xmlTextReaderIsNamespaceDecl'/>
-      <ref name='xmlTextReaderIsValid'/>
-      <ref name='xmlTextReaderLocalName'/>
-      <ref name='xmlTextReaderLocatorBaseURI'/>
-      <ref name='xmlTextReaderLocatorLineNumber'/>
-      <ref name='xmlTextReaderLocatorPtr'/>
-      <ref name='xmlTextReaderLookupNamespace'/>
-      <ref name='xmlTextReaderMode'/>
-      <ref name='xmlTextReaderMoveToAttribute'/>
-      <ref name='xmlTextReaderMoveToAttributeNo'/>
-      <ref name='xmlTextReaderMoveToAttributeNs'/>
-      <ref name='xmlTextReaderMoveToElement'/>
-      <ref name='xmlTextReaderMoveToFirstAttribute'/>
-      <ref name='xmlTextReaderMoveToNextAttribute'/>
-      <ref name='xmlTextReaderName'/>
-      <ref name='xmlTextReaderNamespaceUri'/>
-      <ref name='xmlTextReaderNext'/>
-      <ref name='xmlTextReaderNextSibling'/>
-      <ref name='xmlTextReaderNodeType'/>
-      <ref name='xmlTextReaderNormalization'/>
-      <ref name='xmlTextReaderPrefix'/>
-      <ref name='xmlTextReaderPreserve'/>
-      <ref name='xmlTextReaderPreservePattern'/>
-      <ref name='xmlTextReaderPtr'/>
-      <ref name='xmlTextReaderQuoteChar'/>
-      <ref name='xmlTextReaderRead'/>
-      <ref name='xmlTextReaderReadAttributeValue'/>
-      <ref name='xmlTextReaderReadInnerXml'/>
-      <ref name='xmlTextReaderReadOuterXml'/>
-      <ref name='xmlTextReaderReadState'/>
-      <ref name='xmlTextReaderReadString'/>
-      <ref name='xmlTextReaderRelaxNGSetSchema'/>
-      <ref name='xmlTextReaderRelaxNGValidate'/>
-      <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-      <ref name='xmlTextReaderSchemaValidate'/>
-      <ref name='xmlTextReaderSchemaValidateCtxt'/>
-      <ref name='xmlTextReaderSetErrorHandler'/>
-      <ref name='xmlTextReaderSetParserProp'/>
-      <ref name='xmlTextReaderSetSchema'/>
-      <ref name='xmlTextReaderSetStructuredErrorHandler'/>
-      <ref name='xmlTextReaderSetup'/>
-      <ref name='xmlTextReaderStandalone'/>
-      <ref name='xmlTextReaderValue'/>
-      <ref name='xmlTextReaderXmlLang'/>
-      <ref name='xmlTextWriter'/>
-      <ref name='xmlTextWriterEndAttribute'/>
-      <ref name='xmlTextWriterEndCDATA'/>
-      <ref name='xmlTextWriterEndComment'/>
-      <ref name='xmlTextWriterEndDTD'/>
-      <ref name='xmlTextWriterEndDTDAttlist'/>
-      <ref name='xmlTextWriterEndDTDElement'/>
-      <ref name='xmlTextWriterEndDTDEntity'/>
-      <ref name='xmlTextWriterEndDocument'/>
-      <ref name='xmlTextWriterEndElement'/>
-      <ref name='xmlTextWriterEndPI'/>
-      <ref name='xmlTextWriterFlush'/>
-      <ref name='xmlTextWriterFullEndElement'/>
-      <ref name='xmlTextWriterPtr'/>
-      <ref name='xmlTextWriterSetIndent'/>
-      <ref name='xmlTextWriterSetIndentString'/>
-      <ref name='xmlTextWriterSetQuoteChar'/>
-      <ref name='xmlTextWriterStartAttribute'/>
-      <ref name='xmlTextWriterStartAttributeNS'/>
-      <ref name='xmlTextWriterStartCDATA'/>
-      <ref name='xmlTextWriterStartComment'/>
-      <ref name='xmlTextWriterStartDTD'/>
-      <ref name='xmlTextWriterStartDTDAttlist'/>
-      <ref name='xmlTextWriterStartDTDElement'/>
-      <ref name='xmlTextWriterStartDTDEntity'/>
-      <ref name='xmlTextWriterStartDocument'/>
-      <ref name='xmlTextWriterStartElement'/>
-      <ref name='xmlTextWriterStartElementNS'/>
-      <ref name='xmlTextWriterStartPI'/>
-      <ref name='xmlTextWriterWriteAttribute'/>
-      <ref name='xmlTextWriterWriteAttributeNS'/>
-      <ref name='xmlTextWriterWriteBase64'/>
-      <ref name='xmlTextWriterWriteBinHex'/>
-      <ref name='xmlTextWriterWriteCDATA'/>
-      <ref name='xmlTextWriterWriteComment'/>
-      <ref name='xmlTextWriterWriteDTD'/>
-      <ref name='xmlTextWriterWriteDTDAttlist'/>
-      <ref name='xmlTextWriterWriteDTDElement'/>
-      <ref name='xmlTextWriterWriteDTDEntity'/>
-      <ref name='xmlTextWriterWriteDTDExternalEntity'/>
-      <ref name='xmlTextWriterWriteDTDExternalEntityContents'/>
-      <ref name='xmlTextWriterWriteDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteDTDNotation'/>
-      <ref name='xmlTextWriterWriteDocType'/>
-      <ref name='xmlTextWriterWriteElement'/>
-      <ref name='xmlTextWriterWriteElementNS'/>
-      <ref name='xmlTextWriterWriteFormatAttribute'/>
-      <ref name='xmlTextWriterWriteFormatAttributeNS'/>
-      <ref name='xmlTextWriterWriteFormatCDATA'/>
-      <ref name='xmlTextWriterWriteFormatComment'/>
-      <ref name='xmlTextWriterWriteFormatDTD'/>
-      <ref name='xmlTextWriterWriteFormatDTDAttlist'/>
-      <ref name='xmlTextWriterWriteFormatDTDElement'/>
-      <ref name='xmlTextWriterWriteFormatDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteFormatElement'/>
-      <ref name='xmlTextWriterWriteFormatElementNS'/>
-      <ref name='xmlTextWriterWriteFormatPI'/>
-      <ref name='xmlTextWriterWriteFormatRaw'/>
-      <ref name='xmlTextWriterWriteFormatString'/>
-      <ref name='xmlTextWriterWritePI'/>
-      <ref name='xmlTextWriterWriteProcessingInstruction'/>
-      <ref name='xmlTextWriterWriteRaw'/>
-      <ref name='xmlTextWriterWriteRawLen'/>
-      <ref name='xmlTextWriterWriteString'/>
-      <ref name='xmlTextWriterWriteVFormatAttribute'/>
-      <ref name='xmlTextWriterWriteVFormatAttributeNS'/>
-      <ref name='xmlTextWriterWriteVFormatCDATA'/>
-      <ref name='xmlTextWriterWriteVFormatComment'/>
-      <ref name='xmlTextWriterWriteVFormatDTD'/>
-      <ref name='xmlTextWriterWriteVFormatDTDAttlist'/>
-      <ref name='xmlTextWriterWriteVFormatDTDElement'/>
-      <ref name='xmlTextWriterWriteVFormatDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteVFormatElement'/>
-      <ref name='xmlTextWriterWriteVFormatElementNS'/>
-      <ref name='xmlTextWriterWriteVFormatPI'/>
-      <ref name='xmlTextWriterWriteVFormatRaw'/>
-      <ref name='xmlTextWriterWriteVFormatString'/>
-      <ref name='xmlThrDefBufferAllocScheme'/>
-      <ref name='xmlThrDefDefaultBufferSize'/>
-      <ref name='xmlThrDefDeregisterNodeDefault'/>
-      <ref name='xmlThrDefDoValidityCheckingDefaultValue'/>
-      <ref name='xmlThrDefGetWarningsDefaultValue'/>
-      <ref name='xmlThrDefIndentTreeOutput'/>
-      <ref name='xmlThrDefKeepBlanksDefaultValue'/>
-      <ref name='xmlThrDefLineNumbersDefaultValue'/>
-      <ref name='xmlThrDefLoadExtDtdDefaultValue'/>
-      <ref name='xmlThrDefOutputBufferCreateFilenameDefault'/>
-      <ref name='xmlThrDefParserDebugEntities'/>
-      <ref name='xmlThrDefParserInputBufferCreateFilenameDefault'/>
-      <ref name='xmlThrDefPedanticParserDefaultValue'/>
-      <ref name='xmlThrDefRegisterNodeDefault'/>
-      <ref name='xmlThrDefSaveNoEmptyTags'/>
-      <ref name='xmlThrDefSetGenericErrorFunc'/>
-      <ref name='xmlThrDefSetStructuredErrorFunc'/>
-      <ref name='xmlThrDefSubstituteEntitiesDefaultValue'/>
-      <ref name='xmlThrDefTreeIndentString'/>
-      <ref name='xmlTreeIndentString'/>
-      <ref name='xmlUCSIsAegeanNumbers'/>
-      <ref name='xmlUCSIsAlphabeticPresentationForms'/>
-      <ref name='xmlUCSIsArabic'/>
-      <ref name='xmlUCSIsArabicPresentationFormsA'/>
-      <ref name='xmlUCSIsArabicPresentationFormsB'/>
-      <ref name='xmlUCSIsArmenian'/>
-      <ref name='xmlUCSIsArrows'/>
-      <ref name='xmlUCSIsBasicLatin'/>
-      <ref name='xmlUCSIsBengali'/>
-      <ref name='xmlUCSIsBlock'/>
-      <ref name='xmlUCSIsBlockElements'/>
-      <ref name='xmlUCSIsBopomofo'/>
-      <ref name='xmlUCSIsBopomofoExtended'/>
-      <ref name='xmlUCSIsBoxDrawing'/>
-      <ref name='xmlUCSIsBraillePatterns'/>
-      <ref name='xmlUCSIsBuhid'/>
-      <ref name='xmlUCSIsByzantineMusicalSymbols'/>
-      <ref name='xmlUCSIsCJKCompatibility'/>
-      <ref name='xmlUCSIsCJKCompatibilityForms'/>
-      <ref name='xmlUCSIsCJKCompatibilityIdeographs'/>
-      <ref name='xmlUCSIsCJKCompatibilityIdeographsSupplement'/>
-      <ref name='xmlUCSIsCJKRadicalsSupplement'/>
-      <ref name='xmlUCSIsCJKSymbolsandPunctuation'/>
-      <ref name='xmlUCSIsCJKUnifiedIdeographs'/>
-      <ref name='xmlUCSIsCJKUnifiedIdeographsExtensionA'/>
-      <ref name='xmlUCSIsCJKUnifiedIdeographsExtensionB'/>
-      <ref name='xmlUCSIsCat'/>
-      <ref name='xmlUCSIsCatC'/>
-      <ref name='xmlUCSIsCatCc'/>
-      <ref name='xmlUCSIsCatCf'/>
-      <ref name='xmlUCSIsCatCo'/>
-      <ref name='xmlUCSIsCatCs'/>
-      <ref name='xmlUCSIsCatL'/>
-      <ref name='xmlUCSIsCatLl'/>
-      <ref name='xmlUCSIsCatLm'/>
-      <ref name='xmlUCSIsCatLo'/>
-      <ref name='xmlUCSIsCatLt'/>
-      <ref name='xmlUCSIsCatLu'/>
-      <ref name='xmlUCSIsCatM'/>
-      <ref name='xmlUCSIsCatMc'/>
-      <ref name='xmlUCSIsCatMe'/>
-      <ref name='xmlUCSIsCatMn'/>
-      <ref name='xmlUCSIsCatN'/>
-      <ref name='xmlUCSIsCatNd'/>
-      <ref name='xmlUCSIsCatNl'/>
-      <ref name='xmlUCSIsCatNo'/>
-      <ref name='xmlUCSIsCatP'/>
-      <ref name='xmlUCSIsCatPc'/>
-      <ref name='xmlUCSIsCatPd'/>
-      <ref name='xmlUCSIsCatPe'/>
-      <ref name='xmlUCSIsCatPf'/>
-      <ref name='xmlUCSIsCatPi'/>
-      <ref name='xmlUCSIsCatPo'/>
-      <ref name='xmlUCSIsCatPs'/>
-      <ref name='xmlUCSIsCatS'/>
-      <ref name='xmlUCSIsCatSc'/>
-      <ref name='xmlUCSIsCatSk'/>
-      <ref name='xmlUCSIsCatSm'/>
-      <ref name='xmlUCSIsCatSo'/>
-      <ref name='xmlUCSIsCatZ'/>
-      <ref name='xmlUCSIsCatZl'/>
-      <ref name='xmlUCSIsCatZp'/>
-      <ref name='xmlUCSIsCatZs'/>
-      <ref name='xmlUCSIsCherokee'/>
-      <ref name='xmlUCSIsCombiningDiacriticalMarks'/>
-      <ref name='xmlUCSIsCombiningDiacriticalMarksforSymbols'/>
-      <ref name='xmlUCSIsCombiningHalfMarks'/>
-      <ref name='xmlUCSIsCombiningMarksforSymbols'/>
-      <ref name='xmlUCSIsControlPictures'/>
-      <ref name='xmlUCSIsCurrencySymbols'/>
-      <ref name='xmlUCSIsCypriotSyllabary'/>
-      <ref name='xmlUCSIsCyrillic'/>
-      <ref name='xmlUCSIsCyrillicSupplement'/>
-      <ref name='xmlUCSIsDeseret'/>
-      <ref name='xmlUCSIsDevanagari'/>
-      <ref name='xmlUCSIsDingbats'/>
-      <ref name='xmlUCSIsEnclosedAlphanumerics'/>
-      <ref name='xmlUCSIsEnclosedCJKLettersandMonths'/>
-      <ref name='xmlUCSIsEthiopic'/>
-      <ref name='xmlUCSIsGeneralPunctuation'/>
-      <ref name='xmlUCSIsGeometricShapes'/>
-      <ref name='xmlUCSIsGeorgian'/>
-      <ref name='xmlUCSIsGothic'/>
-      <ref name='xmlUCSIsGreek'/>
-      <ref name='xmlUCSIsGreekExtended'/>
-      <ref name='xmlUCSIsGreekandCoptic'/>
-      <ref name='xmlUCSIsGujarati'/>
-      <ref name='xmlUCSIsGurmukhi'/>
-      <ref name='xmlUCSIsHalfwidthandFullwidthForms'/>
-      <ref name='xmlUCSIsHangulCompatibilityJamo'/>
-      <ref name='xmlUCSIsHangulJamo'/>
-      <ref name='xmlUCSIsHangulSyllables'/>
-      <ref name='xmlUCSIsHanunoo'/>
-      <ref name='xmlUCSIsHebrew'/>
-      <ref name='xmlUCSIsHighPrivateUseSurrogates'/>
-      <ref name='xmlUCSIsHighSurrogates'/>
-      <ref name='xmlUCSIsHiragana'/>
-      <ref name='xmlUCSIsIPAExtensions'/>
-      <ref name='xmlUCSIsIdeographicDescriptionCharacters'/>
-      <ref name='xmlUCSIsKanbun'/>
-      <ref name='xmlUCSIsKangxiRadicals'/>
-      <ref name='xmlUCSIsKannada'/>
-      <ref name='xmlUCSIsKatakana'/>
-      <ref name='xmlUCSIsKatakanaPhoneticExtensions'/>
-      <ref name='xmlUCSIsKhmer'/>
-      <ref name='xmlUCSIsKhmerSymbols'/>
-      <ref name='xmlUCSIsLao'/>
-      <ref name='xmlUCSIsLatin1Supplement'/>
-      <ref name='xmlUCSIsLatinExtendedA'/>
-      <ref name='xmlUCSIsLatinExtendedAdditional'/>
-      <ref name='xmlUCSIsLatinExtendedB'/>
-      <ref name='xmlUCSIsLetterlikeSymbols'/>
-      <ref name='xmlUCSIsLimbu'/>
-      <ref name='xmlUCSIsLinearBIdeograms'/>
-      <ref name='xmlUCSIsLinearBSyllabary'/>
-      <ref name='xmlUCSIsLowSurrogates'/>
-      <ref name='xmlUCSIsMalayalam'/>
-      <ref name='xmlUCSIsMathematicalAlphanumericSymbols'/>
-      <ref name='xmlUCSIsMathematicalOperators'/>
-      <ref name='xmlUCSIsMiscellaneousMathematicalSymbolsA'/>
-      <ref name='xmlUCSIsMiscellaneousMathematicalSymbolsB'/>
-      <ref name='xmlUCSIsMiscellaneousSymbols'/>
-      <ref name='xmlUCSIsMiscellaneousSymbolsandArrows'/>
-      <ref name='xmlUCSIsMiscellaneousTechnical'/>
-      <ref name='xmlUCSIsMongolian'/>
-      <ref name='xmlUCSIsMusicalSymbols'/>
-      <ref name='xmlUCSIsMyanmar'/>
-      <ref name='xmlUCSIsNumberForms'/>
-      <ref name='xmlUCSIsOgham'/>
-      <ref name='xmlUCSIsOldItalic'/>
-      <ref name='xmlUCSIsOpticalCharacterRecognition'/>
-      <ref name='xmlUCSIsOriya'/>
-      <ref name='xmlUCSIsOsmanya'/>
-      <ref name='xmlUCSIsPhoneticExtensions'/>
-      <ref name='xmlUCSIsPrivateUse'/>
-      <ref name='xmlUCSIsPrivateUseArea'/>
-      <ref name='xmlUCSIsRunic'/>
-      <ref name='xmlUCSIsShavian'/>
-      <ref name='xmlUCSIsSinhala'/>
-      <ref name='xmlUCSIsSmallFormVariants'/>
-      <ref name='xmlUCSIsSpacingModifierLetters'/>
-      <ref name='xmlUCSIsSpecials'/>
-      <ref name='xmlUCSIsSuperscriptsandSubscripts'/>
-      <ref name='xmlUCSIsSupplementalArrowsA'/>
-      <ref name='xmlUCSIsSupplementalArrowsB'/>
-      <ref name='xmlUCSIsSupplementalMathematicalOperators'/>
-      <ref name='xmlUCSIsSupplementaryPrivateUseAreaA'/>
-      <ref name='xmlUCSIsSupplementaryPrivateUseAreaB'/>
-      <ref name='xmlUCSIsSyriac'/>
-      <ref name='xmlUCSIsTagalog'/>
-      <ref name='xmlUCSIsTagbanwa'/>
-      <ref name='xmlUCSIsTags'/>
-      <ref name='xmlUCSIsTaiLe'/>
-      <ref name='xmlUCSIsTaiXuanJingSymbols'/>
-      <ref name='xmlUCSIsTamil'/>
-      <ref name='xmlUCSIsTelugu'/>
-      <ref name='xmlUCSIsThaana'/>
-      <ref name='xmlUCSIsThai'/>
-      <ref name='xmlUCSIsTibetan'/>
-      <ref name='xmlUCSIsUgaritic'/>
-      <ref name='xmlUCSIsUnifiedCanadianAboriginalSyllabics'/>
-      <ref name='xmlUCSIsVariationSelectors'/>
-      <ref name='xmlUCSIsVariationSelectorsSupplement'/>
-      <ref name='xmlUCSIsYiRadicals'/>
-      <ref name='xmlUCSIsYiSyllables'/>
-      <ref name='xmlUCSIsYijingHexagramSymbols'/>
-      <ref name='xmlURI'/>
-      <ref name='xmlURIEscape'/>
-      <ref name='xmlURIEscapeStr'/>
-      <ref name='xmlURIPtr'/>
-      <ref name='xmlURIUnescapeString'/>
-      <ref name='xmlUTF8Charcmp'/>
-      <ref name='xmlUTF8Size'/>
-      <ref name='xmlUTF8Strlen'/>
-      <ref name='xmlUTF8Strloc'/>
-      <ref name='xmlUTF8Strndup'/>
-      <ref name='xmlUTF8Strpos'/>
-      <ref name='xmlUTF8Strsize'/>
-      <ref name='xmlUTF8Strsub'/>
-      <ref name='xmlUnlinkNode'/>
-      <ref name='xmlUnlockLibrary'/>
-      <ref name='xmlUnsetNsProp'/>
-      <ref name='xmlUnsetProp'/>
-      <ref name='xmlValidBuildContentModel'/>
-      <ref name='xmlValidCtxt'/>
-      <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-      <ref name='xmlValidCtxtPtr'/>
-      <ref name='xmlValidGetPotentialChildren'/>
-      <ref name='xmlValidGetValidElements'/>
-      <ref name='xmlValidNormalizeAttributeValue'/>
-      <ref name='xmlValidState'/>
-      <ref name='xmlValidStatePtr'/>
-      <ref name='xmlValidateAttributeDecl'/>
-      <ref name='xmlValidateAttributeValue'/>
-      <ref name='xmlValidateDocument'/>
-      <ref name='xmlValidateDocumentFinal'/>
-      <ref name='xmlValidateDtd'/>
-      <ref name='xmlValidateDtdFinal'/>
-      <ref name='xmlValidateElement'/>
-      <ref name='xmlValidateElementDecl'/>
-      <ref name='xmlValidateNCName'/>
-      <ref name='xmlValidateNMToken'/>
-      <ref name='xmlValidateName'/>
-      <ref name='xmlValidateNameValue'/>
-      <ref name='xmlValidateNamesValue'/>
-      <ref name='xmlValidateNmtokenValue'/>
-      <ref name='xmlValidateNmtokensValue'/>
-      <ref name='xmlValidateNotationDecl'/>
-      <ref name='xmlValidateNotationUse'/>
-      <ref name='xmlValidateOneAttribute'/>
-      <ref name='xmlValidateOneElement'/>
-      <ref name='xmlValidateOneNamespace'/>
-      <ref name='xmlValidatePopElement'/>
-      <ref name='xmlValidatePushCData'/>
-      <ref name='xmlValidatePushElement'/>
-      <ref name='xmlValidateQName'/>
-      <ref name='xmlValidateRoot'/>
-      <ref name='xmlValidityErrorFunc'/>
-      <ref name='xmlValidityWarningFunc'/>
-      <ref name='xmlXIncludeCtxt'/>
-      <ref name='xmlXIncludeCtxtPtr'/>
-      <ref name='xmlXIncludeFreeContext'/>
-      <ref name='xmlXIncludeNewContext'/>
-      <ref name='xmlXIncludeProcess'/>
-      <ref name='xmlXIncludeProcessFlags'/>
-      <ref name='xmlXIncludeProcessFlagsData'/>
-      <ref name='xmlXIncludeProcessNode'/>
-      <ref name='xmlXIncludeProcessTree'/>
-      <ref name='xmlXIncludeProcessTreeFlags'/>
-      <ref name='xmlXIncludeProcessTreeFlagsData'/>
-      <ref name='xmlXIncludeSetFlags'/>
-      <ref name='xmlXPathAddValues'/>
-      <ref name='xmlXPathAxis'/>
-      <ref name='xmlXPathAxisFunc'/>
-      <ref name='xmlXPathAxisPtr'/>
-      <ref name='xmlXPathBooleanFunction'/>
-      <ref name='xmlXPathCastBooleanToNumber'/>
-      <ref name='xmlXPathCastBooleanToString'/>
-      <ref name='xmlXPathCastNodeSetToBoolean'/>
-      <ref name='xmlXPathCastNodeSetToNumber'/>
-      <ref name='xmlXPathCastNodeSetToString'/>
-      <ref name='xmlXPathCastNodeToNumber'/>
-      <ref name='xmlXPathCastNodeToString'/>
-      <ref name='xmlXPathCastNumberToBoolean'/>
-      <ref name='xmlXPathCastNumberToString'/>
-      <ref name='xmlXPathCastStringToBoolean'/>
-      <ref name='xmlXPathCastStringToNumber'/>
-      <ref name='xmlXPathCastToBoolean'/>
-      <ref name='xmlXPathCastToNumber'/>
-      <ref name='xmlXPathCastToString'/>
-      <ref name='xmlXPathCeilingFunction'/>
-      <ref name='xmlXPathCheckError'/>
-      <ref name='xmlXPathCmpNodes'/>
-      <ref name='xmlXPathCompExpr'/>
-      <ref name='xmlXPathCompExprPtr'/>
-      <ref name='xmlXPathCompareValues'/>
-      <ref name='xmlXPathCompile'/>
-      <ref name='xmlXPathCompiledEval'/>
-      <ref name='xmlXPathCompiledEvalToBoolean'/>
-      <ref name='xmlXPathConcatFunction'/>
-      <ref name='xmlXPathContainsFunction'/>
-      <ref name='xmlXPathContext'/>
-      <ref name='xmlXPathContextPtr'/>
-      <ref name='xmlXPathContextSetCache'/>
-      <ref name='xmlXPathConvertBoolean'/>
-      <ref name='xmlXPathConvertFunc'/>
-      <ref name='xmlXPathConvertNumber'/>
-      <ref name='xmlXPathConvertString'/>
-      <ref name='xmlXPathCountFunction'/>
-      <ref name='xmlXPathCtxtCompile'/>
-      <ref name='xmlXPathDebugDumpCompExpr'/>
-      <ref name='xmlXPathDebugDumpObject'/>
-      <ref name='xmlXPathDifference'/>
-      <ref name='xmlXPathDistinct'/>
-      <ref name='xmlXPathDistinctSorted'/>
-      <ref name='xmlXPathDivValues'/>
-      <ref name='xmlXPathEmptyNodeSet'/>
-      <ref name='xmlXPathEqualValues'/>
-      <ref name='xmlXPathErr'/>
-      <ref name='xmlXPathError'/>
-      <ref name='xmlXPathEval'/>
-      <ref name='xmlXPathEvalExpr'/>
-      <ref name='xmlXPathEvalExpression'/>
-      <ref name='xmlXPathEvalFunc'/>
-      <ref name='xmlXPathEvalPredicate'/>
-      <ref name='xmlXPathEvaluatePredicateResult'/>
-      <ref name='xmlXPathFalseFunction'/>
-      <ref name='xmlXPathFloorFunction'/>
-      <ref name='xmlXPathFreeCompExpr'/>
-      <ref name='xmlXPathFreeContext'/>
-      <ref name='xmlXPathFreeNodeSet'/>
-      <ref name='xmlXPathFreeNodeSetList'/>
-      <ref name='xmlXPathFreeObject'/>
-      <ref name='xmlXPathFreeParserContext'/>
-      <ref name='xmlXPathFuncLookupFunc'/>
-      <ref name='xmlXPathFuncPtr'/>
-      <ref name='xmlXPathFunct'/>
-      <ref name='xmlXPathFunction'/>
-      <ref name='xmlXPathFunctionLookup'/>
-      <ref name='xmlXPathFunctionLookupNS'/>
-      <ref name='xmlXPathGetContextNode'/>
-      <ref name='xmlXPathGetDocument'/>
-      <ref name='xmlXPathGetError'/>
-      <ref name='xmlXPathHasSameNodes'/>
-      <ref name='xmlXPathIdFunction'/>
-      <ref name='xmlXPathInit'/>
-      <ref name='xmlXPathIntersection'/>
-      <ref name='xmlXPathIsInf'/>
-      <ref name='xmlXPathIsNaN'/>
-      <ref name='xmlXPathIsNodeType'/>
-      <ref name='xmlXPathLangFunction'/>
-      <ref name='xmlXPathLastFunction'/>
-      <ref name='xmlXPathLeading'/>
-      <ref name='xmlXPathLeadingSorted'/>
-      <ref name='xmlXPathLocalNameFunction'/>
-      <ref name='xmlXPathModValues'/>
-      <ref name='xmlXPathMultValues'/>
-      <ref name='xmlXPathNAN'/>
-      <ref name='xmlXPathNINF'/>
-      <ref name='xmlXPathNamespaceURIFunction'/>
-      <ref name='xmlXPathNewBoolean'/>
-      <ref name='xmlXPathNewCString'/>
-      <ref name='xmlXPathNewContext'/>
-      <ref name='xmlXPathNewFloat'/>
-      <ref name='xmlXPathNewNodeSet'/>
-      <ref name='xmlXPathNewNodeSetList'/>
-      <ref name='xmlXPathNewParserContext'/>
-      <ref name='xmlXPathNewString'/>
-      <ref name='xmlXPathNewValueTree'/>
-      <ref name='xmlXPathNextAncestor'/>
-      <ref name='xmlXPathNextAncestorOrSelf'/>
-      <ref name='xmlXPathNextAttribute'/>
-      <ref name='xmlXPathNextChild'/>
-      <ref name='xmlXPathNextDescendant'/>
-      <ref name='xmlXPathNextDescendantOrSelf'/>
-      <ref name='xmlXPathNextFollowing'/>
-      <ref name='xmlXPathNextFollowingSibling'/>
-      <ref name='xmlXPathNextNamespace'/>
-      <ref name='xmlXPathNextParent'/>
-      <ref name='xmlXPathNextPreceding'/>
-      <ref name='xmlXPathNextPrecedingSibling'/>
-      <ref name='xmlXPathNextSelf'/>
-      <ref name='xmlXPathNodeEval'/>
-      <ref name='xmlXPathNodeLeading'/>
-      <ref name='xmlXPathNodeLeadingSorted'/>
-      <ref name='xmlXPathNodeSetAdd'/>
-      <ref name='xmlXPathNodeSetAddNs'/>
-      <ref name='xmlXPathNodeSetAddUnique'/>
-      <ref name='xmlXPathNodeSetContains'/>
-      <ref name='xmlXPathNodeSetCreate'/>
-      <ref name='xmlXPathNodeSetDel'/>
-      <ref name='xmlXPathNodeSetFreeNs'/>
-      <ref name='xmlXPathNodeSetGetLength'/>
-      <ref name='xmlXPathNodeSetIsEmpty'/>
-      <ref name='xmlXPathNodeSetItem'/>
-      <ref name='xmlXPathNodeSetMerge'/>
-      <ref name='xmlXPathNodeSetRemove'/>
-      <ref name='xmlXPathNodeSetSort'/>
-      <ref name='xmlXPathNodeTrailing'/>
-      <ref name='xmlXPathNodeTrailingSorted'/>
-      <ref name='xmlXPathNormalizeFunction'/>
-      <ref name='xmlXPathNotEqualValues'/>
-      <ref name='xmlXPathNotFunction'/>
-      <ref name='xmlXPathNsLookup'/>
-      <ref name='xmlXPathNumberFunction'/>
-      <ref name='xmlXPathObject'/>
-      <ref name='xmlXPathObjectCopy'/>
-      <ref name='xmlXPathObjectPtr'/>
-      <ref name='xmlXPathObjectType'/>
-      <ref name='xmlXPathOrderDocElems'/>
-      <ref name='xmlXPathPINF'/>
-      <ref name='xmlXPathParseNCName'/>
-      <ref name='xmlXPathParseName'/>
-      <ref name='xmlXPathParserContext'/>
-      <ref name='xmlXPathParserContextPtr'/>
-      <ref name='xmlXPathPopBoolean'/>
-      <ref name='xmlXPathPopExternal'/>
-      <ref name='xmlXPathPopNodeSet'/>
-      <ref name='xmlXPathPopNumber'/>
-      <ref name='xmlXPathPopString'/>
-      <ref name='xmlXPathPositionFunction'/>
-      <ref name='xmlXPathRegisterAllFunctions'/>
-      <ref name='xmlXPathRegisterFunc'/>
-      <ref name='xmlXPathRegisterFuncLookup'/>
-      <ref name='xmlXPathRegisterFuncNS'/>
-      <ref name='xmlXPathRegisterNs'/>
-      <ref name='xmlXPathRegisterVariable'/>
-      <ref name='xmlXPathRegisterVariableLookup'/>
-      <ref name='xmlXPathRegisterVariableNS'/>
-      <ref name='xmlXPathRegisteredFuncsCleanup'/>
-      <ref name='xmlXPathRegisteredNsCleanup'/>
-      <ref name='xmlXPathRegisteredVariablesCleanup'/>
-      <ref name='xmlXPathReturnBoolean'/>
-      <ref name='xmlXPathReturnEmptyNodeSet'/>
-      <ref name='xmlXPathReturnEmptyString'/>
-      <ref name='xmlXPathReturnExternal'/>
-      <ref name='xmlXPathReturnFalse'/>
-      <ref name='xmlXPathReturnNodeSet'/>
-      <ref name='xmlXPathReturnNumber'/>
-      <ref name='xmlXPathReturnString'/>
-      <ref name='xmlXPathReturnTrue'/>
-      <ref name='xmlXPathRoot'/>
-      <ref name='xmlXPathRoundFunction'/>
-      <ref name='xmlXPathSetArityError'/>
-      <ref name='xmlXPathSetContextNode'/>
-      <ref name='xmlXPathSetError'/>
-      <ref name='xmlXPathSetTypeError'/>
-      <ref name='xmlXPathStackIsExternal'/>
-      <ref name='xmlXPathStackIsNodeSet'/>
-      <ref name='xmlXPathStartsWithFunction'/>
-      <ref name='xmlXPathStringEvalNumber'/>
-      <ref name='xmlXPathStringFunction'/>
-      <ref name='xmlXPathStringLengthFunction'/>
-      <ref name='xmlXPathSubValues'/>
-      <ref name='xmlXPathSubstringAfterFunction'/>
-      <ref name='xmlXPathSubstringBeforeFunction'/>
-      <ref name='xmlXPathSubstringFunction'/>
-      <ref name='xmlXPathSumFunction'/>
-      <ref name='xmlXPathTrailing'/>
-      <ref name='xmlXPathTrailingSorted'/>
-      <ref name='xmlXPathTranslateFunction'/>
-      <ref name='xmlXPathTrueFunction'/>
-      <ref name='xmlXPathType'/>
-      <ref name='xmlXPathTypePtr'/>
-      <ref name='xmlXPathValueFlipSign'/>
-      <ref name='xmlXPathVariable'/>
-      <ref name='xmlXPathVariableLookup'/>
-      <ref name='xmlXPathVariableLookupFunc'/>
-      <ref name='xmlXPathVariableLookupNS'/>
-      <ref name='xmlXPathVariablePtr'/>
-      <ref name='xmlXPathWrapCString'/>
-      <ref name='xmlXPathWrapExternal'/>
-      <ref name='xmlXPathWrapNodeSet'/>
-      <ref name='xmlXPathWrapString'/>
-      <ref name='xmlXPatherror'/>
-      <ref name='xmlXPtrBuildNodeList'/>
-      <ref name='xmlXPtrEval'/>
-      <ref name='xmlXPtrEvalRangePredicate'/>
-      <ref name='xmlXPtrFreeLocationSet'/>
-      <ref name='xmlXPtrLocationSetAdd'/>
-      <ref name='xmlXPtrLocationSetCreate'/>
-      <ref name='xmlXPtrLocationSetDel'/>
-      <ref name='xmlXPtrLocationSetMerge'/>
-      <ref name='xmlXPtrLocationSetRemove'/>
-      <ref name='xmlXPtrNewCollapsedRange'/>
-      <ref name='xmlXPtrNewContext'/>
-      <ref name='xmlXPtrNewLocationSetNodeSet'/>
-      <ref name='xmlXPtrNewLocationSetNodes'/>
-      <ref name='xmlXPtrNewRange'/>
-      <ref name='xmlXPtrNewRangeNodeObject'/>
-      <ref name='xmlXPtrNewRangeNodePoint'/>
-      <ref name='xmlXPtrNewRangeNodes'/>
-      <ref name='xmlXPtrNewRangePointNode'/>
-      <ref name='xmlXPtrNewRangePoints'/>
-      <ref name='xmlXPtrRangeToFunction'/>
-      <ref name='xmlXPtrWrapLocationSet'/>
-    </letter>
-  </alpha>
-  <constructors>
-    <type name='SOCKET'>
-      <ref name='xmlNanoFTPGetConnection'/>
-      <ref name='xmlNanoFTPGetSocket'/>
-    </type>
-    <type name='const htmlElemDesc *'>
-      <ref name='htmlTagLookup'/>
-    </type>
-    <type name='const htmlEntityDesc *'>
-      <ref name='htmlEntityLookup'/>
-      <ref name='htmlEntityValueLookup'/>
-      <ref name='htmlParseEntityRef'/>
-    </type>
-    <type name='const xmlChar *'>
-      <ref name='getPublicId'/>
-      <ref name='getSystemId'/>
-      <ref name='htmlGetMetaEncoding'/>
-      <ref name='namePop'/>
-      <ref name='xmlBufferContent'/>
-      <ref name='xmlCatalogGetPublic'/>
-      <ref name='xmlCatalogGetSystem'/>
-      <ref name='xmlDictExists'/>
-      <ref name='xmlDictLookup'/>
-      <ref name='xmlDictQLookup'/>
-      <ref name='xmlEncodeEntities'/>
-      <ref name='xmlOutputBufferGetContent'/>
-      <ref name='xmlParseAttribute'/>
-      <ref name='xmlParseEncodingDecl'/>
-      <ref name='xmlParseName'/>
-      <ref name='xmlParsePITarget'/>
-      <ref name='xmlParseStartTag'/>
-      <ref name='xmlSAX2GetPublicId'/>
-      <ref name='xmlSAX2GetSystemId'/>
-      <ref name='xmlSchemaValueGetAsString'/>
-      <ref name='xmlSplitQName3'/>
-      <ref name='xmlStrcasestr'/>
-      <ref name='xmlStrchr'/>
-      <ref name='xmlStrstr'/>
-      <ref name='xmlTextReaderConstBaseUri'/>
-      <ref name='xmlTextReaderConstEncoding'/>
-      <ref name='xmlTextReaderConstLocalName'/>
-      <ref name='xmlTextReaderConstName'/>
-      <ref name='xmlTextReaderConstNamespaceUri'/>
-      <ref name='xmlTextReaderConstPrefix'/>
-      <ref name='xmlTextReaderConstString'/>
-      <ref name='xmlTextReaderConstValue'/>
-      <ref name='xmlTextReaderConstXmlLang'/>
-      <ref name='xmlTextReaderConstXmlVersion'/>
-      <ref name='xmlUTF8Strpos'/>
-      <ref name='xmlXPathNsLookup'/>
-    </type>
-    <type name='const xmlParserNodeInfo *'>
-      <ref name='xmlParserFindNodeInfo'/>
-    </type>
-    <type name='double'>
-      <ref name='xmlXPathCastBooleanToNumber'/>
-      <ref name='xmlXPathCastNodeSetToNumber'/>
-      <ref name='xmlXPathCastNodeToNumber'/>
-      <ref name='xmlXPathCastStringToNumber'/>
-      <ref name='xmlXPathCastToNumber'/>
-      <ref name='xmlXPathPopNumber'/>
-      <ref name='xmlXPathStringEvalNumber'/>
-    </type>
-    <type name='htmlDocPtr'>
-      <ref name='htmlCtxtReadDoc'/>
-      <ref name='htmlCtxtReadFd'/>
-      <ref name='htmlCtxtReadFile'/>
-      <ref name='htmlCtxtReadIO'/>
-      <ref name='htmlCtxtReadMemory'/>
-      <ref name='htmlNewDoc'/>
-      <ref name='htmlNewDocNoDtD'/>
-      <ref name='htmlParseDoc'/>
-      <ref name='htmlParseFile'/>
-      <ref name='htmlReadDoc'/>
-      <ref name='htmlReadFd'/>
-      <ref name='htmlReadFile'/>
-      <ref name='htmlReadIO'/>
-      <ref name='htmlReadMemory'/>
-      <ref name='htmlSAXParseDoc'/>
-      <ref name='htmlSAXParseFile'/>
-    </type>
-    <type name='htmlParserCtxtPtr'>
-      <ref name='htmlCreateFileParserCtxt'/>
-      <ref name='htmlCreateMemoryParserCtxt'/>
-      <ref name='htmlCreatePushParserCtxt'/>
-      <ref name='htmlNewParserCtxt'/>
-    </type>
-    <type name='htmlStatus'>
-      <ref name='htmlAttrAllowed'/>
-      <ref name='htmlElementStatusHere'/>
-      <ref name='htmlNodeStatus'/>
-    </type>
-    <type name='long'>
-      <ref name='xmlByteConsumed'/>
-      <ref name='xmlGetLineNo'/>
-      <ref name='xmlSaveDoc'/>
-      <ref name='xmlSaveTree'/>
-      <ref name='xmlTextReaderByteConsumed'/>
-      <ref name='xmlXPathOrderDocElems'/>
-    </type>
-    <type name='size_t'>
-      <ref name='xmlBufNodeDump'/>
-      <ref name='xmlBufShrink'/>
-      <ref name='xmlBufUse'/>
-      <ref name='xmlDictGetUsage'/>
-      <ref name='xmlDictSetLimit'/>
-      <ref name='xmlOutputBufferGetSize'/>
-    </type>
-    <type name='unsigned long'>
-      <ref name='xmlChildElementCount'/>
-      <ref name='xmlParserFindNodeInfoIndex'/>
-      <ref name='xmlSchemaGetFacetValueAsULong'/>
-    </type>
-    <type name='void *'>
-      <ref name='xmlCatalogAddLocal'/>
-      <ref name='xmlFileOpen'/>
-      <ref name='xmlHashCopier'/>
-      <ref name='xmlHashLookup'/>
-      <ref name='xmlHashLookup2'/>
-      <ref name='xmlHashLookup3'/>
-      <ref name='xmlHashQLookup'/>
-      <ref name='xmlHashQLookup2'/>
-      <ref name='xmlHashQLookup3'/>
-      <ref name='xmlIOFTPOpen'/>
-      <ref name='xmlIOHTTPOpen'/>
-      <ref name='xmlIOHTTPOpenW'/>
-      <ref name='xmlInputOpenCallback'/>
-      <ref name='xmlLinkGetData'/>
-      <ref name='xmlListReverseSearch'/>
-      <ref name='xmlListSearch'/>
-      <ref name='xmlMallocAtomicLoc'/>
-      <ref name='xmlMallocFunc'/>
-      <ref name='xmlMallocLoc'/>
-      <ref name='xmlMemMalloc'/>
-      <ref name='xmlMemRealloc'/>
-      <ref name='xmlNanoFTPConnectTo'/>
-      <ref name='xmlNanoFTPNewCtxt'/>
-      <ref name='xmlNanoFTPOpen'/>
-      <ref name='xmlNanoHTTPMethod'/>
-      <ref name='xmlNanoHTTPMethodRedir'/>
-      <ref name='xmlNanoHTTPOpen'/>
-      <ref name='xmlNanoHTTPOpenRedir'/>
-      <ref name='xmlOutputOpenCallback'/>
-      <ref name='xmlReallocFunc'/>
-      <ref name='xmlReallocLoc'/>
-      <ref name='xmlXPathPopExternal'/>
-    </type>
-    <type name='xlinkHandlerPtr'>
-      <ref name='xlinkGetDefaultHandler'/>
-    </type>
-    <type name='xlinkNodeDetectFunc'>
-      <ref name='xlinkGetDefaultDetect'/>
-    </type>
-    <type name='xlinkType'>
-      <ref name='xlinkIsLink'/>
-    </type>
-    <type name='xmlAttrPtr'>
-      <ref name='xmlCopyProp'/>
-      <ref name='xmlCopyPropList'/>
-      <ref name='xmlGetID'/>
-      <ref name='xmlHasNsProp'/>
-      <ref name='xmlHasProp'/>
-      <ref name='xmlNewDocProp'/>
-      <ref name='xmlNewNsProp'/>
-      <ref name='xmlNewNsPropEatName'/>
-      <ref name='xmlNewProp'/>
-      <ref name='xmlSetNsProp'/>
-      <ref name='xmlSetProp'/>
-    </type>
-    <type name='xmlAttributePtr'>
-      <ref name='xmlAddAttributeDecl'/>
-      <ref name='xmlGetDtdAttrDesc'/>
-      <ref name='xmlGetDtdQAttrDesc'/>
-    </type>
-    <type name='xmlAttributeTablePtr'>
-      <ref name='xmlCopyAttributeTable'/>
-    </type>
-    <type name='xmlAutomataPtr'>
-      <ref name='xmlNewAutomata'/>
-    </type>
-    <type name='xmlAutomataStatePtr'>
-      <ref name='xmlAutomataGetInitState'/>
-      <ref name='xmlAutomataNewAllTrans'/>
-      <ref name='xmlAutomataNewCountTrans'/>
-      <ref name='xmlAutomataNewCountTrans2'/>
-      <ref name='xmlAutomataNewCountedTrans'/>
-      <ref name='xmlAutomataNewCounterTrans'/>
-      <ref name='xmlAutomataNewEpsilon'/>
-      <ref name='xmlAutomataNewNegTrans'/>
-      <ref name='xmlAutomataNewOnceTrans'/>
-      <ref name='xmlAutomataNewOnceTrans2'/>
-      <ref name='xmlAutomataNewState'/>
-      <ref name='xmlAutomataNewTransition'/>
-      <ref name='xmlAutomataNewTransition2'/>
-    </type>
-    <type name='xmlBufferAllocationScheme'>
-      <ref name='xmlGetBufferAllocationScheme'/>
-      <ref name='xmlThrDefBufferAllocScheme'/>
-    </type>
-    <type name='xmlBufferPtr'>
-      <ref name='xmlBufferCreate'/>
-      <ref name='xmlBufferCreateSize'/>
-      <ref name='xmlBufferCreateStatic'/>
-    </type>
-    <type name='xmlCatalogAllow'>
-      <ref name='xmlCatalogGetDefaults'/>
-    </type>
-    <type name='xmlCatalogPrefer'>
-      <ref name='xmlCatalogSetDefaultPrefer'/>
-    </type>
-    <type name='xmlCatalogPtr'>
-      <ref name='xmlLoadACatalog'/>
-      <ref name='xmlLoadSGMLSuperCatalog'/>
-      <ref name='xmlNewCatalog'/>
-    </type>
-    <type name='xmlChar'>
-      <ref name='xmlPopInput'/>
-    </type>
-    <type name='xmlChar *'>
-      <ref name='xmlACatalogResolve'/>
-      <ref name='xmlACatalogResolvePublic'/>
-      <ref name='xmlACatalogResolveSystem'/>
-      <ref name='xmlACatalogResolveURI'/>
-      <ref name='xmlBufContent'/>
-      <ref name='xmlBufEnd'/>
-      <ref name='xmlBufferDetach'/>
-      <ref name='xmlBuildQName'/>
-      <ref name='xmlBuildRelativeURI'/>
-      <ref name='xmlBuildURI'/>
-      <ref name='xmlCanonicPath'/>
-      <ref name='xmlCatalogLocalResolve'/>
-      <ref name='xmlCatalogLocalResolveURI'/>
-      <ref name='xmlCatalogResolve'/>
-      <ref name='xmlCatalogResolvePublic'/>
-      <ref name='xmlCatalogResolveSystem'/>
-      <ref name='xmlCatalogResolveURI'/>
-      <ref name='xmlCharStrdup'/>
-      <ref name='xmlCharStrndup'/>
-      <ref name='xmlDecodeEntities'/>
-      <ref name='xmlEncodeEntitiesReentrant'/>
-      <ref name='xmlEncodeSpecialChars'/>
-      <ref name='xmlGetNoNsProp'/>
-      <ref name='xmlGetNodePath'/>
-      <ref name='xmlGetNsProp'/>
-      <ref name='xmlGetProp'/>
-      <ref name='xmlNamespaceParseNCName'/>
-      <ref name='xmlNamespaceParseNSDef'/>
-      <ref name='xmlNamespaceParseQName'/>
-      <ref name='xmlNodeGetBase'/>
-      <ref name='xmlNodeGetContent'/>
-      <ref name='xmlNodeGetLang'/>
-      <ref name='xmlNodeListGetRawString'/>
-      <ref name='xmlNodeListGetString'/>
-      <ref name='xmlNormalizeWindowsPath'/>
-      <ref name='xmlParseAttValue'/>
-      <ref name='xmlParseEncName'/>
-      <ref name='xmlParseEntityValue'/>
-      <ref name='xmlParseExternalID'/>
-      <ref name='xmlParseNmtoken'/>
-      <ref name='xmlParsePubidLiteral'/>
-      <ref name='xmlParseQuotedString'/>
-      <ref name='xmlParseSystemLiteral'/>
-      <ref name='xmlParseVersionInfo'/>
-      <ref name='xmlParseVersionNum'/>
-      <ref name='xmlPathToURI'/>
-      <ref name='xmlSaveUri'/>
-      <ref name='xmlScanName'/>
-      <ref name='xmlSchemaCollapseString'/>
-      <ref name='xmlSchemaWhiteSpaceReplace'/>
-      <ref name='xmlSplitQName'/>
-      <ref name='xmlSplitQName2'/>
-      <ref name='xmlStrcat'/>
-      <ref name='xmlStrdup'/>
-      <ref name='xmlStringDecodeEntities'/>
-      <ref name='xmlStringLenDecodeEntities'/>
-      <ref name='xmlStrncat'/>
-      <ref name='xmlStrncatNew'/>
-      <ref name='xmlStrndup'/>
-      <ref name='xmlStrsub'/>
-      <ref name='xmlTextReaderBaseUri'/>
-      <ref name='xmlTextReaderGetAttribute'/>
-      <ref name='xmlTextReaderGetAttributeNo'/>
-      <ref name='xmlTextReaderGetAttributeNs'/>
-      <ref name='xmlTextReaderLocalName'/>
-      <ref name='xmlTextReaderLocatorBaseURI'/>
-      <ref name='xmlTextReaderLookupNamespace'/>
-      <ref name='xmlTextReaderName'/>
-      <ref name='xmlTextReaderNamespaceUri'/>
-      <ref name='xmlTextReaderPrefix'/>
-      <ref name='xmlTextReaderReadInnerXml'/>
-      <ref name='xmlTextReaderReadOuterXml'/>
-      <ref name='xmlTextReaderReadString'/>
-      <ref name='xmlTextReaderValue'/>
-      <ref name='xmlTextReaderXmlLang'/>
-      <ref name='xmlURIEscape'/>
-      <ref name='xmlURIEscapeStr'/>
-      <ref name='xmlUTF8Strndup'/>
-      <ref name='xmlUTF8Strsub'/>
-      <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-      <ref name='xmlValidNormalizeAttributeValue'/>
-      <ref name='xmlXPathCastBooleanToString'/>
-      <ref name='xmlXPathCastNodeSetToString'/>
-      <ref name='xmlXPathCastNodeToString'/>
-      <ref name='xmlXPathCastNumberToString'/>
-      <ref name='xmlXPathCastToString'/>
-      <ref name='xmlXPathParseNCName'/>
-      <ref name='xmlXPathParseName'/>
-      <ref name='xmlXPathPopString'/>
-    </type>
-    <type name='xmlCharEncoding'>
-      <ref name='xmlDetectCharEncoding'/>
-      <ref name='xmlParseCharEncoding'/>
-    </type>
-    <type name='xmlCharEncodingHandlerPtr'>
-      <ref name='xmlFindCharEncodingHandler'/>
-      <ref name='xmlGetCharEncodingHandler'/>
-      <ref name='xmlNewCharEncodingHandler'/>
-    </type>
-    <type name='xmlDOMWrapCtxtPtr'>
-      <ref name='xmlDOMWrapNewCtxt'/>
-    </type>
-    <type name='xmlDeregisterNodeFunc'>
-      <ref name='xmlDeregisterNodeDefault'/>
-      <ref name='xmlThrDefDeregisterNodeDefault'/>
-    </type>
-    <type name='xmlDictPtr'>
-      <ref name='xmlDictCreate'/>
-      <ref name='xmlDictCreateSub'/>
-    </type>
-    <type name='xmlDocPtr'>
-      <ref name='xmlCopyDoc'/>
-      <ref name='xmlCtxtReadDoc'/>
-      <ref name='xmlCtxtReadFd'/>
-      <ref name='xmlCtxtReadFile'/>
-      <ref name='xmlCtxtReadIO'/>
-      <ref name='xmlCtxtReadMemory'/>
-      <ref name='xmlNewDoc'/>
-      <ref name='xmlParseCatalogFile'/>
-      <ref name='xmlParseDoc'/>
-      <ref name='xmlParseEntity'/>
-      <ref name='xmlParseFile'/>
-      <ref name='xmlParseMemory'/>
-      <ref name='xmlReadDoc'/>
-      <ref name='xmlReadFd'/>
-      <ref name='xmlReadFile'/>
-      <ref name='xmlReadIO'/>
-      <ref name='xmlReadMemory'/>
-      <ref name='xmlRecoverDoc'/>
-      <ref name='xmlRecoverFile'/>
-      <ref name='xmlRecoverMemory'/>
-      <ref name='xmlSAXParseDoc'/>
-      <ref name='xmlSAXParseEntity'/>
-      <ref name='xmlSAXParseFile'/>
-      <ref name='xmlSAXParseFileWithData'/>
-      <ref name='xmlSAXParseMemory'/>
-      <ref name='xmlSAXParseMemoryWithData'/>
-      <ref name='xmlTextReaderCurrentDoc'/>
-    </type>
-    <type name='xmlDtdPtr'>
-      <ref name='xmlCopyDtd'/>
-      <ref name='xmlCreateIntSubset'/>
-      <ref name='xmlGetIntSubset'/>
-      <ref name='xmlIOParseDTD'/>
-      <ref name='xmlNewDtd'/>
-      <ref name='xmlParseDTD'/>
-      <ref name='xmlSAXParseDTD'/>
-    </type>
-    <type name='xmlElementContentPtr'>
-      <ref name='xmlCopyDocElementContent'/>
-      <ref name='xmlCopyElementContent'/>
-      <ref name='xmlNewDocElementContent'/>
-      <ref name='xmlNewElementContent'/>
-      <ref name='xmlParseElementChildrenContentDecl'/>
-      <ref name='xmlParseElementMixedContentDecl'/>
-    </type>
-    <type name='xmlElementPtr'>
-      <ref name='xmlAddElementDecl'/>
-      <ref name='xmlGetDtdElementDesc'/>
-      <ref name='xmlGetDtdQElementDesc'/>
-    </type>
-    <type name='xmlElementTablePtr'>
-      <ref name='xmlCopyElementTable'/>
-    </type>
-    <type name='xmlEntitiesTablePtr'>
-      <ref name='xmlCopyEntitiesTable'/>
-      <ref name='xmlCreateEntitiesTable'/>
-    </type>
-    <type name='xmlEntityPtr'>
-      <ref name='getEntity'/>
-      <ref name='getEntitySAXFunc'/>
-      <ref name='getParameterEntity'/>
-      <ref name='getParameterEntitySAXFunc'/>
-      <ref name='xmlAddDocEntity'/>
-      <ref name='xmlAddDtdEntity'/>
-      <ref name='xmlGetDocEntity'/>
-      <ref name='xmlGetDtdEntity'/>
-      <ref name='xmlGetParameterEntity'/>
-      <ref name='xmlGetPredefinedEntity'/>
-      <ref name='xmlNewEntity'/>
-      <ref name='xmlParseEntityRef'/>
-      <ref name='xmlSAX2GetEntity'/>
-      <ref name='xmlSAX2GetParameterEntity'/>
-    </type>
-    <type name='xmlEnumerationPtr'>
-      <ref name='xmlCopyEnumeration'/>
-      <ref name='xmlCreateEnumeration'/>
-      <ref name='xmlParseEnumerationType'/>
-      <ref name='xmlParseNotationType'/>
-    </type>
-    <type name='xmlErrorPtr'>
-      <ref name='xmlCtxtGetLastError'/>
-      <ref name='xmlGetLastError'/>
-    </type>
-    <type name='xmlExpCtxtPtr'>
-      <ref name='xmlExpNewCtxt'/>
-    </type>
-    <type name='xmlExpNodePtr'>
-      <ref name='xmlExpExpDerive'/>
-      <ref name='xmlExpNewAtom'/>
-      <ref name='xmlExpNewOr'/>
-      <ref name='xmlExpNewRange'/>
-      <ref name='xmlExpNewSeq'/>
-      <ref name='xmlExpParse'/>
-      <ref name='xmlExpStringDerive'/>
-    </type>
-    <type name='xmlExternalEntityLoader'>
-      <ref name='xmlGetExternalEntityLoader'/>
-    </type>
-    <type name='xmlGlobalStatePtr'>
-      <ref name='xmlGetGlobalState'/>
-    </type>
-    <type name='xmlHashTablePtr'>
-      <ref name='xmlHashCopy'/>
-      <ref name='xmlHashCreate'/>
-      <ref name='xmlHashCreateDict'/>
-    </type>
-    <type name='xmlIDPtr'>
-      <ref name='xmlAddID'/>
-    </type>
-    <type name='xmlLinkPtr'>
-      <ref name='xmlListEnd'/>
-      <ref name='xmlListFront'/>
-    </type>
-    <type name='xmlListPtr'>
-      <ref name='xmlGetRefs'/>
-      <ref name='xmlListCreate'/>
-      <ref name='xmlListDup'/>
-    </type>
-    <type name='xmlLocationSetPtr'>
-      <ref name='xmlXPtrLocationSetCreate'/>
-      <ref name='xmlXPtrLocationSetMerge'/>
-    </type>
-    <type name='xmlModulePtr'>
-      <ref name='xmlModuleOpen'/>
-    </type>
-    <type name='xmlMutexPtr'>
-      <ref name='xmlNewMutex'/>
-    </type>
-    <type name='xmlNodePtr'>
-      <ref name='nodePop'/>
-      <ref name='xmlAddChild'/>
-      <ref name='xmlAddChildList'/>
-      <ref name='xmlAddNextSibling'/>
-      <ref name='xmlAddPrevSibling'/>
-      <ref name='xmlAddSibling'/>
-      <ref name='xmlCopyNode'/>
-      <ref name='xmlCopyNodeList'/>
-      <ref name='xmlDocCopyNode'/>
-      <ref name='xmlDocCopyNodeList'/>
-      <ref name='xmlDocGetRootElement'/>
-      <ref name='xmlDocSetRootElement'/>
-      <ref name='xmlFirstElementChild'/>
-      <ref name='xmlGetLastChild'/>
-      <ref name='xmlLastElementChild'/>
-      <ref name='xmlNewCDataBlock'/>
-      <ref name='xmlNewCharRef'/>
-      <ref name='xmlNewChild'/>
-      <ref name='xmlNewComment'/>
-      <ref name='xmlNewDocComment'/>
-      <ref name='xmlNewDocFragment'/>
-      <ref name='xmlNewDocNode'/>
-      <ref name='xmlNewDocNodeEatName'/>
-      <ref name='xmlNewDocPI'/>
-      <ref name='xmlNewDocRawNode'/>
-      <ref name='xmlNewDocText'/>
-      <ref name='xmlNewDocTextLen'/>
-      <ref name='xmlNewNode'/>
-      <ref name='xmlNewNodeEatName'/>
-      <ref name='xmlNewPI'/>
-      <ref name='xmlNewReference'/>
-      <ref name='xmlNewText'/>
-      <ref name='xmlNewTextChild'/>
-      <ref name='xmlNewTextLen'/>
-      <ref name='xmlNextElementSibling'/>
-      <ref name='xmlPreviousElementSibling'/>
-      <ref name='xmlReplaceNode'/>
-      <ref name='xmlStringGetNodeList'/>
-      <ref name='xmlStringLenGetNodeList'/>
-      <ref name='xmlTextMerge'/>
-      <ref name='xmlTextReaderCurrentNode'/>
-      <ref name='xmlTextReaderExpand'/>
-      <ref name='xmlTextReaderPreserve'/>
-      <ref name='xmlXPathNextAncestor'/>
-      <ref name='xmlXPathNextAncestorOrSelf'/>
-      <ref name='xmlXPathNextAttribute'/>
-      <ref name='xmlXPathNextChild'/>
-      <ref name='xmlXPathNextDescendant'/>
-      <ref name='xmlXPathNextDescendantOrSelf'/>
-      <ref name='xmlXPathNextFollowing'/>
-      <ref name='xmlXPathNextFollowingSibling'/>
-      <ref name='xmlXPathNextNamespace'/>
-      <ref name='xmlXPathNextParent'/>
-      <ref name='xmlXPathNextPreceding'/>
-      <ref name='xmlXPathNextPrecedingSibling'/>
-      <ref name='xmlXPathNextSelf'/>
-      <ref name='xmlXPtrBuildNodeList'/>
-    </type>
-    <type name='xmlNodeSetPtr'>
-      <ref name='xmlXPathDifference'/>
-      <ref name='xmlXPathDistinct'/>
-      <ref name='xmlXPathDistinctSorted'/>
-      <ref name='xmlXPathIntersection'/>
-      <ref name='xmlXPathLeading'/>
-      <ref name='xmlXPathLeadingSorted'/>
-      <ref name='xmlXPathNodeLeading'/>
-      <ref name='xmlXPathNodeLeadingSorted'/>
-      <ref name='xmlXPathNodeSetCreate'/>
-      <ref name='xmlXPathNodeSetMerge'/>
-      <ref name='xmlXPathNodeTrailing'/>
-      <ref name='xmlXPathNodeTrailingSorted'/>
-      <ref name='xmlXPathPopNodeSet'/>
-      <ref name='xmlXPathTrailing'/>
-      <ref name='xmlXPathTrailingSorted'/>
-    </type>
-    <type name='xmlNotationPtr'>
-      <ref name='xmlAddNotationDecl'/>
-      <ref name='xmlGetDtdNotationDesc'/>
-    </type>
-    <type name='xmlNotationTablePtr'>
-      <ref name='xmlCopyNotationTable'/>
-    </type>
-    <type name='xmlNsPtr'>
-      <ref name='getNamespace'/>
-      <ref name='xmlCopyNamespace'/>
-      <ref name='xmlCopyNamespaceList'/>
-      <ref name='xmlDOMWrapAcquireNsFunction'/>
-      <ref name='xmlNewGlobalNs'/>
-      <ref name='xmlNewNs'/>
-      <ref name='xmlSearchNs'/>
-      <ref name='xmlSearchNsByHref'/>
-    </type>
-    <type name='xmlNsPtr *'>
-      <ref name='xmlGetNsList'/>
-    </type>
-    <type name='xmlOutputBufferCreateFilenameFunc'>
-      <ref name='xmlOutputBufferCreateFilenameDefault'/>
-      <ref name='xmlThrDefOutputBufferCreateFilenameDefault'/>
-    </type>
-    <type name='xmlOutputBufferPtr'>
-      <ref name='xmlAllocOutputBuffer'/>
-      <ref name='xmlOutputBufferCreateBuffer'/>
-      <ref name='xmlOutputBufferCreateFd'/>
-      <ref name='xmlOutputBufferCreateFile'/>
-      <ref name='xmlOutputBufferCreateFilename'/>
-      <ref name='xmlOutputBufferCreateFilenameFunc'/>
-      <ref name='xmlOutputBufferCreateIO'/>
-    </type>
-    <type name='xmlParserCtxtPtr'>
-      <ref name='xmlCreateDocParserCtxt'/>
-      <ref name='xmlCreateEntityParserCtxt'/>
-      <ref name='xmlCreateFileParserCtxt'/>
-      <ref name='xmlCreateIOParserCtxt'/>
-      <ref name='xmlCreateMemoryParserCtxt'/>
-      <ref name='xmlCreatePushParserCtxt'/>
-      <ref name='xmlCreateURLParserCtxt'/>
-      <ref name='xmlNewParserCtxt'/>
-      <ref name='xmlSchemaValidCtxtGetParserCtxt'/>
-    </type>
-    <type name='xmlParserErrors'>
-      <ref name='xmlParseInNodeContext'/>
-    </type>
-    <type name='xmlParserInputBufferCreateFilenameFunc'>
-      <ref name='xmlParserInputBufferCreateFilenameDefault'/>
-      <ref name='xmlThrDefParserInputBufferCreateFilenameDefault'/>
-    </type>
-    <type name='xmlParserInputBufferPtr'>
-      <ref name='xmlAllocParserInputBuffer'/>
-      <ref name='xmlParserInputBufferCreateFd'/>
-      <ref name='xmlParserInputBufferCreateFile'/>
-      <ref name='xmlParserInputBufferCreateFilename'/>
-      <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-      <ref name='xmlParserInputBufferCreateIO'/>
-      <ref name='xmlParserInputBufferCreateMem'/>
-      <ref name='xmlParserInputBufferCreateStatic'/>
-      <ref name='xmlTextReaderGetRemainder'/>
-    </type>
-    <type name='xmlParserInputPtr'>
-      <ref name='inputPop'/>
-      <ref name='resolveEntity'/>
-      <ref name='resolveEntitySAXFunc'/>
-      <ref name='xmlCheckHTTPInput'/>
-      <ref name='xmlExternalEntityLoader'/>
-      <ref name='xmlLoadExternalEntity'/>
-      <ref name='xmlNewEntityInputStream'/>
-      <ref name='xmlNewIOInputStream'/>
-      <ref name='xmlNewInputFromFile'/>
-      <ref name='xmlNewInputStream'/>
-      <ref name='xmlNewStringInputStream'/>
-      <ref name='xmlNoNetExternalEntityLoader'/>
-      <ref name='xmlSAX2ResolveEntity'/>
-    </type>
-    <type name='xmlPatternPtr'>
-      <ref name='xmlPatterncompile'/>
-    </type>
-    <type name='xmlRMutexPtr'>
-      <ref name='xmlNewRMutex'/>
-    </type>
-    <type name='xmlRefPtr'>
-      <ref name='xmlAddRef'/>
-    </type>
-    <type name='xmlRegExecCtxtPtr'>
-      <ref name='xmlRegNewExecCtxt'/>
-    </type>
-    <type name='xmlRegexpPtr'>
-      <ref name='xmlAutomataCompile'/>
-      <ref name='xmlRegexpCompile'/>
-    </type>
-    <type name='xmlRegisterNodeFunc'>
-      <ref name='xmlRegisterNodeDefault'/>
-      <ref name='xmlThrDefRegisterNodeDefault'/>
-    </type>
-    <type name='xmlRelaxNGParserCtxtPtr'>
-      <ref name='xmlRelaxNGNewDocParserCtxt'/>
-      <ref name='xmlRelaxNGNewMemParserCtxt'/>
-      <ref name='xmlRelaxNGNewParserCtxt'/>
-    </type>
-    <type name='xmlRelaxNGPtr'>
-      <ref name='xmlRelaxNGParse'/>
-    </type>
-    <type name='xmlRelaxNGValidCtxtPtr'>
-      <ref name='xmlRelaxNGNewValidCtxt'/>
-    </type>
-    <type name='xmlSaveCtxtPtr'>
-      <ref name='xmlSaveToBuffer'/>
-      <ref name='xmlSaveToFd'/>
-      <ref name='xmlSaveToFilename'/>
-      <ref name='xmlSaveToIO'/>
-    </type>
-    <type name='xmlSchemaFacetPtr'>
-      <ref name='xmlSchemaNewFacet'/>
-    </type>
-    <type name='xmlSchemaParserCtxtPtr'>
-      <ref name='xmlSchemaNewDocParserCtxt'/>
-      <ref name='xmlSchemaNewMemParserCtxt'/>
-      <ref name='xmlSchemaNewParserCtxt'/>
-    </type>
-    <type name='xmlSchemaPtr'>
-      <ref name='xmlSchemaParse'/>
-    </type>
-    <type name='xmlSchemaSAXPlugPtr'>
-      <ref name='xmlSchemaSAXPlug'/>
-    </type>
-    <type name='xmlSchemaTypePtr'>
-      <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-      <ref name='xmlSchemaGetBuiltInType'/>
-      <ref name='xmlSchemaGetPredefinedType'/>
-    </type>
-    <type name='xmlSchemaValPtr'>
-      <ref name='xmlSchemaCopyValue'/>
-      <ref name='xmlSchemaNewNOTATIONValue'/>
-      <ref name='xmlSchemaNewQNameValue'/>
-      <ref name='xmlSchemaNewStringValue'/>
-      <ref name='xmlSchemaValueGetNext'/>
-    </type>
-    <type name='xmlSchemaValType'>
-      <ref name='xmlSchemaGetValType'/>
-    </type>
-    <type name='xmlSchemaValidCtxtPtr'>
-      <ref name='xmlSchemaNewValidCtxt'/>
-    </type>
-    <type name='xmlSchematronParserCtxtPtr'>
-      <ref name='xmlSchematronNewDocParserCtxt'/>
-      <ref name='xmlSchematronNewMemParserCtxt'/>
-      <ref name='xmlSchematronNewParserCtxt'/>
-    </type>
-    <type name='xmlSchematronPtr'>
-      <ref name='xmlSchematronParse'/>
-    </type>
-    <type name='xmlSchematronValidCtxtPtr'>
-      <ref name='xmlSchematronNewValidCtxt'/>
-    </type>
-    <type name='xmlStreamCtxtPtr'>
-      <ref name='xmlPatternGetStreamCtxt'/>
-    </type>
-    <type name='xmlTextReaderPtr'>
-      <ref name='xmlNewTextReader'/>
-      <ref name='xmlNewTextReaderFilename'/>
-      <ref name='xmlReaderForDoc'/>
-      <ref name='xmlReaderForFd'/>
-      <ref name='xmlReaderForFile'/>
-      <ref name='xmlReaderForIO'/>
-      <ref name='xmlReaderForMemory'/>
-      <ref name='xmlReaderWalker'/>
-    </type>
-    <type name='xmlTextWriterPtr'>
-      <ref name='xmlNewTextWriter'/>
-      <ref name='xmlNewTextWriterDoc'/>
-      <ref name='xmlNewTextWriterFilename'/>
-      <ref name='xmlNewTextWriterMemory'/>
-      <ref name='xmlNewTextWriterPushParser'/>
-      <ref name='xmlNewTextWriterTree'/>
-    </type>
-    <type name='xmlURIPtr'>
-      <ref name='xmlCreateURI'/>
-      <ref name='xmlParseURI'/>
-      <ref name='xmlParseURIRaw'/>
-    </type>
-    <type name='xmlValidCtxtPtr'>
-      <ref name='xmlNewValidCtxt'/>
-    </type>
-    <type name='xmlXIncludeCtxtPtr'>
-      <ref name='xmlXIncludeNewContext'/>
-    </type>
-    <type name='xmlXPathCompExprPtr'>
-      <ref name='xmlXPathCompile'/>
-      <ref name='xmlXPathCtxtCompile'/>
-    </type>
-    <type name='xmlXPathContextPtr'>
-      <ref name='xmlXPathNewContext'/>
-      <ref name='xmlXPtrNewContext'/>
-    </type>
-    <type name='xmlXPathFunction'>
-      <ref name='xmlXPathFuncLookupFunc'/>
-      <ref name='xmlXPathFunctionLookup'/>
-      <ref name='xmlXPathFunctionLookupNS'/>
-    </type>
-    <type name='xmlXPathObjectPtr'>
-      <ref name='valuePop'/>
-      <ref name='xmlXPathAxisFunc'/>
-      <ref name='xmlXPathCompiledEval'/>
-      <ref name='xmlXPathConvertBoolean'/>
-      <ref name='xmlXPathConvertNumber'/>
-      <ref name='xmlXPathConvertString'/>
-      <ref name='xmlXPathEval'/>
-      <ref name='xmlXPathEvalExpression'/>
-      <ref name='xmlXPathNewBoolean'/>
-      <ref name='xmlXPathNewCString'/>
-      <ref name='xmlXPathNewFloat'/>
-      <ref name='xmlXPathNewNodeSet'/>
-      <ref name='xmlXPathNewNodeSetList'/>
-      <ref name='xmlXPathNewString'/>
-      <ref name='xmlXPathNewValueTree'/>
-      <ref name='xmlXPathNodeEval'/>
-      <ref name='xmlXPathObjectCopy'/>
-      <ref name='xmlXPathVariableLookup'/>
-      <ref name='xmlXPathVariableLookupFunc'/>
-      <ref name='xmlXPathVariableLookupNS'/>
-      <ref name='xmlXPathWrapCString'/>
-      <ref name='xmlXPathWrapExternal'/>
-      <ref name='xmlXPathWrapNodeSet'/>
-      <ref name='xmlXPathWrapString'/>
-      <ref name='xmlXPtrEval'/>
-      <ref name='xmlXPtrNewCollapsedRange'/>
-      <ref name='xmlXPtrNewLocationSetNodeSet'/>
-      <ref name='xmlXPtrNewLocationSetNodes'/>
-      <ref name='xmlXPtrNewRange'/>
-      <ref name='xmlXPtrNewRangeNodeObject'/>
-      <ref name='xmlXPtrNewRangeNodePoint'/>
-      <ref name='xmlXPtrNewRangeNodes'/>
-      <ref name='xmlXPtrNewRangePointNode'/>
-      <ref name='xmlXPtrNewRangePoints'/>
-      <ref name='xmlXPtrWrapLocationSet'/>
-    </type>
-    <type name='xmlXPathParserContextPtr'>
-      <ref name='xmlXPathNewParserContext'/>
-    </type>
-  </constructors>
-  <functions>
-    <type name='...'>
-      <ref name='errorSAXFunc'/>
-      <ref name='fatalErrorSAXFunc'/>
-      <ref name='warningSAXFunc'/>
-      <ref name='xmlGenericErrorFunc'/>
-      <ref name='xmlParserError'/>
-      <ref name='xmlParserValidityError'/>
-      <ref name='xmlParserValidityWarning'/>
-      <ref name='xmlParserWarning'/>
-      <ref name='xmlRelaxNGValidityErrorFunc'/>
-      <ref name='xmlRelaxNGValidityWarningFunc'/>
-      <ref name='xmlSchemaValidityErrorFunc'/>
-      <ref name='xmlSchemaValidityWarningFunc'/>
-      <ref name='xmlSchematronValidityErrorFunc'/>
-      <ref name='xmlSchematronValidityWarningFunc'/>
-      <ref name='xmlStrPrintf'/>
-      <ref name='xmlTextWriterWriteFormatAttribute'/>
-      <ref name='xmlTextWriterWriteFormatAttributeNS'/>
-      <ref name='xmlTextWriterWriteFormatCDATA'/>
-      <ref name='xmlTextWriterWriteFormatComment'/>
-      <ref name='xmlTextWriterWriteFormatDTD'/>
-      <ref name='xmlTextWriterWriteFormatDTDAttlist'/>
-      <ref name='xmlTextWriterWriteFormatDTDElement'/>
-      <ref name='xmlTextWriterWriteFormatDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteFormatElement'/>
-      <ref name='xmlTextWriterWriteFormatElementNS'/>
-      <ref name='xmlTextWriterWriteFormatPI'/>
-      <ref name='xmlTextWriterWriteFormatRaw'/>
-      <ref name='xmlTextWriterWriteFormatString'/>
-      <ref name='xmlValidityErrorFunc'/>
-      <ref name='xmlValidityWarningFunc'/>
-    </type>
-    <type name='FILE *'>
-      <ref name='htmlDocDump'/>
-      <ref name='htmlNodeDumpFile'/>
-      <ref name='htmlNodeDumpFileFormat'/>
-      <ref name='xmlACatalogDump'/>
-      <ref name='xmlBufferDump'/>
-      <ref name='xmlCatalogDump'/>
-      <ref name='xmlDebugCheckDocument'/>
-      <ref name='xmlDebugDumpAttr'/>
-      <ref name='xmlDebugDumpAttrList'/>
-      <ref name='xmlDebugDumpDTD'/>
-      <ref name='xmlDebugDumpDocument'/>
-      <ref name='xmlDebugDumpDocumentHead'/>
-      <ref name='xmlDebugDumpEntities'/>
-      <ref name='xmlDebugDumpNode'/>
-      <ref name='xmlDebugDumpNodeList'/>
-      <ref name='xmlDebugDumpOneNode'/>
-      <ref name='xmlDebugDumpString'/>
-      <ref name='xmlDocDump'/>
-      <ref name='xmlDocFormatDump'/>
-      <ref name='xmlElemDump'/>
-      <ref name='xmlLsOneNode'/>
-      <ref name='xmlMemDisplay'/>
-      <ref name='xmlMemDisplayLast'/>
-      <ref name='xmlMemShow'/>
-      <ref name='xmlOutputBufferCreateFile'/>
-      <ref name='xmlParserInputBufferCreateFile'/>
-      <ref name='xmlPrintURI'/>
-      <ref name='xmlRegexpPrint'/>
-      <ref name='xmlRelaxNGDump'/>
-      <ref name='xmlRelaxNGDumpTree'/>
-      <ref name='xmlSchemaDump'/>
-      <ref name='xmlShell'/>
-      <ref name='xmlXPathDebugDumpCompExpr'/>
-      <ref name='xmlXPathDebugDumpObject'/>
-    </type>
-    <type name='char **'>
-      <ref name='xmlNanoHTTPFetch'/>
-      <ref name='xmlNanoHTTPMethod'/>
-      <ref name='xmlNanoHTTPMethodRedir'/>
-      <ref name='xmlNanoHTTPOpen'/>
-      <ref name='xmlNanoHTTPOpenRedir'/>
-    </type>
-    <type name='char const *'>
-      <ref name='xmlInputMatchCallback'/>
-      <ref name='xmlInputOpenCallback'/>
-      <ref name='xmlOutputMatchCallback'/>
-      <ref name='xmlOutputOpenCallback'/>
-    </type>
-    <type name='const char **'>
-      <ref name='xmlGetFeaturesList'/>
-      <ref name='xmlSchemaValidityLocatorFunc'/>
-    </type>
-    <type name='const htmlElemDesc *'>
-      <ref name='htmlAttrAllowed'/>
-      <ref name='htmlElementAllowedHere'/>
-      <ref name='htmlElementStatusHere'/>
-    </type>
-    <type name='const htmlNodePtr'>
-      <ref name='htmlNodeStatus'/>
-    </type>
-    <type name='const unsigned char *'>
-      <ref name='UTF8ToHtml'/>
-      <ref name='UTF8Toisolat1'/>
-      <ref name='htmlEncodeEntities'/>
-      <ref name='isolat1ToUTF8'/>
-      <ref name='xmlCharEncodingInputFunc'/>
-      <ref name='xmlCharEncodingOutputFunc'/>
-      <ref name='xmlCheckUTF8'/>
-      <ref name='xmlDetectCharEncoding'/>
-      <ref name='xmlGetUTF8Char'/>
-    </type>
-    <type name='const void *'>
-      <ref name='xmlListDataCompare'/>
-      <ref name='xmlListWalker'/>
-    </type>
-    <type name='const xlinkHRef'>
-      <ref name='xlinkSimpleLinkFunk'/>
-    </type>
-    <type name='const xlinkHRef *'>
-      <ref name='xlinkExtendedLinkFunk'/>
-      <ref name='xlinkExtendedLinkSetFunk'/>
-    </type>
-    <type name='const xlinkRole'>
-      <ref name='xlinkSimpleLinkFunk'/>
-    </type>
-    <type name='const xlinkRole *'>
-      <ref name='xlinkExtendedLinkFunk'/>
-      <ref name='xlinkExtendedLinkSetFunk'/>
-    </type>
-    <type name='const xlinkTitle'>
-      <ref name='xlinkSimpleLinkFunk'/>
-    </type>
-    <type name='const xlinkTitle *'>
-      <ref name='xlinkExtendedLinkFunk'/>
-      <ref name='xlinkExtendedLinkSetFunk'/>
-    </type>
-    <type name='const xmlBuf *'>
-      <ref name='xmlBufContent'/>
-    </type>
-    <type name='const xmlBufPtr'>
-      <ref name='xmlBufUse'/>
-    </type>
-    <type name='const xmlBuffer *'>
-      <ref name='xmlBufferContent'/>
-      <ref name='xmlBufferLength'/>
-    </type>
-    <type name='const xmlChRangeGroup *'>
-      <ref name='xmlCharInRange'/>
-    </type>
-    <type name='const xmlChar *'>
-      <ref name='attribute'/>
-      <ref name='attributeDecl'/>
-      <ref name='attributeDeclSAXFunc'/>
-      <ref name='attributeSAXFunc'/>
-      <ref name='cdataBlock'/>
-      <ref name='cdataBlockSAXFunc'/>
-      <ref name='characters'/>
-      <ref name='charactersSAXFunc'/>
-      <ref name='comment'/>
-      <ref name='commentSAXFunc'/>
-      <ref name='elementDecl'/>
-      <ref name='elementDeclSAXFunc'/>
-      <ref name='endElement'/>
-      <ref name='endElementNsSAX2Func'/>
-      <ref name='endElementSAXFunc'/>
-      <ref name='entityDecl'/>
-      <ref name='entityDeclSAXFunc'/>
-      <ref name='externalSubset'/>
-      <ref name='externalSubsetSAXFunc'/>
-      <ref name='getEntity'/>
-      <ref name='getEntitySAXFunc'/>
-      <ref name='getParameterEntity'/>
-      <ref name='getParameterEntitySAXFunc'/>
-      <ref name='globalNamespace'/>
-      <ref name='htmlAttrAllowed'/>
-      <ref name='htmlAutoCloseTag'/>
-      <ref name='htmlCtxtReadDoc'/>
-      <ref name='htmlElementAllowedHere'/>
-      <ref name='htmlEntityLookup'/>
-      <ref name='htmlIsBooleanAttr'/>
-      <ref name='htmlIsScriptAttribute'/>
-      <ref name='htmlNewDoc'/>
-      <ref name='htmlNewDocNoDtD'/>
-      <ref name='htmlParseDoc'/>
-      <ref name='htmlReadDoc'/>
-      <ref name='htmlSAXParseDoc'/>
-      <ref name='htmlSetMetaEncoding'/>
-      <ref name='htmlTagLookup'/>
-      <ref name='ignorableWhitespace'/>
-      <ref name='ignorableWhitespaceSAXFunc'/>
-      <ref name='internalSubset'/>
-      <ref name='internalSubsetSAXFunc'/>
-      <ref name='namePush'/>
-      <ref name='namespaceDecl'/>
-      <ref name='notationDecl'/>
-      <ref name='notationDeclSAXFunc'/>
-      <ref name='processingInstruction'/>
-      <ref name='processingInstructionSAXFunc'/>
-      <ref name='reference'/>
-      <ref name='referenceSAXFunc'/>
-      <ref name='resolveEntity'/>
-      <ref name='resolveEntitySAXFunc'/>
-      <ref name='setNamespace'/>
-      <ref name='startElement'/>
-      <ref name='startElementNsSAX2Func'/>
-      <ref name='startElementSAXFunc'/>
-      <ref name='unparsedEntityDecl'/>
-      <ref name='unparsedEntityDeclSAXFunc'/>
-      <ref name='xmlACatalogAdd'/>
-      <ref name='xmlACatalogRemove'/>
-      <ref name='xmlACatalogResolve'/>
-      <ref name='xmlACatalogResolvePublic'/>
-      <ref name='xmlACatalogResolveSystem'/>
-      <ref name='xmlACatalogResolveURI'/>
-      <ref name='xmlAddAttributeDecl'/>
-      <ref name='xmlAddDocEntity'/>
-      <ref name='xmlAddDtdEntity'/>
-      <ref name='xmlAddElementDecl'/>
-      <ref name='xmlAddID'/>
-      <ref name='xmlAddNotationDecl'/>
-      <ref name='xmlAddRef'/>
-      <ref name='xmlAttrSerializeTxtContent'/>
-      <ref name='xmlAutomataNewCountTrans'/>
-      <ref name='xmlAutomataNewCountTrans2'/>
-      <ref name='xmlAutomataNewNegTrans'/>
-      <ref name='xmlAutomataNewOnceTrans'/>
-      <ref name='xmlAutomataNewOnceTrans2'/>
-      <ref name='xmlAutomataNewTransition'/>
-      <ref name='xmlAutomataNewTransition2'/>
-      <ref name='xmlBufferAdd'/>
-      <ref name='xmlBufferAddHead'/>
-      <ref name='xmlBufferCat'/>
-      <ref name='xmlBufferWriteCHAR'/>
-      <ref name='xmlBufferWriteQuotedString'/>
-      <ref name='xmlBuildQName'/>
-      <ref name='xmlBuildRelativeURI'/>
-      <ref name='xmlBuildURI'/>
-      <ref name='xmlCanonicPath'/>
-      <ref name='xmlCatalogAdd'/>
-      <ref name='xmlCatalogAddLocal'/>
-      <ref name='xmlCatalogGetPublic'/>
-      <ref name='xmlCatalogGetSystem'/>
-      <ref name='xmlCatalogLocalResolve'/>
-      <ref name='xmlCatalogLocalResolveURI'/>
-      <ref name='xmlCatalogRemove'/>
-      <ref name='xmlCatalogResolve'/>
-      <ref name='xmlCatalogResolvePublic'/>
-      <ref name='xmlCatalogResolveSystem'/>
-      <ref name='xmlCatalogResolveURI'/>
-      <ref name='xmlCheckLanguageID'/>
-      <ref name='xmlCreateDocParserCtxt'/>
-      <ref name='xmlCreateEntityParserCtxt'/>
-      <ref name='xmlCreateEnumeration'/>
-      <ref name='xmlCreateIntSubset'/>
-      <ref name='xmlCtxtReadDoc'/>
-      <ref name='xmlDOMWrapAcquireNsFunction'/>
-      <ref name='xmlDebugDumpString'/>
-      <ref name='xmlDictExists'/>
-      <ref name='xmlDictLookup'/>
-      <ref name='xmlDictOwns'/>
-      <ref name='xmlDictQLookup'/>
-      <ref name='xmlEncodeEntities'/>
-      <ref name='xmlEncodeEntitiesReentrant'/>
-      <ref name='xmlEncodeSpecialChars'/>
-      <ref name='xmlExpNewAtom'/>
-      <ref name='xmlExpStringDerive'/>
-      <ref name='xmlGetDocEntity'/>
-      <ref name='xmlGetDtdAttrDesc'/>
-      <ref name='xmlGetDtdElementDesc'/>
-      <ref name='xmlGetDtdEntity'/>
-      <ref name='xmlGetDtdNotationDesc'/>
-      <ref name='xmlGetDtdQAttrDesc'/>
-      <ref name='xmlGetDtdQElementDesc'/>
-      <ref name='xmlGetID'/>
-      <ref name='xmlGetNoNsProp'/>
-      <ref name='xmlGetNsProp'/>
-      <ref name='xmlGetParameterEntity'/>
-      <ref name='xmlGetPredefinedEntity'/>
-      <ref name='xmlGetProp'/>
-      <ref name='xmlGetRefs'/>
-      <ref name='xmlHasNsProp'/>
-      <ref name='xmlHasProp'/>
-      <ref name='xmlHashAddEntry'/>
-      <ref name='xmlHashAddEntry2'/>
-      <ref name='xmlHashAddEntry3'/>
-      <ref name='xmlHashCopier'/>
-      <ref name='xmlHashDeallocator'/>
-      <ref name='xmlHashDefaultDeallocator'/>
-      <ref name='xmlHashLookup'/>
-      <ref name='xmlHashLookup2'/>
-      <ref name='xmlHashLookup3'/>
-      <ref name='xmlHashQLookup'/>
-      <ref name='xmlHashQLookup2'/>
-      <ref name='xmlHashQLookup3'/>
-      <ref name='xmlHashRemoveEntry'/>
-      <ref name='xmlHashRemoveEntry2'/>
-      <ref name='xmlHashRemoveEntry3'/>
-      <ref name='xmlHashScan3'/>
-      <ref name='xmlHashScanFull3'/>
-      <ref name='xmlHashScanner'/>
-      <ref name='xmlHashScannerFull'/>
-      <ref name='xmlHashUpdateEntry'/>
-      <ref name='xmlHashUpdateEntry2'/>
-      <ref name='xmlHashUpdateEntry3'/>
-      <ref name='xmlIsMixedElement'/>
-      <ref name='xmlIsXHTML'/>
-      <ref name='xmlNewCDataBlock'/>
-      <ref name='xmlNewCharRef'/>
-      <ref name='xmlNewChild'/>
-      <ref name='xmlNewComment'/>
-      <ref name='xmlNewDoc'/>
-      <ref name='xmlNewDocComment'/>
-      <ref name='xmlNewDocElementContent'/>
-      <ref name='xmlNewDocNode'/>
-      <ref name='xmlNewDocNodeEatName'/>
-      <ref name='xmlNewDocPI'/>
-      <ref name='xmlNewDocProp'/>
-      <ref name='xmlNewDocRawNode'/>
-      <ref name='xmlNewDocText'/>
-      <ref name='xmlNewDocTextLen'/>
-      <ref name='xmlNewDtd'/>
-      <ref name='xmlNewElementContent'/>
-      <ref name='xmlNewEntity'/>
-      <ref name='xmlNewGlobalNs'/>
-      <ref name='xmlNewNode'/>
-      <ref name='xmlNewNs'/>
-      <ref name='xmlNewNsProp'/>
-      <ref name='xmlNewNsPropEatName'/>
-      <ref name='xmlNewPI'/>
-      <ref name='xmlNewProp'/>
-      <ref name='xmlNewReference'/>
-      <ref name='xmlNewStringInputStream'/>
-      <ref name='xmlNewText'/>
-      <ref name='xmlNewTextChild'/>
-      <ref name='xmlNewTextLen'/>
-      <ref name='xmlNodeAddContent'/>
-      <ref name='xmlNodeAddContentLen'/>
-      <ref name='xmlNodeSetBase'/>
-      <ref name='xmlNodeSetContent'/>
-      <ref name='xmlNodeSetContentLen'/>
-      <ref name='xmlNodeSetLang'/>
-      <ref name='xmlNodeSetName'/>
-      <ref name='xmlNormalizeWindowsPath'/>
-      <ref name='xmlOutputBufferWriteEscape'/>
-      <ref name='xmlParseBalancedChunkMemory'/>
-      <ref name='xmlParseBalancedChunkMemoryRecover'/>
-      <ref name='xmlParseCtxtExternalEntity'/>
-      <ref name='xmlParseDTD'/>
-      <ref name='xmlParseDoc'/>
-      <ref name='xmlParseElementContentDecl'/>
-      <ref name='xmlParseExternalEntity'/>
-      <ref name='xmlParseExternalSubset'/>
-      <ref name='xmlPathToURI'/>
-      <ref name='xmlPatterncompile'/>
-      <ref name='xmlReadDoc'/>
-      <ref name='xmlReaderForDoc'/>
-      <ref name='xmlReaderNewDoc'/>
-      <ref name='xmlRecoverDoc'/>
-      <ref name='xmlRegExecCallbacks'/>
-      <ref name='xmlRegExecPushString'/>
-      <ref name='xmlRegExecPushString2'/>
-      <ref name='xmlRegexpCompile'/>
-      <ref name='xmlRegexpExec'/>
-      <ref name='xmlRelaxNGValidatePushCData'/>
-      <ref name='xmlSAX2AttributeDecl'/>
-      <ref name='xmlSAX2CDataBlock'/>
-      <ref name='xmlSAX2Characters'/>
-      <ref name='xmlSAX2Comment'/>
-      <ref name='xmlSAX2ElementDecl'/>
-      <ref name='xmlSAX2EndElement'/>
-      <ref name='xmlSAX2EndElementNs'/>
-      <ref name='xmlSAX2EntityDecl'/>
-      <ref name='xmlSAX2ExternalSubset'/>
-      <ref name='xmlSAX2GetEntity'/>
-      <ref name='xmlSAX2GetParameterEntity'/>
-      <ref name='xmlSAX2IgnorableWhitespace'/>
-      <ref name='xmlSAX2InternalSubset'/>
-      <ref name='xmlSAX2NotationDecl'/>
-      <ref name='xmlSAX2ProcessingInstruction'/>
-      <ref name='xmlSAX2Reference'/>
-      <ref name='xmlSAX2ResolveEntity'/>
-      <ref name='xmlSAX2StartElement'/>
-      <ref name='xmlSAX2StartElementNs'/>
-      <ref name='xmlSAX2UnparsedEntityDecl'/>
-      <ref name='xmlSAXParseDTD'/>
-      <ref name='xmlSAXParseDoc'/>
-      <ref name='xmlSchemaCheckFacet'/>
-      <ref name='xmlSchemaCollapseString'/>
-      <ref name='xmlSchemaGetPredefinedType'/>
-      <ref name='xmlSchemaNewNOTATIONValue'/>
-      <ref name='xmlSchemaNewQNameValue'/>
-      <ref name='xmlSchemaNewStringValue'/>
-      <ref name='xmlSchemaValPredefTypeNode'/>
-      <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-      <ref name='xmlSchemaValidateFacet'/>
-      <ref name='xmlSchemaValidateFacetWhtsp'/>
-      <ref name='xmlSchemaValidateLengthFacet'/>
-      <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-      <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-      <ref name='xmlSchemaValidatePredefinedType'/>
-      <ref name='xmlSchemaWhiteSpaceReplace'/>
-      <ref name='xmlSearchNs'/>
-      <ref name='xmlSearchNsByHref'/>
-      <ref name='xmlSetNsProp'/>
-      <ref name='xmlSetProp'/>
-      <ref name='xmlSetupParserForBuffer'/>
-      <ref name='xmlSplitQName'/>
-      <ref name='xmlSplitQName2'/>
-      <ref name='xmlSplitQName3'/>
-      <ref name='xmlStrEqual'/>
-      <ref name='xmlStrQEqual'/>
-      <ref name='xmlStrcasecmp'/>
-      <ref name='xmlStrcasestr'/>
-      <ref name='xmlStrcat'/>
-      <ref name='xmlStrchr'/>
-      <ref name='xmlStrcmp'/>
-      <ref name='xmlStrdup'/>
-      <ref name='xmlStreamPush'/>
-      <ref name='xmlStreamPushAttr'/>
-      <ref name='xmlStreamPushNode'/>
-      <ref name='xmlStringCurrentChar'/>
-      <ref name='xmlStringDecodeEntities'/>
-      <ref name='xmlStringGetNodeList'/>
-      <ref name='xmlStringLenDecodeEntities'/>
-      <ref name='xmlStringLenGetNodeList'/>
-      <ref name='xmlStrlen'/>
-      <ref name='xmlStrncasecmp'/>
-      <ref name='xmlStrncat'/>
-      <ref name='xmlStrncatNew'/>
-      <ref name='xmlStrncmp'/>
-      <ref name='xmlStrndup'/>
-      <ref name='xmlStrstr'/>
-      <ref name='xmlStrsub'/>
-      <ref name='xmlTextConcat'/>
-      <ref name='xmlTextReaderConstString'/>
-      <ref name='xmlTextReaderGetAttribute'/>
-      <ref name='xmlTextReaderGetAttributeNs'/>
-      <ref name='xmlTextReaderLookupNamespace'/>
-      <ref name='xmlTextReaderMoveToAttribute'/>
-      <ref name='xmlTextReaderMoveToAttributeNs'/>
-      <ref name='xmlTextReaderPreservePattern'/>
-      <ref name='xmlTextWriterSetIndentString'/>
-      <ref name='xmlTextWriterStartAttribute'/>
-      <ref name='xmlTextWriterStartAttributeNS'/>
-      <ref name='xmlTextWriterStartDTD'/>
-      <ref name='xmlTextWriterStartDTDAttlist'/>
-      <ref name='xmlTextWriterStartDTDElement'/>
-      <ref name='xmlTextWriterStartDTDEntity'/>
-      <ref name='xmlTextWriterStartElement'/>
-      <ref name='xmlTextWriterStartElementNS'/>
-      <ref name='xmlTextWriterStartPI'/>
-      <ref name='xmlTextWriterWriteAttribute'/>
-      <ref name='xmlTextWriterWriteAttributeNS'/>
-      <ref name='xmlTextWriterWriteCDATA'/>
-      <ref name='xmlTextWriterWriteComment'/>
-      <ref name='xmlTextWriterWriteDTD'/>
-      <ref name='xmlTextWriterWriteDTDAttlist'/>
-      <ref name='xmlTextWriterWriteDTDElement'/>
-      <ref name='xmlTextWriterWriteDTDEntity'/>
-      <ref name='xmlTextWriterWriteDTDExternalEntity'/>
-      <ref name='xmlTextWriterWriteDTDExternalEntityContents'/>
-      <ref name='xmlTextWriterWriteDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteDTDNotation'/>
-      <ref name='xmlTextWriterWriteElement'/>
-      <ref name='xmlTextWriterWriteElementNS'/>
-      <ref name='xmlTextWriterWriteFormatAttribute'/>
-      <ref name='xmlTextWriterWriteFormatAttributeNS'/>
-      <ref name='xmlTextWriterWriteFormatDTD'/>
-      <ref name='xmlTextWriterWriteFormatDTDAttlist'/>
-      <ref name='xmlTextWriterWriteFormatDTDElement'/>
-      <ref name='xmlTextWriterWriteFormatDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteFormatElement'/>
-      <ref name='xmlTextWriterWriteFormatElementNS'/>
-      <ref name='xmlTextWriterWriteFormatPI'/>
-      <ref name='xmlTextWriterWritePI'/>
-      <ref name='xmlTextWriterWriteRaw'/>
-      <ref name='xmlTextWriterWriteRawLen'/>
-      <ref name='xmlTextWriterWriteString'/>
-      <ref name='xmlTextWriterWriteVFormatAttribute'/>
-      <ref name='xmlTextWriterWriteVFormatAttributeNS'/>
-      <ref name='xmlTextWriterWriteVFormatDTD'/>
-      <ref name='xmlTextWriterWriteVFormatDTDAttlist'/>
-      <ref name='xmlTextWriterWriteVFormatDTDElement'/>
-      <ref name='xmlTextWriterWriteVFormatDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteVFormatElement'/>
-      <ref name='xmlTextWriterWriteVFormatElementNS'/>
-      <ref name='xmlTextWriterWriteVFormatPI'/>
-      <ref name='xmlURIEscape'/>
-      <ref name='xmlURIEscapeStr'/>
-      <ref name='xmlUTF8Charcmp'/>
-      <ref name='xmlUTF8Size'/>
-      <ref name='xmlUTF8Strlen'/>
-      <ref name='xmlUTF8Strloc'/>
-      <ref name='xmlUTF8Strndup'/>
-      <ref name='xmlUTF8Strpos'/>
-      <ref name='xmlUTF8Strsize'/>
-      <ref name='xmlUTF8Strsub'/>
-      <ref name='xmlUnsetNsProp'/>
-      <ref name='xmlUnsetProp'/>
-      <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-      <ref name='xmlValidNormalizeAttributeValue'/>
-      <ref name='xmlValidateAttributeValue'/>
-      <ref name='xmlValidateNCName'/>
-      <ref name='xmlValidateNMToken'/>
-      <ref name='xmlValidateName'/>
-      <ref name='xmlValidateNameValue'/>
-      <ref name='xmlValidateNamesValue'/>
-      <ref name='xmlValidateNmtokenValue'/>
-      <ref name='xmlValidateNmtokensValue'/>
-      <ref name='xmlValidateNotationUse'/>
-      <ref name='xmlValidateOneAttribute'/>
-      <ref name='xmlValidateOneNamespace'/>
-      <ref name='xmlValidatePopElement'/>
-      <ref name='xmlValidatePushCData'/>
-      <ref name='xmlValidatePushElement'/>
-      <ref name='xmlValidateQName'/>
-      <ref name='xmlXPathCastStringToBoolean'/>
-      <ref name='xmlXPathCastStringToNumber'/>
-      <ref name='xmlXPathCompile'/>
-      <ref name='xmlXPathCtxtCompile'/>
-      <ref name='xmlXPathEval'/>
-      <ref name='xmlXPathEvalExpression'/>
-      <ref name='xmlXPathFuncLookupFunc'/>
-      <ref name='xmlXPathFunctionLookup'/>
-      <ref name='xmlXPathFunctionLookupNS'/>
-      <ref name='xmlXPathIsNodeType'/>
-      <ref name='xmlXPathNewParserContext'/>
-      <ref name='xmlXPathNewString'/>
-      <ref name='xmlXPathNodeEval'/>
-      <ref name='xmlXPathNsLookup'/>
-      <ref name='xmlXPathRegisterFunc'/>
-      <ref name='xmlXPathRegisterFuncNS'/>
-      <ref name='xmlXPathRegisterNs'/>
-      <ref name='xmlXPathRegisterVariable'/>
-      <ref name='xmlXPathRegisterVariableNS'/>
-      <ref name='xmlXPathStringEvalNumber'/>
-      <ref name='xmlXPathVariableLookup'/>
-      <ref name='xmlXPathVariableLookupFunc'/>
-      <ref name='xmlXPathVariableLookupNS'/>
-      <ref name='xmlXPtrEval'/>
-    </type>
-    <type name='const xmlChar **'>
-      <ref name='htmlParseEntityRef'/>
-      <ref name='startElement'/>
-      <ref name='startElementNsSAX2Func'/>
-      <ref name='startElementSAXFunc'/>
-      <ref name='xlinkExtendedLinkFunk'/>
-      <ref name='xlinkExtendedLinkSetFunk'/>
-      <ref name='xmlExpGetLanguage'/>
-      <ref name='xmlExpGetStart'/>
-      <ref name='xmlPatterncompile'/>
-      <ref name='xmlRegExecErrInfo'/>
-      <ref name='xmlSAX2StartElement'/>
-      <ref name='xmlSAX2StartElementNs'/>
-      <ref name='xmlSchemaGetCanonValue'/>
-      <ref name='xmlSchemaGetCanonValueWhtsp'/>
-      <ref name='xmlTextReaderPreservePattern'/>
-      <ref name='xmlValidGetPotentialChildren'/>
-      <ref name='xmlValidGetValidElements'/>
-    </type>
-    <type name='const xmlDoc *'>
-      <ref name='xmlDocGetRootElement'/>
-      <ref name='xmlEncodeSpecialChars'/>
-      <ref name='xmlGetDocCompressMode'/>
-      <ref name='xmlGetDocEntity'/>
-      <ref name='xmlGetIntSubset'/>
-      <ref name='xmlGetNsList'/>
-      <ref name='xmlNewDocText'/>
-      <ref name='xmlNewReference'/>
-      <ref name='xmlNodeGetBase'/>
-      <ref name='xmlNodeListGetRawString'/>
-      <ref name='xmlStringGetNodeList'/>
-      <ref name='xmlStringLenGetNodeList'/>
-    </type>
-    <type name='const xmlListPtr'>
-      <ref name='xmlListCopy'/>
-      <ref name='xmlListDup'/>
-    </type>
-    <type name='const xmlNode *'>
-      <ref name='xmlBufGetNodeContent'/>
-      <ref name='xmlGetLastChild'/>
-      <ref name='xmlGetLineNo'/>
-      <ref name='xmlGetNoNsProp'/>
-      <ref name='xmlGetNodePath'/>
-      <ref name='xmlGetNsList'/>
-      <ref name='xmlGetNsProp'/>
-      <ref name='xmlGetProp'/>
-      <ref name='xmlHasNsProp'/>
-      <ref name='xmlHasProp'/>
-      <ref name='xmlIsBlankNode'/>
-      <ref name='xmlNodeBufGetContent'/>
-      <ref name='xmlNodeGetBase'/>
-      <ref name='xmlNodeGetContent'/>
-      <ref name='xmlNodeGetLang'/>
-      <ref name='xmlNodeGetSpacePreserve'/>
-      <ref name='xmlNodeIsText'/>
-      <ref name='xmlNodeListGetRawString'/>
-      <ref name='xmlNodeListGetString'/>
-    </type>
-    <type name='const xmlNodePtr'>
-      <ref name='xmlParserFindNodeInfo'/>
-      <ref name='xmlParserFindNodeInfoIndex'/>
-    </type>
-    <type name='const xmlParserCtxtPtr'>
-      <ref name='xmlParserFindNodeInfo'/>
-    </type>
-    <type name='const xmlParserNodeInfoPtr'>
-      <ref name='xmlParserAddNodeInfo'/>
-    </type>
-    <type name='const xmlParserNodeInfoSeqPtr'>
-      <ref name='xmlParserFindNodeInfoIndex'/>
-    </type>
-    <type name='double'>
-      <ref name='xmlXPathCastNumberToBoolean'/>
-      <ref name='xmlXPathCastNumberToString'/>
-      <ref name='xmlXPathIsInf'/>
-      <ref name='xmlXPathIsNaN'/>
-      <ref name='xmlXPathNewFloat'/>
-    </type>
-    <type name='ftpDataCallback'>
-      <ref name='xmlNanoFTPGet'/>
-    </type>
-    <type name='ftpListCallback'>
-      <ref name='xmlNanoFTPList'/>
-    </type>
-    <type name='htmlDocPtr'>
-      <ref name='htmlAutoCloseTag'/>
-      <ref name='htmlGetMetaEncoding'/>
-      <ref name='htmlIsAutoClosed'/>
-      <ref name='htmlSetMetaEncoding'/>
-    </type>
-    <type name='htmlNodePtr'>
-      <ref name='htmlAutoCloseTag'/>
-      <ref name='htmlIsAutoClosed'/>
-    </type>
-    <type name='htmlParserCtxtPtr'>
-      <ref name='htmlCtxtReadDoc'/>
-      <ref name='htmlCtxtReadFd'/>
-      <ref name='htmlCtxtReadFile'/>
-      <ref name='htmlCtxtReadIO'/>
-      <ref name='htmlCtxtReadMemory'/>
-      <ref name='htmlCtxtReset'/>
-      <ref name='htmlCtxtUseOptions'/>
-      <ref name='htmlFreeParserCtxt'/>
-      <ref name='htmlParseCharRef'/>
-      <ref name='htmlParseChunk'/>
-      <ref name='htmlParseDocument'/>
-      <ref name='htmlParseElement'/>
-      <ref name='htmlParseEntityRef'/>
-    </type>
-    <type name='htmlSAXHandlerPtr'>
-      <ref name='htmlCreatePushParserCtxt'/>
-      <ref name='htmlSAXParseDoc'/>
-      <ref name='htmlSAXParseFile'/>
-    </type>
-    <type name='int *'>
-      <ref name='UTF8ToHtml'/>
-      <ref name='UTF8Toisolat1'/>
-      <ref name='htmlDocDumpMemory'/>
-      <ref name='htmlDocDumpMemoryFormat'/>
-      <ref name='htmlEncodeEntities'/>
-      <ref name='isolat1ToUTF8'/>
-      <ref name='xmlCharEncodingInputFunc'/>
-      <ref name='xmlCharEncodingOutputFunc'/>
-      <ref name='xmlCurrentChar'/>
-      <ref name='xmlDocDumpFormatMemory'/>
-      <ref name='xmlDocDumpFormatMemoryEnc'/>
-      <ref name='xmlDocDumpMemory'/>
-      <ref name='xmlDocDumpMemoryEnc'/>
-      <ref name='xmlGetFeaturesList'/>
-      <ref name='xmlGetUTF8Char'/>
-      <ref name='xmlRegExecErrInfo'/>
-      <ref name='xmlRegExecNextValues'/>
-      <ref name='xmlSplitQName3'/>
-      <ref name='xmlStringCurrentChar'/>
-      <ref name='xmlValidGetPotentialChildren'/>
-    </type>
-    <type name='long'>
-      <ref name='xmlMemDisplayLast'/>
-    </type>
-    <type name='size_t'>
-      <ref name='xmlBufShrink'/>
-      <ref name='xmlBufferCreateSize'/>
-      <ref name='xmlBufferCreateStatic'/>
-      <ref name='xmlDictSetLimit'/>
-      <ref name='xmlMallocAtomicLoc'/>
-      <ref name='xmlMallocFunc'/>
-      <ref name='xmlMallocLoc'/>
-      <ref name='xmlMemMalloc'/>
-      <ref name='xmlMemRealloc'/>
-      <ref name='xmlReallocFunc'/>
-      <ref name='xmlReallocLoc'/>
-    </type>
-    <type name='unsigned char *'>
-      <ref name='UTF8ToHtml'/>
-      <ref name='UTF8Toisolat1'/>
-      <ref name='htmlEncodeEntities'/>
-      <ref name='isolat1ToUTF8'/>
-      <ref name='xmlCharEncodingInputFunc'/>
-      <ref name='xmlCharEncodingOutputFunc'/>
-    </type>
-    <type name='unsigned int'>
-      <ref name='htmlEntityValueLookup'/>
-      <ref name='xmlBufferGrow'/>
-      <ref name='xmlBufferResize'/>
-      <ref name='xmlBufferShrink'/>
-      <ref name='xmlCharInRange'/>
-      <ref name='xmlIsBaseChar'/>
-      <ref name='xmlIsBlank'/>
-      <ref name='xmlIsChar'/>
-      <ref name='xmlIsCombining'/>
-      <ref name='xmlIsDigit'/>
-      <ref name='xmlIsExtender'/>
-      <ref name='xmlIsIdeographic'/>
-      <ref name='xmlIsPubidChar'/>
-    </type>
-    <type name='unsigned long'>
-      <ref name='ftpListCallback'/>
-      <ref name='xmlDllMain'/>
-      <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-    </type>
-    <type name='unsigned long *'>
-      <ref name='xmlSchemaValidateLengthFacet'/>
-      <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-      <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-      <ref name='xmlSchemaValidityLocatorFunc'/>
-    </type>
-    <type name='va_list'>
-      <ref name='xmlStrVPrintf'/>
-      <ref name='xmlTextWriterWriteVFormatAttribute'/>
-      <ref name='xmlTextWriterWriteVFormatAttributeNS'/>
-      <ref name='xmlTextWriterWriteVFormatCDATA'/>
-      <ref name='xmlTextWriterWriteVFormatComment'/>
-      <ref name='xmlTextWriterWriteVFormatDTD'/>
-      <ref name='xmlTextWriterWriteVFormatDTDAttlist'/>
-      <ref name='xmlTextWriterWriteVFormatDTDElement'/>
-      <ref name='xmlTextWriterWriteVFormatDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteVFormatElement'/>
-      <ref name='xmlTextWriterWriteVFormatElementNS'/>
-      <ref name='xmlTextWriterWriteVFormatPI'/>
-      <ref name='xmlTextWriterWriteVFormatRaw'/>
-      <ref name='xmlTextWriterWriteVFormatString'/>
-    </type>
-    <type name='void *'>
-      <ref name='attribute'/>
-      <ref name='attributeDecl'/>
-      <ref name='attributeDeclSAXFunc'/>
-      <ref name='attributeSAXFunc'/>
-      <ref name='cdataBlock'/>
-      <ref name='cdataBlockSAXFunc'/>
-      <ref name='characters'/>
-      <ref name='charactersSAXFunc'/>
-      <ref name='checkNamespace'/>
-      <ref name='comment'/>
-      <ref name='commentSAXFunc'/>
-      <ref name='elementDecl'/>
-      <ref name='elementDeclSAXFunc'/>
-      <ref name='endDocument'/>
-      <ref name='endDocumentSAXFunc'/>
-      <ref name='endElement'/>
-      <ref name='endElementNsSAX2Func'/>
-      <ref name='endElementSAXFunc'/>
-      <ref name='entityDecl'/>
-      <ref name='entityDeclSAXFunc'/>
-      <ref name='errorSAXFunc'/>
-      <ref name='externalSubset'/>
-      <ref name='externalSubsetSAXFunc'/>
-      <ref name='fatalErrorSAXFunc'/>
-      <ref name='ftpDataCallback'/>
-      <ref name='ftpListCallback'/>
-      <ref name='getColumnNumber'/>
-      <ref name='getEntity'/>
-      <ref name='getEntitySAXFunc'/>
-      <ref name='getLineNumber'/>
-      <ref name='getNamespace'/>
-      <ref name='getParameterEntity'/>
-      <ref name='getParameterEntitySAXFunc'/>
-      <ref name='getPublicId'/>
-      <ref name='getSystemId'/>
-      <ref name='globalNamespace'/>
-      <ref name='hasExternalSubset'/>
-      <ref name='hasExternalSubsetSAXFunc'/>
-      <ref name='hasInternalSubset'/>
-      <ref name='hasInternalSubsetSAXFunc'/>
-      <ref name='htmlCreatePushParserCtxt'/>
-      <ref name='htmlCtxtReadIO'/>
-      <ref name='htmlReadIO'/>
-      <ref name='htmlSAXParseDoc'/>
-      <ref name='htmlSAXParseFile'/>
-      <ref name='ignorableWhitespace'/>
-      <ref name='ignorableWhitespaceSAXFunc'/>
-      <ref name='internalSubset'/>
-      <ref name='internalSubsetSAXFunc'/>
-      <ref name='isStandalone'/>
-      <ref name='isStandaloneSAXFunc'/>
-      <ref name='namespaceDecl'/>
-      <ref name='notationDecl'/>
-      <ref name='notationDeclSAXFunc'/>
-      <ref name='processingInstruction'/>
-      <ref name='processingInstructionSAXFunc'/>
-      <ref name='reference'/>
-      <ref name='referenceSAXFunc'/>
-      <ref name='resolveEntity'/>
-      <ref name='resolveEntitySAXFunc'/>
-      <ref name='setDocumentLocator'/>
-      <ref name='setDocumentLocatorSAXFunc'/>
-      <ref name='setNamespace'/>
-      <ref name='startDocument'/>
-      <ref name='startDocumentSAXFunc'/>
-      <ref name='startElement'/>
-      <ref name='startElementNsSAX2Func'/>
-      <ref name='startElementSAXFunc'/>
-      <ref name='unparsedEntityDecl'/>
-      <ref name='unparsedEntityDeclSAXFunc'/>
-      <ref name='warningSAXFunc'/>
-      <ref name='xlinkExtendedLinkFunk'/>
-      <ref name='xlinkExtendedLinkSetFunk'/>
-      <ref name='xlinkNodeDetectFunc'/>
-      <ref name='xlinkSimpleLinkFunk'/>
-      <ref name='xmlAutomataNewCountTrans'/>
-      <ref name='xmlAutomataNewCountTrans2'/>
-      <ref name='xmlAutomataNewNegTrans'/>
-      <ref name='xmlAutomataNewOnceTrans'/>
-      <ref name='xmlAutomataNewOnceTrans2'/>
-      <ref name='xmlAutomataNewTransition'/>
-      <ref name='xmlAutomataNewTransition2'/>
-      <ref name='xmlBufferCreateStatic'/>
-      <ref name='xmlC14NExecute'/>
-      <ref name='xmlC14NIsVisibleCallback'/>
-      <ref name='xmlCatalogAddLocal'/>
-      <ref name='xmlCatalogFreeLocal'/>
-      <ref name='xmlCatalogLocalResolve'/>
-      <ref name='xmlCatalogLocalResolveURI'/>
-      <ref name='xmlCreateIOParserCtxt'/>
-      <ref name='xmlCreatePushParserCtxt'/>
-      <ref name='xmlCtxtGetLastError'/>
-      <ref name='xmlCtxtReadIO'/>
-      <ref name='xmlCtxtResetLastError'/>
-      <ref name='xmlDllMain'/>
-      <ref name='xmlFileClose'/>
-      <ref name='xmlFileRead'/>
-      <ref name='xmlFreeFunc'/>
-      <ref name='xmlGenericErrorFunc'/>
-      <ref name='xmlGetFeature'/>
-      <ref name='xmlHashAddEntry'/>
-      <ref name='xmlHashAddEntry2'/>
-      <ref name='xmlHashAddEntry3'/>
-      <ref name='xmlHashCopier'/>
-      <ref name='xmlHashDeallocator'/>
-      <ref name='xmlHashDefaultDeallocator'/>
-      <ref name='xmlHashScan'/>
-      <ref name='xmlHashScan3'/>
-      <ref name='xmlHashScanFull'/>
-      <ref name='xmlHashScanFull3'/>
-      <ref name='xmlHashScanner'/>
-      <ref name='xmlHashScannerFull'/>
-      <ref name='xmlHashUpdateEntry'/>
-      <ref name='xmlHashUpdateEntry2'/>
-      <ref name='xmlHashUpdateEntry3'/>
-      <ref name='xmlIOFTPClose'/>
-      <ref name='xmlIOFTPRead'/>
-      <ref name='xmlIOHTTPClose'/>
-      <ref name='xmlIOHTTPRead'/>
-      <ref name='xmlInputCloseCallback'/>
-      <ref name='xmlInputReadCallback'/>
-      <ref name='xmlListAppend'/>
-      <ref name='xmlListInsert'/>
-      <ref name='xmlListPushBack'/>
-      <ref name='xmlListPushFront'/>
-      <ref name='xmlListRemoveAll'/>
-      <ref name='xmlListRemoveFirst'/>
-      <ref name='xmlListRemoveLast'/>
-      <ref name='xmlListReverseSearch'/>
-      <ref name='xmlListReverseWalk'/>
-      <ref name='xmlListSearch'/>
-      <ref name='xmlListWalk'/>
-      <ref name='xmlListWalker'/>
-      <ref name='xmlMemFree'/>
-      <ref name='xmlMemRealloc'/>
-      <ref name='xmlNanoFTPCheckResponse'/>
-      <ref name='xmlNanoFTPClose'/>
-      <ref name='xmlNanoFTPCloseConnection'/>
-      <ref name='xmlNanoFTPConnect'/>
-      <ref name='xmlNanoFTPCwd'/>
-      <ref name='xmlNanoFTPDele'/>
-      <ref name='xmlNanoFTPFreeCtxt'/>
-      <ref name='xmlNanoFTPGet'/>
-      <ref name='xmlNanoFTPGetConnection'/>
-      <ref name='xmlNanoFTPGetResponse'/>
-      <ref name='xmlNanoFTPGetSocket'/>
-      <ref name='xmlNanoFTPList'/>
-      <ref name='xmlNanoFTPQuit'/>
-      <ref name='xmlNanoFTPRead'/>
-      <ref name='xmlNanoFTPUpdateURL'/>
-      <ref name='xmlNanoHTTPAuthHeader'/>
-      <ref name='xmlNanoHTTPClose'/>
-      <ref name='xmlNanoHTTPContentLength'/>
-      <ref name='xmlNanoHTTPEncoding'/>
-      <ref name='xmlNanoHTTPMimeType'/>
-      <ref name='xmlNanoHTTPRead'/>
-      <ref name='xmlNanoHTTPRedir'/>
-      <ref name='xmlNanoHTTPReturnCode'/>
-      <ref name='xmlNanoHTTPSave'/>
-      <ref name='xmlOutputBufferCreateIO'/>
-      <ref name='xmlOutputCloseCallback'/>
-      <ref name='xmlOutputWriteCallback'/>
-      <ref name='xmlParseBalancedChunkMemory'/>
-      <ref name='xmlParseBalancedChunkMemoryRecover'/>
-      <ref name='xmlParseExternalEntity'/>
-      <ref name='xmlParserError'/>
-      <ref name='xmlParserInputBufferCreateIO'/>
-      <ref name='xmlParserValidityError'/>
-      <ref name='xmlParserValidityWarning'/>
-      <ref name='xmlParserWarning'/>
-      <ref name='xmlReadIO'/>
-      <ref name='xmlReaderForIO'/>
-      <ref name='xmlReaderNewIO'/>
-      <ref name='xmlReallocFunc'/>
-      <ref name='xmlReallocLoc'/>
-      <ref name='xmlRegExecCallbacks'/>
-      <ref name='xmlRegExecPushString'/>
-      <ref name='xmlRegExecPushString2'/>
-      <ref name='xmlRegNewExecCtxt'/>
-      <ref name='xmlRelaxNGSetParserErrors'/>
-      <ref name='xmlRelaxNGSetParserStructuredErrors'/>
-      <ref name='xmlRelaxNGSetValidErrors'/>
-      <ref name='xmlRelaxNGSetValidStructuredErrors'/>
-      <ref name='xmlRelaxNGValidityErrorFunc'/>
-      <ref name='xmlRelaxNGValidityWarningFunc'/>
-      <ref name='xmlSAX2AttributeDecl'/>
-      <ref name='xmlSAX2CDataBlock'/>
-      <ref name='xmlSAX2Characters'/>
-      <ref name='xmlSAX2Comment'/>
-      <ref name='xmlSAX2ElementDecl'/>
-      <ref name='xmlSAX2EndDocument'/>
-      <ref name='xmlSAX2EndElement'/>
-      <ref name='xmlSAX2EndElementNs'/>
-      <ref name='xmlSAX2EntityDecl'/>
-      <ref name='xmlSAX2ExternalSubset'/>
-      <ref name='xmlSAX2GetColumnNumber'/>
-      <ref name='xmlSAX2GetEntity'/>
-      <ref name='xmlSAX2GetLineNumber'/>
-      <ref name='xmlSAX2GetParameterEntity'/>
-      <ref name='xmlSAX2GetPublicId'/>
-      <ref name='xmlSAX2GetSystemId'/>
-      <ref name='xmlSAX2HasExternalSubset'/>
-      <ref name='xmlSAX2HasInternalSubset'/>
-      <ref name='xmlSAX2IgnorableWhitespace'/>
-      <ref name='xmlSAX2InternalSubset'/>
-      <ref name='xmlSAX2IsStandalone'/>
-      <ref name='xmlSAX2NotationDecl'/>
-      <ref name='xmlSAX2ProcessingInstruction'/>
-      <ref name='xmlSAX2Reference'/>
-      <ref name='xmlSAX2ResolveEntity'/>
-      <ref name='xmlSAX2SetDocumentLocator'/>
-      <ref name='xmlSAX2StartDocument'/>
-      <ref name='xmlSAX2StartElement'/>
-      <ref name='xmlSAX2StartElementNs'/>
-      <ref name='xmlSAX2UnparsedEntityDecl'/>
-      <ref name='xmlSAXParseFileWithData'/>
-      <ref name='xmlSAXParseMemoryWithData'/>
-      <ref name='xmlSAXUserParseFile'/>
-      <ref name='xmlSAXUserParseMemory'/>
-      <ref name='xmlSaveToIO'/>
-      <ref name='xmlSchemaSetParserErrors'/>
-      <ref name='xmlSchemaSetParserStructuredErrors'/>
-      <ref name='xmlSchemaSetValidErrors'/>
-      <ref name='xmlSchemaSetValidStructuredErrors'/>
-      <ref name='xmlSchemaValidateSetLocator'/>
-      <ref name='xmlSchemaValidateStream'/>
-      <ref name='xmlSchemaValidityErrorFunc'/>
-      <ref name='xmlSchemaValidityLocatorFunc'/>
-      <ref name='xmlSchemaValidityWarningFunc'/>
-      <ref name='xmlSchematronSetValidStructuredErrors'/>
-      <ref name='xmlSchematronValidityErrorFunc'/>
-      <ref name='xmlSchematronValidityWarningFunc'/>
-      <ref name='xmlSetFeature'/>
-      <ref name='xmlSetGenericErrorFunc'/>
-      <ref name='xmlSetStructuredErrorFunc'/>
-      <ref name='xmlStructuredErrorFunc'/>
-      <ref name='xmlTextReaderErrorFunc'/>
-      <ref name='xmlTextReaderSetErrorHandler'/>
-      <ref name='xmlTextReaderSetStructuredErrorHandler'/>
-      <ref name='xmlThrDefSetGenericErrorFunc'/>
-      <ref name='xmlThrDefSetStructuredErrorFunc'/>
-      <ref name='xmlValidityErrorFunc'/>
-      <ref name='xmlValidityWarningFunc'/>
-      <ref name='xmlXIncludeProcessFlagsData'/>
-      <ref name='xmlXIncludeProcessTreeFlagsData'/>
-      <ref name='xmlXPathFuncLookupFunc'/>
-      <ref name='xmlXPathRegisterFuncLookup'/>
-      <ref name='xmlXPathRegisterVariableLookup'/>
-      <ref name='xmlXPathVariableLookupFunc'/>
-      <ref name='xmlXPathWrapExternal'/>
-    </type>
-    <type name='void **'>
-      <ref name='xmlModuleSymbol'/>
-      <ref name='xmlRelaxNGGetParserErrors'/>
-      <ref name='xmlRelaxNGGetValidErrors'/>
-      <ref name='xmlSchemaGetParserErrors'/>
-      <ref name='xmlSchemaGetValidErrors'/>
-      <ref name='xmlSchemaSAXPlug'/>
-      <ref name='xmlTextReaderGetErrorHandler'/>
-    </type>
-    <type name='xlinkActuate *'>
-      <ref name='xlinkExtendedLinkFunk'/>
-    </type>
-    <type name='xlinkHandlerPtr'>
-      <ref name='xlinkSetDefaultHandler'/>
-    </type>
-    <type name='xlinkNodeDetectFunc'>
-      <ref name='xlinkSetDefaultDetect'/>
-    </type>
-    <type name='xlinkShow *'>
-      <ref name='xlinkExtendedLinkFunk'/>
-    </type>
-    <type name='xmlAttrPtr'>
-      <ref name='xmlAddID'/>
-      <ref name='xmlAddRef'/>
-      <ref name='xmlAttrSerializeTxtContent'/>
-      <ref name='xmlCopyProp'/>
-      <ref name='xmlCopyPropList'/>
-      <ref name='xmlDebugDumpAttr'/>
-      <ref name='xmlDebugDumpAttrList'/>
-      <ref name='xmlFreeProp'/>
-      <ref name='xmlFreePropList'/>
-      <ref name='xmlIsID'/>
-      <ref name='xmlIsRef'/>
-      <ref name='xmlRemoveID'/>
-      <ref name='xmlRemoveProp'/>
-      <ref name='xmlRemoveRef'/>
-      <ref name='xmlValidateOneAttribute'/>
-    </type>
-    <type name='xmlAttributeDefault'>
-      <ref name='xmlAddAttributeDecl'/>
-    </type>
-    <type name='xmlAttributePtr'>
-      <ref name='xmlDumpAttributeDecl'/>
-      <ref name='xmlValidateAttributeDecl'/>
-    </type>
-    <type name='xmlAttributeTablePtr'>
-      <ref name='xmlCopyAttributeTable'/>
-      <ref name='xmlDumpAttributeTable'/>
-      <ref name='xmlFreeAttributeTable'/>
-    </type>
-    <type name='xmlAttributeType'>
-      <ref name='xmlAddAttributeDecl'/>
-      <ref name='xmlValidateAttributeValue'/>
-    </type>
-    <type name='xmlAutomataPtr'>
-      <ref name='xmlAutomataCompile'/>
-      <ref name='xmlAutomataGetInitState'/>
-      <ref name='xmlAutomataIsDeterminist'/>
-      <ref name='xmlAutomataNewAllTrans'/>
-      <ref name='xmlAutomataNewCountTrans'/>
-      <ref name='xmlAutomataNewCountTrans2'/>
-      <ref name='xmlAutomataNewCountedTrans'/>
-      <ref name='xmlAutomataNewCounter'/>
-      <ref name='xmlAutomataNewCounterTrans'/>
-      <ref name='xmlAutomataNewEpsilon'/>
-      <ref name='xmlAutomataNewNegTrans'/>
-      <ref name='xmlAutomataNewOnceTrans'/>
-      <ref name='xmlAutomataNewOnceTrans2'/>
-      <ref name='xmlAutomataNewState'/>
-      <ref name='xmlAutomataNewTransition'/>
-      <ref name='xmlAutomataNewTransition2'/>
-      <ref name='xmlAutomataSetFinalState'/>
-      <ref name='xmlFreeAutomata'/>
-    </type>
-    <type name='xmlAutomataStatePtr'>
-      <ref name='xmlAutomataNewAllTrans'/>
-      <ref name='xmlAutomataNewCountTrans'/>
-      <ref name='xmlAutomataNewCountTrans2'/>
-      <ref name='xmlAutomataNewCountedTrans'/>
-      <ref name='xmlAutomataNewCounterTrans'/>
-      <ref name='xmlAutomataNewEpsilon'/>
-      <ref name='xmlAutomataNewNegTrans'/>
-      <ref name='xmlAutomataNewOnceTrans'/>
-      <ref name='xmlAutomataNewOnceTrans2'/>
-      <ref name='xmlAutomataNewTransition'/>
-      <ref name='xmlAutomataNewTransition2'/>
-      <ref name='xmlAutomataSetFinalState'/>
-    </type>
-    <type name='xmlBufPtr'>
-      <ref name='xmlBufEnd'/>
-      <ref name='xmlBufGetNodeContent'/>
-      <ref name='xmlBufNodeDump'/>
-      <ref name='xmlBufShrink'/>
-    </type>
-    <type name='xmlBufferAllocationScheme'>
-      <ref name='xmlBufferSetAllocationScheme'/>
-      <ref name='xmlSetBufferAllocationScheme'/>
-      <ref name='xmlThrDefBufferAllocScheme'/>
-    </type>
-    <type name='xmlBufferPtr'>
-      <ref name='htmlNodeDump'/>
-      <ref name='xmlAttrSerializeTxtContent'/>
-      <ref name='xmlBufferAdd'/>
-      <ref name='xmlBufferAddHead'/>
-      <ref name='xmlBufferCCat'/>
-      <ref name='xmlBufferCat'/>
-      <ref name='xmlBufferDetach'/>
-      <ref name='xmlBufferDump'/>
-      <ref name='xmlBufferEmpty'/>
-      <ref name='xmlBufferFree'/>
-      <ref name='xmlBufferGrow'/>
-      <ref name='xmlBufferResize'/>
-      <ref name='xmlBufferSetAllocationScheme'/>
-      <ref name='xmlBufferShrink'/>
-      <ref name='xmlBufferWriteCHAR'/>
-      <ref name='xmlBufferWriteChar'/>
-      <ref name='xmlBufferWriteQuotedString'/>
-      <ref name='xmlCharEncFirstLine'/>
-      <ref name='xmlCharEncInFunc'/>
-      <ref name='xmlCharEncOutFunc'/>
-      <ref name='xmlDumpAttributeDecl'/>
-      <ref name='xmlDumpAttributeTable'/>
-      <ref name='xmlDumpElementDecl'/>
-      <ref name='xmlDumpElementTable'/>
-      <ref name='xmlDumpEntitiesTable'/>
-      <ref name='xmlDumpEntityDecl'/>
-      <ref name='xmlDumpNotationDecl'/>
-      <ref name='xmlDumpNotationTable'/>
-      <ref name='xmlExpDump'/>
-      <ref name='xmlNewTextWriterMemory'/>
-      <ref name='xmlNodeBufGetContent'/>
-      <ref name='xmlNodeDump'/>
-      <ref name='xmlOutputBufferCreateBuffer'/>
-      <ref name='xmlSaveToBuffer'/>
-    </type>
-    <type name='xmlC14NIsVisibleCallback'>
-      <ref name='xmlC14NExecute'/>
-    </type>
-    <type name='xmlCatalogAllow'>
-      <ref name='xmlCatalogSetDefaults'/>
-    </type>
-    <type name='xmlCatalogPrefer'>
-      <ref name='xmlCatalogSetDefaultPrefer'/>
-    </type>
-    <type name='xmlCatalogPtr'>
-      <ref name='xmlACatalogAdd'/>
-      <ref name='xmlACatalogDump'/>
-      <ref name='xmlACatalogRemove'/>
-      <ref name='xmlACatalogResolve'/>
-      <ref name='xmlACatalogResolvePublic'/>
-      <ref name='xmlACatalogResolveSystem'/>
-      <ref name='xmlACatalogResolveURI'/>
-      <ref name='xmlCatalogIsEmpty'/>
-      <ref name='xmlConvertSGMLCatalog'/>
-      <ref name='xmlFreeCatalog'/>
-    </type>
-    <type name='xmlChar'>
-      <ref name='xmlDecodeEntities'/>
-      <ref name='xmlStrchr'/>
-      <ref name='xmlStringDecodeEntities'/>
-      <ref name='xmlStringLenDecodeEntities'/>
-      <ref name='xmlTextWriterSetQuoteChar'/>
-    </type>
-    <type name='xmlChar *'>
-      <ref name='checkNamespace'/>
-      <ref name='entityDecl'/>
-      <ref name='entityDeclSAXFunc'/>
-      <ref name='xmlBuildQName'/>
-      <ref name='xmlCopyChar'/>
-      <ref name='xmlCopyCharMultiByte'/>
-      <ref name='xmlNewDocNodeEatName'/>
-      <ref name='xmlNewNodeEatName'/>
-      <ref name='xmlNewNsPropEatName'/>
-      <ref name='xmlParserInputDeallocate'/>
-      <ref name='xmlSAX2EntityDecl'/>
-      <ref name='xmlStrPrintf'/>
-      <ref name='xmlStrVPrintf'/>
-      <ref name='xmlStrcat'/>
-      <ref name='xmlStrncat'/>
-      <ref name='xmlXPathWrapString'/>
-    </type>
-    <type name='xmlChar **'>
-      <ref name='htmlDocDumpMemory'/>
-      <ref name='htmlDocDumpMemoryFormat'/>
-      <ref name='xmlC14NDocDumpMemory'/>
-      <ref name='xmlC14NDocSave'/>
-      <ref name='xmlC14NDocSaveTo'/>
-      <ref name='xmlC14NExecute'/>
-      <ref name='xmlDocDumpFormatMemory'/>
-      <ref name='xmlDocDumpFormatMemoryEnc'/>
-      <ref name='xmlDocDumpMemory'/>
-      <ref name='xmlDocDumpMemoryEnc'/>
-      <ref name='xmlNamespaceParseQName'/>
-      <ref name='xmlParseAttribute'/>
-      <ref name='xmlParseDefaultDecl'/>
-      <ref name='xmlParseEntityValue'/>
-      <ref name='xmlParseExternalID'/>
-      <ref name='xmlRegExecErrInfo'/>
-      <ref name='xmlRegExecNextValues'/>
-      <ref name='xmlSplitQName'/>
-      <ref name='xmlSplitQName2'/>
-    </type>
-    <type name='xmlCharEncoding'>
-      <ref name='htmlCreatePushParserCtxt'/>
-      <ref name='xmlAllocParserInputBuffer'/>
-      <ref name='xmlCreateIOParserCtxt'/>
-      <ref name='xmlGetCharEncodingHandler'/>
-      <ref name='xmlGetCharEncodingName'/>
-      <ref name='xmlIOParseDTD'/>
-      <ref name='xmlNewIOInputStream'/>
-      <ref name='xmlParserInputBufferCreateFd'/>
-      <ref name='xmlParserInputBufferCreateFile'/>
-      <ref name='xmlParserInputBufferCreateFilename'/>
-      <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-      <ref name='xmlParserInputBufferCreateIO'/>
-      <ref name='xmlParserInputBufferCreateMem'/>
-      <ref name='xmlParserInputBufferCreateStatic'/>
-      <ref name='xmlSchemaValidateStream'/>
-      <ref name='xmlSwitchEncoding'/>
-    </type>
-    <type name='xmlCharEncodingHandler *'>
-      <ref name='xmlCharEncCloseFunc'/>
-      <ref name='xmlCharEncFirstLine'/>
-      <ref name='xmlCharEncInFunc'/>
-      <ref name='xmlCharEncOutFunc'/>
-    </type>
-    <type name='xmlCharEncodingHandlerPtr'>
-      <ref name='xmlAllocOutputBuffer'/>
-      <ref name='xmlOutputBufferCreateBuffer'/>
-      <ref name='xmlOutputBufferCreateFd'/>
-      <ref name='xmlOutputBufferCreateFile'/>
-      <ref name='xmlOutputBufferCreateFilename'/>
-      <ref name='xmlOutputBufferCreateFilenameFunc'/>
-      <ref name='xmlOutputBufferCreateIO'/>
-      <ref name='xmlRegisterCharEncodingHandler'/>
-      <ref name='xmlSwitchInputEncoding'/>
-      <ref name='xmlSwitchToEncoding'/>
-    </type>
-    <type name='xmlCharEncodingInputFunc'>
-      <ref name='xmlNewCharEncodingHandler'/>
-    </type>
-    <type name='xmlCharEncodingOutputFunc'>
-      <ref name='xmlNewCharEncodingHandler'/>
-      <ref name='xmlOutputBufferWriteEscape'/>
-      <ref name='xmlSaveSetAttrEscape'/>
-      <ref name='xmlSaveSetEscape'/>
-    </type>
-    <type name='xmlDOMWrapCtxtPtr'>
-      <ref name='xmlDOMWrapAcquireNsFunction'/>
-      <ref name='xmlDOMWrapAdoptNode'/>
-      <ref name='xmlDOMWrapCloneNode'/>
-      <ref name='xmlDOMWrapFreeCtxt'/>
-      <ref name='xmlDOMWrapReconcileNamespaces'/>
-      <ref name='xmlDOMWrapRemoveNode'/>
-    </type>
-    <type name='xmlDeregisterNodeFunc'>
-      <ref name='xmlDeregisterNodeDefault'/>
-      <ref name='xmlThrDefDeregisterNodeDefault'/>
-    </type>
-    <type name='xmlDict *'>
-      <ref name='xmlPatterncompile'/>
-    </type>
-    <type name='xmlDictPtr'>
-      <ref name='xmlDictCreateSub'/>
-      <ref name='xmlDictExists'/>
-      <ref name='xmlDictFree'/>
-      <ref name='xmlDictGetUsage'/>
-      <ref name='xmlDictLookup'/>
-      <ref name='xmlDictOwns'/>
-      <ref name='xmlDictQLookup'/>
-      <ref name='xmlDictReference'/>
-      <ref name='xmlDictSetLimit'/>
-      <ref name='xmlDictSize'/>
-      <ref name='xmlExpNewCtxt'/>
-      <ref name='xmlHashCreateDict'/>
-    </type>
-    <type name='xmlDocPtr'>
-      <ref name='htmlDocContentDumpFormatOutput'/>
-      <ref name='htmlDocContentDumpOutput'/>
-      <ref name='htmlDocDump'/>
-      <ref name='htmlDocDumpMemory'/>
-      <ref name='htmlDocDumpMemoryFormat'/>
-      <ref name='htmlNodeDump'/>
-      <ref name='htmlNodeDumpFile'/>
-      <ref name='htmlNodeDumpFileFormat'/>
-      <ref name='htmlNodeDumpFormatOutput'/>
-      <ref name='htmlNodeDumpOutput'/>
-      <ref name='htmlSaveFile'/>
-      <ref name='htmlSaveFileEnc'/>
-      <ref name='htmlSaveFileFormat'/>
-      <ref name='xlinkIsLink'/>
-      <ref name='xmlAddDocEntity'/>
-      <ref name='xmlAddDtdEntity'/>
-      <ref name='xmlAddID'/>
-      <ref name='xmlAddRef'/>
-      <ref name='xmlAttrSerializeTxtContent'/>
-      <ref name='xmlBufNodeDump'/>
-      <ref name='xmlC14NDocDumpMemory'/>
-      <ref name='xmlC14NDocSave'/>
-      <ref name='xmlC14NDocSaveTo'/>
-      <ref name='xmlC14NExecute'/>
-      <ref name='xmlCopyDoc'/>
-      <ref name='xmlCopyDocElementContent'/>
-      <ref name='xmlCreateIntSubset'/>
-      <ref name='xmlDOMWrapAdoptNode'/>
-      <ref name='xmlDOMWrapCloneNode'/>
-      <ref name='xmlDOMWrapRemoveNode'/>
-      <ref name='xmlDebugCheckDocument'/>
-      <ref name='xmlDebugDumpDocument'/>
-      <ref name='xmlDebugDumpDocumentHead'/>
-      <ref name='xmlDebugDumpEntities'/>
-      <ref name='xmlDocCopyNode'/>
-      <ref name='xmlDocCopyNodeList'/>
-      <ref name='xmlDocDump'/>
-      <ref name='xmlDocDumpFormatMemory'/>
-      <ref name='xmlDocDumpFormatMemoryEnc'/>
-      <ref name='xmlDocDumpMemory'/>
-      <ref name='xmlDocDumpMemoryEnc'/>
-      <ref name='xmlDocFormatDump'/>
-      <ref name='xmlDocSetRootElement'/>
-      <ref name='xmlElemDump'/>
-      <ref name='xmlEncodeEntities'/>
-      <ref name='xmlEncodeEntitiesReentrant'/>
-      <ref name='xmlFreeDoc'/>
-      <ref name='xmlFreeDocElementContent'/>
-      <ref name='xmlGetDtdEntity'/>
-      <ref name='xmlGetID'/>
-      <ref name='xmlGetParameterEntity'/>
-      <ref name='xmlGetRefs'/>
-      <ref name='xmlIsID'/>
-      <ref name='xmlIsMixedElement'/>
-      <ref name='xmlIsRef'/>
-      <ref name='xmlNewCDataBlock'/>
-      <ref name='xmlNewCharRef'/>
-      <ref name='xmlNewDocComment'/>
-      <ref name='xmlNewDocElementContent'/>
-      <ref name='xmlNewDocFragment'/>
-      <ref name='xmlNewDocNode'/>
-      <ref name='xmlNewDocNodeEatName'/>
-      <ref name='xmlNewDocPI'/>
-      <ref name='xmlNewDocProp'/>
-      <ref name='xmlNewDocRawNode'/>
-      <ref name='xmlNewDocTextLen'/>
-      <ref name='xmlNewDtd'/>
-      <ref name='xmlNewEntity'/>
-      <ref name='xmlNewGlobalNs'/>
-      <ref name='xmlNewTextWriterTree'/>
-      <ref name='xmlNodeDump'/>
-      <ref name='xmlNodeDumpOutput'/>
-      <ref name='xmlNodeListGetString'/>
-      <ref name='xmlParseBalancedChunkMemory'/>
-      <ref name='xmlParseBalancedChunkMemoryRecover'/>
-      <ref name='xmlParseExternalEntity'/>
-      <ref name='xmlReaderNewWalker'/>
-      <ref name='xmlReaderWalker'/>
-      <ref name='xmlReconciliateNs'/>
-      <ref name='xmlRelaxNGNewDocParserCtxt'/>
-      <ref name='xmlRelaxNGValidateDoc'/>
-      <ref name='xmlRelaxNGValidateFullElement'/>
-      <ref name='xmlRelaxNGValidatePopElement'/>
-      <ref name='xmlRelaxNGValidatePushElement'/>
-      <ref name='xmlRemoveID'/>
-      <ref name='xmlRemoveRef'/>
-      <ref name='xmlSaveDoc'/>
-      <ref name='xmlSaveFile'/>
-      <ref name='xmlSaveFileEnc'/>
-      <ref name='xmlSaveFileTo'/>
-      <ref name='xmlSaveFormatFile'/>
-      <ref name='xmlSaveFormatFileEnc'/>
-      <ref name='xmlSaveFormatFileTo'/>
-      <ref name='xmlSchemaNewDocParserCtxt'/>
-      <ref name='xmlSchemaValidateDoc'/>
-      <ref name='xmlSchematronNewDocParserCtxt'/>
-      <ref name='xmlSchematronValidateDoc'/>
-      <ref name='xmlSearchNs'/>
-      <ref name='xmlSearchNsByHref'/>
-      <ref name='xmlSetDocCompressMode'/>
-      <ref name='xmlSetListDoc'/>
-      <ref name='xmlSetTreeDoc'/>
-      <ref name='xmlShell'/>
-      <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-      <ref name='xmlValidNormalizeAttributeValue'/>
-      <ref name='xmlValidateAttributeDecl'/>
-      <ref name='xmlValidateDocument'/>
-      <ref name='xmlValidateDocumentFinal'/>
-      <ref name='xmlValidateDtd'/>
-      <ref name='xmlValidateDtdFinal'/>
-      <ref name='xmlValidateElement'/>
-      <ref name='xmlValidateElementDecl'/>
-      <ref name='xmlValidateNotationDecl'/>
-      <ref name='xmlValidateNotationUse'/>
-      <ref name='xmlValidateOneAttribute'/>
-      <ref name='xmlValidateOneElement'/>
-      <ref name='xmlValidateOneNamespace'/>
-      <ref name='xmlValidatePopElement'/>
-      <ref name='xmlValidatePushElement'/>
-      <ref name='xmlValidateRoot'/>
-      <ref name='xmlXIncludeNewContext'/>
-      <ref name='xmlXIncludeProcess'/>
-      <ref name='xmlXIncludeProcessFlags'/>
-      <ref name='xmlXIncludeProcessFlagsData'/>
-      <ref name='xmlXPathNewContext'/>
-      <ref name='xmlXPathOrderDocElems'/>
-      <ref name='xmlXPtrNewContext'/>
-    </type>
-    <type name='xmlDocPtr *'>
-      <ref name='xmlNewTextWriterDoc'/>
-    </type>
-    <type name='xmlDtdPtr'>
-      <ref name='xmlAddAttributeDecl'/>
-      <ref name='xmlAddElementDecl'/>
-      <ref name='xmlAddNotationDecl'/>
-      <ref name='xmlCopyDtd'/>
-      <ref name='xmlDebugDumpDTD'/>
-      <ref name='xmlFreeDtd'/>
-      <ref name='xmlGetDtdAttrDesc'/>
-      <ref name='xmlGetDtdElementDesc'/>
-      <ref name='xmlGetDtdNotationDesc'/>
-      <ref name='xmlGetDtdQAttrDesc'/>
-      <ref name='xmlGetDtdQElementDesc'/>
-      <ref name='xmlValidateDtd'/>
-    </type>
-    <type name='xmlElementContent *'>
-      <ref name='xmlValidGetPotentialChildren'/>
-    </type>
-    <type name='xmlElementContentPtr'>
-      <ref name='elementDecl'/>
-      <ref name='elementDeclSAXFunc'/>
-      <ref name='xmlAddElementDecl'/>
-      <ref name='xmlCopyDocElementContent'/>
-      <ref name='xmlCopyElementContent'/>
-      <ref name='xmlFreeDocElementContent'/>
-      <ref name='xmlFreeElementContent'/>
-      <ref name='xmlSAX2ElementDecl'/>
-      <ref name='xmlSnprintfElementContent'/>
-      <ref name='xmlSprintfElementContent'/>
-    </type>
-    <type name='xmlElementContentPtr *'>
-      <ref name='xmlParseElementContentDecl'/>
-    </type>
-    <type name='xmlElementContentType'>
-      <ref name='xmlNewDocElementContent'/>
-      <ref name='xmlNewElementContent'/>
-    </type>
-    <type name='xmlElementPtr'>
-      <ref name='xmlDumpElementDecl'/>
-      <ref name='xmlValidBuildContentModel'/>
-      <ref name='xmlValidateElementDecl'/>
-    </type>
-    <type name='xmlElementTablePtr'>
-      <ref name='xmlCopyElementTable'/>
-      <ref name='xmlDumpElementTable'/>
-      <ref name='xmlFreeElementTable'/>
-    </type>
-    <type name='xmlElementTypeVal'>
-      <ref name='xmlAddElementDecl'/>
-    </type>
-    <type name='xmlEntitiesTablePtr'>
-      <ref name='xmlCopyEntitiesTable'/>
-      <ref name='xmlDumpEntitiesTable'/>
-      <ref name='xmlFreeEntitiesTable'/>
-    </type>
-    <type name='xmlEntityPtr'>
-      <ref name='xmlDumpEntityDecl'/>
-      <ref name='xmlEntityReferenceFunc'/>
-      <ref name='xmlHandleEntity'/>
-      <ref name='xmlNewEntityInputStream'/>
-    </type>
-    <type name='xmlEntityReferenceFunc'>
-      <ref name='xmlSetEntityReferenceFunc'/>
-    </type>
-    <type name='xmlEnumerationPtr'>
-      <ref name='attributeDecl'/>
-      <ref name='attributeDeclSAXFunc'/>
-      <ref name='xmlAddAttributeDecl'/>
-      <ref name='xmlCopyEnumeration'/>
-      <ref name='xmlFreeEnumeration'/>
-      <ref name='xmlSAX2AttributeDecl'/>
-    </type>
-    <type name='xmlEnumerationPtr *'>
-      <ref name='xmlParseAttributeType'/>
-      <ref name='xmlParseEnumeratedType'/>
-    </type>
-    <type name='xmlErrorPtr'>
-      <ref name='xmlCopyError'/>
-      <ref name='xmlResetError'/>
-      <ref name='xmlStructuredErrorFunc'/>
-    </type>
-    <type name='xmlExpCtxtPtr'>
-      <ref name='xmlExpCtxtNbCons'/>
-      <ref name='xmlExpCtxtNbNodes'/>
-      <ref name='xmlExpExpDerive'/>
-      <ref name='xmlExpFree'/>
-      <ref name='xmlExpFreeCtxt'/>
-      <ref name='xmlExpGetLanguage'/>
-      <ref name='xmlExpGetStart'/>
-      <ref name='xmlExpNewAtom'/>
-      <ref name='xmlExpNewOr'/>
-      <ref name='xmlExpNewRange'/>
-      <ref name='xmlExpNewSeq'/>
-      <ref name='xmlExpParse'/>
-      <ref name='xmlExpStringDerive'/>
-      <ref name='xmlExpSubsume'/>
-    </type>
-    <type name='xmlExpNodePtr'>
-      <ref name='xmlExpDump'/>
-      <ref name='xmlExpExpDerive'/>
-      <ref name='xmlExpFree'/>
-      <ref name='xmlExpGetLanguage'/>
-      <ref name='xmlExpGetStart'/>
-      <ref name='xmlExpIsNillable'/>
-      <ref name='xmlExpMaxToken'/>
-      <ref name='xmlExpNewOr'/>
-      <ref name='xmlExpNewRange'/>
-      <ref name='xmlExpNewSeq'/>
-      <ref name='xmlExpRef'/>
-      <ref name='xmlExpStringDerive'/>
-      <ref name='xmlExpSubsume'/>
-    </type>
-    <type name='xmlExternalEntityLoader'>
-      <ref name='xmlSetExternalEntityLoader'/>
-    </type>
-    <type name='xmlFeature'>
-      <ref name='xmlHasFeature'/>
-    </type>
-    <type name='xmlFreeFunc'>
-      <ref name='xmlGcMemSetup'/>
-      <ref name='xmlMemSetup'/>
-    </type>
-    <type name='xmlFreeFunc *'>
-      <ref name='xmlGcMemGet'/>
-      <ref name='xmlMemGet'/>
-    </type>
-    <type name='xmlGenericErrorFunc'>
-      <ref name='xmlSetGenericErrorFunc'/>
-      <ref name='xmlThrDefSetGenericErrorFunc'/>
-    </type>
-    <type name='xmlGenericErrorFunc *'>
-      <ref name='initGenericErrorDefaultFunc'/>
-    </type>
-    <type name='xmlGlobalStatePtr'>
-      <ref name='xmlInitializeGlobalState'/>
-    </type>
-    <type name='xmlHashCopier'>
-      <ref name='xmlHashCopy'/>
-    </type>
-    <type name='xmlHashDeallocator'>
-      <ref name='xmlHashFree'/>
-      <ref name='xmlHashRemoveEntry'/>
-      <ref name='xmlHashRemoveEntry2'/>
-      <ref name='xmlHashRemoveEntry3'/>
-      <ref name='xmlHashUpdateEntry'/>
-      <ref name='xmlHashUpdateEntry2'/>
-      <ref name='xmlHashUpdateEntry3'/>
-    </type>
-    <type name='xmlHashScanner'>
-      <ref name='xmlHashScan'/>
-      <ref name='xmlHashScan3'/>
-    </type>
-    <type name='xmlHashScannerFull'>
-      <ref name='xmlHashScanFull'/>
-      <ref name='xmlHashScanFull3'/>
-    </type>
-    <type name='xmlHashTablePtr'>
-      <ref name='xmlHashAddEntry'/>
-      <ref name='xmlHashAddEntry2'/>
-      <ref name='xmlHashAddEntry3'/>
-      <ref name='xmlHashCopy'/>
-      <ref name='xmlHashFree'/>
-      <ref name='xmlHashLookup'/>
-      <ref name='xmlHashLookup2'/>
-      <ref name='xmlHashLookup3'/>
-      <ref name='xmlHashQLookup'/>
-      <ref name='xmlHashQLookup2'/>
-      <ref name='xmlHashQLookup3'/>
-      <ref name='xmlHashRemoveEntry'/>
-      <ref name='xmlHashRemoveEntry2'/>
-      <ref name='xmlHashRemoveEntry3'/>
-      <ref name='xmlHashScan'/>
-      <ref name='xmlHashScan3'/>
-      <ref name='xmlHashScanFull'/>
-      <ref name='xmlHashScanFull3'/>
-      <ref name='xmlHashSize'/>
-      <ref name='xmlHashUpdateEntry'/>
-      <ref name='xmlHashUpdateEntry2'/>
-      <ref name='xmlHashUpdateEntry3'/>
-    </type>
-    <type name='xmlIDTablePtr'>
-      <ref name='xmlFreeIDTable'/>
-    </type>
-    <type name='xmlInputCloseCallback'>
-      <ref name='htmlCtxtReadIO'/>
-      <ref name='htmlReadIO'/>
-      <ref name='xmlCreateIOParserCtxt'/>
-      <ref name='xmlCtxtReadIO'/>
-      <ref name='xmlParserInputBufferCreateIO'/>
-      <ref name='xmlReadIO'/>
-      <ref name='xmlReaderForIO'/>
-      <ref name='xmlReaderNewIO'/>
-      <ref name='xmlRegisterInputCallbacks'/>
-    </type>
-    <type name='xmlInputMatchCallback'>
-      <ref name='xmlRegisterInputCallbacks'/>
-    </type>
-    <type name='xmlInputOpenCallback'>
-      <ref name='xmlRegisterInputCallbacks'/>
-    </type>
-    <type name='xmlInputReadCallback'>
-      <ref name='htmlCtxtReadIO'/>
-      <ref name='htmlReadIO'/>
-      <ref name='xmlCreateIOParserCtxt'/>
-      <ref name='xmlCtxtReadIO'/>
-      <ref name='xmlParserInputBufferCreateIO'/>
-      <ref name='xmlReadIO'/>
-      <ref name='xmlReaderForIO'/>
-      <ref name='xmlReaderNewIO'/>
-      <ref name='xmlRegisterInputCallbacks'/>
-    </type>
-    <type name='xmlLinkPtr'>
-      <ref name='xmlLinkGetData'/>
-      <ref name='xmlListDeallocator'/>
-    </type>
-    <type name='xmlListDataCompare'>
-      <ref name='xmlListCreate'/>
-    </type>
-    <type name='xmlListDeallocator'>
-      <ref name='xmlListCreate'/>
-    </type>
-    <type name='xmlListPtr'>
-      <ref name='xmlListAppend'/>
-      <ref name='xmlListClear'/>
-      <ref name='xmlListCopy'/>
-      <ref name='xmlListDelete'/>
-      <ref name='xmlListEmpty'/>
-      <ref name='xmlListEnd'/>
-      <ref name='xmlListFront'/>
-      <ref name='xmlListInsert'/>
-      <ref name='xmlListMerge'/>
-      <ref name='xmlListPopBack'/>
-      <ref name='xmlListPopFront'/>
-      <ref name='xmlListPushBack'/>
-      <ref name='xmlListPushFront'/>
-      <ref name='xmlListRemoveAll'/>
-      <ref name='xmlListRemoveFirst'/>
-      <ref name='xmlListRemoveLast'/>
-      <ref name='xmlListReverse'/>
-      <ref name='xmlListReverseSearch'/>
-      <ref name='xmlListReverseWalk'/>
-      <ref name='xmlListSearch'/>
-      <ref name='xmlListSize'/>
-      <ref name='xmlListSort'/>
-      <ref name='xmlListWalk'/>
-    </type>
-    <type name='xmlListWalker'>
-      <ref name='xmlListReverseWalk'/>
-      <ref name='xmlListWalk'/>
-    </type>
-    <type name='xmlLocationSetPtr'>
-      <ref name='xmlXPtrFreeLocationSet'/>
-      <ref name='xmlXPtrLocationSetAdd'/>
-      <ref name='xmlXPtrLocationSetDel'/>
-      <ref name='xmlXPtrLocationSetMerge'/>
-      <ref name='xmlXPtrLocationSetRemove'/>
-      <ref name='xmlXPtrWrapLocationSet'/>
-    </type>
-    <type name='xmlMallocFunc'>
-      <ref name='xmlGcMemSetup'/>
-      <ref name='xmlMemSetup'/>
-    </type>
-    <type name='xmlMallocFunc *'>
-      <ref name='xmlGcMemGet'/>
-      <ref name='xmlMemGet'/>
-    </type>
-    <type name='xmlModulePtr'>
-      <ref name='xmlModuleClose'/>
-      <ref name='xmlModuleFree'/>
-      <ref name='xmlModuleSymbol'/>
-    </type>
-    <type name='xmlMutexPtr'>
-      <ref name='xmlFreeMutex'/>
-      <ref name='xmlMutexLock'/>
-      <ref name='xmlMutexUnlock'/>
-    </type>
-    <type name='xmlNode *'>
-      <ref name='xmlValidGetValidElements'/>
-    </type>
-    <type name='xmlNodePtr'>
-      <ref name='htmlNodeDump'/>
-      <ref name='htmlNodeDumpFile'/>
-      <ref name='htmlNodeDumpFileFormat'/>
-      <ref name='htmlNodeDumpFormatOutput'/>
-      <ref name='htmlNodeDumpOutput'/>
-      <ref name='nodePush'/>
-      <ref name='xlinkExtendedLinkFunk'/>
-      <ref name='xlinkExtendedLinkSetFunk'/>
-      <ref name='xlinkIsLink'/>
-      <ref name='xlinkNodeDetectFunc'/>
-      <ref name='xlinkSimpleLinkFunk'/>
-      <ref name='xmlAddChild'/>
-      <ref name='xmlAddChildList'/>
-      <ref name='xmlAddNextSibling'/>
-      <ref name='xmlAddPrevSibling'/>
-      <ref name='xmlAddSibling'/>
-      <ref name='xmlBufNodeDump'/>
-      <ref name='xmlC14NIsVisibleCallback'/>
-      <ref name='xmlChildElementCount'/>
-      <ref name='xmlCopyNode'/>
-      <ref name='xmlCopyNodeList'/>
-      <ref name='xmlCopyProp'/>
-      <ref name='xmlCopyPropList'/>
-      <ref name='xmlDOMWrapAcquireNsFunction'/>
-      <ref name='xmlDOMWrapAdoptNode'/>
-      <ref name='xmlDOMWrapCloneNode'/>
-      <ref name='xmlDOMWrapReconcileNamespaces'/>
-      <ref name='xmlDOMWrapRemoveNode'/>
-      <ref name='xmlDebugDumpNode'/>
-      <ref name='xmlDebugDumpNodeList'/>
-      <ref name='xmlDebugDumpOneNode'/>
-      <ref name='xmlDeregisterNodeFunc'/>
-      <ref name='xmlDocCopyNode'/>
-      <ref name='xmlDocCopyNodeList'/>
-      <ref name='xmlDocSetRootElement'/>
-      <ref name='xmlElemDump'/>
-      <ref name='xmlEntityReferenceFunc'/>
-      <ref name='xmlFirstElementChild'/>
-      <ref name='xmlFreeNode'/>
-      <ref name='xmlFreeNodeList'/>
-      <ref name='xmlIsID'/>
-      <ref name='xmlIsRef'/>
-      <ref name='xmlLastElementChild'/>
-      <ref name='xmlLsCountNode'/>
-      <ref name='xmlLsOneNode'/>
-      <ref name='xmlNewChild'/>
-      <ref name='xmlNewNs'/>
-      <ref name='xmlNewNsProp'/>
-      <ref name='xmlNewNsPropEatName'/>
-      <ref name='xmlNewProp'/>
-      <ref name='xmlNewTextChild'/>
-      <ref name='xmlNewTextWriterTree'/>
-      <ref name='xmlNextElementSibling'/>
-      <ref name='xmlNodeAddContent'/>
-      <ref name='xmlNodeAddContentLen'/>
-      <ref name='xmlNodeDump'/>
-      <ref name='xmlNodeDumpOutput'/>
-      <ref name='xmlNodeSetBase'/>
-      <ref name='xmlNodeSetContent'/>
-      <ref name='xmlNodeSetContentLen'/>
-      <ref name='xmlNodeSetLang'/>
-      <ref name='xmlNodeSetName'/>
-      <ref name='xmlNodeSetSpacePreserve'/>
-      <ref name='xmlParseInNodeContext'/>
-      <ref name='xmlPatternMatch'/>
-      <ref name='xmlPreviousElementSibling'/>
-      <ref name='xmlReconciliateNs'/>
-      <ref name='xmlRegisterNodeFunc'/>
-      <ref name='xmlRelaxNGValidateFullElement'/>
-      <ref name='xmlRelaxNGValidatePopElement'/>
-      <ref name='xmlRelaxNGValidatePushElement'/>
-      <ref name='xmlReplaceNode'/>
-      <ref name='xmlSaveTree'/>
-      <ref name='xmlSchemaValPredefTypeNode'/>
-      <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-      <ref name='xmlSchemaValidateOneElement'/>
-      <ref name='xmlSearchNs'/>
-      <ref name='xmlSearchNsByHref'/>
-      <ref name='xmlSetListDoc'/>
-      <ref name='xmlSetNs'/>
-      <ref name='xmlSetNsProp'/>
-      <ref name='xmlSetProp'/>
-      <ref name='xmlSetTreeDoc'/>
-      <ref name='xmlShellBase'/>
-      <ref name='xmlShellCat'/>
-      <ref name='xmlShellCmd'/>
-      <ref name='xmlShellDir'/>
-      <ref name='xmlShellDu'/>
-      <ref name='xmlShellList'/>
-      <ref name='xmlShellLoad'/>
-      <ref name='xmlShellPrintNode'/>
-      <ref name='xmlShellPwd'/>
-      <ref name='xmlShellSave'/>
-      <ref name='xmlShellValidate'/>
-      <ref name='xmlShellWrite'/>
-      <ref name='xmlTextConcat'/>
-      <ref name='xmlTextMerge'/>
-      <ref name='xmlUnlinkNode'/>
-      <ref name='xmlUnsetNsProp'/>
-      <ref name='xmlUnsetProp'/>
-      <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-      <ref name='xmlValidNormalizeAttributeValue'/>
-      <ref name='xmlValidateElement'/>
-      <ref name='xmlValidateOneAttribute'/>
-      <ref name='xmlValidateOneElement'/>
-      <ref name='xmlValidateOneNamespace'/>
-      <ref name='xmlValidatePopElement'/>
-      <ref name='xmlValidatePushElement'/>
-      <ref name='xmlXIncludeProcessNode'/>
-      <ref name='xmlXIncludeProcessTree'/>
-      <ref name='xmlXIncludeProcessTreeFlags'/>
-      <ref name='xmlXIncludeProcessTreeFlagsData'/>
-      <ref name='xmlXPathCastNodeToNumber'/>
-      <ref name='xmlXPathCastNodeToString'/>
-      <ref name='xmlXPathCmpNodes'/>
-      <ref name='xmlXPathNewNodeSet'/>
-      <ref name='xmlXPathNewValueTree'/>
-      <ref name='xmlXPathNextAncestor'/>
-      <ref name='xmlXPathNextAncestorOrSelf'/>
-      <ref name='xmlXPathNextAttribute'/>
-      <ref name='xmlXPathNextChild'/>
-      <ref name='xmlXPathNextDescendant'/>
-      <ref name='xmlXPathNextDescendantOrSelf'/>
-      <ref name='xmlXPathNextFollowing'/>
-      <ref name='xmlXPathNextFollowingSibling'/>
-      <ref name='xmlXPathNextNamespace'/>
-      <ref name='xmlXPathNextParent'/>
-      <ref name='xmlXPathNextPreceding'/>
-      <ref name='xmlXPathNextPrecedingSibling'/>
-      <ref name='xmlXPathNextSelf'/>
-      <ref name='xmlXPathNodeEval'/>
-      <ref name='xmlXPathNodeLeading'/>
-      <ref name='xmlXPathNodeLeadingSorted'/>
-      <ref name='xmlXPathNodeSetAdd'/>
-      <ref name='xmlXPathNodeSetAddNs'/>
-      <ref name='xmlXPathNodeSetAddUnique'/>
-      <ref name='xmlXPathNodeSetContains'/>
-      <ref name='xmlXPathNodeSetCreate'/>
-      <ref name='xmlXPathNodeSetDel'/>
-      <ref name='xmlXPathNodeTrailing'/>
-      <ref name='xmlXPathNodeTrailingSorted'/>
-      <ref name='xmlXPathSetContextNode'/>
-      <ref name='xmlXPtrNewCollapsedRange'/>
-      <ref name='xmlXPtrNewContext'/>
-      <ref name='xmlXPtrNewLocationSetNodes'/>
-      <ref name='xmlXPtrNewRange'/>
-      <ref name='xmlXPtrNewRangeNodeObject'/>
-      <ref name='xmlXPtrNewRangeNodePoint'/>
-      <ref name='xmlXPtrNewRangeNodes'/>
-      <ref name='xmlXPtrNewRangePointNode'/>
-    </type>
-    <type name='xmlNodePtr *'>
-      <ref name='xmlDOMWrapCloneNode'/>
-      <ref name='xmlParseBalancedChunkMemory'/>
-      <ref name='xmlParseBalancedChunkMemoryRecover'/>
-      <ref name='xmlParseCtxtExternalEntity'/>
-      <ref name='xmlParseExternalEntity'/>
-      <ref name='xmlParseInNodeContext'/>
-    </type>
-    <type name='xmlNodeSetPtr'>
-      <ref name='xmlC14NDocDumpMemory'/>
-      <ref name='xmlC14NDocSave'/>
-      <ref name='xmlC14NDocSaveTo'/>
-      <ref name='xmlXPathCastNodeSetToBoolean'/>
-      <ref name='xmlXPathCastNodeSetToNumber'/>
-      <ref name='xmlXPathCastNodeSetToString'/>
-      <ref name='xmlXPathDifference'/>
-      <ref name='xmlXPathDistinct'/>
-      <ref name='xmlXPathDistinctSorted'/>
-      <ref name='xmlXPathFreeNodeSet'/>
-      <ref name='xmlXPathHasSameNodes'/>
-      <ref name='xmlXPathIntersection'/>
-      <ref name='xmlXPathLeading'/>
-      <ref name='xmlXPathLeadingSorted'/>
-      <ref name='xmlXPathNewNodeSetList'/>
-      <ref name='xmlXPathNodeLeading'/>
-      <ref name='xmlXPathNodeLeadingSorted'/>
-      <ref name='xmlXPathNodeSetAdd'/>
-      <ref name='xmlXPathNodeSetAddNs'/>
-      <ref name='xmlXPathNodeSetAddUnique'/>
-      <ref name='xmlXPathNodeSetContains'/>
-      <ref name='xmlXPathNodeSetDel'/>
-      <ref name='xmlXPathNodeSetMerge'/>
-      <ref name='xmlXPathNodeSetRemove'/>
-      <ref name='xmlXPathNodeSetSort'/>
-      <ref name='xmlXPathNodeTrailing'/>
-      <ref name='xmlXPathNodeTrailingSorted'/>
-      <ref name='xmlXPathTrailing'/>
-      <ref name='xmlXPathTrailingSorted'/>
-      <ref name='xmlXPathWrapNodeSet'/>
-      <ref name='xmlXPtrNewLocationSetNodeSet'/>
-    </type>
-    <type name='xmlNotationPtr'>
-      <ref name='xmlDumpNotationDecl'/>
-      <ref name='xmlValidateNotationDecl'/>
-    </type>
-    <type name='xmlNotationTablePtr'>
-      <ref name='xmlCopyNotationTable'/>
-      <ref name='xmlDumpNotationTable'/>
-      <ref name='xmlFreeNotationTable'/>
-    </type>
-    <type name='xmlNsPtr'>
-      <ref name='xmlCopyNamespace'/>
-      <ref name='xmlCopyNamespaceList'/>
-      <ref name='xmlFreeNs'/>
-      <ref name='xmlFreeNsList'/>
-      <ref name='xmlNewChild'/>
-      <ref name='xmlNewDocNode'/>
-      <ref name='xmlNewDocNodeEatName'/>
-      <ref name='xmlNewDocRawNode'/>
-      <ref name='xmlNewNode'/>
-      <ref name='xmlNewNodeEatName'/>
-      <ref name='xmlNewNsProp'/>
-      <ref name='xmlNewNsPropEatName'/>
-      <ref name='xmlNewTextChild'/>
-      <ref name='xmlSetNs'/>
-      <ref name='xmlSetNsProp'/>
-      <ref name='xmlUnsetNsProp'/>
-      <ref name='xmlValidateOneNamespace'/>
-      <ref name='xmlXPathNodeSetAddNs'/>
-      <ref name='xmlXPathNodeSetFreeNs'/>
-    </type>
-    <type name='xmlOutputBufferCreateFilenameFunc'>
-      <ref name='xmlOutputBufferCreateFilenameDefault'/>
-      <ref name='xmlThrDefOutputBufferCreateFilenameDefault'/>
-    </type>
-    <type name='xmlOutputBufferPtr'>
-      <ref name='htmlDocContentDumpFormatOutput'/>
-      <ref name='htmlDocContentDumpOutput'/>
-      <ref name='htmlNodeDumpFormatOutput'/>
-      <ref name='htmlNodeDumpOutput'/>
-      <ref name='xmlC14NDocSaveTo'/>
-      <ref name='xmlC14NExecute'/>
-      <ref name='xmlNewTextWriter'/>
-      <ref name='xmlNodeDumpOutput'/>
-      <ref name='xmlOutputBufferClose'/>
-      <ref name='xmlOutputBufferFlush'/>
-      <ref name='xmlOutputBufferGetContent'/>
-      <ref name='xmlOutputBufferGetSize'/>
-      <ref name='xmlOutputBufferWrite'/>
-      <ref name='xmlOutputBufferWriteEscape'/>
-      <ref name='xmlOutputBufferWriteString'/>
-      <ref name='xmlSaveFileTo'/>
-      <ref name='xmlSaveFormatFileTo'/>
-    </type>
-    <type name='xmlOutputCloseCallback'>
-      <ref name='xmlOutputBufferCreateIO'/>
-      <ref name='xmlRegisterOutputCallbacks'/>
-      <ref name='xmlSaveToIO'/>
-    </type>
-    <type name='xmlOutputMatchCallback'>
-      <ref name='xmlRegisterOutputCallbacks'/>
-    </type>
-    <type name='xmlOutputOpenCallback'>
-      <ref name='xmlRegisterOutputCallbacks'/>
-    </type>
-    <type name='xmlOutputWriteCallback'>
-      <ref name='xmlOutputBufferCreateIO'/>
-      <ref name='xmlRegisterOutputCallbacks'/>
-      <ref name='xmlSaveToIO'/>
-    </type>
-    <type name='xmlParserCtxtPtr'>
-      <ref name='inputPop'/>
-      <ref name='inputPush'/>
-      <ref name='namePop'/>
-      <ref name='namePush'/>
-      <ref name='nodePop'/>
-      <ref name='nodePush'/>
-      <ref name='xmlByteConsumed'/>
-      <ref name='xmlCheckHTTPInput'/>
-      <ref name='xmlClearParserCtxt'/>
-      <ref name='xmlCtxtReadDoc'/>
-      <ref name='xmlCtxtReadFd'/>
-      <ref name='xmlCtxtReadFile'/>
-      <ref name='xmlCtxtReadIO'/>
-      <ref name='xmlCtxtReadMemory'/>
-      <ref name='xmlCtxtReset'/>
-      <ref name='xmlCtxtResetPush'/>
-      <ref name='xmlCtxtUseOptions'/>
-      <ref name='xmlCurrentChar'/>
-      <ref name='xmlDecodeEntities'/>
-      <ref name='xmlErrMemory'/>
-      <ref name='xmlExternalEntityLoader'/>
-      <ref name='xmlFreeParserCtxt'/>
-      <ref name='xmlGetFeature'/>
-      <ref name='xmlHandleEntity'/>
-      <ref name='xmlInitParserCtxt'/>
-      <ref name='xmlLoadExternalEntity'/>
-      <ref name='xmlNamespaceParseNCName'/>
-      <ref name='xmlNamespaceParseNSDef'/>
-      <ref name='xmlNamespaceParseQName'/>
-      <ref name='xmlNewEntityInputStream'/>
-      <ref name='xmlNewIOInputStream'/>
-      <ref name='xmlNewInputFromFile'/>
-      <ref name='xmlNewInputStream'/>
-      <ref name='xmlNewStringInputStream'/>
-      <ref name='xmlNewTextWriterPushParser'/>
-      <ref name='xmlNextChar'/>
-      <ref name='xmlNoNetExternalEntityLoader'/>
-      <ref name='xmlParseAttValue'/>
-      <ref name='xmlParseAttribute'/>
-      <ref name='xmlParseAttributeListDecl'/>
-      <ref name='xmlParseAttributeType'/>
-      <ref name='xmlParseCDSect'/>
-      <ref name='xmlParseCharData'/>
-      <ref name='xmlParseCharRef'/>
-      <ref name='xmlParseChunk'/>
-      <ref name='xmlParseComment'/>
-      <ref name='xmlParseContent'/>
-      <ref name='xmlParseCtxtExternalEntity'/>
-      <ref name='xmlParseDefaultDecl'/>
-      <ref name='xmlParseDocTypeDecl'/>
-      <ref name='xmlParseDocument'/>
-      <ref name='xmlParseElement'/>
-      <ref name='xmlParseElementChildrenContentDecl'/>
-      <ref name='xmlParseElementContentDecl'/>
-      <ref name='xmlParseElementDecl'/>
-      <ref name='xmlParseElementMixedContentDecl'/>
-      <ref name='xmlParseEncName'/>
-      <ref name='xmlParseEncodingDecl'/>
-      <ref name='xmlParseEndTag'/>
-      <ref name='xmlParseEntityDecl'/>
-      <ref name='xmlParseEntityRef'/>
-      <ref name='xmlParseEntityValue'/>
-      <ref name='xmlParseEnumeratedType'/>
-      <ref name='xmlParseEnumerationType'/>
-      <ref name='xmlParseExtParsedEnt'/>
-      <ref name='xmlParseExternalID'/>
-      <ref name='xmlParseExternalSubset'/>
-      <ref name='xmlParseMarkupDecl'/>
-      <ref name='xmlParseMisc'/>
-      <ref name='xmlParseName'/>
-      <ref name='xmlParseNamespace'/>
-      <ref name='xmlParseNmtoken'/>
-      <ref name='xmlParseNotationDecl'/>
-      <ref name='xmlParseNotationType'/>
-      <ref name='xmlParsePEReference'/>
-      <ref name='xmlParsePI'/>
-      <ref name='xmlParsePITarget'/>
-      <ref name='xmlParsePubidLiteral'/>
-      <ref name='xmlParseQuotedString'/>
-      <ref name='xmlParseReference'/>
-      <ref name='xmlParseSDDecl'/>
-      <ref name='xmlParseStartTag'/>
-      <ref name='xmlParseSystemLiteral'/>
-      <ref name='xmlParseTextDecl'/>
-      <ref name='xmlParseVersionInfo'/>
-      <ref name='xmlParseVersionNum'/>
-      <ref name='xmlParseXMLDecl'/>
-      <ref name='xmlParserAddNodeInfo'/>
-      <ref name='xmlParserHandlePEReference'/>
-      <ref name='xmlParserHandleReference'/>
-      <ref name='xmlPopInput'/>
-      <ref name='xmlPushInput'/>
-      <ref name='xmlScanName'/>
-      <ref name='xmlSetFeature'/>
-      <ref name='xmlSetupParserForBuffer'/>
-      <ref name='xmlSkipBlankChars'/>
-      <ref name='xmlSplitQName'/>
-      <ref name='xmlStopParser'/>
-      <ref name='xmlStringCurrentChar'/>
-      <ref name='xmlStringDecodeEntities'/>
-      <ref name='xmlStringLenDecodeEntities'/>
-      <ref name='xmlSwitchEncoding'/>
-      <ref name='xmlSwitchInputEncoding'/>
-      <ref name='xmlSwitchToEncoding'/>
-    </type>
-    <type name='xmlParserInputBufferCreateFilenameFunc'>
-      <ref name='xmlParserInputBufferCreateFilenameDefault'/>
-      <ref name='xmlThrDefParserInputBufferCreateFilenameDefault'/>
-    </type>
-    <type name='xmlParserInputBufferPtr'>
-      <ref name='xmlFreeParserInputBuffer'/>
-      <ref name='xmlIOParseDTD'/>
-      <ref name='xmlNewIOInputStream'/>
-      <ref name='xmlNewTextReader'/>
-      <ref name='xmlParserInputBufferGrow'/>
-      <ref name='xmlParserInputBufferPush'/>
-      <ref name='xmlParserInputBufferRead'/>
-      <ref name='xmlSchemaValidateStream'/>
-      <ref name='xmlTextReaderSetup'/>
-    </type>
-    <type name='xmlParserInputPtr'>
-      <ref name='inputPush'/>
-      <ref name='xmlCheckHTTPInput'/>
-      <ref name='xmlFreeInputStream'/>
-      <ref name='xmlParserInputGrow'/>
-      <ref name='xmlParserInputRead'/>
-      <ref name='xmlParserInputShrink'/>
-      <ref name='xmlParserPrintFileContext'/>
-      <ref name='xmlParserPrintFileInfo'/>
-      <ref name='xmlPushInput'/>
-      <ref name='xmlSwitchInputEncoding'/>
-    </type>
-    <type name='xmlParserNodeInfoSeqPtr'>
-      <ref name='xmlClearNodeInfoSeq'/>
-      <ref name='xmlInitNodeInfoSeq'/>
-    </type>
-    <type name='xmlParserSeverities'>
-      <ref name='xmlTextReaderErrorFunc'/>
-    </type>
-    <type name='xmlPatternPtr'>
-      <ref name='xmlFreePattern'/>
-      <ref name='xmlFreePatternList'/>
-      <ref name='xmlPatternFromRoot'/>
-      <ref name='xmlPatternGetStreamCtxt'/>
-      <ref name='xmlPatternMatch'/>
-      <ref name='xmlPatternMaxDepth'/>
-      <ref name='xmlPatternMinDepth'/>
-      <ref name='xmlPatternStreamable'/>
-    </type>
-    <type name='xmlRMutexPtr'>
-      <ref name='xmlFreeRMutex'/>
-      <ref name='xmlRMutexLock'/>
-      <ref name='xmlRMutexUnlock'/>
-    </type>
-    <type name='xmlReallocFunc'>
-      <ref name='xmlGcMemSetup'/>
-      <ref name='xmlMemSetup'/>
-    </type>
-    <type name='xmlReallocFunc *'>
-      <ref name='xmlGcMemGet'/>
-      <ref name='xmlMemGet'/>
-    </type>
-    <type name='xmlRefTablePtr'>
-      <ref name='xmlFreeRefTable'/>
-    </type>
-    <type name='xmlRegExecCallbacks'>
-      <ref name='xmlRegNewExecCtxt'/>
-    </type>
-    <type name='xmlRegExecCtxtPtr'>
-      <ref name='xmlRegExecCallbacks'/>
-      <ref name='xmlRegExecErrInfo'/>
-      <ref name='xmlRegExecNextValues'/>
-      <ref name='xmlRegExecPushString'/>
-      <ref name='xmlRegExecPushString2'/>
-      <ref name='xmlRegFreeExecCtxt'/>
-    </type>
-    <type name='xmlRegexpPtr'>
-      <ref name='xmlRegFreeRegexp'/>
-      <ref name='xmlRegNewExecCtxt'/>
-      <ref name='xmlRegexpExec'/>
-      <ref name='xmlRegexpIsDeterminist'/>
-      <ref name='xmlRegexpPrint'/>
-    </type>
-    <type name='xmlRegisterNodeFunc'>
-      <ref name='xmlRegisterNodeDefault'/>
-      <ref name='xmlThrDefRegisterNodeDefault'/>
-    </type>
-    <type name='xmlRelaxNGParserCtxtPtr'>
-      <ref name='xmlRelaxNGFreeParserCtxt'/>
-      <ref name='xmlRelaxNGGetParserErrors'/>
-      <ref name='xmlRelaxNGParse'/>
-      <ref name='xmlRelaxNGSetParserErrors'/>
-      <ref name='xmlRelaxNGSetParserStructuredErrors'/>
-      <ref name='xmlRelaxParserSetFlag'/>
-    </type>
-    <type name='xmlRelaxNGPtr'>
-      <ref name='xmlRelaxNGDump'/>
-      <ref name='xmlRelaxNGDumpTree'/>
-      <ref name='xmlRelaxNGFree'/>
-      <ref name='xmlRelaxNGNewValidCtxt'/>
-      <ref name='xmlTextReaderRelaxNGSetSchema'/>
-    </type>
-    <type name='xmlRelaxNGValidCtxtPtr'>
-      <ref name='xmlRelaxNGFreeValidCtxt'/>
-      <ref name='xmlRelaxNGGetValidErrors'/>
-      <ref name='xmlRelaxNGSetValidErrors'/>
-      <ref name='xmlRelaxNGSetValidStructuredErrors'/>
-      <ref name='xmlRelaxNGValidateDoc'/>
-      <ref name='xmlRelaxNGValidateFullElement'/>
-      <ref name='xmlRelaxNGValidatePopElement'/>
-      <ref name='xmlRelaxNGValidatePushCData'/>
-      <ref name='xmlRelaxNGValidatePushElement'/>
-      <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-    </type>
-    <type name='xmlRelaxNGValidityErrorFunc'>
-      <ref name='xmlRelaxNGSetParserErrors'/>
-      <ref name='xmlRelaxNGSetValidErrors'/>
-    </type>
-    <type name='xmlRelaxNGValidityErrorFunc *'>
-      <ref name='xmlRelaxNGGetParserErrors'/>
-      <ref name='xmlRelaxNGGetValidErrors'/>
-    </type>
-    <type name='xmlRelaxNGValidityWarningFunc'>
-      <ref name='xmlRelaxNGSetParserErrors'/>
-      <ref name='xmlRelaxNGSetValidErrors'/>
-    </type>
-    <type name='xmlRelaxNGValidityWarningFunc *'>
-      <ref name='xmlRelaxNGGetParserErrors'/>
-      <ref name='xmlRelaxNGGetValidErrors'/>
-    </type>
-    <type name='xmlSAXHandler *'>
-      <ref name='xmlSAX2InitDefaultSAXHandler'/>
-      <ref name='xmlSAX2InitHtmlDefaultSAXHandler'/>
-      <ref name='xmlSAXVersion'/>
-    </type>
-    <type name='xmlSAXHandlerPtr'>
-      <ref name='xmlCreateIOParserCtxt'/>
-      <ref name='xmlCreatePushParserCtxt'/>
-      <ref name='xmlIOParseDTD'/>
-      <ref name='xmlParseBalancedChunkMemory'/>
-      <ref name='xmlParseBalancedChunkMemoryRecover'/>
-      <ref name='xmlParseExternalEntity'/>
-      <ref name='xmlSAXParseDTD'/>
-      <ref name='xmlSAXParseDoc'/>
-      <ref name='xmlSAXParseEntity'/>
-      <ref name='xmlSAXParseFile'/>
-      <ref name='xmlSAXParseFileWithData'/>
-      <ref name='xmlSAXParseMemory'/>
-      <ref name='xmlSAXParseMemoryWithData'/>
-      <ref name='xmlSAXUserParseFile'/>
-      <ref name='xmlSAXUserParseMemory'/>
-      <ref name='xmlSchemaValidateStream'/>
-    </type>
-    <type name='xmlSAXHandlerPtr *'>
-      <ref name='xmlSchemaSAXPlug'/>
-    </type>
-    <type name='xmlSAXHandlerV1 *'>
-      <ref name='inithtmlDefaultSAXHandler'/>
-      <ref name='initxmlDefaultSAXHandler'/>
-    </type>
-    <type name='xmlSAXLocatorPtr'>
-      <ref name='setDocumentLocator'/>
-      <ref name='setDocumentLocatorSAXFunc'/>
-      <ref name='xmlSAX2SetDocumentLocator'/>
-    </type>
-    <type name='xmlSaveCtxtPtr'>
-      <ref name='xmlSaveClose'/>
-      <ref name='xmlSaveDoc'/>
-      <ref name='xmlSaveFlush'/>
-      <ref name='xmlSaveSetAttrEscape'/>
-      <ref name='xmlSaveSetEscape'/>
-      <ref name='xmlSaveTree'/>
-    </type>
-    <type name='xmlSchemaFacetPtr'>
-      <ref name='xmlSchemaCheckFacet'/>
-      <ref name='xmlSchemaFreeFacet'/>
-      <ref name='xmlSchemaGetFacetValueAsULong'/>
-      <ref name='xmlSchemaValidateFacet'/>
-      <ref name='xmlSchemaValidateFacetWhtsp'/>
-      <ref name='xmlSchemaValidateLengthFacet'/>
-      <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-      <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-    </type>
-    <type name='xmlSchemaParserCtxtPtr'>
-      <ref name='xmlSchemaCheckFacet'/>
-      <ref name='xmlSchemaFreeParserCtxt'/>
-      <ref name='xmlSchemaGetParserErrors'/>
-      <ref name='xmlSchemaParse'/>
-      <ref name='xmlSchemaSetParserErrors'/>
-      <ref name='xmlSchemaSetParserStructuredErrors'/>
-    </type>
-    <type name='xmlSchemaPtr'>
-      <ref name='xmlSchemaDump'/>
-      <ref name='xmlSchemaFree'/>
-      <ref name='xmlSchemaNewValidCtxt'/>
-      <ref name='xmlTextReaderSetSchema'/>
-    </type>
-    <type name='xmlSchemaSAXPlugPtr'>
-      <ref name='xmlSchemaSAXUnplug'/>
-    </type>
-    <type name='xmlSchemaTypePtr'>
-      <ref name='xmlSchemaCheckFacet'/>
-      <ref name='xmlSchemaFreeType'/>
-      <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-      <ref name='xmlSchemaIsBuiltInTypeFacet'/>
-      <ref name='xmlSchemaValPredefTypeNode'/>
-      <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-      <ref name='xmlSchemaValidateFacet'/>
-      <ref name='xmlSchemaValidateLengthFacet'/>
-      <ref name='xmlSchemaValidatePredefinedType'/>
-    </type>
-    <type name='xmlSchemaValPtr'>
-      <ref name='xmlSchemaCompareValues'/>
-      <ref name='xmlSchemaCompareValuesWhtsp'/>
-      <ref name='xmlSchemaCopyValue'/>
-      <ref name='xmlSchemaFreeValue'/>
-      <ref name='xmlSchemaGetCanonValue'/>
-      <ref name='xmlSchemaGetCanonValueWhtsp'/>
-      <ref name='xmlSchemaGetValType'/>
-      <ref name='xmlSchemaValidateFacet'/>
-      <ref name='xmlSchemaValidateFacetWhtsp'/>
-      <ref name='xmlSchemaValidateLengthFacet'/>
-      <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-      <ref name='xmlSchemaValueAppend'/>
-      <ref name='xmlSchemaValueGetAsBoolean'/>
-      <ref name='xmlSchemaValueGetAsString'/>
-      <ref name='xmlSchemaValueGetNext'/>
-    </type>
-    <type name='xmlSchemaValPtr *'>
-      <ref name='xmlSchemaValPredefTypeNode'/>
-      <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-      <ref name='xmlSchemaValidatePredefinedType'/>
-    </type>
-    <type name='xmlSchemaValType'>
-      <ref name='xmlSchemaGetBuiltInType'/>
-      <ref name='xmlSchemaNewStringValue'/>
-      <ref name='xmlSchemaValidateFacetWhtsp'/>
-      <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-    </type>
-    <type name='xmlSchemaValidCtxtPtr'>
-      <ref name='xmlSchemaFreeValidCtxt'/>
-      <ref name='xmlSchemaGetValidErrors'/>
-      <ref name='xmlSchemaIsValid'/>
-      <ref name='xmlSchemaSAXPlug'/>
-      <ref name='xmlSchemaSetValidErrors'/>
-      <ref name='xmlSchemaSetValidOptions'/>
-      <ref name='xmlSchemaSetValidStructuredErrors'/>
-      <ref name='xmlSchemaValidCtxtGetOptions'/>
-      <ref name='xmlSchemaValidCtxtGetParserCtxt'/>
-      <ref name='xmlSchemaValidateDoc'/>
-      <ref name='xmlSchemaValidateFile'/>
-      <ref name='xmlSchemaValidateOneElement'/>
-      <ref name='xmlSchemaValidateSetFilename'/>
-      <ref name='xmlSchemaValidateSetLocator'/>
-      <ref name='xmlSchemaValidateStream'/>
-      <ref name='xmlTextReaderSchemaValidateCtxt'/>
-    </type>
-    <type name='xmlSchemaValidityErrorFunc'>
-      <ref name='xmlSchemaSetParserErrors'/>
-      <ref name='xmlSchemaSetValidErrors'/>
-    </type>
-    <type name='xmlSchemaValidityErrorFunc *'>
-      <ref name='xmlSchemaGetParserErrors'/>
-      <ref name='xmlSchemaGetValidErrors'/>
-    </type>
-    <type name='xmlSchemaValidityLocatorFunc'>
-      <ref name='xmlSchemaValidateSetLocator'/>
-    </type>
-    <type name='xmlSchemaValidityWarningFunc'>
-      <ref name='xmlSchemaSetParserErrors'/>
-      <ref name='xmlSchemaSetValidErrors'/>
-    </type>
-    <type name='xmlSchemaValidityWarningFunc *'>
-      <ref name='xmlSchemaGetParserErrors'/>
-      <ref name='xmlSchemaGetValidErrors'/>
-    </type>
-    <type name='xmlSchemaWhitespaceValueType'>
-      <ref name='xmlSchemaCompareValuesWhtsp'/>
-      <ref name='xmlSchemaGetCanonValueWhtsp'/>
-      <ref name='xmlSchemaValidateFacetWhtsp'/>
-      <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-    </type>
-    <type name='xmlSchemaWildcardPtr'>
-      <ref name='xmlSchemaFreeWildcard'/>
-    </type>
-    <type name='xmlSchematronParserCtxtPtr'>
-      <ref name='xmlSchematronFreeParserCtxt'/>
-      <ref name='xmlSchematronParse'/>
-    </type>
-    <type name='xmlSchematronPtr'>
-      <ref name='xmlSchematronFree'/>
-      <ref name='xmlSchematronNewValidCtxt'/>
-    </type>
-    <type name='xmlSchematronValidCtxtPtr'>
-      <ref name='xmlSchematronFreeValidCtxt'/>
-      <ref name='xmlSchematronSetValidStructuredErrors'/>
-      <ref name='xmlSchematronValidateDoc'/>
-    </type>
-    <type name='xmlShellCtxtPtr'>
-      <ref name='xmlShellBase'/>
-      <ref name='xmlShellCat'/>
-      <ref name='xmlShellCmd'/>
-      <ref name='xmlShellDir'/>
-      <ref name='xmlShellDu'/>
-      <ref name='xmlShellList'/>
-      <ref name='xmlShellLoad'/>
-      <ref name='xmlShellPwd'/>
-      <ref name='xmlShellSave'/>
-      <ref name='xmlShellValidate'/>
-      <ref name='xmlShellWrite'/>
-    </type>
-    <type name='xmlShellReadlineFunc'>
-      <ref name='xmlShell'/>
-    </type>
-    <type name='xmlStrdupFunc'>
-      <ref name='xmlGcMemSetup'/>
-      <ref name='xmlMemSetup'/>
-    </type>
-    <type name='xmlStrdupFunc *'>
-      <ref name='xmlGcMemGet'/>
-      <ref name='xmlMemGet'/>
-    </type>
-    <type name='xmlStreamCtxtPtr'>
-      <ref name='xmlFreeStreamCtxt'/>
-      <ref name='xmlStreamPop'/>
-      <ref name='xmlStreamPush'/>
-      <ref name='xmlStreamPushAttr'/>
-      <ref name='xmlStreamPushNode'/>
-      <ref name='xmlStreamWantsAnyNode'/>
-    </type>
-    <type name='xmlStructuredErrorFunc'>
-      <ref name='xmlRelaxNGSetParserStructuredErrors'/>
-      <ref name='xmlRelaxNGSetValidStructuredErrors'/>
-      <ref name='xmlSchemaSetParserStructuredErrors'/>
-      <ref name='xmlSchemaSetValidStructuredErrors'/>
-      <ref name='xmlSchematronSetValidStructuredErrors'/>
-      <ref name='xmlSetStructuredErrorFunc'/>
-      <ref name='xmlTextReaderSetStructuredErrorHandler'/>
-      <ref name='xmlThrDefSetStructuredErrorFunc'/>
-    </type>
-    <type name='xmlTextReaderErrorFunc'>
-      <ref name='xmlTextReaderSetErrorHandler'/>
-    </type>
-    <type name='xmlTextReaderErrorFunc *'>
-      <ref name='xmlTextReaderGetErrorHandler'/>
-    </type>
-    <type name='xmlTextReaderLocatorPtr'>
-      <ref name='xmlTextReaderErrorFunc'/>
-      <ref name='xmlTextReaderLocatorBaseURI'/>
-      <ref name='xmlTextReaderLocatorLineNumber'/>
-    </type>
-    <type name='xmlTextReaderPtr'>
-      <ref name='xmlFreeTextReader'/>
-      <ref name='xmlReaderNewDoc'/>
-      <ref name='xmlReaderNewFd'/>
-      <ref name='xmlReaderNewFile'/>
-      <ref name='xmlReaderNewIO'/>
-      <ref name='xmlReaderNewMemory'/>
-      <ref name='xmlReaderNewWalker'/>
-      <ref name='xmlTextReaderAttributeCount'/>
-      <ref name='xmlTextReaderBaseUri'/>
-      <ref name='xmlTextReaderByteConsumed'/>
-      <ref name='xmlTextReaderClose'/>
-      <ref name='xmlTextReaderConstBaseUri'/>
-      <ref name='xmlTextReaderConstEncoding'/>
-      <ref name='xmlTextReaderConstLocalName'/>
-      <ref name='xmlTextReaderConstName'/>
-      <ref name='xmlTextReaderConstNamespaceUri'/>
-      <ref name='xmlTextReaderConstPrefix'/>
-      <ref name='xmlTextReaderConstString'/>
-      <ref name='xmlTextReaderConstValue'/>
-      <ref name='xmlTextReaderConstXmlLang'/>
-      <ref name='xmlTextReaderConstXmlVersion'/>
-      <ref name='xmlTextReaderCurrentDoc'/>
-      <ref name='xmlTextReaderCurrentNode'/>
-      <ref name='xmlTextReaderDepth'/>
-      <ref name='xmlTextReaderExpand'/>
-      <ref name='xmlTextReaderGetAttribute'/>
-      <ref name='xmlTextReaderGetAttributeNo'/>
-      <ref name='xmlTextReaderGetAttributeNs'/>
-      <ref name='xmlTextReaderGetErrorHandler'/>
-      <ref name='xmlTextReaderGetParserColumnNumber'/>
-      <ref name='xmlTextReaderGetParserLineNumber'/>
-      <ref name='xmlTextReaderGetParserProp'/>
-      <ref name='xmlTextReaderGetRemainder'/>
-      <ref name='xmlTextReaderHasAttributes'/>
-      <ref name='xmlTextReaderHasValue'/>
-      <ref name='xmlTextReaderIsDefault'/>
-      <ref name='xmlTextReaderIsEmptyElement'/>
-      <ref name='xmlTextReaderIsNamespaceDecl'/>
-      <ref name='xmlTextReaderIsValid'/>
-      <ref name='xmlTextReaderLocalName'/>
-      <ref name='xmlTextReaderLookupNamespace'/>
-      <ref name='xmlTextReaderMoveToAttribute'/>
-      <ref name='xmlTextReaderMoveToAttributeNo'/>
-      <ref name='xmlTextReaderMoveToAttributeNs'/>
-      <ref name='xmlTextReaderMoveToElement'/>
-      <ref name='xmlTextReaderMoveToFirstAttribute'/>
-      <ref name='xmlTextReaderMoveToNextAttribute'/>
-      <ref name='xmlTextReaderName'/>
-      <ref name='xmlTextReaderNamespaceUri'/>
-      <ref name='xmlTextReaderNext'/>
-      <ref name='xmlTextReaderNextSibling'/>
-      <ref name='xmlTextReaderNodeType'/>
-      <ref name='xmlTextReaderNormalization'/>
-      <ref name='xmlTextReaderPrefix'/>
-      <ref name='xmlTextReaderPreserve'/>
-      <ref name='xmlTextReaderPreservePattern'/>
-      <ref name='xmlTextReaderQuoteChar'/>
-      <ref name='xmlTextReaderRead'/>
-      <ref name='xmlTextReaderReadAttributeValue'/>
-      <ref name='xmlTextReaderReadInnerXml'/>
-      <ref name='xmlTextReaderReadOuterXml'/>
-      <ref name='xmlTextReaderReadState'/>
-      <ref name='xmlTextReaderReadString'/>
-      <ref name='xmlTextReaderRelaxNGSetSchema'/>
-      <ref name='xmlTextReaderRelaxNGValidate'/>
-      <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-      <ref name='xmlTextReaderSchemaValidate'/>
-      <ref name='xmlTextReaderSchemaValidateCtxt'/>
-      <ref name='xmlTextReaderSetErrorHandler'/>
-      <ref name='xmlTextReaderSetParserProp'/>
-      <ref name='xmlTextReaderSetSchema'/>
-      <ref name='xmlTextReaderSetStructuredErrorHandler'/>
-      <ref name='xmlTextReaderSetup'/>
-      <ref name='xmlTextReaderStandalone'/>
-      <ref name='xmlTextReaderValue'/>
-      <ref name='xmlTextReaderXmlLang'/>
-    </type>
-    <type name='xmlTextWriterPtr'>
-      <ref name='xmlFreeTextWriter'/>
-      <ref name='xmlTextWriterEndAttribute'/>
-      <ref name='xmlTextWriterEndCDATA'/>
-      <ref name='xmlTextWriterEndComment'/>
-      <ref name='xmlTextWriterEndDTD'/>
-      <ref name='xmlTextWriterEndDTDAttlist'/>
-      <ref name='xmlTextWriterEndDTDElement'/>
-      <ref name='xmlTextWriterEndDTDEntity'/>
-      <ref name='xmlTextWriterEndDocument'/>
-      <ref name='xmlTextWriterEndElement'/>
-      <ref name='xmlTextWriterEndPI'/>
-      <ref name='xmlTextWriterFlush'/>
-      <ref name='xmlTextWriterFullEndElement'/>
-      <ref name='xmlTextWriterSetIndent'/>
-      <ref name='xmlTextWriterSetIndentString'/>
-      <ref name='xmlTextWriterSetQuoteChar'/>
-      <ref name='xmlTextWriterStartAttribute'/>
-      <ref name='xmlTextWriterStartAttributeNS'/>
-      <ref name='xmlTextWriterStartCDATA'/>
-      <ref name='xmlTextWriterStartComment'/>
-      <ref name='xmlTextWriterStartDTD'/>
-      <ref name='xmlTextWriterStartDTDAttlist'/>
-      <ref name='xmlTextWriterStartDTDElement'/>
-      <ref name='xmlTextWriterStartDTDEntity'/>
-      <ref name='xmlTextWriterStartDocument'/>
-      <ref name='xmlTextWriterStartElement'/>
-      <ref name='xmlTextWriterStartElementNS'/>
-      <ref name='xmlTextWriterStartPI'/>
-      <ref name='xmlTextWriterWriteAttribute'/>
-      <ref name='xmlTextWriterWriteAttributeNS'/>
-      <ref name='xmlTextWriterWriteBase64'/>
-      <ref name='xmlTextWriterWriteBinHex'/>
-      <ref name='xmlTextWriterWriteCDATA'/>
-      <ref name='xmlTextWriterWriteComment'/>
-      <ref name='xmlTextWriterWriteDTD'/>
-      <ref name='xmlTextWriterWriteDTDAttlist'/>
-      <ref name='xmlTextWriterWriteDTDElement'/>
-      <ref name='xmlTextWriterWriteDTDEntity'/>
-      <ref name='xmlTextWriterWriteDTDExternalEntity'/>
-      <ref name='xmlTextWriterWriteDTDExternalEntityContents'/>
-      <ref name='xmlTextWriterWriteDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteDTDNotation'/>
-      <ref name='xmlTextWriterWriteElement'/>
-      <ref name='xmlTextWriterWriteElementNS'/>
-      <ref name='xmlTextWriterWriteFormatAttribute'/>
-      <ref name='xmlTextWriterWriteFormatAttributeNS'/>
-      <ref name='xmlTextWriterWriteFormatCDATA'/>
-      <ref name='xmlTextWriterWriteFormatComment'/>
-      <ref name='xmlTextWriterWriteFormatDTD'/>
-      <ref name='xmlTextWriterWriteFormatDTDAttlist'/>
-      <ref name='xmlTextWriterWriteFormatDTDElement'/>
-      <ref name='xmlTextWriterWriteFormatDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteFormatElement'/>
-      <ref name='xmlTextWriterWriteFormatElementNS'/>
-      <ref name='xmlTextWriterWriteFormatPI'/>
-      <ref name='xmlTextWriterWriteFormatRaw'/>
-      <ref name='xmlTextWriterWriteFormatString'/>
-      <ref name='xmlTextWriterWritePI'/>
-      <ref name='xmlTextWriterWriteRaw'/>
-      <ref name='xmlTextWriterWriteRawLen'/>
-      <ref name='xmlTextWriterWriteString'/>
-      <ref name='xmlTextWriterWriteVFormatAttribute'/>
-      <ref name='xmlTextWriterWriteVFormatAttributeNS'/>
-      <ref name='xmlTextWriterWriteVFormatCDATA'/>
-      <ref name='xmlTextWriterWriteVFormatComment'/>
-      <ref name='xmlTextWriterWriteVFormatDTD'/>
-      <ref name='xmlTextWriterWriteVFormatDTDAttlist'/>
-      <ref name='xmlTextWriterWriteVFormatDTDElement'/>
-      <ref name='xmlTextWriterWriteVFormatDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteVFormatElement'/>
-      <ref name='xmlTextWriterWriteVFormatElementNS'/>
-      <ref name='xmlTextWriterWriteVFormatPI'/>
-      <ref name='xmlTextWriterWriteVFormatRaw'/>
-      <ref name='xmlTextWriterWriteVFormatString'/>
-    </type>
-    <type name='xmlURIPtr'>
-      <ref name='xmlFreeURI'/>
-      <ref name='xmlParseURIReference'/>
-      <ref name='xmlPrintURI'/>
-      <ref name='xmlSaveUri'/>
-    </type>
-    <type name='xmlValidCtxtPtr'>
-      <ref name='xmlAddAttributeDecl'/>
-      <ref name='xmlAddElementDecl'/>
-      <ref name='xmlAddID'/>
-      <ref name='xmlAddNotationDecl'/>
-      <ref name='xmlAddRef'/>
-      <ref name='xmlFreeValidCtxt'/>
-      <ref name='xmlValidBuildContentModel'/>
-      <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-      <ref name='xmlValidateAttributeDecl'/>
-      <ref name='xmlValidateDocument'/>
-      <ref name='xmlValidateDocumentFinal'/>
-      <ref name='xmlValidateDtd'/>
-      <ref name='xmlValidateDtdFinal'/>
-      <ref name='xmlValidateElement'/>
-      <ref name='xmlValidateElementDecl'/>
-      <ref name='xmlValidateNotationDecl'/>
-      <ref name='xmlValidateNotationUse'/>
-      <ref name='xmlValidateOneAttribute'/>
-      <ref name='xmlValidateOneElement'/>
-      <ref name='xmlValidateOneNamespace'/>
-      <ref name='xmlValidatePopElement'/>
-      <ref name='xmlValidatePushCData'/>
-      <ref name='xmlValidatePushElement'/>
-      <ref name='xmlValidateRoot'/>
-    </type>
-    <type name='xmlXIncludeCtxtPtr'>
-      <ref name='xmlXIncludeFreeContext'/>
-      <ref name='xmlXIncludeProcessNode'/>
-      <ref name='xmlXIncludeSetFlags'/>
-    </type>
-    <type name='xmlXPathCompExprPtr'>
-      <ref name='xmlXPathCompiledEval'/>
-      <ref name='xmlXPathCompiledEvalToBoolean'/>
-      <ref name='xmlXPathDebugDumpCompExpr'/>
-      <ref name='xmlXPathFreeCompExpr'/>
-    </type>
-    <type name='xmlXPathContextPtr'>
-      <ref name='xmlXPathCompiledEval'/>
-      <ref name='xmlXPathCompiledEvalToBoolean'/>
-      <ref name='xmlXPathContextSetCache'/>
-      <ref name='xmlXPathCtxtCompile'/>
-      <ref name='xmlXPathEval'/>
-      <ref name='xmlXPathEvalExpression'/>
-      <ref name='xmlXPathEvalPredicate'/>
-      <ref name='xmlXPathFreeContext'/>
-      <ref name='xmlXPathFunctionLookup'/>
-      <ref name='xmlXPathFunctionLookupNS'/>
-      <ref name='xmlXPathNewParserContext'/>
-      <ref name='xmlXPathNodeEval'/>
-      <ref name='xmlXPathNsLookup'/>
-      <ref name='xmlXPathRegisterAllFunctions'/>
-      <ref name='xmlXPathRegisterFunc'/>
-      <ref name='xmlXPathRegisterFuncLookup'/>
-      <ref name='xmlXPathRegisterFuncNS'/>
-      <ref name='xmlXPathRegisterNs'/>
-      <ref name='xmlXPathRegisterVariable'/>
-      <ref name='xmlXPathRegisterVariableLookup'/>
-      <ref name='xmlXPathRegisterVariableNS'/>
-      <ref name='xmlXPathRegisteredFuncsCleanup'/>
-      <ref name='xmlXPathRegisteredNsCleanup'/>
-      <ref name='xmlXPathRegisteredVariablesCleanup'/>
-      <ref name='xmlXPathSetContextNode'/>
-      <ref name='xmlXPathVariableLookup'/>
-      <ref name='xmlXPathVariableLookupNS'/>
-      <ref name='xmlXPtrEval'/>
-    </type>
-    <type name='xmlXPathFuncLookupFunc'>
-      <ref name='xmlXPathRegisterFuncLookup'/>
-    </type>
-    <type name='xmlXPathFunction'>
-      <ref name='xmlXPathRegisterFunc'/>
-      <ref name='xmlXPathRegisterFuncNS'/>
-    </type>
-    <type name='xmlXPathObjectPtr'>
-      <ref name='valuePush'/>
-      <ref name='xmlShellPrintXPathResult'/>
-      <ref name='xmlXPathAxisFunc'/>
-      <ref name='xmlXPathCastToBoolean'/>
-      <ref name='xmlXPathCastToNumber'/>
-      <ref name='xmlXPathCastToString'/>
-      <ref name='xmlXPathConvertBoolean'/>
-      <ref name='xmlXPathConvertFunc'/>
-      <ref name='xmlXPathConvertNumber'/>
-      <ref name='xmlXPathConvertString'/>
-      <ref name='xmlXPathDebugDumpObject'/>
-      <ref name='xmlXPathEvalPredicate'/>
-      <ref name='xmlXPathEvaluatePredicateResult'/>
-      <ref name='xmlXPathFreeNodeSetList'/>
-      <ref name='xmlXPathFreeObject'/>
-      <ref name='xmlXPathObjectCopy'/>
-      <ref name='xmlXPathRegisterVariable'/>
-      <ref name='xmlXPathRegisterVariableNS'/>
-      <ref name='xmlXPtrBuildNodeList'/>
-      <ref name='xmlXPtrLocationSetAdd'/>
-      <ref name='xmlXPtrLocationSetCreate'/>
-      <ref name='xmlXPtrLocationSetDel'/>
-      <ref name='xmlXPtrNewRangeNodeObject'/>
-      <ref name='xmlXPtrNewRangeNodePoint'/>
-      <ref name='xmlXPtrNewRangePointNode'/>
-      <ref name='xmlXPtrNewRangePoints'/>
-    </type>
-    <type name='xmlXPathParserContextPtr'>
-      <ref name='valuePop'/>
-      <ref name='valuePush'/>
-      <ref name='xmlXPathAddValues'/>
-      <ref name='xmlXPathAxisFunc'/>
-      <ref name='xmlXPathBooleanFunction'/>
-      <ref name='xmlXPathCeilingFunction'/>
-      <ref name='xmlXPathCompareValues'/>
-      <ref name='xmlXPathConcatFunction'/>
-      <ref name='xmlXPathContainsFunction'/>
-      <ref name='xmlXPathCountFunction'/>
-      <ref name='xmlXPathDivValues'/>
-      <ref name='xmlXPathEqualValues'/>
-      <ref name='xmlXPathErr'/>
-      <ref name='xmlXPathEvalExpr'/>
-      <ref name='xmlXPathEvalFunc'/>
-      <ref name='xmlXPathEvaluatePredicateResult'/>
-      <ref name='xmlXPathFalseFunction'/>
-      <ref name='xmlXPathFloorFunction'/>
-      <ref name='xmlXPathFreeParserContext'/>
-      <ref name='xmlXPathFunction'/>
-      <ref name='xmlXPathIdFunction'/>
-      <ref name='xmlXPathLangFunction'/>
-      <ref name='xmlXPathLastFunction'/>
-      <ref name='xmlXPathLocalNameFunction'/>
-      <ref name='xmlXPathModValues'/>
-      <ref name='xmlXPathMultValues'/>
-      <ref name='xmlXPathNamespaceURIFunction'/>
-      <ref name='xmlXPathNextAncestor'/>
-      <ref name='xmlXPathNextAncestorOrSelf'/>
-      <ref name='xmlXPathNextAttribute'/>
-      <ref name='xmlXPathNextChild'/>
-      <ref name='xmlXPathNextDescendant'/>
-      <ref name='xmlXPathNextDescendantOrSelf'/>
-      <ref name='xmlXPathNextFollowing'/>
-      <ref name='xmlXPathNextFollowingSibling'/>
-      <ref name='xmlXPathNextNamespace'/>
-      <ref name='xmlXPathNextParent'/>
-      <ref name='xmlXPathNextPreceding'/>
-      <ref name='xmlXPathNextPrecedingSibling'/>
-      <ref name='xmlXPathNextSelf'/>
-      <ref name='xmlXPathNormalizeFunction'/>
-      <ref name='xmlXPathNotEqualValues'/>
-      <ref name='xmlXPathNotFunction'/>
-      <ref name='xmlXPathNumberFunction'/>
-      <ref name='xmlXPathParseNCName'/>
-      <ref name='xmlXPathParseName'/>
-      <ref name='xmlXPathPopBoolean'/>
-      <ref name='xmlXPathPopExternal'/>
-      <ref name='xmlXPathPopNodeSet'/>
-      <ref name='xmlXPathPopNumber'/>
-      <ref name='xmlXPathPopString'/>
-      <ref name='xmlXPathPositionFunction'/>
-      <ref name='xmlXPathRoot'/>
-      <ref name='xmlXPathRoundFunction'/>
-      <ref name='xmlXPathStartsWithFunction'/>
-      <ref name='xmlXPathStringFunction'/>
-      <ref name='xmlXPathStringLengthFunction'/>
-      <ref name='xmlXPathSubValues'/>
-      <ref name='xmlXPathSubstringAfterFunction'/>
-      <ref name='xmlXPathSubstringBeforeFunction'/>
-      <ref name='xmlXPathSubstringFunction'/>
-      <ref name='xmlXPathSumFunction'/>
-      <ref name='xmlXPathTranslateFunction'/>
-      <ref name='xmlXPathTrueFunction'/>
-      <ref name='xmlXPathValueFlipSign'/>
-      <ref name='xmlXPatherror'/>
-      <ref name='xmlXPtrEvalRangePredicate'/>
-      <ref name='xmlXPtrRangeToFunction'/>
-    </type>
-    <type name='xmlXPathVariableLookupFunc'>
-      <ref name='xmlXPathRegisterVariableLookup'/>
-    </type>
-  </functions>
-  <files>
-    <file name='HTMLparser'>
-      <ref name='HTML_DEPRECATED'/>
-      <ref name='HTML_INVALID'/>
-      <ref name='HTML_NA'/>
-      <ref name='HTML_PARSE_COMPACT'/>
-      <ref name='HTML_PARSE_IGNORE_ENC'/>
-      <ref name='HTML_PARSE_NOBLANKS'/>
-      <ref name='HTML_PARSE_NODEFDTD'/>
-      <ref name='HTML_PARSE_NOERROR'/>
-      <ref name='HTML_PARSE_NOIMPLIED'/>
-      <ref name='HTML_PARSE_NONET'/>
-      <ref name='HTML_PARSE_NOWARNING'/>
-      <ref name='HTML_PARSE_PEDANTIC'/>
-      <ref name='HTML_PARSE_RECOVER'/>
-      <ref name='HTML_REQUIRED'/>
-      <ref name='HTML_VALID'/>
-      <ref name='UTF8ToHtml'/>
-      <ref name='_htmlElemDesc'/>
-      <ref name='_htmlEntityDesc'/>
-      <ref name='htmlAttrAllowed'/>
-      <ref name='htmlAutoCloseTag'/>
-      <ref name='htmlCreateMemoryParserCtxt'/>
-      <ref name='htmlCreatePushParserCtxt'/>
-      <ref name='htmlCtxtReadDoc'/>
-      <ref name='htmlCtxtReadFd'/>
-      <ref name='htmlCtxtReadFile'/>
-      <ref name='htmlCtxtReadIO'/>
-      <ref name='htmlCtxtReadMemory'/>
-      <ref name='htmlCtxtReset'/>
-      <ref name='htmlCtxtUseOptions'/>
-      <ref name='htmlDefaultSubelement'/>
-      <ref name='htmlDocPtr'/>
-      <ref name='htmlElemDesc'/>
-      <ref name='htmlElemDescPtr'/>
-      <ref name='htmlElementAllowedHere'/>
-      <ref name='htmlElementAllowedHereDesc'/>
-      <ref name='htmlElementStatusHere'/>
-      <ref name='htmlEncodeEntities'/>
-      <ref name='htmlEntityDesc'/>
-      <ref name='htmlEntityDescPtr'/>
-      <ref name='htmlEntityLookup'/>
-      <ref name='htmlEntityValueLookup'/>
-      <ref name='htmlFreeParserCtxt'/>
-      <ref name='htmlHandleOmittedElem'/>
-      <ref name='htmlIsAutoClosed'/>
-      <ref name='htmlIsScriptAttribute'/>
-      <ref name='htmlNewParserCtxt'/>
-      <ref name='htmlNodePtr'/>
-      <ref name='htmlNodeStatus'/>
-      <ref name='htmlParseCharRef'/>
-      <ref name='htmlParseChunk'/>
-      <ref name='htmlParseDoc'/>
-      <ref name='htmlParseDocument'/>
-      <ref name='htmlParseElement'/>
-      <ref name='htmlParseEntityRef'/>
-      <ref name='htmlParseFile'/>
-      <ref name='htmlParserCtxt'/>
-      <ref name='htmlParserCtxtPtr'/>
-      <ref name='htmlParserInput'/>
-      <ref name='htmlParserInputPtr'/>
-      <ref name='htmlParserNodeInfo'/>
-      <ref name='htmlParserOption'/>
-      <ref name='htmlReadDoc'/>
-      <ref name='htmlReadFd'/>
-      <ref name='htmlReadFile'/>
-      <ref name='htmlReadIO'/>
-      <ref name='htmlReadMemory'/>
-      <ref name='htmlRequiredAttrs'/>
-      <ref name='htmlSAXHandler'/>
-      <ref name='htmlSAXHandlerPtr'/>
-      <ref name='htmlSAXParseDoc'/>
-      <ref name='htmlSAXParseFile'/>
-      <ref name='htmlStatus'/>
-      <ref name='htmlTagLookup'/>
-    </file>
-    <file name='HTMLtree'>
-      <ref name='HTML_COMMENT_NODE'/>
-      <ref name='HTML_ENTITY_REF_NODE'/>
-      <ref name='HTML_PI_NODE'/>
-      <ref name='HTML_PRESERVE_NODE'/>
-      <ref name='HTML_TEXT_NODE'/>
-      <ref name='htmlDocContentDumpFormatOutput'/>
-      <ref name='htmlDocContentDumpOutput'/>
-      <ref name='htmlDocDump'/>
-      <ref name='htmlDocDumpMemory'/>
-      <ref name='htmlDocDumpMemoryFormat'/>
-      <ref name='htmlGetMetaEncoding'/>
-      <ref name='htmlIsBooleanAttr'/>
-      <ref name='htmlNewDoc'/>
-      <ref name='htmlNewDocNoDtD'/>
-      <ref name='htmlNodeDump'/>
-      <ref name='htmlNodeDumpFile'/>
-      <ref name='htmlNodeDumpFileFormat'/>
-      <ref name='htmlNodeDumpFormatOutput'/>
-      <ref name='htmlNodeDumpOutput'/>
-      <ref name='htmlSaveFile'/>
-      <ref name='htmlSaveFileEnc'/>
-      <ref name='htmlSaveFileFormat'/>
-      <ref name='htmlSetMetaEncoding'/>
-    </file>
-    <file name='SAX'>
-      <ref name='attribute'/>
-      <ref name='attributeDecl'/>
-      <ref name='cdataBlock'/>
-      <ref name='characters'/>
-      <ref name='checkNamespace'/>
-      <ref name='comment'/>
-      <ref name='elementDecl'/>
-      <ref name='endDocument'/>
-      <ref name='endElement'/>
-      <ref name='entityDecl'/>
-      <ref name='externalSubset'/>
-      <ref name='getColumnNumber'/>
-      <ref name='getEntity'/>
-      <ref name='getLineNumber'/>
-      <ref name='getNamespace'/>
-      <ref name='getParameterEntity'/>
-      <ref name='getPublicId'/>
-      <ref name='getSystemId'/>
-      <ref name='globalNamespace'/>
-      <ref name='hasExternalSubset'/>
-      <ref name='hasInternalSubset'/>
-      <ref name='ignorableWhitespace'/>
-      <ref name='inithtmlDefaultSAXHandler'/>
-      <ref name='initxmlDefaultSAXHandler'/>
-      <ref name='internalSubset'/>
-      <ref name='isStandalone'/>
-      <ref name='namespaceDecl'/>
-      <ref name='notationDecl'/>
-      <ref name='processingInstruction'/>
-      <ref name='reference'/>
-      <ref name='resolveEntity'/>
-      <ref name='setDocumentLocator'/>
-      <ref name='setNamespace'/>
-      <ref name='startDocument'/>
-      <ref name='startElement'/>
-      <ref name='unparsedEntityDecl'/>
-    </file>
-    <file name='SAX2'>
-      <ref name='htmlDefaultSAXHandlerInit'/>
-      <ref name='xmlDefaultSAXHandlerInit'/>
-      <ref name='xmlSAX2AttributeDecl'/>
-      <ref name='xmlSAX2CDataBlock'/>
-      <ref name='xmlSAX2Characters'/>
-      <ref name='xmlSAX2Comment'/>
-      <ref name='xmlSAX2ElementDecl'/>
-      <ref name='xmlSAX2EndDocument'/>
-      <ref name='xmlSAX2EndElement'/>
-      <ref name='xmlSAX2EndElementNs'/>
-      <ref name='xmlSAX2EntityDecl'/>
-      <ref name='xmlSAX2ExternalSubset'/>
-      <ref name='xmlSAX2GetColumnNumber'/>
-      <ref name='xmlSAX2GetEntity'/>
-      <ref name='xmlSAX2GetLineNumber'/>
-      <ref name='xmlSAX2GetParameterEntity'/>
-      <ref name='xmlSAX2GetPublicId'/>
-      <ref name='xmlSAX2GetSystemId'/>
-      <ref name='xmlSAX2HasExternalSubset'/>
-      <ref name='xmlSAX2HasInternalSubset'/>
-      <ref name='xmlSAX2IgnorableWhitespace'/>
-      <ref name='xmlSAX2InitDefaultSAXHandler'/>
-      <ref name='xmlSAX2InitHtmlDefaultSAXHandler'/>
-      <ref name='xmlSAX2InternalSubset'/>
-      <ref name='xmlSAX2IsStandalone'/>
-      <ref name='xmlSAX2NotationDecl'/>
-      <ref name='xmlSAX2ProcessingInstruction'/>
-      <ref name='xmlSAX2Reference'/>
-      <ref name='xmlSAX2ResolveEntity'/>
-      <ref name='xmlSAX2SetDocumentLocator'/>
-      <ref name='xmlSAX2StartDocument'/>
-      <ref name='xmlSAX2StartElement'/>
-      <ref name='xmlSAX2StartElementNs'/>
-      <ref name='xmlSAX2UnparsedEntityDecl'/>
-      <ref name='xmlSAXDefaultVersion'/>
-      <ref name='xmlSAXVersion'/>
-    </file>
-    <file name='c14n'>
-      <ref name='XML_C14N_1_0'/>
-      <ref name='XML_C14N_1_1'/>
-      <ref name='XML_C14N_EXCLUSIVE_1_0'/>
-      <ref name='xmlC14NDocDumpMemory'/>
-      <ref name='xmlC14NDocSave'/>
-      <ref name='xmlC14NDocSaveTo'/>
-      <ref name='xmlC14NExecute'/>
-      <ref name='xmlC14NIsVisibleCallback'/>
-      <ref name='xmlC14NMode'/>
-    </file>
-    <file name='catalog'>
-      <ref name='XML_CATALOGS_NAMESPACE'/>
-      <ref name='XML_CATALOG_PI'/>
-      <ref name='XML_CATA_ALLOW_ALL'/>
-      <ref name='XML_CATA_ALLOW_DOCUMENT'/>
-      <ref name='XML_CATA_ALLOW_GLOBAL'/>
-      <ref name='XML_CATA_ALLOW_NONE'/>
-      <ref name='XML_CATA_PREFER_NONE'/>
-      <ref name='XML_CATA_PREFER_PUBLIC'/>
-      <ref name='XML_CATA_PREFER_SYSTEM'/>
-      <ref name='xmlACatalogAdd'/>
-      <ref name='xmlACatalogDump'/>
-      <ref name='xmlACatalogRemove'/>
-      <ref name='xmlACatalogResolve'/>
-      <ref name='xmlACatalogResolvePublic'/>
-      <ref name='xmlACatalogResolveSystem'/>
-      <ref name='xmlACatalogResolveURI'/>
-      <ref name='xmlCatalog'/>
-      <ref name='xmlCatalogAdd'/>
-      <ref name='xmlCatalogAddLocal'/>
-      <ref name='xmlCatalogAllow'/>
-      <ref name='xmlCatalogCleanup'/>
-      <ref name='xmlCatalogConvert'/>
-      <ref name='xmlCatalogDump'/>
-      <ref name='xmlCatalogFreeLocal'/>
-      <ref name='xmlCatalogGetDefaults'/>
-      <ref name='xmlCatalogGetPublic'/>
-      <ref name='xmlCatalogGetSystem'/>
-      <ref name='xmlCatalogIsEmpty'/>
-      <ref name='xmlCatalogLocalResolve'/>
-      <ref name='xmlCatalogLocalResolveURI'/>
-      <ref name='xmlCatalogPrefer'/>
-      <ref name='xmlCatalogPtr'/>
-      <ref name='xmlCatalogRemove'/>
-      <ref name='xmlCatalogResolve'/>
-      <ref name='xmlCatalogResolvePublic'/>
-      <ref name='xmlCatalogResolveSystem'/>
-      <ref name='xmlCatalogResolveURI'/>
-      <ref name='xmlCatalogSetDebug'/>
-      <ref name='xmlCatalogSetDefaultPrefer'/>
-      <ref name='xmlCatalogSetDefaults'/>
-      <ref name='xmlConvertSGMLCatalog'/>
-      <ref name='xmlFreeCatalog'/>
-      <ref name='xmlInitializeCatalog'/>
-      <ref name='xmlLoadACatalog'/>
-      <ref name='xmlLoadCatalog'/>
-      <ref name='xmlLoadCatalogs'/>
-      <ref name='xmlLoadSGMLSuperCatalog'/>
-      <ref name='xmlNewCatalog'/>
-      <ref name='xmlParseCatalogFile'/>
-    </file>
-    <file name='chvalid'>
-      <ref name='_xmlChLRange'/>
-      <ref name='_xmlChRangeGroup'/>
-      <ref name='_xmlChSRange'/>
-      <ref name='xmlChLRange'/>
-      <ref name='xmlChLRangePtr'/>
-      <ref name='xmlChRangeGroup'/>
-      <ref name='xmlChRangeGroupPtr'/>
-      <ref name='xmlChSRange'/>
-      <ref name='xmlChSRangePtr'/>
-      <ref name='xmlCharInRange'/>
-      <ref name='xmlIsBaseChar'/>
-      <ref name='xmlIsBaseCharGroup'/>
-      <ref name='xmlIsBaseCharQ'/>
-      <ref name='xmlIsBaseChar_ch'/>
-      <ref name='xmlIsBlank'/>
-      <ref name='xmlIsBlankQ'/>
-      <ref name='xmlIsBlank_ch'/>
-      <ref name='xmlIsChar'/>
-      <ref name='xmlIsCharGroup'/>
-      <ref name='xmlIsCharQ'/>
-      <ref name='xmlIsChar_ch'/>
-      <ref name='xmlIsCombining'/>
-      <ref name='xmlIsCombiningGroup'/>
-      <ref name='xmlIsCombiningQ'/>
-      <ref name='xmlIsDigit'/>
-      <ref name='xmlIsDigitGroup'/>
-      <ref name='xmlIsDigitQ'/>
-      <ref name='xmlIsDigit_ch'/>
-      <ref name='xmlIsExtender'/>
-      <ref name='xmlIsExtenderGroup'/>
-      <ref name='xmlIsExtenderQ'/>
-      <ref name='xmlIsExtender_ch'/>
-      <ref name='xmlIsIdeographic'/>
-      <ref name='xmlIsIdeographicGroup'/>
-      <ref name='xmlIsIdeographicQ'/>
-      <ref name='xmlIsPubidChar'/>
-      <ref name='xmlIsPubidCharQ'/>
-      <ref name='xmlIsPubidChar_ch'/>
-      <ref name='xmlIsPubidChar_tab'/>
-    </file>
-    <file name='debugXML'>
-      <ref name='_xmlShellCtxt'/>
-      <ref name='xmlBoolToText'/>
-      <ref name='xmlDebugCheckDocument'/>
-      <ref name='xmlDebugDumpAttr'/>
-      <ref name='xmlDebugDumpAttrList'/>
-      <ref name='xmlDebugDumpDTD'/>
-      <ref name='xmlDebugDumpDocument'/>
-      <ref name='xmlDebugDumpDocumentHead'/>
-      <ref name='xmlDebugDumpEntities'/>
-      <ref name='xmlDebugDumpNode'/>
-      <ref name='xmlDebugDumpNodeList'/>
-      <ref name='xmlDebugDumpOneNode'/>
-      <ref name='xmlDebugDumpString'/>
-      <ref name='xmlLsCountNode'/>
-      <ref name='xmlLsOneNode'/>
-      <ref name='xmlShell'/>
-      <ref name='xmlShellBase'/>
-      <ref name='xmlShellCat'/>
-      <ref name='xmlShellCmd'/>
-      <ref name='xmlShellCtxt'/>
-      <ref name='xmlShellCtxtPtr'/>
-      <ref name='xmlShellDir'/>
-      <ref name='xmlShellDu'/>
-      <ref name='xmlShellList'/>
-      <ref name='xmlShellLoad'/>
-      <ref name='xmlShellPrintNode'/>
-      <ref name='xmlShellPrintXPathError'/>
-      <ref name='xmlShellPrintXPathResult'/>
-      <ref name='xmlShellPwd'/>
-      <ref name='xmlShellReadlineFunc'/>
-      <ref name='xmlShellSave'/>
-      <ref name='xmlShellValidate'/>
-      <ref name='xmlShellWrite'/>
-    </file>
-    <file name='dict'>
-      <ref name='xmlDict'/>
-      <ref name='xmlDictCleanup'/>
-      <ref name='xmlDictCreate'/>
-      <ref name='xmlDictCreateSub'/>
-      <ref name='xmlDictExists'/>
-      <ref name='xmlDictFree'/>
-      <ref name='xmlDictGetUsage'/>
-      <ref name='xmlDictLookup'/>
-      <ref name='xmlDictOwns'/>
-      <ref name='xmlDictPtr'/>
-      <ref name='xmlDictQLookup'/>
-      <ref name='xmlDictReference'/>
-      <ref name='xmlDictSetLimit'/>
-      <ref name='xmlDictSize'/>
-      <ref name='xmlInitializeDict'/>
-    </file>
-    <file name='encoding'>
-      <ref name='UTF8Toisolat1'/>
-      <ref name='XML_CHAR_ENCODING_2022_JP'/>
-      <ref name='XML_CHAR_ENCODING_8859_1'/>
-      <ref name='XML_CHAR_ENCODING_8859_2'/>
-      <ref name='XML_CHAR_ENCODING_8859_3'/>
-      <ref name='XML_CHAR_ENCODING_8859_4'/>
-      <ref name='XML_CHAR_ENCODING_8859_5'/>
-      <ref name='XML_CHAR_ENCODING_8859_6'/>
-      <ref name='XML_CHAR_ENCODING_8859_7'/>
-      <ref name='XML_CHAR_ENCODING_8859_8'/>
-      <ref name='XML_CHAR_ENCODING_8859_9'/>
-      <ref name='XML_CHAR_ENCODING_ASCII'/>
-      <ref name='XML_CHAR_ENCODING_EBCDIC'/>
-      <ref name='XML_CHAR_ENCODING_ERROR'/>
-      <ref name='XML_CHAR_ENCODING_EUC_JP'/>
-      <ref name='XML_CHAR_ENCODING_NONE'/>
-      <ref name='XML_CHAR_ENCODING_SHIFT_JIS'/>
-      <ref name='XML_CHAR_ENCODING_UCS2'/>
-      <ref name='XML_CHAR_ENCODING_UCS4BE'/>
-      <ref name='XML_CHAR_ENCODING_UCS4LE'/>
-      <ref name='XML_CHAR_ENCODING_UCS4_2143'/>
-      <ref name='XML_CHAR_ENCODING_UCS4_3412'/>
-      <ref name='XML_CHAR_ENCODING_UTF16BE'/>
-      <ref name='XML_CHAR_ENCODING_UTF16LE'/>
-      <ref name='XML_CHAR_ENCODING_UTF8'/>
-      <ref name='_xmlCharEncodingHandler'/>
-      <ref name='isolat1ToUTF8'/>
-      <ref name='xmlAddEncodingAlias'/>
-      <ref name='xmlCharEncCloseFunc'/>
-      <ref name='xmlCharEncFirstLine'/>
-      <ref name='xmlCharEncInFunc'/>
-      <ref name='xmlCharEncOutFunc'/>
-      <ref name='xmlCharEncoding'/>
-      <ref name='xmlCharEncodingHandler'/>
-      <ref name='xmlCharEncodingHandlerPtr'/>
-      <ref name='xmlCharEncodingInputFunc'/>
-      <ref name='xmlCharEncodingOutputFunc'/>
-      <ref name='xmlCleanupCharEncodingHandlers'/>
-      <ref name='xmlCleanupEncodingAliases'/>
-      <ref name='xmlDelEncodingAlias'/>
-      <ref name='xmlDetectCharEncoding'/>
-      <ref name='xmlFindCharEncodingHandler'/>
-      <ref name='xmlGetCharEncodingHandler'/>
-      <ref name='xmlGetCharEncodingName'/>
-      <ref name='xmlGetEncodingAlias'/>
-      <ref name='xmlInitCharEncodingHandlers'/>
-      <ref name='xmlNewCharEncodingHandler'/>
-      <ref name='xmlParseCharEncoding'/>
-      <ref name='xmlRegisterCharEncodingHandler'/>
-    </file>
-    <file name='entities'>
-      <ref name='XML_EXTERNAL_GENERAL_PARSED_ENTITY'/>
-      <ref name='XML_EXTERNAL_GENERAL_UNPARSED_ENTITY'/>
-      <ref name='XML_EXTERNAL_PARAMETER_ENTITY'/>
-      <ref name='XML_INTERNAL_GENERAL_ENTITY'/>
-      <ref name='XML_INTERNAL_PARAMETER_ENTITY'/>
-      <ref name='XML_INTERNAL_PREDEFINED_ENTITY'/>
-      <ref name='_xmlEntity'/>
-      <ref name='xmlAddDocEntity'/>
-      <ref name='xmlAddDtdEntity'/>
-      <ref name='xmlCleanupPredefinedEntities'/>
-      <ref name='xmlCopyEntitiesTable'/>
-      <ref name='xmlCreateEntitiesTable'/>
-      <ref name='xmlDumpEntitiesTable'/>
-      <ref name='xmlDumpEntityDecl'/>
-      <ref name='xmlEncodeEntities'/>
-      <ref name='xmlEncodeEntitiesReentrant'/>
-      <ref name='xmlEncodeSpecialChars'/>
-      <ref name='xmlEntitiesTable'/>
-      <ref name='xmlEntitiesTablePtr'/>
-      <ref name='xmlEntityType'/>
-      <ref name='xmlFreeEntitiesTable'/>
-      <ref name='xmlGetDocEntity'/>
-      <ref name='xmlGetDtdEntity'/>
-      <ref name='xmlGetParameterEntity'/>
-      <ref name='xmlGetPredefinedEntity'/>
-      <ref name='xmlInitializePredefinedEntities'/>
-      <ref name='xmlNewEntity'/>
-    </file>
-    <file name='globals'>
-      <ref name='_xmlGlobalState'/>
-      <ref name='htmlDefaultSAXHandler'/>
-      <ref name='oldXMLWDcompatibility'/>
-      <ref name='xmlBufferAllocScheme'/>
-      <ref name='xmlCleanupGlobals'/>
-      <ref name='xmlDefaultBufferSize'/>
-      <ref name='xmlDefaultSAXHandler'/>
-      <ref name='xmlDefaultSAXLocator'/>
-      <ref name='xmlDeregisterNodeDefault'/>
-      <ref name='xmlDeregisterNodeDefaultValue'/>
-      <ref name='xmlDeregisterNodeFunc'/>
-      <ref name='xmlDoValidityCheckingDefaultValue'/>
-      <ref name='xmlFree'/>
-      <ref name='xmlGenericError'/>
-      <ref name='xmlGenericErrorContext'/>
-      <ref name='xmlGetWarningsDefaultValue'/>
-      <ref name='xmlGlobalState'/>
-      <ref name='xmlGlobalStatePtr'/>
-      <ref name='xmlIndentTreeOutput'/>
-      <ref name='xmlInitGlobals'/>
-      <ref name='xmlInitializeGlobalState'/>
-      <ref name='xmlKeepBlanksDefaultValue'/>
-      <ref name='xmlLastError'/>
-      <ref name='xmlLineNumbersDefaultValue'/>
-      <ref name='xmlLoadExtDtdDefaultValue'/>
-      <ref name='xmlMalloc'/>
-      <ref name='xmlMallocAtomic'/>
-      <ref name='xmlMemStrdup'/>
-      <ref name='xmlOutputBufferCreateFilenameDefault'/>
-      <ref name='xmlOutputBufferCreateFilenameFunc'/>
-      <ref name='xmlOutputBufferCreateFilenameValue'/>
-      <ref name='xmlParserDebugEntities'/>
-      <ref name='xmlParserInputBufferCreateFilenameDefault'/>
-      <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-      <ref name='xmlParserInputBufferCreateFilenameValue'/>
-      <ref name='xmlParserVersion'/>
-      <ref name='xmlPedanticParserDefaultValue'/>
-      <ref name='xmlRealloc'/>
-      <ref name='xmlRegisterNodeDefault'/>
-      <ref name='xmlRegisterNodeDefaultValue'/>
-      <ref name='xmlRegisterNodeFunc'/>
-      <ref name='xmlSaveNoEmptyTags'/>
-      <ref name='xmlStructuredError'/>
-      <ref name='xmlStructuredErrorContext'/>
-      <ref name='xmlSubstituteEntitiesDefaultValue'/>
-      <ref name='xmlThrDefBufferAllocScheme'/>
-      <ref name='xmlThrDefDefaultBufferSize'/>
-      <ref name='xmlThrDefDeregisterNodeDefault'/>
-      <ref name='xmlThrDefDoValidityCheckingDefaultValue'/>
-      <ref name='xmlThrDefGetWarningsDefaultValue'/>
-      <ref name='xmlThrDefIndentTreeOutput'/>
-      <ref name='xmlThrDefKeepBlanksDefaultValue'/>
-      <ref name='xmlThrDefLineNumbersDefaultValue'/>
-      <ref name='xmlThrDefLoadExtDtdDefaultValue'/>
-      <ref name='xmlThrDefOutputBufferCreateFilenameDefault'/>
-      <ref name='xmlThrDefParserDebugEntities'/>
-      <ref name='xmlThrDefParserInputBufferCreateFilenameDefault'/>
-      <ref name='xmlThrDefPedanticParserDefaultValue'/>
-      <ref name='xmlThrDefRegisterNodeDefault'/>
-      <ref name='xmlThrDefSaveNoEmptyTags'/>
-      <ref name='xmlThrDefSetGenericErrorFunc'/>
-      <ref name='xmlThrDefSetStructuredErrorFunc'/>
-      <ref name='xmlThrDefSubstituteEntitiesDefaultValue'/>
-      <ref name='xmlThrDefTreeIndentString'/>
-      <ref name='xmlTreeIndentString'/>
-    </file>
-    <file name='hash'>
-      <ref name='XML_CAST_FPTR'/>
-      <ref name='xmlHashAddEntry'/>
-      <ref name='xmlHashAddEntry2'/>
-      <ref name='xmlHashAddEntry3'/>
-      <ref name='xmlHashCopier'/>
-      <ref name='xmlHashCopy'/>
-      <ref name='xmlHashCreate'/>
-      <ref name='xmlHashCreateDict'/>
-      <ref name='xmlHashDeallocator'/>
-      <ref name='xmlHashDefaultDeallocator'/>
-      <ref name='xmlHashFree'/>
-      <ref name='xmlHashLookup'/>
-      <ref name='xmlHashLookup2'/>
-      <ref name='xmlHashLookup3'/>
-      <ref name='xmlHashQLookup'/>
-      <ref name='xmlHashQLookup2'/>
-      <ref name='xmlHashQLookup3'/>
-      <ref name='xmlHashRemoveEntry'/>
-      <ref name='xmlHashRemoveEntry2'/>
-      <ref name='xmlHashRemoveEntry3'/>
-      <ref name='xmlHashScan'/>
-      <ref name='xmlHashScan3'/>
-      <ref name='xmlHashScanFull'/>
-      <ref name='xmlHashScanFull3'/>
-      <ref name='xmlHashScanner'/>
-      <ref name='xmlHashScannerFull'/>
-      <ref name='xmlHashSize'/>
-      <ref name='xmlHashTable'/>
-      <ref name='xmlHashTablePtr'/>
-      <ref name='xmlHashUpdateEntry'/>
-      <ref name='xmlHashUpdateEntry2'/>
-      <ref name='xmlHashUpdateEntry3'/>
-    </file>
-    <file name='list'>
-      <ref name='xmlLink'/>
-      <ref name='xmlLinkGetData'/>
-      <ref name='xmlLinkPtr'/>
-      <ref name='xmlList'/>
-      <ref name='xmlListAppend'/>
-      <ref name='xmlListClear'/>
-      <ref name='xmlListCopy'/>
-      <ref name='xmlListCreate'/>
-      <ref name='xmlListDataCompare'/>
-      <ref name='xmlListDeallocator'/>
-      <ref name='xmlListDelete'/>
-      <ref name='xmlListDup'/>
-      <ref name='xmlListEmpty'/>
-      <ref name='xmlListEnd'/>
-      <ref name='xmlListFront'/>
-      <ref name='xmlListInsert'/>
-      <ref name='xmlListMerge'/>
-      <ref name='xmlListPopBack'/>
-      <ref name='xmlListPopFront'/>
-      <ref name='xmlListPtr'/>
-      <ref name='xmlListPushBack'/>
-      <ref name='xmlListPushFront'/>
-      <ref name='xmlListRemoveAll'/>
-      <ref name='xmlListRemoveFirst'/>
-      <ref name='xmlListRemoveLast'/>
-      <ref name='xmlListReverse'/>
-      <ref name='xmlListReverseSearch'/>
-      <ref name='xmlListReverseWalk'/>
-      <ref name='xmlListSearch'/>
-      <ref name='xmlListSize'/>
-      <ref name='xmlListSort'/>
-      <ref name='xmlListWalk'/>
-      <ref name='xmlListWalker'/>
-    </file>
-    <file name='nanoftp'>
-      <ref name='INVALID_SOCKET'/>
-      <ref name='SOCKET'/>
-      <ref name='ftpDataCallback'/>
-      <ref name='ftpListCallback'/>
-      <ref name='xmlNanoFTPCheckResponse'/>
-      <ref name='xmlNanoFTPCleanup'/>
-      <ref name='xmlNanoFTPClose'/>
-      <ref name='xmlNanoFTPCloseConnection'/>
-      <ref name='xmlNanoFTPConnect'/>
-      <ref name='xmlNanoFTPConnectTo'/>
-      <ref name='xmlNanoFTPCwd'/>
-      <ref name='xmlNanoFTPDele'/>
-      <ref name='xmlNanoFTPFreeCtxt'/>
-      <ref name='xmlNanoFTPGet'/>
-      <ref name='xmlNanoFTPGetConnection'/>
-      <ref name='xmlNanoFTPGetResponse'/>
-      <ref name='xmlNanoFTPGetSocket'/>
-      <ref name='xmlNanoFTPInit'/>
-      <ref name='xmlNanoFTPList'/>
-      <ref name='xmlNanoFTPNewCtxt'/>
-      <ref name='xmlNanoFTPOpen'/>
-      <ref name='xmlNanoFTPProxy'/>
-      <ref name='xmlNanoFTPQuit'/>
-      <ref name='xmlNanoFTPRead'/>
-      <ref name='xmlNanoFTPScanProxy'/>
-      <ref name='xmlNanoFTPUpdateURL'/>
-    </file>
-    <file name='nanohttp'>
-      <ref name='xmlNanoHTTPAuthHeader'/>
-      <ref name='xmlNanoHTTPCleanup'/>
-      <ref name='xmlNanoHTTPClose'/>
-      <ref name='xmlNanoHTTPContentLength'/>
-      <ref name='xmlNanoHTTPEncoding'/>
-      <ref name='xmlNanoHTTPFetch'/>
-      <ref name='xmlNanoHTTPInit'/>
-      <ref name='xmlNanoHTTPMethod'/>
-      <ref name='xmlNanoHTTPMethodRedir'/>
-      <ref name='xmlNanoHTTPMimeType'/>
-      <ref name='xmlNanoHTTPOpen'/>
-      <ref name='xmlNanoHTTPOpenRedir'/>
-      <ref name='xmlNanoHTTPRead'/>
-      <ref name='xmlNanoHTTPRedir'/>
-      <ref name='xmlNanoHTTPReturnCode'/>
-      <ref name='xmlNanoHTTPSave'/>
-      <ref name='xmlNanoHTTPScanProxy'/>
-    </file>
-    <file name='parser'>
-      <ref name='XML_COMPLETE_ATTRS'/>
-      <ref name='XML_DEFAULT_VERSION'/>
-      <ref name='XML_DETECT_IDS'/>
-      <ref name='XML_PARSER_ATTRIBUTE_VALUE'/>
-      <ref name='XML_PARSER_CDATA_SECTION'/>
-      <ref name='XML_PARSER_COMMENT'/>
-      <ref name='XML_PARSER_CONTENT'/>
-      <ref name='XML_PARSER_DTD'/>
-      <ref name='XML_PARSER_END_TAG'/>
-      <ref name='XML_PARSER_ENTITY_DECL'/>
-      <ref name='XML_PARSER_ENTITY_VALUE'/>
-      <ref name='XML_PARSER_EOF'/>
-      <ref name='XML_PARSER_EPILOG'/>
-      <ref name='XML_PARSER_IGNORE'/>
-      <ref name='XML_PARSER_MISC'/>
-      <ref name='XML_PARSER_PI'/>
-      <ref name='XML_PARSER_PROLOG'/>
-      <ref name='XML_PARSER_PUBLIC_LITERAL'/>
-      <ref name='XML_PARSER_START'/>
-      <ref name='XML_PARSER_START_TAG'/>
-      <ref name='XML_PARSER_SYSTEM_LITERAL'/>
-      <ref name='XML_PARSE_BIG_LINES'/>
-      <ref name='XML_PARSE_COMPACT'/>
-      <ref name='XML_PARSE_DOM'/>
-      <ref name='XML_PARSE_DTDATTR'/>
-      <ref name='XML_PARSE_DTDLOAD'/>
-      <ref name='XML_PARSE_DTDVALID'/>
-      <ref name='XML_PARSE_HUGE'/>
-      <ref name='XML_PARSE_IGNORE_ENC'/>
-      <ref name='XML_PARSE_NOBASEFIX'/>
-      <ref name='XML_PARSE_NOBLANKS'/>
-      <ref name='XML_PARSE_NOCDATA'/>
-      <ref name='XML_PARSE_NODICT'/>
-      <ref name='XML_PARSE_NOENT'/>
-      <ref name='XML_PARSE_NOERROR'/>
-      <ref name='XML_PARSE_NONET'/>
-      <ref name='XML_PARSE_NOWARNING'/>
-      <ref name='XML_PARSE_NOXINCNODE'/>
-      <ref name='XML_PARSE_NSCLEAN'/>
-      <ref name='XML_PARSE_OLD10'/>
-      <ref name='XML_PARSE_OLDSAX'/>
-      <ref name='XML_PARSE_PEDANTIC'/>
-      <ref name='XML_PARSE_PUSH_DOM'/>
-      <ref name='XML_PARSE_PUSH_SAX'/>
-      <ref name='XML_PARSE_READER'/>
-      <ref name='XML_PARSE_RECOVER'/>
-      <ref name='XML_PARSE_SAX'/>
-      <ref name='XML_PARSE_SAX1'/>
-      <ref name='XML_PARSE_UNKNOWN'/>
-      <ref name='XML_PARSE_XINCLUDE'/>
-      <ref name='XML_SAX2_MAGIC'/>
-      <ref name='XML_SKIP_IDS'/>
-      <ref name='XML_WITH_AUTOMATA'/>
-      <ref name='XML_WITH_C14N'/>
-      <ref name='XML_WITH_CATALOG'/>
-      <ref name='XML_WITH_DEBUG'/>
-      <ref name='XML_WITH_DEBUG_MEM'/>
-      <ref name='XML_WITH_DEBUG_RUN'/>
-      <ref name='XML_WITH_EXPR'/>
-      <ref name='XML_WITH_FTP'/>
-      <ref name='XML_WITH_HTML'/>
-      <ref name='XML_WITH_HTTP'/>
-      <ref name='XML_WITH_ICONV'/>
-      <ref name='XML_WITH_ICU'/>
-      <ref name='XML_WITH_ISO8859X'/>
-      <ref name='XML_WITH_LEGACY'/>
-      <ref name='XML_WITH_LZMA'/>
-      <ref name='XML_WITH_MODULES'/>
-      <ref name='XML_WITH_NONE'/>
-      <ref name='XML_WITH_OUTPUT'/>
-      <ref name='XML_WITH_PATTERN'/>
-      <ref name='XML_WITH_PUSH'/>
-      <ref name='XML_WITH_READER'/>
-      <ref name='XML_WITH_REGEXP'/>
-      <ref name='XML_WITH_SAX1'/>
-      <ref name='XML_WITH_SCHEMAS'/>
-      <ref name='XML_WITH_SCHEMATRON'/>
-      <ref name='XML_WITH_THREAD'/>
-      <ref name='XML_WITH_TREE'/>
-      <ref name='XML_WITH_UNICODE'/>
-      <ref name='XML_WITH_VALID'/>
-      <ref name='XML_WITH_WRITER'/>
-      <ref name='XML_WITH_XINCLUDE'/>
-      <ref name='XML_WITH_XPATH'/>
-      <ref name='XML_WITH_XPTR'/>
-      <ref name='XML_WITH_ZLIB'/>
-      <ref name='_xmlParserCtxt'/>
-      <ref name='_xmlParserInput'/>
-      <ref name='_xmlParserNodeInfo'/>
-      <ref name='_xmlParserNodeInfoSeq'/>
-      <ref name='_xmlSAXHandler'/>
-      <ref name='_xmlSAXHandlerV1'/>
-      <ref name='_xmlSAXLocator'/>
-      <ref name='attributeDeclSAXFunc'/>
-      <ref name='attributeSAXFunc'/>
-      <ref name='cdataBlockSAXFunc'/>
-      <ref name='charactersSAXFunc'/>
-      <ref name='commentSAXFunc'/>
-      <ref name='elementDeclSAXFunc'/>
-      <ref name='endDocumentSAXFunc'/>
-      <ref name='endElementNsSAX2Func'/>
-      <ref name='endElementSAXFunc'/>
-      <ref name='entityDeclSAXFunc'/>
-      <ref name='errorSAXFunc'/>
-      <ref name='externalSubsetSAXFunc'/>
-      <ref name='fatalErrorSAXFunc'/>
-      <ref name='getEntitySAXFunc'/>
-      <ref name='getParameterEntitySAXFunc'/>
-      <ref name='hasExternalSubsetSAXFunc'/>
-      <ref name='hasInternalSubsetSAXFunc'/>
-      <ref name='ignorableWhitespaceSAXFunc'/>
-      <ref name='internalSubsetSAXFunc'/>
-      <ref name='isStandaloneSAXFunc'/>
-      <ref name='notationDeclSAXFunc'/>
-      <ref name='processingInstructionSAXFunc'/>
-      <ref name='referenceSAXFunc'/>
-      <ref name='resolveEntitySAXFunc'/>
-      <ref name='setDocumentLocatorSAXFunc'/>
-      <ref name='startDocumentSAXFunc'/>
-      <ref name='startElementNsSAX2Func'/>
-      <ref name='startElementSAXFunc'/>
-      <ref name='unparsedEntityDeclSAXFunc'/>
-      <ref name='warningSAXFunc'/>
-      <ref name='xmlByteConsumed'/>
-      <ref name='xmlCleanupParser'/>
-      <ref name='xmlClearNodeInfoSeq'/>
-      <ref name='xmlClearParserCtxt'/>
-      <ref name='xmlCreateDocParserCtxt'/>
-      <ref name='xmlCreateIOParserCtxt'/>
-      <ref name='xmlCreatePushParserCtxt'/>
-      <ref name='xmlCtxtReadDoc'/>
-      <ref name='xmlCtxtReadFd'/>
-      <ref name='xmlCtxtReadFile'/>
-      <ref name='xmlCtxtReadIO'/>
-      <ref name='xmlCtxtReadMemory'/>
-      <ref name='xmlCtxtReset'/>
-      <ref name='xmlCtxtResetPush'/>
-      <ref name='xmlCtxtUseOptions'/>
-      <ref name='xmlExternalEntityLoader'/>
-      <ref name='xmlFeature'/>
-      <ref name='xmlFreeParserCtxt'/>
-      <ref name='xmlGetExternalEntityLoader'/>
-      <ref name='xmlGetFeature'/>
-      <ref name='xmlGetFeaturesList'/>
-      <ref name='xmlHasFeature'/>
-      <ref name='xmlIOParseDTD'/>
-      <ref name='xmlInitNodeInfoSeq'/>
-      <ref name='xmlInitParser'/>
-      <ref name='xmlInitParserCtxt'/>
-      <ref name='xmlKeepBlanksDefault'/>
-      <ref name='xmlLineNumbersDefault'/>
-      <ref name='xmlLoadExternalEntity'/>
-      <ref name='xmlNewIOInputStream'/>
-      <ref name='xmlNewParserCtxt'/>
-      <ref name='xmlParseBalancedChunkMemory'/>
-      <ref name='xmlParseBalancedChunkMemoryRecover'/>
-      <ref name='xmlParseChunk'/>
-      <ref name='xmlParseCtxtExternalEntity'/>
-      <ref name='xmlParseDTD'/>
-      <ref name='xmlParseDoc'/>
-      <ref name='xmlParseDocument'/>
-      <ref name='xmlParseEntity'/>
-      <ref name='xmlParseExtParsedEnt'/>
-      <ref name='xmlParseExternalEntity'/>
-      <ref name='xmlParseFile'/>
-      <ref name='xmlParseInNodeContext'/>
-      <ref name='xmlParseMemory'/>
-      <ref name='xmlParserAddNodeInfo'/>
-      <ref name='xmlParserFindNodeInfo'/>
-      <ref name='xmlParserFindNodeInfoIndex'/>
-      <ref name='xmlParserInputDeallocate'/>
-      <ref name='xmlParserInputGrow'/>
-      <ref name='xmlParserInputRead'/>
-      <ref name='xmlParserInputState'/>
-      <ref name='xmlParserMode'/>
-      <ref name='xmlParserNodeInfo'/>
-      <ref name='xmlParserNodeInfoPtr'/>
-      <ref name='xmlParserNodeInfoSeq'/>
-      <ref name='xmlParserNodeInfoSeqPtr'/>
-      <ref name='xmlParserOption'/>
-      <ref name='xmlPedanticParserDefault'/>
-      <ref name='xmlReadDoc'/>
-      <ref name='xmlReadFd'/>
-      <ref name='xmlReadFile'/>
-      <ref name='xmlReadIO'/>
-      <ref name='xmlReadMemory'/>
-      <ref name='xmlRecoverDoc'/>
-      <ref name='xmlRecoverFile'/>
-      <ref name='xmlRecoverMemory'/>
-      <ref name='xmlSAXHandlerV1'/>
-      <ref name='xmlSAXHandlerV1Ptr'/>
-      <ref name='xmlSAXParseDTD'/>
-      <ref name='xmlSAXParseDoc'/>
-      <ref name='xmlSAXParseEntity'/>
-      <ref name='xmlSAXParseFile'/>
-      <ref name='xmlSAXParseFileWithData'/>
-      <ref name='xmlSAXParseMemory'/>
-      <ref name='xmlSAXParseMemoryWithData'/>
-      <ref name='xmlSAXUserParseFile'/>
-      <ref name='xmlSAXUserParseMemory'/>
-      <ref name='xmlSetExternalEntityLoader'/>
-      <ref name='xmlSetFeature'/>
-      <ref name='xmlSetupParserForBuffer'/>
-      <ref name='xmlStartTag'/>
-      <ref name='xmlStopParser'/>
-      <ref name='xmlSubstituteEntitiesDefault'/>
-    </file>
-    <file name='parserInternals'>
-      <ref name='INPUT_CHUNK'/>
-      <ref name='IS_ASCII_DIGIT'/>
-      <ref name='IS_ASCII_LETTER'/>
-      <ref name='IS_BASECHAR'/>
-      <ref name='IS_BLANK'/>
-      <ref name='IS_BLANK_CH'/>
-      <ref name='IS_BYTE_CHAR'/>
-      <ref name='IS_CHAR'/>
-      <ref name='IS_CHAR_CH'/>
-      <ref name='IS_COMBINING'/>
-      <ref name='IS_COMBINING_CH'/>
-      <ref name='IS_DIGIT'/>
-      <ref name='IS_DIGIT_CH'/>
-      <ref name='IS_EXTENDER'/>
-      <ref name='IS_EXTENDER_CH'/>
-      <ref name='IS_IDEOGRAPHIC'/>
-      <ref name='IS_LETTER'/>
-      <ref name='IS_LETTER_CH'/>
-      <ref name='IS_PUBIDCHAR'/>
-      <ref name='IS_PUBIDCHAR_CH'/>
-      <ref name='MOVETO_ENDTAG'/>
-      <ref name='MOVETO_STARTTAG'/>
-      <ref name='SKIP_EOL'/>
-      <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-      <ref name='XML_MAX_LOOKUP_LIMIT'/>
-      <ref name='XML_MAX_NAMELEN'/>
-      <ref name='XML_MAX_NAME_LENGTH'/>
-      <ref name='XML_MAX_TEXT_LENGTH'/>
-      <ref name='XML_SUBSTITUTE_BOTH'/>
-      <ref name='XML_SUBSTITUTE_NONE'/>
-      <ref name='XML_SUBSTITUTE_PEREF'/>
-      <ref name='XML_SUBSTITUTE_REF'/>
-      <ref name='htmlCreateFileParserCtxt'/>
-      <ref name='htmlInitAutoClose'/>
-      <ref name='inputPop'/>
-      <ref name='inputPush'/>
-      <ref name='namePop'/>
-      <ref name='namePush'/>
-      <ref name='nodePop'/>
-      <ref name='nodePush'/>
-      <ref name='xmlCheckLanguageID'/>
-      <ref name='xmlCopyChar'/>
-      <ref name='xmlCopyCharMultiByte'/>
-      <ref name='xmlCreateEntityParserCtxt'/>
-      <ref name='xmlCreateFileParserCtxt'/>
-      <ref name='xmlCreateMemoryParserCtxt'/>
-      <ref name='xmlCreateURLParserCtxt'/>
-      <ref name='xmlCurrentChar'/>
-      <ref name='xmlDecodeEntities'/>
-      <ref name='xmlEntityReferenceFunc'/>
-      <ref name='xmlErrMemory'/>
-      <ref name='xmlFreeInputStream'/>
-      <ref name='xmlHandleEntity'/>
-      <ref name='xmlIsLetter'/>
-      <ref name='xmlNamespaceParseNCName'/>
-      <ref name='xmlNamespaceParseNSDef'/>
-      <ref name='xmlNamespaceParseQName'/>
-      <ref name='xmlNewEntityInputStream'/>
-      <ref name='xmlNewInputFromFile'/>
-      <ref name='xmlNewInputStream'/>
-      <ref name='xmlNewStringInputStream'/>
-      <ref name='xmlNextChar'/>
-      <ref name='xmlParseAttValue'/>
-      <ref name='xmlParseAttribute'/>
-      <ref name='xmlParseAttributeListDecl'/>
-      <ref name='xmlParseAttributeType'/>
-      <ref name='xmlParseCDSect'/>
-      <ref name='xmlParseCharData'/>
-      <ref name='xmlParseCharRef'/>
-      <ref name='xmlParseComment'/>
-      <ref name='xmlParseContent'/>
-      <ref name='xmlParseDefaultDecl'/>
-      <ref name='xmlParseDocTypeDecl'/>
-      <ref name='xmlParseElement'/>
-      <ref name='xmlParseElementChildrenContentDecl'/>
-      <ref name='xmlParseElementContentDecl'/>
-      <ref name='xmlParseElementDecl'/>
-      <ref name='xmlParseElementMixedContentDecl'/>
-      <ref name='xmlParseEncName'/>
-      <ref name='xmlParseEncodingDecl'/>
-      <ref name='xmlParseEndTag'/>
-      <ref name='xmlParseEntityDecl'/>
-      <ref name='xmlParseEntityRef'/>
-      <ref name='xmlParseEntityValue'/>
-      <ref name='xmlParseEnumeratedType'/>
-      <ref name='xmlParseEnumerationType'/>
-      <ref name='xmlParseExternalID'/>
-      <ref name='xmlParseExternalSubset'/>
-      <ref name='xmlParseMarkupDecl'/>
-      <ref name='xmlParseMisc'/>
-      <ref name='xmlParseName'/>
-      <ref name='xmlParseNamespace'/>
-      <ref name='xmlParseNmtoken'/>
-      <ref name='xmlParseNotationDecl'/>
-      <ref name='xmlParseNotationType'/>
-      <ref name='xmlParsePEReference'/>
-      <ref name='xmlParsePI'/>
-      <ref name='xmlParsePITarget'/>
-      <ref name='xmlParsePubidLiteral'/>
-      <ref name='xmlParseQuotedString'/>
-      <ref name='xmlParseReference'/>
-      <ref name='xmlParseSDDecl'/>
-      <ref name='xmlParseStartTag'/>
-      <ref name='xmlParseSystemLiteral'/>
-      <ref name='xmlParseTextDecl'/>
-      <ref name='xmlParseVersionInfo'/>
-      <ref name='xmlParseVersionNum'/>
-      <ref name='xmlParseXMLDecl'/>
-      <ref name='xmlParserHandlePEReference'/>
-      <ref name='xmlParserHandleReference'/>
-      <ref name='xmlParserInputShrink'/>
-      <ref name='xmlParserMaxDepth'/>
-      <ref name='xmlPopInput'/>
-      <ref name='xmlPushInput'/>
-      <ref name='xmlScanName'/>
-      <ref name='xmlSetEntityReferenceFunc'/>
-      <ref name='xmlSkipBlankChars'/>
-      <ref name='xmlSplitQName'/>
-      <ref name='xmlStringComment'/>
-      <ref name='xmlStringCurrentChar'/>
-      <ref name='xmlStringDecodeEntities'/>
-      <ref name='xmlStringLenDecodeEntities'/>
-      <ref name='xmlStringText'/>
-      <ref name='xmlStringTextNoenc'/>
-      <ref name='xmlSwitchEncoding'/>
-      <ref name='xmlSwitchInputEncoding'/>
-      <ref name='xmlSwitchToEncoding'/>
-    </file>
-    <file name='pattern'>
-      <ref name='XML_PATTERN_DEFAULT'/>
-      <ref name='XML_PATTERN_XPATH'/>
-      <ref name='XML_PATTERN_XSFIELD'/>
-      <ref name='XML_PATTERN_XSSEL'/>
-      <ref name='xmlFreePattern'/>
-      <ref name='xmlFreePatternList'/>
-      <ref name='xmlFreeStreamCtxt'/>
-      <ref name='xmlPattern'/>
-      <ref name='xmlPatternFlags'/>
-      <ref name='xmlPatternFromRoot'/>
-      <ref name='xmlPatternGetStreamCtxt'/>
-      <ref name='xmlPatternMatch'/>
-      <ref name='xmlPatternMaxDepth'/>
-      <ref name='xmlPatternMinDepth'/>
-      <ref name='xmlPatternPtr'/>
-      <ref name='xmlPatternStreamable'/>
-      <ref name='xmlPatterncompile'/>
-      <ref name='xmlStreamCtxt'/>
-      <ref name='xmlStreamCtxtPtr'/>
-      <ref name='xmlStreamPop'/>
-      <ref name='xmlStreamPush'/>
-      <ref name='xmlStreamPushAttr'/>
-      <ref name='xmlStreamPushNode'/>
-      <ref name='xmlStreamWantsAnyNode'/>
-    </file>
-    <file name='relaxng'>
-      <ref name='XML_RELAXNGP_CRNG'/>
-      <ref name='XML_RELAXNGP_FREE_DOC'/>
-      <ref name='XML_RELAXNGP_NONE'/>
-      <ref name='XML_RELAXNG_ERR_ATTREXTRANS'/>
-      <ref name='XML_RELAXNG_ERR_ATTRNAME'/>
-      <ref name='XML_RELAXNG_ERR_ATTRNONS'/>
-      <ref name='XML_RELAXNG_ERR_ATTRVALID'/>
-      <ref name='XML_RELAXNG_ERR_ATTRWRONGNS'/>
-      <ref name='XML_RELAXNG_ERR_CONTENTVALID'/>
-      <ref name='XML_RELAXNG_ERR_DATAELEM'/>
-      <ref name='XML_RELAXNG_ERR_DATATYPE'/>
-      <ref name='XML_RELAXNG_ERR_DUPID'/>
-      <ref name='XML_RELAXNG_ERR_ELEMEXTRANS'/>
-      <ref name='XML_RELAXNG_ERR_ELEMNAME'/>
-      <ref name='XML_RELAXNG_ERR_ELEMNONS'/>
-      <ref name='XML_RELAXNG_ERR_ELEMNOTEMPTY'/>
-      <ref name='XML_RELAXNG_ERR_ELEMWRONG'/>
-      <ref name='XML_RELAXNG_ERR_ELEMWRONGNS'/>
-      <ref name='XML_RELAXNG_ERR_EXTRACONTENT'/>
-      <ref name='XML_RELAXNG_ERR_EXTRADATA'/>
-      <ref name='XML_RELAXNG_ERR_INTEREXTRA'/>
-      <ref name='XML_RELAXNG_ERR_INTERNAL'/>
-      <ref name='XML_RELAXNG_ERR_INTERNODATA'/>
-      <ref name='XML_RELAXNG_ERR_INTERSEQ'/>
-      <ref name='XML_RELAXNG_ERR_INVALIDATTR'/>
-      <ref name='XML_RELAXNG_ERR_LACKDATA'/>
-      <ref name='XML_RELAXNG_ERR_LIST'/>
-      <ref name='XML_RELAXNG_ERR_LISTELEM'/>
-      <ref name='XML_RELAXNG_ERR_LISTEMPTY'/>
-      <ref name='XML_RELAXNG_ERR_LISTEXTRA'/>
-      <ref name='XML_RELAXNG_ERR_MEMORY'/>
-      <ref name='XML_RELAXNG_ERR_NODEFINE'/>
-      <ref name='XML_RELAXNG_ERR_NOELEM'/>
-      <ref name='XML_RELAXNG_ERR_NOGRAMMAR'/>
-      <ref name='XML_RELAXNG_ERR_NOSTATE'/>
-      <ref name='XML_RELAXNG_ERR_NOTELEM'/>
-      <ref name='XML_RELAXNG_ERR_TEXTWRONG'/>
-      <ref name='XML_RELAXNG_ERR_TYPE'/>
-      <ref name='XML_RELAXNG_ERR_TYPECMP'/>
-      <ref name='XML_RELAXNG_ERR_TYPEVAL'/>
-      <ref name='XML_RELAXNG_ERR_VALELEM'/>
-      <ref name='XML_RELAXNG_ERR_VALUE'/>
-      <ref name='XML_RELAXNG_OK'/>
-      <ref name='xmlRelaxNG'/>
-      <ref name='xmlRelaxNGCleanupTypes'/>
-      <ref name='xmlRelaxNGDump'/>
-      <ref name='xmlRelaxNGDumpTree'/>
-      <ref name='xmlRelaxNGFree'/>
-      <ref name='xmlRelaxNGFreeParserCtxt'/>
-      <ref name='xmlRelaxNGFreeValidCtxt'/>
-      <ref name='xmlRelaxNGGetParserErrors'/>
-      <ref name='xmlRelaxNGGetValidErrors'/>
-      <ref name='xmlRelaxNGInitTypes'/>
-      <ref name='xmlRelaxNGNewDocParserCtxt'/>
-      <ref name='xmlRelaxNGNewMemParserCtxt'/>
-      <ref name='xmlRelaxNGNewParserCtxt'/>
-      <ref name='xmlRelaxNGNewValidCtxt'/>
-      <ref name='xmlRelaxNGParse'/>
-      <ref name='xmlRelaxNGParserCtxt'/>
-      <ref name='xmlRelaxNGParserCtxtPtr'/>
-      <ref name='xmlRelaxNGParserFlag'/>
-      <ref name='xmlRelaxNGPtr'/>
-      <ref name='xmlRelaxNGSetParserErrors'/>
-      <ref name='xmlRelaxNGSetParserStructuredErrors'/>
-      <ref name='xmlRelaxNGSetValidErrors'/>
-      <ref name='xmlRelaxNGSetValidStructuredErrors'/>
-      <ref name='xmlRelaxNGValidCtxt'/>
-      <ref name='xmlRelaxNGValidCtxtPtr'/>
-      <ref name='xmlRelaxNGValidErr'/>
-      <ref name='xmlRelaxNGValidateDoc'/>
-      <ref name='xmlRelaxNGValidateFullElement'/>
-      <ref name='xmlRelaxNGValidatePopElement'/>
-      <ref name='xmlRelaxNGValidatePushCData'/>
-      <ref name='xmlRelaxNGValidatePushElement'/>
-      <ref name='xmlRelaxNGValidityErrorFunc'/>
-      <ref name='xmlRelaxNGValidityWarningFunc'/>
-      <ref name='xmlRelaxParserSetFlag'/>
-    </file>
-    <file name='schemasInternals'>
-      <ref name='XML_SCHEMAS_ANYATTR_LAX'/>
-      <ref name='XML_SCHEMAS_ANYATTR_SKIP'/>
-      <ref name='XML_SCHEMAS_ANYATTR_STRICT'/>
-      <ref name='XML_SCHEMAS_ANYSIMPLETYPE'/>
-      <ref name='XML_SCHEMAS_ANYTYPE'/>
-      <ref name='XML_SCHEMAS_ANYURI'/>
-      <ref name='XML_SCHEMAS_ANY_LAX'/>
-      <ref name='XML_SCHEMAS_ANY_SKIP'/>
-      <ref name='XML_SCHEMAS_ANY_STRICT'/>
-      <ref name='XML_SCHEMAS_ATTRGROUP_GLOBAL'/>
-      <ref name='XML_SCHEMAS_ATTRGROUP_HAS_REFS'/>
-      <ref name='XML_SCHEMAS_ATTRGROUP_MARKED'/>
-      <ref name='XML_SCHEMAS_ATTRGROUP_REDEFINED'/>
-      <ref name='XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED'/>
-      <ref name='XML_SCHEMAS_ATTR_FIXED'/>
-      <ref name='XML_SCHEMAS_ATTR_GLOBAL'/>
-      <ref name='XML_SCHEMAS_ATTR_INTERNAL_RESOLVED'/>
-      <ref name='XML_SCHEMAS_ATTR_NSDEFAULT'/>
-      <ref name='XML_SCHEMAS_ATTR_USE_OPTIONAL'/>
-      <ref name='XML_SCHEMAS_ATTR_USE_PROHIBITED'/>
-      <ref name='XML_SCHEMAS_ATTR_USE_REQUIRED'/>
-      <ref name='XML_SCHEMAS_BASE64BINARY'/>
-      <ref name='XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION'/>
-      <ref name='XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION'/>
-      <ref name='XML_SCHEMAS_BOOLEAN'/>
-      <ref name='XML_SCHEMAS_BYTE'/>
-      <ref name='XML_SCHEMAS_DATE'/>
-      <ref name='XML_SCHEMAS_DATETIME'/>
-      <ref name='XML_SCHEMAS_DECIMAL'/>
-      <ref name='XML_SCHEMAS_DOUBLE'/>
-      <ref name='XML_SCHEMAS_DURATION'/>
-      <ref name='XML_SCHEMAS_ELEM_ABSTRACT'/>
-      <ref name='XML_SCHEMAS_ELEM_BLOCK_ABSENT'/>
-      <ref name='XML_SCHEMAS_ELEM_BLOCK_EXTENSION'/>
-      <ref name='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION'/>
-      <ref name='XML_SCHEMAS_ELEM_CIRCULAR'/>
-      <ref name='XML_SCHEMAS_ELEM_DEFAULT'/>
-      <ref name='XML_SCHEMAS_ELEM_FINAL_ABSENT'/>
-      <ref name='XML_SCHEMAS_ELEM_FINAL_EXTENSION'/>
-      <ref name='XML_SCHEMAS_ELEM_FINAL_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_ELEM_FIXED'/>
-      <ref name='XML_SCHEMAS_ELEM_GLOBAL'/>
-      <ref name='XML_SCHEMAS_ELEM_INTERNAL_CHECKED'/>
-      <ref name='XML_SCHEMAS_ELEM_INTERNAL_RESOLVED'/>
-      <ref name='XML_SCHEMAS_ELEM_NILLABLE'/>
-      <ref name='XML_SCHEMAS_ELEM_NSDEFAULT'/>
-      <ref name='XML_SCHEMAS_ELEM_REF'/>
-      <ref name='XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD'/>
-      <ref name='XML_SCHEMAS_ELEM_TOPLEVEL'/>
-      <ref name='XML_SCHEMAS_ENTITIES'/>
-      <ref name='XML_SCHEMAS_ENTITY'/>
-      <ref name='XML_SCHEMAS_FACET_COLLAPSE'/>
-      <ref name='XML_SCHEMAS_FACET_PRESERVE'/>
-      <ref name='XML_SCHEMAS_FACET_REPLACE'/>
-      <ref name='XML_SCHEMAS_FACET_UNKNOWN'/>
-      <ref name='XML_SCHEMAS_FINAL_DEFAULT_EXTENSION'/>
-      <ref name='XML_SCHEMAS_FINAL_DEFAULT_LIST'/>
-      <ref name='XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_FINAL_DEFAULT_UNION'/>
-      <ref name='XML_SCHEMAS_FLOAT'/>
-      <ref name='XML_SCHEMAS_GDAY'/>
-      <ref name='XML_SCHEMAS_GMONTH'/>
-      <ref name='XML_SCHEMAS_GMONTHDAY'/>
-      <ref name='XML_SCHEMAS_GYEAR'/>
-      <ref name='XML_SCHEMAS_GYEARMONTH'/>
-      <ref name='XML_SCHEMAS_HEXBINARY'/>
-      <ref name='XML_SCHEMAS_ID'/>
-      <ref name='XML_SCHEMAS_IDREF'/>
-      <ref name='XML_SCHEMAS_IDREFS'/>
-      <ref name='XML_SCHEMAS_INCLUDING_CONVERT_NS'/>
-      <ref name='XML_SCHEMAS_INT'/>
-      <ref name='XML_SCHEMAS_INTEGER'/>
-      <ref name='XML_SCHEMAS_LANGUAGE'/>
-      <ref name='XML_SCHEMAS_LONG'/>
-      <ref name='XML_SCHEMAS_NAME'/>
-      <ref name='XML_SCHEMAS_NCNAME'/>
-      <ref name='XML_SCHEMAS_NINTEGER'/>
-      <ref name='XML_SCHEMAS_NMTOKEN'/>
-      <ref name='XML_SCHEMAS_NMTOKENS'/>
-      <ref name='XML_SCHEMAS_NNINTEGER'/>
-      <ref name='XML_SCHEMAS_NORMSTRING'/>
-      <ref name='XML_SCHEMAS_NOTATION'/>
-      <ref name='XML_SCHEMAS_NPINTEGER'/>
-      <ref name='XML_SCHEMAS_PINTEGER'/>
-      <ref name='XML_SCHEMAS_QNAME'/>
-      <ref name='XML_SCHEMAS_QUALIF_ATTR'/>
-      <ref name='XML_SCHEMAS_QUALIF_ELEM'/>
-      <ref name='XML_SCHEMAS_SHORT'/>
-      <ref name='XML_SCHEMAS_STRING'/>
-      <ref name='XML_SCHEMAS_TIME'/>
-      <ref name='XML_SCHEMAS_TOKEN'/>
-      <ref name='XML_SCHEMAS_TYPE_ABSTRACT'/>
-      <ref name='XML_SCHEMAS_TYPE_BLOCK_DEFAULT'/>
-      <ref name='XML_SCHEMAS_TYPE_BLOCK_EXTENSION'/>
-      <ref name='XML_SCHEMAS_TYPE_BLOCK_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE'/>
-      <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION'/>
-      <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_TYPE_FACETSNEEDVALUE'/>
-      <ref name='XML_SCHEMAS_TYPE_FINAL_DEFAULT'/>
-      <ref name='XML_SCHEMAS_TYPE_FINAL_EXTENSION'/>
-      <ref name='XML_SCHEMAS_TYPE_FINAL_LIST'/>
-      <ref name='XML_SCHEMAS_TYPE_FINAL_RESTRICTION'/>
-      <ref name='XML_SCHEMAS_TYPE_FINAL_UNION'/>
-      <ref name='XML_SCHEMAS_TYPE_FIXUP_1'/>
-      <ref name='XML_SCHEMAS_TYPE_GLOBAL'/>
-      <ref name='XML_SCHEMAS_TYPE_HAS_FACETS'/>
-      <ref name='XML_SCHEMAS_TYPE_INTERNAL_INVALID'/>
-      <ref name='XML_SCHEMAS_TYPE_INTERNAL_RESOLVED'/>
-      <ref name='XML_SCHEMAS_TYPE_MARKED'/>
-      <ref name='XML_SCHEMAS_TYPE_MIXED'/>
-      <ref name='XML_SCHEMAS_TYPE_NORMVALUENEEDED'/>
-      <ref name='XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD'/>
-      <ref name='XML_SCHEMAS_TYPE_REDEFINED'/>
-      <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-      <ref name='XML_SCHEMAS_TYPE_VARIETY_ATOMIC'/>
-      <ref name='XML_SCHEMAS_TYPE_VARIETY_LIST'/>
-      <ref name='XML_SCHEMAS_TYPE_VARIETY_UNION'/>
-      <ref name='XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE'/>
-      <ref name='XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE'/>
-      <ref name='XML_SCHEMAS_TYPE_WHITESPACE_REPLACE'/>
-      <ref name='XML_SCHEMAS_UBYTE'/>
-      <ref name='XML_SCHEMAS_UINT'/>
-      <ref name='XML_SCHEMAS_ULONG'/>
-      <ref name='XML_SCHEMAS_UNKNOWN'/>
-      <ref name='XML_SCHEMAS_USHORT'/>
-      <ref name='XML_SCHEMAS_WILDCARD_COMPLETE'/>
-      <ref name='XML_SCHEMA_CONTENT_ANY'/>
-      <ref name='XML_SCHEMA_CONTENT_BASIC'/>
-      <ref name='XML_SCHEMA_CONTENT_ELEMENTS'/>
-      <ref name='XML_SCHEMA_CONTENT_EMPTY'/>
-      <ref name='XML_SCHEMA_CONTENT_MIXED'/>
-      <ref name='XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS'/>
-      <ref name='XML_SCHEMA_CONTENT_SIMPLE'/>
-      <ref name='XML_SCHEMA_CONTENT_UNKNOWN'/>
-      <ref name='XML_SCHEMA_EXTRA_ATTR_USE_PROHIB'/>
-      <ref name='XML_SCHEMA_EXTRA_QNAMEREF'/>
-      <ref name='XML_SCHEMA_FACET_ENUMERATION'/>
-      <ref name='XML_SCHEMA_FACET_FRACTIONDIGITS'/>
-      <ref name='XML_SCHEMA_FACET_LENGTH'/>
-      <ref name='XML_SCHEMA_FACET_MAXEXCLUSIVE'/>
-      <ref name='XML_SCHEMA_FACET_MAXINCLUSIVE'/>
-      <ref name='XML_SCHEMA_FACET_MAXLENGTH'/>
-      <ref name='XML_SCHEMA_FACET_MINEXCLUSIVE'/>
-      <ref name='XML_SCHEMA_FACET_MININCLUSIVE'/>
-      <ref name='XML_SCHEMA_FACET_MINLENGTH'/>
-      <ref name='XML_SCHEMA_FACET_PATTERN'/>
-      <ref name='XML_SCHEMA_FACET_TOTALDIGITS'/>
-      <ref name='XML_SCHEMA_FACET_WHITESPACE'/>
-      <ref name='XML_SCHEMA_TYPE_ALL'/>
-      <ref name='XML_SCHEMA_TYPE_ANY'/>
-      <ref name='XML_SCHEMA_TYPE_ANY_ATTRIBUTE'/>
-      <ref name='XML_SCHEMA_TYPE_ATTRIBUTE'/>
-      <ref name='XML_SCHEMA_TYPE_ATTRIBUTEGROUP'/>
-      <ref name='XML_SCHEMA_TYPE_ATTRIBUTE_USE'/>
-      <ref name='XML_SCHEMA_TYPE_BASIC'/>
-      <ref name='XML_SCHEMA_TYPE_CHOICE'/>
-      <ref name='XML_SCHEMA_TYPE_COMPLEX'/>
-      <ref name='XML_SCHEMA_TYPE_COMPLEX_CONTENT'/>
-      <ref name='XML_SCHEMA_TYPE_ELEMENT'/>
-      <ref name='XML_SCHEMA_TYPE_EXTENSION'/>
-      <ref name='XML_SCHEMA_TYPE_FACET'/>
-      <ref name='XML_SCHEMA_TYPE_GROUP'/>
-      <ref name='XML_SCHEMA_TYPE_IDC_KEY'/>
-      <ref name='XML_SCHEMA_TYPE_IDC_KEYREF'/>
-      <ref name='XML_SCHEMA_TYPE_IDC_UNIQUE'/>
-      <ref name='XML_SCHEMA_TYPE_LIST'/>
-      <ref name='XML_SCHEMA_TYPE_NOTATION'/>
-      <ref name='XML_SCHEMA_TYPE_PARTICLE'/>
-      <ref name='XML_SCHEMA_TYPE_RESTRICTION'/>
-      <ref name='XML_SCHEMA_TYPE_SEQUENCE'/>
-      <ref name='XML_SCHEMA_TYPE_SIMPLE'/>
-      <ref name='XML_SCHEMA_TYPE_SIMPLE_CONTENT'/>
-      <ref name='XML_SCHEMA_TYPE_UNION'/>
-      <ref name='XML_SCHEMA_TYPE_UR'/>
-      <ref name='_xmlSchema'/>
-      <ref name='_xmlSchemaAnnot'/>
-      <ref name='_xmlSchemaAttribute'/>
-      <ref name='_xmlSchemaAttributeGroup'/>
-      <ref name='_xmlSchemaAttributeLink'/>
-      <ref name='_xmlSchemaElement'/>
-      <ref name='_xmlSchemaFacet'/>
-      <ref name='_xmlSchemaFacetLink'/>
-      <ref name='_xmlSchemaNotation'/>
-      <ref name='_xmlSchemaType'/>
-      <ref name='_xmlSchemaTypeLink'/>
-      <ref name='_xmlSchemaWildcard'/>
-      <ref name='_xmlSchemaWildcardNs'/>
-      <ref name='xmlSchemaAnnot'/>
-      <ref name='xmlSchemaAnnotPtr'/>
-      <ref name='xmlSchemaAttribute'/>
-      <ref name='xmlSchemaAttributeGroup'/>
-      <ref name='xmlSchemaAttributeGroupPtr'/>
-      <ref name='xmlSchemaAttributeLink'/>
-      <ref name='xmlSchemaAttributeLinkPtr'/>
-      <ref name='xmlSchemaAttributePtr'/>
-      <ref name='xmlSchemaContentType'/>
-      <ref name='xmlSchemaElement'/>
-      <ref name='xmlSchemaElementPtr'/>
-      <ref name='xmlSchemaFacet'/>
-      <ref name='xmlSchemaFacetLink'/>
-      <ref name='xmlSchemaFacetLinkPtr'/>
-      <ref name='xmlSchemaFacetPtr'/>
-      <ref name='xmlSchemaFreeType'/>
-      <ref name='xmlSchemaFreeWildcard'/>
-      <ref name='xmlSchemaNotation'/>
-      <ref name='xmlSchemaNotationPtr'/>
-      <ref name='xmlSchemaType'/>
-      <ref name='xmlSchemaTypeLink'/>
-      <ref name='xmlSchemaTypeLinkPtr'/>
-      <ref name='xmlSchemaTypePtr'/>
-      <ref name='xmlSchemaTypeType'/>
-      <ref name='xmlSchemaVal'/>
-      <ref name='xmlSchemaValPtr'/>
-      <ref name='xmlSchemaValType'/>
-      <ref name='xmlSchemaWildcard'/>
-      <ref name='xmlSchemaWildcardNs'/>
-      <ref name='xmlSchemaWildcardNsPtr'/>
-      <ref name='xmlSchemaWildcardPtr'/>
-    </file>
-    <file name='schematron'>
-      <ref name='XML_SCHEMATRON_OUT_BUFFER'/>
-      <ref name='XML_SCHEMATRON_OUT_ERROR'/>
-      <ref name='XML_SCHEMATRON_OUT_FILE'/>
-      <ref name='XML_SCHEMATRON_OUT_IO'/>
-      <ref name='XML_SCHEMATRON_OUT_QUIET'/>
-      <ref name='XML_SCHEMATRON_OUT_TEXT'/>
-      <ref name='XML_SCHEMATRON_OUT_XML'/>
-      <ref name='xmlSchematron'/>
-      <ref name='xmlSchematronFree'/>
-      <ref name='xmlSchematronFreeParserCtxt'/>
-      <ref name='xmlSchematronFreeValidCtxt'/>
-      <ref name='xmlSchematronNewDocParserCtxt'/>
-      <ref name='xmlSchematronNewMemParserCtxt'/>
-      <ref name='xmlSchematronNewParserCtxt'/>
-      <ref name='xmlSchematronNewValidCtxt'/>
-      <ref name='xmlSchematronParse'/>
-      <ref name='xmlSchematronParserCtxt'/>
-      <ref name='xmlSchematronParserCtxtPtr'/>
-      <ref name='xmlSchematronPtr'/>
-      <ref name='xmlSchematronSetValidStructuredErrors'/>
-      <ref name='xmlSchematronValidCtxt'/>
-      <ref name='xmlSchematronValidCtxtPtr'/>
-      <ref name='xmlSchematronValidOptions'/>
-      <ref name='xmlSchematronValidateDoc'/>
-      <ref name='xmlSchematronValidityErrorFunc'/>
-      <ref name='xmlSchematronValidityWarningFunc'/>
-    </file>
-    <file name='threads'>
-      <ref name='xmlCleanupThreads'/>
-      <ref name='xmlDllMain'/>
-      <ref name='xmlFreeMutex'/>
-      <ref name='xmlFreeRMutex'/>
-      <ref name='xmlGetGlobalState'/>
-      <ref name='xmlGetThreadId'/>
-      <ref name='xmlInitThreads'/>
-      <ref name='xmlIsMainThread'/>
-      <ref name='xmlLockLibrary'/>
-      <ref name='xmlMutex'/>
-      <ref name='xmlMutexLock'/>
-      <ref name='xmlMutexPtr'/>
-      <ref name='xmlMutexUnlock'/>
-      <ref name='xmlNewMutex'/>
-      <ref name='xmlNewRMutex'/>
-      <ref name='xmlRMutex'/>
-      <ref name='xmlRMutexLock'/>
-      <ref name='xmlRMutexPtr'/>
-      <ref name='xmlRMutexUnlock'/>
-      <ref name='xmlUnlockLibrary'/>
-    </file>
-    <file name='tree'>
-      <ref name='BASE_BUFFER_SIZE'/>
-      <ref name='LIBXML2_NEW_BUFFER'/>
-      <ref name='XML_ATTRIBUTE_CDATA'/>
-      <ref name='XML_ATTRIBUTE_DECL'/>
-      <ref name='XML_ATTRIBUTE_ENTITIES'/>
-      <ref name='XML_ATTRIBUTE_ENTITY'/>
-      <ref name='XML_ATTRIBUTE_ENUMERATION'/>
-      <ref name='XML_ATTRIBUTE_FIXED'/>
-      <ref name='XML_ATTRIBUTE_ID'/>
-      <ref name='XML_ATTRIBUTE_IDREF'/>
-      <ref name='XML_ATTRIBUTE_IDREFS'/>
-      <ref name='XML_ATTRIBUTE_IMPLIED'/>
-      <ref name='XML_ATTRIBUTE_NMTOKEN'/>
-      <ref name='XML_ATTRIBUTE_NMTOKENS'/>
-      <ref name='XML_ATTRIBUTE_NODE'/>
-      <ref name='XML_ATTRIBUTE_NONE'/>
-      <ref name='XML_ATTRIBUTE_NOTATION'/>
-      <ref name='XML_ATTRIBUTE_REQUIRED'/>
-      <ref name='XML_BUFFER_ALLOC_BOUNDED'/>
-      <ref name='XML_BUFFER_ALLOC_DOUBLEIT'/>
-      <ref name='XML_BUFFER_ALLOC_EXACT'/>
-      <ref name='XML_BUFFER_ALLOC_HYBRID'/>
-      <ref name='XML_BUFFER_ALLOC_IMMUTABLE'/>
-      <ref name='XML_BUFFER_ALLOC_IO'/>
-      <ref name='XML_CDATA_SECTION_NODE'/>
-      <ref name='XML_COMMENT_NODE'/>
-      <ref name='XML_DOCB_DOCUMENT_NODE'/>
-      <ref name='XML_DOCUMENT_FRAG_NODE'/>
-      <ref name='XML_DOCUMENT_NODE'/>
-      <ref name='XML_DOCUMENT_TYPE_NODE'/>
-      <ref name='XML_DOC_DTDVALID'/>
-      <ref name='XML_DOC_HTML'/>
-      <ref name='XML_DOC_INTERNAL'/>
-      <ref name='XML_DOC_NSVALID'/>
-      <ref name='XML_DOC_OLD10'/>
-      <ref name='XML_DOC_USERBUILT'/>
-      <ref name='XML_DOC_WELLFORMED'/>
-      <ref name='XML_DOC_XINCLUDE'/>
-      <ref name='XML_DTD_NODE'/>
-      <ref name='XML_ELEMENT_CONTENT_ELEMENT'/>
-      <ref name='XML_ELEMENT_CONTENT_MULT'/>
-      <ref name='XML_ELEMENT_CONTENT_ONCE'/>
-      <ref name='XML_ELEMENT_CONTENT_OPT'/>
-      <ref name='XML_ELEMENT_CONTENT_OR'/>
-      <ref name='XML_ELEMENT_CONTENT_PCDATA'/>
-      <ref name='XML_ELEMENT_CONTENT_PLUS'/>
-      <ref name='XML_ELEMENT_CONTENT_SEQ'/>
-      <ref name='XML_ELEMENT_DECL'/>
-      <ref name='XML_ELEMENT_NODE'/>
-      <ref name='XML_ELEMENT_TYPE_ANY'/>
-      <ref name='XML_ELEMENT_TYPE_ELEMENT'/>
-      <ref name='XML_ELEMENT_TYPE_EMPTY'/>
-      <ref name='XML_ELEMENT_TYPE_MIXED'/>
-      <ref name='XML_ELEMENT_TYPE_UNDEFINED'/>
-      <ref name='XML_ENTITY_DECL'/>
-      <ref name='XML_ENTITY_NODE'/>
-      <ref name='XML_ENTITY_REF_NODE'/>
-      <ref name='XML_GET_CONTENT'/>
-      <ref name='XML_GET_LINE'/>
-      <ref name='XML_HTML_DOCUMENT_NODE'/>
-      <ref name='XML_LOCAL_NAMESPACE'/>
-      <ref name='XML_NAMESPACE_DECL'/>
-      <ref name='XML_NOTATION_NODE'/>
-      <ref name='XML_PI_NODE'/>
-      <ref name='XML_TEXT_NODE'/>
-      <ref name='XML_XINCLUDE_END'/>
-      <ref name='XML_XINCLUDE_START'/>
-      <ref name='XML_XML_ID'/>
-      <ref name='XML_XML_NAMESPACE'/>
-      <ref name='_xmlAttr'/>
-      <ref name='_xmlAttribute'/>
-      <ref name='_xmlBuffer'/>
-      <ref name='_xmlDOMWrapCtxt'/>
-      <ref name='_xmlDoc'/>
-      <ref name='_xmlDtd'/>
-      <ref name='_xmlElement'/>
-      <ref name='_xmlElementContent'/>
-      <ref name='_xmlEnumeration'/>
-      <ref name='_xmlID'/>
-      <ref name='_xmlNode'/>
-      <ref name='_xmlNotation'/>
-      <ref name='_xmlNs'/>
-      <ref name='_xmlRef'/>
-      <ref name='xmlAddChild'/>
-      <ref name='xmlAddChildList'/>
-      <ref name='xmlAddNextSibling'/>
-      <ref name='xmlAddPrevSibling'/>
-      <ref name='xmlAddSibling'/>
-      <ref name='xmlAttr'/>
-      <ref name='xmlAttrPtr'/>
-      <ref name='xmlAttrSerializeTxtContent'/>
-      <ref name='xmlAttribute'/>
-      <ref name='xmlAttributeDefault'/>
-      <ref name='xmlAttributePtr'/>
-      <ref name='xmlAttributeType'/>
-      <ref name='xmlBuf'/>
-      <ref name='xmlBufContent'/>
-      <ref name='xmlBufEnd'/>
-      <ref name='xmlBufGetNodeContent'/>
-      <ref name='xmlBufNodeDump'/>
-      <ref name='xmlBufPtr'/>
-      <ref name='xmlBufShrink'/>
-      <ref name='xmlBufUse'/>
-      <ref name='xmlBuffer'/>
-      <ref name='xmlBufferAdd'/>
-      <ref name='xmlBufferAddHead'/>
-      <ref name='xmlBufferAllocationScheme'/>
-      <ref name='xmlBufferCCat'/>
-      <ref name='xmlBufferCat'/>
-      <ref name='xmlBufferContent'/>
-      <ref name='xmlBufferCreate'/>
-      <ref name='xmlBufferCreateSize'/>
-      <ref name='xmlBufferCreateStatic'/>
-      <ref name='xmlBufferDetach'/>
-      <ref name='xmlBufferDump'/>
-      <ref name='xmlBufferEmpty'/>
-      <ref name='xmlBufferFree'/>
-      <ref name='xmlBufferGrow'/>
-      <ref name='xmlBufferLength'/>
-      <ref name='xmlBufferPtr'/>
-      <ref name='xmlBufferResize'/>
-      <ref name='xmlBufferSetAllocationScheme'/>
-      <ref name='xmlBufferShrink'/>
-      <ref name='xmlBufferWriteCHAR'/>
-      <ref name='xmlBufferWriteChar'/>
-      <ref name='xmlBufferWriteQuotedString'/>
-      <ref name='xmlBuildQName'/>
-      <ref name='xmlChildElementCount'/>
-      <ref name='xmlChildrenNode'/>
-      <ref name='xmlCopyDoc'/>
-      <ref name='xmlCopyDtd'/>
-      <ref name='xmlCopyNamespace'/>
-      <ref name='xmlCopyNamespaceList'/>
-      <ref name='xmlCopyNode'/>
-      <ref name='xmlCopyNodeList'/>
-      <ref name='xmlCopyProp'/>
-      <ref name='xmlCopyPropList'/>
-      <ref name='xmlCreateIntSubset'/>
-      <ref name='xmlDOMWrapAcquireNsFunction'/>
-      <ref name='xmlDOMWrapAdoptNode'/>
-      <ref name='xmlDOMWrapCloneNode'/>
-      <ref name='xmlDOMWrapCtxt'/>
-      <ref name='xmlDOMWrapCtxtPtr'/>
-      <ref name='xmlDOMWrapFreeCtxt'/>
-      <ref name='xmlDOMWrapNewCtxt'/>
-      <ref name='xmlDOMWrapReconcileNamespaces'/>
-      <ref name='xmlDOMWrapRemoveNode'/>
-      <ref name='xmlDoc'/>
-      <ref name='xmlDocCopyNode'/>
-      <ref name='xmlDocCopyNodeList'/>
-      <ref name='xmlDocDump'/>
-      <ref name='xmlDocDumpFormatMemory'/>
-      <ref name='xmlDocDumpFormatMemoryEnc'/>
-      <ref name='xmlDocDumpMemory'/>
-      <ref name='xmlDocDumpMemoryEnc'/>
-      <ref name='xmlDocFormatDump'/>
-      <ref name='xmlDocGetRootElement'/>
-      <ref name='xmlDocProperties'/>
-      <ref name='xmlDocPtr'/>
-      <ref name='xmlDocSetRootElement'/>
-      <ref name='xmlDtd'/>
-      <ref name='xmlDtdPtr'/>
-      <ref name='xmlElemDump'/>
-      <ref name='xmlElement'/>
-      <ref name='xmlElementContent'/>
-      <ref name='xmlElementContentOccur'/>
-      <ref name='xmlElementContentPtr'/>
-      <ref name='xmlElementContentType'/>
-      <ref name='xmlElementPtr'/>
-      <ref name='xmlElementType'/>
-      <ref name='xmlElementTypeVal'/>
-      <ref name='xmlEntity'/>
-      <ref name='xmlEntityPtr'/>
-      <ref name='xmlEnumeration'/>
-      <ref name='xmlEnumerationPtr'/>
-      <ref name='xmlFirstElementChild'/>
-      <ref name='xmlFreeDoc'/>
-      <ref name='xmlFreeDtd'/>
-      <ref name='xmlFreeNode'/>
-      <ref name='xmlFreeNodeList'/>
-      <ref name='xmlFreeNs'/>
-      <ref name='xmlFreeNsList'/>
-      <ref name='xmlFreeProp'/>
-      <ref name='xmlFreePropList'/>
-      <ref name='xmlGetBufferAllocationScheme'/>
-      <ref name='xmlGetCompressMode'/>
-      <ref name='xmlGetDocCompressMode'/>
-      <ref name='xmlGetIntSubset'/>
-      <ref name='xmlGetLastChild'/>
-      <ref name='xmlGetLineNo'/>
-      <ref name='xmlGetNoNsProp'/>
-      <ref name='xmlGetNodePath'/>
-      <ref name='xmlGetNsList'/>
-      <ref name='xmlGetNsProp'/>
-      <ref name='xmlGetProp'/>
-      <ref name='xmlHasNsProp'/>
-      <ref name='xmlHasProp'/>
-      <ref name='xmlID'/>
-      <ref name='xmlIDPtr'/>
-      <ref name='xmlIsBlankNode'/>
-      <ref name='xmlIsXHTML'/>
-      <ref name='xmlLastElementChild'/>
-      <ref name='xmlNewCDataBlock'/>
-      <ref name='xmlNewCharRef'/>
-      <ref name='xmlNewChild'/>
-      <ref name='xmlNewComment'/>
-      <ref name='xmlNewDoc'/>
-      <ref name='xmlNewDocComment'/>
-      <ref name='xmlNewDocFragment'/>
-      <ref name='xmlNewDocNode'/>
-      <ref name='xmlNewDocNodeEatName'/>
-      <ref name='xmlNewDocPI'/>
-      <ref name='xmlNewDocProp'/>
-      <ref name='xmlNewDocRawNode'/>
-      <ref name='xmlNewDocText'/>
-      <ref name='xmlNewDocTextLen'/>
-      <ref name='xmlNewDtd'/>
-      <ref name='xmlNewGlobalNs'/>
-      <ref name='xmlNewNode'/>
-      <ref name='xmlNewNodeEatName'/>
-      <ref name='xmlNewNs'/>
-      <ref name='xmlNewNsProp'/>
-      <ref name='xmlNewNsPropEatName'/>
-      <ref name='xmlNewPI'/>
-      <ref name='xmlNewProp'/>
-      <ref name='xmlNewReference'/>
-      <ref name='xmlNewText'/>
-      <ref name='xmlNewTextChild'/>
-      <ref name='xmlNewTextLen'/>
-      <ref name='xmlNextElementSibling'/>
-      <ref name='xmlNode'/>
-      <ref name='xmlNodeAddContent'/>
-      <ref name='xmlNodeAddContentLen'/>
-      <ref name='xmlNodeBufGetContent'/>
-      <ref name='xmlNodeDump'/>
-      <ref name='xmlNodeDumpOutput'/>
-      <ref name='xmlNodeGetBase'/>
-      <ref name='xmlNodeGetContent'/>
-      <ref name='xmlNodeGetLang'/>
-      <ref name='xmlNodeGetSpacePreserve'/>
-      <ref name='xmlNodeIsText'/>
-      <ref name='xmlNodeListGetRawString'/>
-      <ref name='xmlNodeListGetString'/>
-      <ref name='xmlNodePtr'/>
-      <ref name='xmlNodeSetBase'/>
-      <ref name='xmlNodeSetContent'/>
-      <ref name='xmlNodeSetContentLen'/>
-      <ref name='xmlNodeSetLang'/>
-      <ref name='xmlNodeSetName'/>
-      <ref name='xmlNodeSetSpacePreserve'/>
-      <ref name='xmlNotation'/>
-      <ref name='xmlNotationPtr'/>
-      <ref name='xmlNs'/>
-      <ref name='xmlNsPtr'/>
-      <ref name='xmlNsType'/>
-      <ref name='xmlOutputBuffer'/>
-      <ref name='xmlOutputBufferPtr'/>
-      <ref name='xmlParserCtxt'/>
-      <ref name='xmlParserCtxtPtr'/>
-      <ref name='xmlParserInput'/>
-      <ref name='xmlParserInputBuffer'/>
-      <ref name='xmlParserInputBufferPtr'/>
-      <ref name='xmlParserInputPtr'/>
-      <ref name='xmlPreviousElementSibling'/>
-      <ref name='xmlReconciliateNs'/>
-      <ref name='xmlRef'/>
-      <ref name='xmlRefPtr'/>
-      <ref name='xmlRemoveProp'/>
-      <ref name='xmlReplaceNode'/>
-      <ref name='xmlRootNode'/>
-      <ref name='xmlSAXHandler'/>
-      <ref name='xmlSAXHandlerPtr'/>
-      <ref name='xmlSAXLocator'/>
-      <ref name='xmlSAXLocatorPtr'/>
-      <ref name='xmlSaveFile'/>
-      <ref name='xmlSaveFileEnc'/>
-      <ref name='xmlSaveFileTo'/>
-      <ref name='xmlSaveFormatFile'/>
-      <ref name='xmlSaveFormatFileEnc'/>
-      <ref name='xmlSaveFormatFileTo'/>
-      <ref name='xmlSearchNs'/>
-      <ref name='xmlSearchNsByHref'/>
-      <ref name='xmlSetBufferAllocationScheme'/>
-      <ref name='xmlSetCompressMode'/>
-      <ref name='xmlSetDocCompressMode'/>
-      <ref name='xmlSetListDoc'/>
-      <ref name='xmlSetNs'/>
-      <ref name='xmlSetNsProp'/>
-      <ref name='xmlSetProp'/>
-      <ref name='xmlSetTreeDoc'/>
-      <ref name='xmlSplitQName2'/>
-      <ref name='xmlSplitQName3'/>
-      <ref name='xmlStringGetNodeList'/>
-      <ref name='xmlStringLenGetNodeList'/>
-      <ref name='xmlTextConcat'/>
-      <ref name='xmlTextMerge'/>
-      <ref name='xmlUnlinkNode'/>
-      <ref name='xmlUnsetNsProp'/>
-      <ref name='xmlUnsetProp'/>
-      <ref name='xmlValidateNCName'/>
-      <ref name='xmlValidateNMToken'/>
-      <ref name='xmlValidateName'/>
-      <ref name='xmlValidateQName'/>
-    </file>
-    <file name='uri'>
-      <ref name='_xmlURI'/>
-      <ref name='xmlBuildRelativeURI'/>
-      <ref name='xmlBuildURI'/>
-      <ref name='xmlCanonicPath'/>
-      <ref name='xmlCreateURI'/>
-      <ref name='xmlFreeURI'/>
-      <ref name='xmlNormalizeURIPath'/>
-      <ref name='xmlParseURI'/>
-      <ref name='xmlParseURIRaw'/>
-      <ref name='xmlParseURIReference'/>
-      <ref name='xmlPathToURI'/>
-      <ref name='xmlPrintURI'/>
-      <ref name='xmlSaveUri'/>
-      <ref name='xmlURI'/>
-      <ref name='xmlURIEscape'/>
-      <ref name='xmlURIEscapeStr'/>
-      <ref name='xmlURIPtr'/>
-      <ref name='xmlURIUnescapeString'/>
-    </file>
-    <file name='valid'>
-      <ref name='XML_VCTXT_DTD_VALIDATED'/>
-      <ref name='XML_VCTXT_USE_PCTXT'/>
-      <ref name='_xmlValidCtxt'/>
-      <ref name='xmlAddAttributeDecl'/>
-      <ref name='xmlAddElementDecl'/>
-      <ref name='xmlAddID'/>
-      <ref name='xmlAddNotationDecl'/>
-      <ref name='xmlAddRef'/>
-      <ref name='xmlAttributeTable'/>
-      <ref name='xmlAttributeTablePtr'/>
-      <ref name='xmlCopyAttributeTable'/>
-      <ref name='xmlCopyDocElementContent'/>
-      <ref name='xmlCopyElementContent'/>
-      <ref name='xmlCopyElementTable'/>
-      <ref name='xmlCopyEnumeration'/>
-      <ref name='xmlCopyNotationTable'/>
-      <ref name='xmlCreateEnumeration'/>
-      <ref name='xmlDumpAttributeDecl'/>
-      <ref name='xmlDumpAttributeTable'/>
-      <ref name='xmlDumpElementDecl'/>
-      <ref name='xmlDumpElementTable'/>
-      <ref name='xmlDumpNotationDecl'/>
-      <ref name='xmlDumpNotationTable'/>
-      <ref name='xmlElementTable'/>
-      <ref name='xmlElementTablePtr'/>
-      <ref name='xmlFreeAttributeTable'/>
-      <ref name='xmlFreeDocElementContent'/>
-      <ref name='xmlFreeElementContent'/>
-      <ref name='xmlFreeElementTable'/>
-      <ref name='xmlFreeEnumeration'/>
-      <ref name='xmlFreeIDTable'/>
-      <ref name='xmlFreeNotationTable'/>
-      <ref name='xmlFreeRefTable'/>
-      <ref name='xmlFreeValidCtxt'/>
-      <ref name='xmlGetDtdAttrDesc'/>
-      <ref name='xmlGetDtdElementDesc'/>
-      <ref name='xmlGetDtdNotationDesc'/>
-      <ref name='xmlGetDtdQAttrDesc'/>
-      <ref name='xmlGetDtdQElementDesc'/>
-      <ref name='xmlGetID'/>
-      <ref name='xmlGetRefs'/>
-      <ref name='xmlIDTable'/>
-      <ref name='xmlIDTablePtr'/>
-      <ref name='xmlIsID'/>
-      <ref name='xmlIsMixedElement'/>
-      <ref name='xmlIsRef'/>
-      <ref name='xmlNewDocElementContent'/>
-      <ref name='xmlNewElementContent'/>
-      <ref name='xmlNewValidCtxt'/>
-      <ref name='xmlNotationTable'/>
-      <ref name='xmlNotationTablePtr'/>
-      <ref name='xmlRefTable'/>
-      <ref name='xmlRefTablePtr'/>
-      <ref name='xmlRemoveID'/>
-      <ref name='xmlRemoveRef'/>
-      <ref name='xmlSnprintfElementContent'/>
-      <ref name='xmlSprintfElementContent'/>
-      <ref name='xmlValidBuildContentModel'/>
-      <ref name='xmlValidCtxt'/>
-      <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-      <ref name='xmlValidCtxtPtr'/>
-      <ref name='xmlValidGetPotentialChildren'/>
-      <ref name='xmlValidGetValidElements'/>
-      <ref name='xmlValidNormalizeAttributeValue'/>
-      <ref name='xmlValidState'/>
-      <ref name='xmlValidStatePtr'/>
-      <ref name='xmlValidateAttributeDecl'/>
-      <ref name='xmlValidateAttributeValue'/>
-      <ref name='xmlValidateDocument'/>
-      <ref name='xmlValidateDocumentFinal'/>
-      <ref name='xmlValidateDtd'/>
-      <ref name='xmlValidateDtdFinal'/>
-      <ref name='xmlValidateElement'/>
-      <ref name='xmlValidateElementDecl'/>
-      <ref name='xmlValidateNameValue'/>
-      <ref name='xmlValidateNamesValue'/>
-      <ref name='xmlValidateNmtokenValue'/>
-      <ref name='xmlValidateNmtokensValue'/>
-      <ref name='xmlValidateNotationDecl'/>
-      <ref name='xmlValidateNotationUse'/>
-      <ref name='xmlValidateOneAttribute'/>
-      <ref name='xmlValidateOneElement'/>
-      <ref name='xmlValidateOneNamespace'/>
-      <ref name='xmlValidatePopElement'/>
-      <ref name='xmlValidatePushCData'/>
-      <ref name='xmlValidatePushElement'/>
-      <ref name='xmlValidateRoot'/>
-      <ref name='xmlValidityErrorFunc'/>
-      <ref name='xmlValidityWarningFunc'/>
-    </file>
-    <file name='xinclude'>
-      <ref name='XINCLUDE_FALLBACK'/>
-      <ref name='XINCLUDE_HREF'/>
-      <ref name='XINCLUDE_NODE'/>
-      <ref name='XINCLUDE_NS'/>
-      <ref name='XINCLUDE_OLD_NS'/>
-      <ref name='XINCLUDE_PARSE'/>
-      <ref name='XINCLUDE_PARSE_ENCODING'/>
-      <ref name='XINCLUDE_PARSE_TEXT'/>
-      <ref name='XINCLUDE_PARSE_XML'/>
-      <ref name='XINCLUDE_PARSE_XPOINTER'/>
-      <ref name='xmlXIncludeCtxt'/>
-      <ref name='xmlXIncludeCtxtPtr'/>
-      <ref name='xmlXIncludeFreeContext'/>
-      <ref name='xmlXIncludeNewContext'/>
-      <ref name='xmlXIncludeProcess'/>
-      <ref name='xmlXIncludeProcessFlags'/>
-      <ref name='xmlXIncludeProcessFlagsData'/>
-      <ref name='xmlXIncludeProcessNode'/>
-      <ref name='xmlXIncludeProcessTree'/>
-      <ref name='xmlXIncludeProcessTreeFlags'/>
-      <ref name='xmlXIncludeProcessTreeFlagsData'/>
-      <ref name='xmlXIncludeSetFlags'/>
-    </file>
-    <file name='xlink'>
-      <ref name='XLINK_ACTUATE_AUTO'/>
-      <ref name='XLINK_ACTUATE_NONE'/>
-      <ref name='XLINK_ACTUATE_ONREQUEST'/>
-      <ref name='XLINK_SHOW_EMBED'/>
-      <ref name='XLINK_SHOW_NEW'/>
-      <ref name='XLINK_SHOW_NONE'/>
-      <ref name='XLINK_SHOW_REPLACE'/>
-      <ref name='XLINK_TYPE_EXTENDED'/>
-      <ref name='XLINK_TYPE_EXTENDED_SET'/>
-      <ref name='XLINK_TYPE_NONE'/>
-      <ref name='XLINK_TYPE_SIMPLE'/>
-      <ref name='_xlinkHandler'/>
-      <ref name='xlinkActuate'/>
-      <ref name='xlinkExtendedLinkFunk'/>
-      <ref name='xlinkExtendedLinkSetFunk'/>
-      <ref name='xlinkGetDefaultDetect'/>
-      <ref name='xlinkGetDefaultHandler'/>
-      <ref name='xlinkHRef'/>
-      <ref name='xlinkHandler'/>
-      <ref name='xlinkHandlerPtr'/>
-      <ref name='xlinkIsLink'/>
-      <ref name='xlinkNodeDetectFunc'/>
-      <ref name='xlinkRole'/>
-      <ref name='xlinkSetDefaultDetect'/>
-      <ref name='xlinkSetDefaultHandler'/>
-      <ref name='xlinkShow'/>
-      <ref name='xlinkSimpleLinkFunk'/>
-      <ref name='xlinkTitle'/>
-      <ref name='xlinkType'/>
-    </file>
-    <file name='xmlIO'>
-      <ref name='_xmlOutputBuffer'/>
-      <ref name='_xmlParserInputBuffer'/>
-      <ref name='xmlAllocOutputBuffer'/>
-      <ref name='xmlAllocParserInputBuffer'/>
-      <ref name='xmlCheckFilename'/>
-      <ref name='xmlCheckHTTPInput'/>
-      <ref name='xmlCleanupInputCallbacks'/>
-      <ref name='xmlCleanupOutputCallbacks'/>
-      <ref name='xmlFileClose'/>
-      <ref name='xmlFileMatch'/>
-      <ref name='xmlFileOpen'/>
-      <ref name='xmlFileRead'/>
-      <ref name='xmlFreeParserInputBuffer'/>
-      <ref name='xmlIOFTPClose'/>
-      <ref name='xmlIOFTPMatch'/>
-      <ref name='xmlIOFTPOpen'/>
-      <ref name='xmlIOFTPRead'/>
-      <ref name='xmlIOHTTPClose'/>
-      <ref name='xmlIOHTTPMatch'/>
-      <ref name='xmlIOHTTPOpen'/>
-      <ref name='xmlIOHTTPOpenW'/>
-      <ref name='xmlIOHTTPRead'/>
-      <ref name='xmlInputCloseCallback'/>
-      <ref name='xmlInputMatchCallback'/>
-      <ref name='xmlInputOpenCallback'/>
-      <ref name='xmlInputReadCallback'/>
-      <ref name='xmlNoNetExternalEntityLoader'/>
-      <ref name='xmlNormalizeWindowsPath'/>
-      <ref name='xmlOutputBufferClose'/>
-      <ref name='xmlOutputBufferCreateBuffer'/>
-      <ref name='xmlOutputBufferCreateFd'/>
-      <ref name='xmlOutputBufferCreateFile'/>
-      <ref name='xmlOutputBufferCreateFilename'/>
-      <ref name='xmlOutputBufferCreateIO'/>
-      <ref name='xmlOutputBufferFlush'/>
-      <ref name='xmlOutputBufferGetContent'/>
-      <ref name='xmlOutputBufferGetSize'/>
-      <ref name='xmlOutputBufferWrite'/>
-      <ref name='xmlOutputBufferWriteEscape'/>
-      <ref name='xmlOutputBufferWriteString'/>
-      <ref name='xmlOutputCloseCallback'/>
-      <ref name='xmlOutputMatchCallback'/>
-      <ref name='xmlOutputOpenCallback'/>
-      <ref name='xmlOutputWriteCallback'/>
-      <ref name='xmlParserGetDirectory'/>
-      <ref name='xmlParserInputBufferCreateFd'/>
-      <ref name='xmlParserInputBufferCreateFile'/>
-      <ref name='xmlParserInputBufferCreateFilename'/>
-      <ref name='xmlParserInputBufferCreateIO'/>
-      <ref name='xmlParserInputBufferCreateMem'/>
-      <ref name='xmlParserInputBufferCreateStatic'/>
-      <ref name='xmlParserInputBufferGrow'/>
-      <ref name='xmlParserInputBufferPush'/>
-      <ref name='xmlParserInputBufferRead'/>
-      <ref name='xmlPopInputCallbacks'/>
-      <ref name='xmlPopOutputCallbacks'/>
-      <ref name='xmlRegisterDefaultInputCallbacks'/>
-      <ref name='xmlRegisterDefaultOutputCallbacks'/>
-      <ref name='xmlRegisterHTTPPostCallbacks'/>
-      <ref name='xmlRegisterInputCallbacks'/>
-      <ref name='xmlRegisterOutputCallbacks'/>
-    </file>
-    <file name='xmlautomata'>
-      <ref name='xmlAutomata'/>
-      <ref name='xmlAutomataCompile'/>
-      <ref name='xmlAutomataGetInitState'/>
-      <ref name='xmlAutomataIsDeterminist'/>
-      <ref name='xmlAutomataNewAllTrans'/>
-      <ref name='xmlAutomataNewCountTrans'/>
-      <ref name='xmlAutomataNewCountTrans2'/>
-      <ref name='xmlAutomataNewCountedTrans'/>
-      <ref name='xmlAutomataNewCounter'/>
-      <ref name='xmlAutomataNewCounterTrans'/>
-      <ref name='xmlAutomataNewEpsilon'/>
-      <ref name='xmlAutomataNewNegTrans'/>
-      <ref name='xmlAutomataNewOnceTrans'/>
-      <ref name='xmlAutomataNewOnceTrans2'/>
-      <ref name='xmlAutomataNewState'/>
-      <ref name='xmlAutomataNewTransition'/>
-      <ref name='xmlAutomataNewTransition2'/>
-      <ref name='xmlAutomataPtr'/>
-      <ref name='xmlAutomataSetFinalState'/>
-      <ref name='xmlAutomataState'/>
-      <ref name='xmlAutomataStatePtr'/>
-      <ref name='xmlFreeAutomata'/>
-      <ref name='xmlNewAutomata'/>
-    </file>
-    <file name='xmlerror'>
-      <ref name='XML_BUF_OVERFLOW'/>
-      <ref name='XML_C14N_CREATE_CTXT'/>
-      <ref name='XML_C14N_CREATE_STACK'/>
-      <ref name='XML_C14N_INVALID_NODE'/>
-      <ref name='XML_C14N_RELATIVE_NAMESPACE'/>
-      <ref name='XML_C14N_REQUIRES_UTF8'/>
-      <ref name='XML_C14N_UNKNOW_NODE'/>
-      <ref name='XML_CATALOG_ENTRY_BROKEN'/>
-      <ref name='XML_CATALOG_MISSING_ATTR'/>
-      <ref name='XML_CATALOG_NOT_CATALOG'/>
-      <ref name='XML_CATALOG_PREFER_VALUE'/>
-      <ref name='XML_CATALOG_RECURSION'/>
-      <ref name='XML_CHECK_ENTITY_TYPE'/>
-      <ref name='XML_CHECK_FOUND_ATTRIBUTE'/>
-      <ref name='XML_CHECK_FOUND_CDATA'/>
-      <ref name='XML_CHECK_FOUND_COMMENT'/>
-      <ref name='XML_CHECK_FOUND_DOCTYPE'/>
-      <ref name='XML_CHECK_FOUND_ELEMENT'/>
-      <ref name='XML_CHECK_FOUND_ENTITY'/>
-      <ref name='XML_CHECK_FOUND_ENTITYREF'/>
-      <ref name='XML_CHECK_FOUND_FRAGMENT'/>
-      <ref name='XML_CHECK_FOUND_NOTATION'/>
-      <ref name='XML_CHECK_FOUND_PI'/>
-      <ref name='XML_CHECK_FOUND_TEXT'/>
-      <ref name='XML_CHECK_NAME_NOT_NULL'/>
-      <ref name='XML_CHECK_NOT_ATTR'/>
-      <ref name='XML_CHECK_NOT_ATTR_DECL'/>
-      <ref name='XML_CHECK_NOT_DTD'/>
-      <ref name='XML_CHECK_NOT_ELEM_DECL'/>
-      <ref name='XML_CHECK_NOT_ENTITY_DECL'/>
-      <ref name='XML_CHECK_NOT_NCNAME'/>
-      <ref name='XML_CHECK_NOT_NS_DECL'/>
-      <ref name='XML_CHECK_NOT_UTF8'/>
-      <ref name='XML_CHECK_NO_DICT'/>
-      <ref name='XML_CHECK_NO_DOC'/>
-      <ref name='XML_CHECK_NO_ELEM'/>
-      <ref name='XML_CHECK_NO_HREF'/>
-      <ref name='XML_CHECK_NO_NAME'/>
-      <ref name='XML_CHECK_NO_NEXT'/>
-      <ref name='XML_CHECK_NO_PARENT'/>
-      <ref name='XML_CHECK_NO_PREV'/>
-      <ref name='XML_CHECK_NS_ANCESTOR'/>
-      <ref name='XML_CHECK_NS_SCOPE'/>
-      <ref name='XML_CHECK_OUTSIDE_DICT'/>
-      <ref name='XML_CHECK_UNKNOWN_NODE'/>
-      <ref name='XML_CHECK_WRONG_DOC'/>
-      <ref name='XML_CHECK_WRONG_NAME'/>
-      <ref name='XML_CHECK_WRONG_NEXT'/>
-      <ref name='XML_CHECK_WRONG_PARENT'/>
-      <ref name='XML_CHECK_WRONG_PREV'/>
-      <ref name='XML_DTD_ATTRIBUTE_DEFAULT'/>
-      <ref name='XML_DTD_ATTRIBUTE_REDEFINED'/>
-      <ref name='XML_DTD_ATTRIBUTE_VALUE'/>
-      <ref name='XML_DTD_CONTENT_ERROR'/>
-      <ref name='XML_DTD_CONTENT_MODEL'/>
-      <ref name='XML_DTD_CONTENT_NOT_DETERMINIST'/>
-      <ref name='XML_DTD_DIFFERENT_PREFIX'/>
-      <ref name='XML_DTD_DUP_TOKEN'/>
-      <ref name='XML_DTD_ELEM_DEFAULT_NAMESPACE'/>
-      <ref name='XML_DTD_ELEM_NAMESPACE'/>
-      <ref name='XML_DTD_ELEM_REDEFINED'/>
-      <ref name='XML_DTD_EMPTY_NOTATION'/>
-      <ref name='XML_DTD_ENTITY_TYPE'/>
-      <ref name='XML_DTD_ID_FIXED'/>
-      <ref name='XML_DTD_ID_REDEFINED'/>
-      <ref name='XML_DTD_ID_SUBSET'/>
-      <ref name='XML_DTD_INVALID_CHILD'/>
-      <ref name='XML_DTD_INVALID_DEFAULT'/>
-      <ref name='XML_DTD_LOAD_ERROR'/>
-      <ref name='XML_DTD_MISSING_ATTRIBUTE'/>
-      <ref name='XML_DTD_MIXED_CORRUPT'/>
-      <ref name='XML_DTD_MULTIPLE_ID'/>
-      <ref name='XML_DTD_NOTATION_REDEFINED'/>
-      <ref name='XML_DTD_NOTATION_VALUE'/>
-      <ref name='XML_DTD_NOT_EMPTY'/>
-      <ref name='XML_DTD_NOT_PCDATA'/>
-      <ref name='XML_DTD_NOT_STANDALONE'/>
-      <ref name='XML_DTD_NO_DOC'/>
-      <ref name='XML_DTD_NO_DTD'/>
-      <ref name='XML_DTD_NO_ELEM_NAME'/>
-      <ref name='XML_DTD_NO_PREFIX'/>
-      <ref name='XML_DTD_NO_ROOT'/>
-      <ref name='XML_DTD_ROOT_NAME'/>
-      <ref name='XML_DTD_STANDALONE_DEFAULTED'/>
-      <ref name='XML_DTD_STANDALONE_WHITE_SPACE'/>
-      <ref name='XML_DTD_UNKNOWN_ATTRIBUTE'/>
-      <ref name='XML_DTD_UNKNOWN_ELEM'/>
-      <ref name='XML_DTD_UNKNOWN_ENTITY'/>
-      <ref name='XML_DTD_UNKNOWN_ID'/>
-      <ref name='XML_DTD_UNKNOWN_NOTATION'/>
-      <ref name='XML_DTD_XMLID_TYPE'/>
-      <ref name='XML_DTD_XMLID_VALUE'/>
-      <ref name='XML_ERR_ATTLIST_NOT_FINISHED'/>
-      <ref name='XML_ERR_ATTLIST_NOT_STARTED'/>
-      <ref name='XML_ERR_ATTRIBUTE_NOT_FINISHED'/>
-      <ref name='XML_ERR_ATTRIBUTE_NOT_STARTED'/>
-      <ref name='XML_ERR_ATTRIBUTE_REDEFINED'/>
-      <ref name='XML_ERR_ATTRIBUTE_WITHOUT_VALUE'/>
-      <ref name='XML_ERR_CDATA_NOT_FINISHED'/>
-      <ref name='XML_ERR_CHARREF_AT_EOF'/>
-      <ref name='XML_ERR_CHARREF_IN_DTD'/>
-      <ref name='XML_ERR_CHARREF_IN_EPILOG'/>
-      <ref name='XML_ERR_CHARREF_IN_PROLOG'/>
-      <ref name='XML_ERR_COMMENT_ABRUPTLY_ENDED'/>
-      <ref name='XML_ERR_COMMENT_NOT_FINISHED'/>
-      <ref name='XML_ERR_CONDSEC_INVALID'/>
-      <ref name='XML_ERR_CONDSEC_INVALID_KEYWORD'/>
-      <ref name='XML_ERR_CONDSEC_NOT_FINISHED'/>
-      <ref name='XML_ERR_CONDSEC_NOT_STARTED'/>
-      <ref name='XML_ERR_DOCTYPE_NOT_FINISHED'/>
-      <ref name='XML_ERR_DOCUMENT_EMPTY'/>
-      <ref name='XML_ERR_DOCUMENT_END'/>
-      <ref name='XML_ERR_DOCUMENT_START'/>
-      <ref name='XML_ERR_ELEMCONTENT_NOT_FINISHED'/>
-      <ref name='XML_ERR_ELEMCONTENT_NOT_STARTED'/>
-      <ref name='XML_ERR_ENCODING_NAME'/>
-      <ref name='XML_ERR_ENTITYREF_AT_EOF'/>
-      <ref name='XML_ERR_ENTITYREF_IN_DTD'/>
-      <ref name='XML_ERR_ENTITYREF_IN_EPILOG'/>
-      <ref name='XML_ERR_ENTITYREF_IN_PROLOG'/>
-      <ref name='XML_ERR_ENTITYREF_NO_NAME'/>
-      <ref name='XML_ERR_ENTITYREF_SEMICOL_MISSING'/>
-      <ref name='XML_ERR_ENTITY_BOUNDARY'/>
-      <ref name='XML_ERR_ENTITY_CHAR_ERROR'/>
-      <ref name='XML_ERR_ENTITY_IS_EXTERNAL'/>
-      <ref name='XML_ERR_ENTITY_IS_PARAMETER'/>
-      <ref name='XML_ERR_ENTITY_LOOP'/>
-      <ref name='XML_ERR_ENTITY_NOT_FINISHED'/>
-      <ref name='XML_ERR_ENTITY_NOT_STARTED'/>
-      <ref name='XML_ERR_ENTITY_PE_INTERNAL'/>
-      <ref name='XML_ERR_ENTITY_PROCESSING'/>
-      <ref name='XML_ERR_EQUAL_REQUIRED'/>
-      <ref name='XML_ERR_ERROR'/>
-      <ref name='XML_ERR_EXTRA_CONTENT'/>
-      <ref name='XML_ERR_EXT_ENTITY_STANDALONE'/>
-      <ref name='XML_ERR_EXT_SUBSET_NOT_FINISHED'/>
-      <ref name='XML_ERR_FATAL'/>
-      <ref name='XML_ERR_GT_REQUIRED'/>
-      <ref name='XML_ERR_HYPHEN_IN_COMMENT'/>
-      <ref name='XML_ERR_INTERNAL_ERROR'/>
-      <ref name='XML_ERR_INVALID_CHAR'/>
-      <ref name='XML_ERR_INVALID_CHARREF'/>
-      <ref name='XML_ERR_INVALID_DEC_CHARREF'/>
-      <ref name='XML_ERR_INVALID_ENCODING'/>
-      <ref name='XML_ERR_INVALID_HEX_CHARREF'/>
-      <ref name='XML_ERR_INVALID_URI'/>
-      <ref name='XML_ERR_LITERAL_NOT_FINISHED'/>
-      <ref name='XML_ERR_LITERAL_NOT_STARTED'/>
-      <ref name='XML_ERR_LTSLASH_REQUIRED'/>
-      <ref name='XML_ERR_LT_IN_ATTRIBUTE'/>
-      <ref name='XML_ERR_LT_REQUIRED'/>
-      <ref name='XML_ERR_MISPLACED_CDATA_END'/>
-      <ref name='XML_ERR_MISSING_ENCODING'/>
-      <ref name='XML_ERR_MIXED_NOT_FINISHED'/>
-      <ref name='XML_ERR_MIXED_NOT_STARTED'/>
-      <ref name='XML_ERR_NAME_REQUIRED'/>
-      <ref name='XML_ERR_NAME_TOO_LONG'/>
-      <ref name='XML_ERR_NMTOKEN_REQUIRED'/>
-      <ref name='XML_ERR_NONE'/>
-      <ref name='XML_ERR_NOTATION_NOT_FINISHED'/>
-      <ref name='XML_ERR_NOTATION_NOT_STARTED'/>
-      <ref name='XML_ERR_NOTATION_PROCESSING'/>
-      <ref name='XML_ERR_NOT_STANDALONE'/>
-      <ref name='XML_ERR_NOT_WELL_BALANCED'/>
-      <ref name='XML_ERR_NO_DTD'/>
-      <ref name='XML_ERR_NO_MEMORY'/>
-      <ref name='XML_ERR_NS_DECL_ERROR'/>
-      <ref name='XML_ERR_OK'/>
-      <ref name='XML_ERR_PCDATA_REQUIRED'/>
-      <ref name='XML_ERR_PEREF_AT_EOF'/>
-      <ref name='XML_ERR_PEREF_IN_EPILOG'/>
-      <ref name='XML_ERR_PEREF_IN_INT_SUBSET'/>
-      <ref name='XML_ERR_PEREF_IN_PROLOG'/>
-      <ref name='XML_ERR_PEREF_NO_NAME'/>
-      <ref name='XML_ERR_PEREF_SEMICOL_MISSING'/>
-      <ref name='XML_ERR_PI_NOT_FINISHED'/>
-      <ref name='XML_ERR_PI_NOT_STARTED'/>
-      <ref name='XML_ERR_PUBID_REQUIRED'/>
-      <ref name='XML_ERR_RESERVED_XML_NAME'/>
-      <ref name='XML_ERR_SEPARATOR_REQUIRED'/>
-      <ref name='XML_ERR_SPACE_REQUIRED'/>
-      <ref name='XML_ERR_STANDALONE_VALUE'/>
-      <ref name='XML_ERR_STRING_NOT_CLOSED'/>
-      <ref name='XML_ERR_STRING_NOT_STARTED'/>
-      <ref name='XML_ERR_TAG_NAME_MISMATCH'/>
-      <ref name='XML_ERR_TAG_NOT_FINISHED'/>
-      <ref name='XML_ERR_UNDECLARED_ENTITY'/>
-      <ref name='XML_ERR_UNKNOWN_ENCODING'/>
-      <ref name='XML_ERR_UNKNOWN_VERSION'/>
-      <ref name='XML_ERR_UNPARSED_ENTITY'/>
-      <ref name='XML_ERR_UNSUPPORTED_ENCODING'/>
-      <ref name='XML_ERR_URI_FRAGMENT'/>
-      <ref name='XML_ERR_URI_REQUIRED'/>
-      <ref name='XML_ERR_USER_STOP'/>
-      <ref name='XML_ERR_VALUE_REQUIRED'/>
-      <ref name='XML_ERR_VERSION_MISMATCH'/>
-      <ref name='XML_ERR_VERSION_MISSING'/>
-      <ref name='XML_ERR_WARNING'/>
-      <ref name='XML_ERR_XMLDECL_NOT_FINISHED'/>
-      <ref name='XML_ERR_XMLDECL_NOT_STARTED'/>
-      <ref name='XML_FROM_BUFFER'/>
-      <ref name='XML_FROM_C14N'/>
-      <ref name='XML_FROM_CATALOG'/>
-      <ref name='XML_FROM_CHECK'/>
-      <ref name='XML_FROM_DATATYPE'/>
-      <ref name='XML_FROM_DTD'/>
-      <ref name='XML_FROM_FTP'/>
-      <ref name='XML_FROM_HTML'/>
-      <ref name='XML_FROM_HTTP'/>
-      <ref name='XML_FROM_I18N'/>
-      <ref name='XML_FROM_IO'/>
-      <ref name='XML_FROM_MEMORY'/>
-      <ref name='XML_FROM_MODULE'/>
-      <ref name='XML_FROM_NAMESPACE'/>
-      <ref name='XML_FROM_NONE'/>
-      <ref name='XML_FROM_OUTPUT'/>
-      <ref name='XML_FROM_PARSER'/>
-      <ref name='XML_FROM_REGEXP'/>
-      <ref name='XML_FROM_RELAXNGP'/>
-      <ref name='XML_FROM_RELAXNGV'/>
-      <ref name='XML_FROM_SCHEMASP'/>
-      <ref name='XML_FROM_SCHEMASV'/>
-      <ref name='XML_FROM_SCHEMATRONV'/>
-      <ref name='XML_FROM_TREE'/>
-      <ref name='XML_FROM_URI'/>
-      <ref name='XML_FROM_VALID'/>
-      <ref name='XML_FROM_WRITER'/>
-      <ref name='XML_FROM_XINCLUDE'/>
-      <ref name='XML_FROM_XPATH'/>
-      <ref name='XML_FROM_XPOINTER'/>
-      <ref name='XML_FROM_XSLT'/>
-      <ref name='XML_FTP_ACCNT'/>
-      <ref name='XML_FTP_EPSV_ANSWER'/>
-      <ref name='XML_FTP_PASV_ANSWER'/>
-      <ref name='XML_FTP_URL_SYNTAX'/>
-      <ref name='XML_HTML_INCORRECTLY_OPENED_COMMENT'/>
-      <ref name='XML_HTML_STRUCURE_ERROR'/>
-      <ref name='XML_HTML_UNKNOWN_TAG'/>
-      <ref name='XML_HTTP_UNKNOWN_HOST'/>
-      <ref name='XML_HTTP_URL_SYNTAX'/>
-      <ref name='XML_HTTP_USE_IP'/>
-      <ref name='XML_I18N_CONV_FAILED'/>
-      <ref name='XML_I18N_EXCESS_HANDLER'/>
-      <ref name='XML_I18N_NO_HANDLER'/>
-      <ref name='XML_I18N_NO_NAME'/>
-      <ref name='XML_I18N_NO_OUTPUT'/>
-      <ref name='XML_IO_BUFFER_FULL'/>
-      <ref name='XML_IO_EACCES'/>
-      <ref name='XML_IO_EADDRINUSE'/>
-      <ref name='XML_IO_EAFNOSUPPORT'/>
-      <ref name='XML_IO_EAGAIN'/>
-      <ref name='XML_IO_EALREADY'/>
-      <ref name='XML_IO_EBADF'/>
-      <ref name='XML_IO_EBADMSG'/>
-      <ref name='XML_IO_EBUSY'/>
-      <ref name='XML_IO_ECANCELED'/>
-      <ref name='XML_IO_ECHILD'/>
-      <ref name='XML_IO_ECONNREFUSED'/>
-      <ref name='XML_IO_EDEADLK'/>
-      <ref name='XML_IO_EDOM'/>
-      <ref name='XML_IO_EEXIST'/>
-      <ref name='XML_IO_EFAULT'/>
-      <ref name='XML_IO_EFBIG'/>
-      <ref name='XML_IO_EINPROGRESS'/>
-      <ref name='XML_IO_EINTR'/>
-      <ref name='XML_IO_EINVAL'/>
-      <ref name='XML_IO_EIO'/>
-      <ref name='XML_IO_EISCONN'/>
-      <ref name='XML_IO_EISDIR'/>
-      <ref name='XML_IO_EMFILE'/>
-      <ref name='XML_IO_EMLINK'/>
-      <ref name='XML_IO_EMSGSIZE'/>
-      <ref name='XML_IO_ENAMETOOLONG'/>
-      <ref name='XML_IO_ENCODER'/>
-      <ref name='XML_IO_ENETUNREACH'/>
-      <ref name='XML_IO_ENFILE'/>
-      <ref name='XML_IO_ENODEV'/>
-      <ref name='XML_IO_ENOENT'/>
-      <ref name='XML_IO_ENOEXEC'/>
-      <ref name='XML_IO_ENOLCK'/>
-      <ref name='XML_IO_ENOMEM'/>
-      <ref name='XML_IO_ENOSPC'/>
-      <ref name='XML_IO_ENOSYS'/>
-      <ref name='XML_IO_ENOTDIR'/>
-      <ref name='XML_IO_ENOTEMPTY'/>
-      <ref name='XML_IO_ENOTSOCK'/>
-      <ref name='XML_IO_ENOTSUP'/>
-      <ref name='XML_IO_ENOTTY'/>
-      <ref name='XML_IO_ENXIO'/>
-      <ref name='XML_IO_EPERM'/>
-      <ref name='XML_IO_EPIPE'/>
-      <ref name='XML_IO_ERANGE'/>
-      <ref name='XML_IO_EROFS'/>
-      <ref name='XML_IO_ESPIPE'/>
-      <ref name='XML_IO_ESRCH'/>
-      <ref name='XML_IO_ETIMEDOUT'/>
-      <ref name='XML_IO_EXDEV'/>
-      <ref name='XML_IO_FLUSH'/>
-      <ref name='XML_IO_LOAD_ERROR'/>
-      <ref name='XML_IO_NETWORK_ATTEMPT'/>
-      <ref name='XML_IO_NO_INPUT'/>
-      <ref name='XML_IO_UNKNOWN'/>
-      <ref name='XML_IO_WRITE'/>
-      <ref name='XML_MODULE_CLOSE'/>
-      <ref name='XML_MODULE_OPEN'/>
-      <ref name='XML_NS_ERR_ATTRIBUTE_REDEFINED'/>
-      <ref name='XML_NS_ERR_COLON'/>
-      <ref name='XML_NS_ERR_EMPTY'/>
-      <ref name='XML_NS_ERR_QNAME'/>
-      <ref name='XML_NS_ERR_UNDEFINED_NAMESPACE'/>
-      <ref name='XML_NS_ERR_XML_NAMESPACE'/>
-      <ref name='XML_REGEXP_COMPILE_ERROR'/>
-      <ref name='XML_RNGP_ANYNAME_ATTR_ANCESTOR'/>
-      <ref name='XML_RNGP_ATTRIBUTE_CHILDREN'/>
-      <ref name='XML_RNGP_ATTRIBUTE_CONTENT'/>
-      <ref name='XML_RNGP_ATTRIBUTE_EMPTY'/>
-      <ref name='XML_RNGP_ATTRIBUTE_NOOP'/>
-      <ref name='XML_RNGP_ATTR_CONFLICT'/>
-      <ref name='XML_RNGP_CHOICE_CONTENT'/>
-      <ref name='XML_RNGP_CHOICE_EMPTY'/>
-      <ref name='XML_RNGP_CREATE_FAILURE'/>
-      <ref name='XML_RNGP_DATA_CONTENT'/>
-      <ref name='XML_RNGP_DEFINE_CREATE_FAILED'/>
-      <ref name='XML_RNGP_DEFINE_EMPTY'/>
-      <ref name='XML_RNGP_DEFINE_MISSING'/>
-      <ref name='XML_RNGP_DEFINE_NAME_MISSING'/>
-      <ref name='XML_RNGP_DEF_CHOICE_AND_INTERLEAVE'/>
-      <ref name='XML_RNGP_ELEMENT_CONTENT'/>
-      <ref name='XML_RNGP_ELEMENT_EMPTY'/>
-      <ref name='XML_RNGP_ELEMENT_NAME'/>
-      <ref name='XML_RNGP_ELEMENT_NO_CONTENT'/>
-      <ref name='XML_RNGP_ELEM_CONTENT_EMPTY'/>
-      <ref name='XML_RNGP_ELEM_CONTENT_ERROR'/>
-      <ref name='XML_RNGP_ELEM_TEXT_CONFLICT'/>
-      <ref name='XML_RNGP_EMPTY'/>
-      <ref name='XML_RNGP_EMPTY_CONSTRUCT'/>
-      <ref name='XML_RNGP_EMPTY_CONTENT'/>
-      <ref name='XML_RNGP_EMPTY_NOT_EMPTY'/>
-      <ref name='XML_RNGP_ERROR_TYPE_LIB'/>
-      <ref name='XML_RNGP_EXCEPT_EMPTY'/>
-      <ref name='XML_RNGP_EXCEPT_MISSING'/>
-      <ref name='XML_RNGP_EXCEPT_MULTIPLE'/>
-      <ref name='XML_RNGP_EXCEPT_NO_CONTENT'/>
-      <ref name='XML_RNGP_EXTERNALREF_EMTPY'/>
-      <ref name='XML_RNGP_EXTERNALREF_RECURSE'/>
-      <ref name='XML_RNGP_EXTERNAL_REF_FAILURE'/>
-      <ref name='XML_RNGP_FORBIDDEN_ATTRIBUTE'/>
-      <ref name='XML_RNGP_FOREIGN_ELEMENT'/>
-      <ref name='XML_RNGP_GRAMMAR_CONTENT'/>
-      <ref name='XML_RNGP_GRAMMAR_EMPTY'/>
-      <ref name='XML_RNGP_GRAMMAR_MISSING'/>
-      <ref name='XML_RNGP_GRAMMAR_NO_START'/>
-      <ref name='XML_RNGP_GROUP_ATTR_CONFLICT'/>
-      <ref name='XML_RNGP_HREF_ERROR'/>
-      <ref name='XML_RNGP_INCLUDE_EMPTY'/>
-      <ref name='XML_RNGP_INCLUDE_FAILURE'/>
-      <ref name='XML_RNGP_INCLUDE_RECURSE'/>
-      <ref name='XML_RNGP_INTERLEAVE_ADD'/>
-      <ref name='XML_RNGP_INTERLEAVE_CREATE_FAILED'/>
-      <ref name='XML_RNGP_INTERLEAVE_EMPTY'/>
-      <ref name='XML_RNGP_INTERLEAVE_NO_CONTENT'/>
-      <ref name='XML_RNGP_INVALID_DEFINE_NAME'/>
-      <ref name='XML_RNGP_INVALID_URI'/>
-      <ref name='XML_RNGP_INVALID_VALUE'/>
-      <ref name='XML_RNGP_MISSING_HREF'/>
-      <ref name='XML_RNGP_NAME_MISSING'/>
-      <ref name='XML_RNGP_NEED_COMBINE'/>
-      <ref name='XML_RNGP_NOTALLOWED_NOT_EMPTY'/>
-      <ref name='XML_RNGP_NSNAME_ATTR_ANCESTOR'/>
-      <ref name='XML_RNGP_NSNAME_NO_NS'/>
-      <ref name='XML_RNGP_PARAM_FORBIDDEN'/>
-      <ref name='XML_RNGP_PARAM_NAME_MISSING'/>
-      <ref name='XML_RNGP_PARENTREF_CREATE_FAILED'/>
-      <ref name='XML_RNGP_PARENTREF_NAME_INVALID'/>
-      <ref name='XML_RNGP_PARENTREF_NOT_EMPTY'/>
-      <ref name='XML_RNGP_PARENTREF_NO_NAME'/>
-      <ref name='XML_RNGP_PARENTREF_NO_PARENT'/>
-      <ref name='XML_RNGP_PARSE_ERROR'/>
-      <ref name='XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME'/>
-      <ref name='XML_RNGP_PAT_ATTR_ATTR'/>
-      <ref name='XML_RNGP_PAT_ATTR_ELEM'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_ATTR'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_ELEM'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_EMPTY'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_GROUP'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_LIST'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_ONEMORE'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_REF'/>
-      <ref name='XML_RNGP_PAT_DATA_EXCEPT_TEXT'/>
-      <ref name='XML_RNGP_PAT_LIST_ATTR'/>
-      <ref name='XML_RNGP_PAT_LIST_ELEM'/>
-      <ref name='XML_RNGP_PAT_LIST_INTERLEAVE'/>
-      <ref name='XML_RNGP_PAT_LIST_LIST'/>
-      <ref name='XML_RNGP_PAT_LIST_REF'/>
-      <ref name='XML_RNGP_PAT_LIST_TEXT'/>
-      <ref name='XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME'/>
-      <ref name='XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME'/>
-      <ref name='XML_RNGP_PAT_ONEMORE_GROUP_ATTR'/>
-      <ref name='XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR'/>
-      <ref name='XML_RNGP_PAT_START_ATTR'/>
-      <ref name='XML_RNGP_PAT_START_DATA'/>
-      <ref name='XML_RNGP_PAT_START_EMPTY'/>
-      <ref name='XML_RNGP_PAT_START_GROUP'/>
-      <ref name='XML_RNGP_PAT_START_INTERLEAVE'/>
-      <ref name='XML_RNGP_PAT_START_LIST'/>
-      <ref name='XML_RNGP_PAT_START_ONEMORE'/>
-      <ref name='XML_RNGP_PAT_START_TEXT'/>
-      <ref name='XML_RNGP_PAT_START_VALUE'/>
-      <ref name='XML_RNGP_PREFIX_UNDEFINED'/>
-      <ref name='XML_RNGP_REF_CREATE_FAILED'/>
-      <ref name='XML_RNGP_REF_CYCLE'/>
-      <ref name='XML_RNGP_REF_NAME_INVALID'/>
-      <ref name='XML_RNGP_REF_NOT_EMPTY'/>
-      <ref name='XML_RNGP_REF_NO_DEF'/>
-      <ref name='XML_RNGP_REF_NO_NAME'/>
-      <ref name='XML_RNGP_START_CHOICE_AND_INTERLEAVE'/>
-      <ref name='XML_RNGP_START_CONTENT'/>
-      <ref name='XML_RNGP_START_EMPTY'/>
-      <ref name='XML_RNGP_START_MISSING'/>
-      <ref name='XML_RNGP_TEXT_EXPECTED'/>
-      <ref name='XML_RNGP_TEXT_HAS_CHILD'/>
-      <ref name='XML_RNGP_TYPE_MISSING'/>
-      <ref name='XML_RNGP_TYPE_NOT_FOUND'/>
-      <ref name='XML_RNGP_TYPE_VALUE'/>
-      <ref name='XML_RNGP_UNKNOWN_ATTRIBUTE'/>
-      <ref name='XML_RNGP_UNKNOWN_COMBINE'/>
-      <ref name='XML_RNGP_UNKNOWN_CONSTRUCT'/>
-      <ref name='XML_RNGP_UNKNOWN_TYPE_LIB'/>
-      <ref name='XML_RNGP_URI_FRAGMENT'/>
-      <ref name='XML_RNGP_URI_NOT_ABSOLUTE'/>
-      <ref name='XML_RNGP_VALUE_EMPTY'/>
-      <ref name='XML_RNGP_VALUE_NO_CONTENT'/>
-      <ref name='XML_RNGP_XMLNS_NAME'/>
-      <ref name='XML_RNGP_XML_NS'/>
-      <ref name='XML_SAVE_CHAR_INVALID'/>
-      <ref name='XML_SAVE_NOT_UTF8'/>
-      <ref name='XML_SAVE_NO_DOCTYPE'/>
-      <ref name='XML_SAVE_UNKNOWN_ENCODING'/>
-      <ref name='XML_SCHEMAP_AG_PROPS_CORRECT'/>
-      <ref name='XML_SCHEMAP_ATTRFORMDEFAULT_VALUE'/>
-      <ref name='XML_SCHEMAP_ATTRGRP_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_ATTR_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_AU_PROPS_CORRECT'/>
-      <ref name='XML_SCHEMAP_AU_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_A_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_A_PROPS_CORRECT_3'/>
-      <ref name='XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_COS_ALL_LIMITED'/>
-      <ref name='XML_SCHEMAP_COS_CT_EXTENDS_1_1'/>
-      <ref name='XML_SCHEMAP_COS_CT_EXTENDS_1_2'/>
-      <ref name='XML_SCHEMAP_COS_CT_EXTENDS_1_3'/>
-      <ref name='XML_SCHEMAP_COS_ST_DERIVED_OK_2_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_DERIVED_OK_2_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_1_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_1_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4'/>
-      <ref name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5'/>
-      <ref name='XML_SCHEMAP_COS_VALID_DEFAULT_1'/>
-      <ref name='XML_SCHEMAP_COS_VALID_DEFAULT_2_1'/>
-      <ref name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1'/>
-      <ref name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2'/>
-      <ref name='XML_SCHEMAP_CT_PROPS_CORRECT_1'/>
-      <ref name='XML_SCHEMAP_CT_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_CT_PROPS_CORRECT_3'/>
-      <ref name='XML_SCHEMAP_CT_PROPS_CORRECT_4'/>
-      <ref name='XML_SCHEMAP_CT_PROPS_CORRECT_5'/>
-      <ref name='XML_SCHEMAP_CVC_SIMPLE_TYPE'/>
-      <ref name='XML_SCHEMAP_C_PROPS_CORRECT'/>
-      <ref name='XML_SCHEMAP_DEF_AND_PREFIX'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2'/>
-      <ref name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3'/>
-      <ref name='XML_SCHEMAP_ELEMFORMDEFAULT_VALUE'/>
-      <ref name='XML_SCHEMAP_ELEM_DEFAULT_FIXED'/>
-      <ref name='XML_SCHEMAP_ELEM_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_EXTENSION_NO_BASE'/>
-      <ref name='XML_SCHEMAP_E_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_E_PROPS_CORRECT_3'/>
-      <ref name='XML_SCHEMAP_E_PROPS_CORRECT_4'/>
-      <ref name='XML_SCHEMAP_E_PROPS_CORRECT_5'/>
-      <ref name='XML_SCHEMAP_E_PROPS_CORRECT_6'/>
-      <ref name='XML_SCHEMAP_FACET_NO_VALUE'/>
-      <ref name='XML_SCHEMAP_FAILED_BUILD_IMPORT'/>
-      <ref name='XML_SCHEMAP_FAILED_LOAD'/>
-      <ref name='XML_SCHEMAP_FAILED_PARSE'/>
-      <ref name='XML_SCHEMAP_GROUP_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI'/>
-      <ref name='XML_SCHEMAP_IMPORT_REDEFINE_NSNAME'/>
-      <ref name='XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI'/>
-      <ref name='XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI'/>
-      <ref name='XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI'/>
-      <ref name='XML_SCHEMAP_INTERNAL'/>
-      <ref name='XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE'/>
-      <ref name='XML_SCHEMAP_INVALID_ATTR_COMBINATION'/>
-      <ref name='XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION'/>
-      <ref name='XML_SCHEMAP_INVALID_ATTR_NAME'/>
-      <ref name='XML_SCHEMAP_INVALID_ATTR_USE'/>
-      <ref name='XML_SCHEMAP_INVALID_BOOLEAN'/>
-      <ref name='XML_SCHEMAP_INVALID_ENUM'/>
-      <ref name='XML_SCHEMAP_INVALID_FACET'/>
-      <ref name='XML_SCHEMAP_INVALID_FACET_VALUE'/>
-      <ref name='XML_SCHEMAP_INVALID_MAXOCCURS'/>
-      <ref name='XML_SCHEMAP_INVALID_MINOCCURS'/>
-      <ref name='XML_SCHEMAP_INVALID_REF_AND_SUBTYPE'/>
-      <ref name='XML_SCHEMAP_INVALID_WHITE_SPACE'/>
-      <ref name='XML_SCHEMAP_MG_PROPS_CORRECT_1'/>
-      <ref name='XML_SCHEMAP_MG_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD'/>
-      <ref name='XML_SCHEMAP_NOATTR_NOREF'/>
-      <ref name='XML_SCHEMAP_NOROOT'/>
-      <ref name='XML_SCHEMAP_NOTATION_NO_NAME'/>
-      <ref name='XML_SCHEMAP_NOTHING_TO_PARSE'/>
-      <ref name='XML_SCHEMAP_NOTYPE_NOREF'/>
-      <ref name='XML_SCHEMAP_NOT_DETERMINISTIC'/>
-      <ref name='XML_SCHEMAP_NOT_SCHEMA'/>
-      <ref name='XML_SCHEMAP_NO_XMLNS'/>
-      <ref name='XML_SCHEMAP_NO_XSI'/>
-      <ref name='XML_SCHEMAP_PREFIX_UNDEFINED'/>
-      <ref name='XML_SCHEMAP_P_PROPS_CORRECT_1'/>
-      <ref name='XML_SCHEMAP_P_PROPS_CORRECT_2_1'/>
-      <ref name='XML_SCHEMAP_P_PROPS_CORRECT_2_2'/>
-      <ref name='XML_SCHEMAP_RECURSIVE'/>
-      <ref name='XML_SCHEMAP_REDEFINED_ATTR'/>
-      <ref name='XML_SCHEMAP_REDEFINED_ATTRGROUP'/>
-      <ref name='XML_SCHEMAP_REDEFINED_ELEMENT'/>
-      <ref name='XML_SCHEMAP_REDEFINED_GROUP'/>
-      <ref name='XML_SCHEMAP_REDEFINED_NOTATION'/>
-      <ref name='XML_SCHEMAP_REDEFINED_TYPE'/>
-      <ref name='XML_SCHEMAP_REF_AND_CONTENT'/>
-      <ref name='XML_SCHEMAP_REF_AND_SUBTYPE'/>
-      <ref name='XML_SCHEMAP_REGEXP_INVALID'/>
-      <ref name='XML_SCHEMAP_RESTRICTION_NONAME_NOREF'/>
-      <ref name='XML_SCHEMAP_S4S_ATTR_INVALID_VALUE'/>
-      <ref name='XML_SCHEMAP_S4S_ATTR_MISSING'/>
-      <ref name='XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED'/>
-      <ref name='XML_SCHEMAP_S4S_ELEM_MISSING'/>
-      <ref name='XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED'/>
-      <ref name='XML_SCHEMAP_SIMPLETYPE_NONAME'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_1'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_2'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_3_1'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_3_2'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_4'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2'/>
-      <ref name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3'/>
-      <ref name='XML_SCHEMAP_SRC_CT_1'/>
-      <ref name='XML_SCHEMAP_SRC_ELEMENT_1'/>
-      <ref name='XML_SCHEMAP_SRC_ELEMENT_2_1'/>
-      <ref name='XML_SCHEMAP_SRC_ELEMENT_2_2'/>
-      <ref name='XML_SCHEMAP_SRC_ELEMENT_3'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_1_1'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_1_2'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_2'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_2_1'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_2_2'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_3_1'/>
-      <ref name='XML_SCHEMAP_SRC_IMPORT_3_2'/>
-      <ref name='XML_SCHEMAP_SRC_INCLUDE'/>
-      <ref name='XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE'/>
-      <ref name='XML_SCHEMAP_SRC_REDEFINE'/>
-      <ref name='XML_SCHEMAP_SRC_RESOLVE'/>
-      <ref name='XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE'/>
-      <ref name='XML_SCHEMAP_SRC_SIMPLE_TYPE_1'/>
-      <ref name='XML_SCHEMAP_SRC_SIMPLE_TYPE_2'/>
-      <ref name='XML_SCHEMAP_SRC_SIMPLE_TYPE_3'/>
-      <ref name='XML_SCHEMAP_SRC_SIMPLE_TYPE_4'/>
-      <ref name='XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES'/>
-      <ref name='XML_SCHEMAP_ST_PROPS_CORRECT_1'/>
-      <ref name='XML_SCHEMAP_ST_PROPS_CORRECT_2'/>
-      <ref name='XML_SCHEMAP_ST_PROPS_CORRECT_3'/>
-      <ref name='XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE'/>
-      <ref name='XML_SCHEMAP_TYPE_AND_SUBTYPE'/>
-      <ref name='XML_SCHEMAP_UNION_NOT_EXPRESSIBLE'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ALL_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ATTR_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_BASE_TYPE'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_CHOICE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_ELEM_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_FACET_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_FACET_TYPE'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_GROUP_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_IMPORT_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_LIST_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_MEMBER_TYPE'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_NOTATION_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_PREFIX'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_REF'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_TYPE'/>
-      <ref name='XML_SCHEMAP_UNKNOWN_UNION_CHILD'/>
-      <ref name='XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH'/>
-      <ref name='XML_SCHEMAP_WARN_ATTR_REDECL_PROH'/>
-      <ref name='XML_SCHEMAP_WARN_SKIP_SCHEMA'/>
-      <ref name='XML_SCHEMAP_WARN_UNLOCATED_SCHEMA'/>
-      <ref name='XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER'/>
-      <ref name='XML_SCHEMATRONV_ASSERT'/>
-      <ref name='XML_SCHEMATRONV_REPORT'/>
-      <ref name='XML_SCHEMAV_ATTRINVALID'/>
-      <ref name='XML_SCHEMAV_ATTRUNKNOWN'/>
-      <ref name='XML_SCHEMAV_CONSTRUCT'/>
-      <ref name='XML_SCHEMAV_CVC_ATTRIBUTE_1'/>
-      <ref name='XML_SCHEMAV_CVC_ATTRIBUTE_2'/>
-      <ref name='XML_SCHEMAV_CVC_ATTRIBUTE_3'/>
-      <ref name='XML_SCHEMAV_CVC_ATTRIBUTE_4'/>
-      <ref name='XML_SCHEMAV_CVC_AU'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_1'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_4'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1'/>
-      <ref name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2'/>
-      <ref name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2'/>
-      <ref name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_2'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_3_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_3_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_3_2_2'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_4_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_4_2'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_4_3'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_1_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_1_2'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_2_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_2_2_2_1'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_5_2_2_2_2'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_6'/>
-      <ref name='XML_SCHEMAV_CVC_ELT_7'/>
-      <ref name='XML_SCHEMAV_CVC_ENUMERATION_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_FACET_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_IDC'/>
-      <ref name='XML_SCHEMAV_CVC_LENGTH_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MAXLENGTH_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MININCLUSIVE_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_MINLENGTH_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_PATTERN_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_TOTALDIGITS_VALID'/>
-      <ref name='XML_SCHEMAV_CVC_TYPE_1'/>
-      <ref name='XML_SCHEMAV_CVC_TYPE_2'/>
-      <ref name='XML_SCHEMAV_CVC_TYPE_3_1_1'/>
-      <ref name='XML_SCHEMAV_CVC_TYPE_3_1_2'/>
-      <ref name='XML_SCHEMAV_CVC_WILDCARD'/>
-      <ref name='XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING'/>
-      <ref name='XML_SCHEMAV_ELEMCONT'/>
-      <ref name='XML_SCHEMAV_ELEMENT_CONTENT'/>
-      <ref name='XML_SCHEMAV_EXTRACONTENT'/>
-      <ref name='XML_SCHEMAV_FACET'/>
-      <ref name='XML_SCHEMAV_HAVEDEFAULT'/>
-      <ref name='XML_SCHEMAV_INTERNAL'/>
-      <ref name='XML_SCHEMAV_INVALIDATTR'/>
-      <ref name='XML_SCHEMAV_INVALIDELEM'/>
-      <ref name='XML_SCHEMAV_ISABSTRACT'/>
-      <ref name='XML_SCHEMAV_MISC'/>
-      <ref name='XML_SCHEMAV_MISSING'/>
-      <ref name='XML_SCHEMAV_NOROLLBACK'/>
-      <ref name='XML_SCHEMAV_NOROOT'/>
-      <ref name='XML_SCHEMAV_NOTDETERMINIST'/>
-      <ref name='XML_SCHEMAV_NOTEMPTY'/>
-      <ref name='XML_SCHEMAV_NOTNILLABLE'/>
-      <ref name='XML_SCHEMAV_NOTSIMPLE'/>
-      <ref name='XML_SCHEMAV_NOTTOPLEVEL'/>
-      <ref name='XML_SCHEMAV_NOTYPE'/>
-      <ref name='XML_SCHEMAV_UNDECLAREDELEM'/>
-      <ref name='XML_SCHEMAV_VALUE'/>
-      <ref name='XML_SCHEMAV_WRONGELEM'/>
-      <ref name='XML_TREE_INVALID_DEC'/>
-      <ref name='XML_TREE_INVALID_HEX'/>
-      <ref name='XML_TREE_NOT_UTF8'/>
-      <ref name='XML_TREE_UNTERMINATED_ENTITY'/>
-      <ref name='XML_WAR_CATALOG_PI'/>
-      <ref name='XML_WAR_ENTITY_REDEFINED'/>
-      <ref name='XML_WAR_LANG_VALUE'/>
-      <ref name='XML_WAR_NS_COLUMN'/>
-      <ref name='XML_WAR_NS_URI'/>
-      <ref name='XML_WAR_NS_URI_RELATIVE'/>
-      <ref name='XML_WAR_SPACE_VALUE'/>
-      <ref name='XML_WAR_UNDECLARED_ENTITY'/>
-      <ref name='XML_WAR_UNKNOWN_VERSION'/>
-      <ref name='XML_XINCLUDE_BUILD_FAILED'/>
-      <ref name='XML_XINCLUDE_DEPRECATED_NS'/>
-      <ref name='XML_XINCLUDE_ENTITY_DEF_MISMATCH'/>
-      <ref name='XML_XINCLUDE_FALLBACKS_IN_INCLUDE'/>
-      <ref name='XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE'/>
-      <ref name='XML_XINCLUDE_FRAGMENT_ID'/>
-      <ref name='XML_XINCLUDE_HREF_URI'/>
-      <ref name='XML_XINCLUDE_INCLUDE_IN_INCLUDE'/>
-      <ref name='XML_XINCLUDE_INVALID_CHAR'/>
-      <ref name='XML_XINCLUDE_MULTIPLE_ROOT'/>
-      <ref name='XML_XINCLUDE_NO_FALLBACK'/>
-      <ref name='XML_XINCLUDE_NO_HREF'/>
-      <ref name='XML_XINCLUDE_PARSE_VALUE'/>
-      <ref name='XML_XINCLUDE_RECURSION'/>
-      <ref name='XML_XINCLUDE_TEXT_DOCUMENT'/>
-      <ref name='XML_XINCLUDE_TEXT_FRAGMENT'/>
-      <ref name='XML_XINCLUDE_UNKNOWN_ENCODING'/>
-      <ref name='XML_XINCLUDE_XPTR_FAILED'/>
-      <ref name='XML_XINCLUDE_XPTR_RESULT'/>
-      <ref name='XML_XPATH_ENCODING_ERROR'/>
-      <ref name='XML_XPATH_EXPRESSION_OK'/>
-      <ref name='XML_XPATH_EXPR_ERROR'/>
-      <ref name='XML_XPATH_INVALID_ARITY'/>
-      <ref name='XML_XPATH_INVALID_CHAR_ERROR'/>
-      <ref name='XML_XPATH_INVALID_CTXT_POSITION'/>
-      <ref name='XML_XPATH_INVALID_CTXT_SIZE'/>
-      <ref name='XML_XPATH_INVALID_OPERAND'/>
-      <ref name='XML_XPATH_INVALID_PREDICATE_ERROR'/>
-      <ref name='XML_XPATH_INVALID_TYPE'/>
-      <ref name='XML_XPATH_MEMORY_ERROR'/>
-      <ref name='XML_XPATH_NUMBER_ERROR'/>
-      <ref name='XML_XPATH_START_LITERAL_ERROR'/>
-      <ref name='XML_XPATH_UNCLOSED_ERROR'/>
-      <ref name='XML_XPATH_UNDEF_PREFIX_ERROR'/>
-      <ref name='XML_XPATH_UNDEF_VARIABLE_ERROR'/>
-      <ref name='XML_XPATH_UNFINISHED_LITERAL_ERROR'/>
-      <ref name='XML_XPATH_UNKNOWN_FUNC_ERROR'/>
-      <ref name='XML_XPATH_VARIABLE_REF_ERROR'/>
-      <ref name='XML_XPTR_CHILDSEQ_START'/>
-      <ref name='XML_XPTR_EVAL_FAILED'/>
-      <ref name='XML_XPTR_EXTRA_OBJECTS'/>
-      <ref name='XML_XPTR_RESOURCE_ERROR'/>
-      <ref name='XML_XPTR_SUB_RESOURCE_ERROR'/>
-      <ref name='XML_XPTR_SYNTAX_ERROR'/>
-      <ref name='XML_XPTR_UNKNOWN_SCHEME'/>
-      <ref name='_xmlError'/>
-      <ref name='initGenericErrorDefaultFunc'/>
-      <ref name='xmlCopyError'/>
-      <ref name='xmlCtxtGetLastError'/>
-      <ref name='xmlCtxtResetLastError'/>
-      <ref name='xmlError'/>
-      <ref name='xmlErrorDomain'/>
-      <ref name='xmlErrorLevel'/>
-      <ref name='xmlErrorPtr'/>
-      <ref name='xmlGenericErrorFunc'/>
-      <ref name='xmlGetLastError'/>
-      <ref name='xmlParserError'/>
-      <ref name='xmlParserErrors'/>
-      <ref name='xmlParserPrintFileContext'/>
-      <ref name='xmlParserPrintFileInfo'/>
-      <ref name='xmlParserValidityError'/>
-      <ref name='xmlParserValidityWarning'/>
-      <ref name='xmlParserWarning'/>
-      <ref name='xmlResetError'/>
-      <ref name='xmlResetLastError'/>
-      <ref name='xmlSetGenericErrorFunc'/>
-      <ref name='xmlSetStructuredErrorFunc'/>
-      <ref name='xmlStructuredErrorFunc'/>
-    </file>
-    <file name='xmlexports'>
-      <ref name='LIBXML_DLL_IMPORT'/>
-      <ref name='XMLCALL'/>
-      <ref name='XMLCDECL'/>
-      <ref name='XMLPUBFUN'/>
-      <ref name='XMLPUBLIC'/>
-      <ref name='XMLPUBVAR'/>
-    </file>
-    <file name='xmlmemory'>
-      <ref name='DEBUG_MEMORY'/>
-      <ref name='xmlCleanupMemory'/>
-      <ref name='xmlFreeFunc'/>
-      <ref name='xmlGcMemGet'/>
-      <ref name='xmlGcMemSetup'/>
-      <ref name='xmlInitMemory'/>
-      <ref name='xmlMalloc'/>
-      <ref name='xmlMallocAtomic'/>
-      <ref name='xmlMallocAtomicLoc'/>
-      <ref name='xmlMallocFunc'/>
-      <ref name='xmlMallocLoc'/>
-      <ref name='xmlMemBlocks'/>
-      <ref name='xmlMemDisplay'/>
-      <ref name='xmlMemDisplayLast'/>
-      <ref name='xmlMemFree'/>
-      <ref name='xmlMemGet'/>
-      <ref name='xmlMemMalloc'/>
-      <ref name='xmlMemRealloc'/>
-      <ref name='xmlMemSetup'/>
-      <ref name='xmlMemShow'/>
-      <ref name='xmlMemStrdup'/>
-      <ref name='xmlMemStrdupLoc'/>
-      <ref name='xmlMemUsed'/>
-      <ref name='xmlMemoryDump'/>
-      <ref name='xmlMemoryStrdup'/>
-      <ref name='xmlRealloc'/>
-      <ref name='xmlReallocFunc'/>
-      <ref name='xmlReallocLoc'/>
-      <ref name='xmlStrdupFunc'/>
-    </file>
-    <file name='xmlmodule'>
-      <ref name='XML_MODULE_LAZY'/>
-      <ref name='XML_MODULE_LOCAL'/>
-      <ref name='xmlModule'/>
-      <ref name='xmlModuleClose'/>
-      <ref name='xmlModuleFree'/>
-      <ref name='xmlModuleOpen'/>
-      <ref name='xmlModuleOption'/>
-      <ref name='xmlModulePtr'/>
-      <ref name='xmlModuleSymbol'/>
-    </file>
-    <file name='xmlreader'>
-      <ref name='XML_PARSER_DEFAULTATTRS'/>
-      <ref name='XML_PARSER_LOADDTD'/>
-      <ref name='XML_PARSER_SEVERITY_ERROR'/>
-      <ref name='XML_PARSER_SEVERITY_VALIDITY_ERROR'/>
-      <ref name='XML_PARSER_SEVERITY_VALIDITY_WARNING'/>
-      <ref name='XML_PARSER_SEVERITY_WARNING'/>
-      <ref name='XML_PARSER_SUBST_ENTITIES'/>
-      <ref name='XML_PARSER_VALIDATE'/>
-      <ref name='XML_READER_TYPE_ATTRIBUTE'/>
-      <ref name='XML_READER_TYPE_CDATA'/>
-      <ref name='XML_READER_TYPE_COMMENT'/>
-      <ref name='XML_READER_TYPE_DOCUMENT'/>
-      <ref name='XML_READER_TYPE_DOCUMENT_FRAGMENT'/>
-      <ref name='XML_READER_TYPE_DOCUMENT_TYPE'/>
-      <ref name='XML_READER_TYPE_ELEMENT'/>
-      <ref name='XML_READER_TYPE_END_ELEMENT'/>
-      <ref name='XML_READER_TYPE_END_ENTITY'/>
-      <ref name='XML_READER_TYPE_ENTITY'/>
-      <ref name='XML_READER_TYPE_ENTITY_REFERENCE'/>
-      <ref name='XML_READER_TYPE_NONE'/>
-      <ref name='XML_READER_TYPE_NOTATION'/>
-      <ref name='XML_READER_TYPE_PROCESSING_INSTRUCTION'/>
-      <ref name='XML_READER_TYPE_SIGNIFICANT_WHITESPACE'/>
-      <ref name='XML_READER_TYPE_TEXT'/>
-      <ref name='XML_READER_TYPE_WHITESPACE'/>
-      <ref name='XML_READER_TYPE_XML_DECLARATION'/>
-      <ref name='XML_TEXTREADER_MODE_CLOSED'/>
-      <ref name='XML_TEXTREADER_MODE_EOF'/>
-      <ref name='XML_TEXTREADER_MODE_ERROR'/>
-      <ref name='XML_TEXTREADER_MODE_INITIAL'/>
-      <ref name='XML_TEXTREADER_MODE_INTERACTIVE'/>
-      <ref name='XML_TEXTREADER_MODE_READING'/>
-      <ref name='xmlFreeTextReader'/>
-      <ref name='xmlNewTextReader'/>
-      <ref name='xmlNewTextReaderFilename'/>
-      <ref name='xmlParserProperties'/>
-      <ref name='xmlParserSeverities'/>
-      <ref name='xmlReaderForDoc'/>
-      <ref name='xmlReaderForFd'/>
-      <ref name='xmlReaderForFile'/>
-      <ref name='xmlReaderForIO'/>
-      <ref name='xmlReaderForMemory'/>
-      <ref name='xmlReaderNewDoc'/>
-      <ref name='xmlReaderNewFd'/>
-      <ref name='xmlReaderNewFile'/>
-      <ref name='xmlReaderNewIO'/>
-      <ref name='xmlReaderNewMemory'/>
-      <ref name='xmlReaderNewWalker'/>
-      <ref name='xmlReaderTypes'/>
-      <ref name='xmlReaderWalker'/>
-      <ref name='xmlTextReader'/>
-      <ref name='xmlTextReaderAttributeCount'/>
-      <ref name='xmlTextReaderBaseUri'/>
-      <ref name='xmlTextReaderByteConsumed'/>
-      <ref name='xmlTextReaderClose'/>
-      <ref name='xmlTextReaderConstBaseUri'/>
-      <ref name='xmlTextReaderConstEncoding'/>
-      <ref name='xmlTextReaderConstLocalName'/>
-      <ref name='xmlTextReaderConstName'/>
-      <ref name='xmlTextReaderConstNamespaceUri'/>
-      <ref name='xmlTextReaderConstPrefix'/>
-      <ref name='xmlTextReaderConstString'/>
-      <ref name='xmlTextReaderConstValue'/>
-      <ref name='xmlTextReaderConstXmlLang'/>
-      <ref name='xmlTextReaderConstXmlVersion'/>
-      <ref name='xmlTextReaderCurrentDoc'/>
-      <ref name='xmlTextReaderCurrentNode'/>
-      <ref name='xmlTextReaderDepth'/>
-      <ref name='xmlTextReaderErrorFunc'/>
-      <ref name='xmlTextReaderExpand'/>
-      <ref name='xmlTextReaderGetAttribute'/>
-      <ref name='xmlTextReaderGetAttributeNo'/>
-      <ref name='xmlTextReaderGetAttributeNs'/>
-      <ref name='xmlTextReaderGetErrorHandler'/>
-      <ref name='xmlTextReaderGetParserColumnNumber'/>
-      <ref name='xmlTextReaderGetParserLineNumber'/>
-      <ref name='xmlTextReaderGetParserProp'/>
-      <ref name='xmlTextReaderGetRemainder'/>
-      <ref name='xmlTextReaderHasAttributes'/>
-      <ref name='xmlTextReaderHasValue'/>
-      <ref name='xmlTextReaderIsDefault'/>
-      <ref name='xmlTextReaderIsEmptyElement'/>
-      <ref name='xmlTextReaderIsNamespaceDecl'/>
-      <ref name='xmlTextReaderIsValid'/>
-      <ref name='xmlTextReaderLocalName'/>
-      <ref name='xmlTextReaderLocatorBaseURI'/>
-      <ref name='xmlTextReaderLocatorLineNumber'/>
-      <ref name='xmlTextReaderLocatorPtr'/>
-      <ref name='xmlTextReaderLookupNamespace'/>
-      <ref name='xmlTextReaderMode'/>
-      <ref name='xmlTextReaderMoveToAttribute'/>
-      <ref name='xmlTextReaderMoveToAttributeNo'/>
-      <ref name='xmlTextReaderMoveToAttributeNs'/>
-      <ref name='xmlTextReaderMoveToElement'/>
-      <ref name='xmlTextReaderMoveToFirstAttribute'/>
-      <ref name='xmlTextReaderMoveToNextAttribute'/>
-      <ref name='xmlTextReaderName'/>
-      <ref name='xmlTextReaderNamespaceUri'/>
-      <ref name='xmlTextReaderNext'/>
-      <ref name='xmlTextReaderNextSibling'/>
-      <ref name='xmlTextReaderNodeType'/>
-      <ref name='xmlTextReaderNormalization'/>
-      <ref name='xmlTextReaderPrefix'/>
-      <ref name='xmlTextReaderPreserve'/>
-      <ref name='xmlTextReaderPreservePattern'/>
-      <ref name='xmlTextReaderPtr'/>
-      <ref name='xmlTextReaderQuoteChar'/>
-      <ref name='xmlTextReaderRead'/>
-      <ref name='xmlTextReaderReadAttributeValue'/>
-      <ref name='xmlTextReaderReadInnerXml'/>
-      <ref name='xmlTextReaderReadOuterXml'/>
-      <ref name='xmlTextReaderReadState'/>
-      <ref name='xmlTextReaderReadString'/>
-      <ref name='xmlTextReaderRelaxNGSetSchema'/>
-      <ref name='xmlTextReaderRelaxNGValidate'/>
-      <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-      <ref name='xmlTextReaderSchemaValidate'/>
-      <ref name='xmlTextReaderSchemaValidateCtxt'/>
-      <ref name='xmlTextReaderSetErrorHandler'/>
-      <ref name='xmlTextReaderSetParserProp'/>
-      <ref name='xmlTextReaderSetSchema'/>
-      <ref name='xmlTextReaderSetStructuredErrorHandler'/>
-      <ref name='xmlTextReaderSetup'/>
-      <ref name='xmlTextReaderStandalone'/>
-      <ref name='xmlTextReaderValue'/>
-      <ref name='xmlTextReaderXmlLang'/>
-    </file>
-    <file name='xmlregexp'>
-      <ref name='XML_EXP_ATOM'/>
-      <ref name='XML_EXP_COUNT'/>
-      <ref name='XML_EXP_EMPTY'/>
-      <ref name='XML_EXP_FORBID'/>
-      <ref name='XML_EXP_OR'/>
-      <ref name='XML_EXP_SEQ'/>
-      <ref name='emptyExp'/>
-      <ref name='forbiddenExp'/>
-      <ref name='xmlExpCtxt'/>
-      <ref name='xmlExpCtxtNbCons'/>
-      <ref name='xmlExpCtxtNbNodes'/>
-      <ref name='xmlExpCtxtPtr'/>
-      <ref name='xmlExpDump'/>
-      <ref name='xmlExpExpDerive'/>
-      <ref name='xmlExpFree'/>
-      <ref name='xmlExpFreeCtxt'/>
-      <ref name='xmlExpGetLanguage'/>
-      <ref name='xmlExpGetStart'/>
-      <ref name='xmlExpIsNillable'/>
-      <ref name='xmlExpMaxToken'/>
-      <ref name='xmlExpNewAtom'/>
-      <ref name='xmlExpNewCtxt'/>
-      <ref name='xmlExpNewOr'/>
-      <ref name='xmlExpNewRange'/>
-      <ref name='xmlExpNewSeq'/>
-      <ref name='xmlExpNode'/>
-      <ref name='xmlExpNodePtr'/>
-      <ref name='xmlExpNodeType'/>
-      <ref name='xmlExpParse'/>
-      <ref name='xmlExpRef'/>
-      <ref name='xmlExpStringDerive'/>
-      <ref name='xmlExpSubsume'/>
-      <ref name='xmlRegExecCallbacks'/>
-      <ref name='xmlRegExecCtxt'/>
-      <ref name='xmlRegExecCtxtPtr'/>
-      <ref name='xmlRegExecErrInfo'/>
-      <ref name='xmlRegExecNextValues'/>
-      <ref name='xmlRegExecPushString'/>
-      <ref name='xmlRegExecPushString2'/>
-      <ref name='xmlRegFreeExecCtxt'/>
-      <ref name='xmlRegFreeRegexp'/>
-      <ref name='xmlRegNewExecCtxt'/>
-      <ref name='xmlRegexp'/>
-      <ref name='xmlRegexpCompile'/>
-      <ref name='xmlRegexpExec'/>
-      <ref name='xmlRegexpIsDeterminist'/>
-      <ref name='xmlRegexpPrint'/>
-      <ref name='xmlRegexpPtr'/>
-    </file>
-    <file name='xmlsave'>
-      <ref name='XML_SAVE_AS_HTML'/>
-      <ref name='XML_SAVE_AS_XML'/>
-      <ref name='XML_SAVE_FORMAT'/>
-      <ref name='XML_SAVE_NO_DECL'/>
-      <ref name='XML_SAVE_NO_EMPTY'/>
-      <ref name='XML_SAVE_NO_XHTML'/>
-      <ref name='XML_SAVE_WSNONSIG'/>
-      <ref name='XML_SAVE_XHTML'/>
-      <ref name='xmlSaveClose'/>
-      <ref name='xmlSaveCtxt'/>
-      <ref name='xmlSaveCtxtPtr'/>
-      <ref name='xmlSaveDoc'/>
-      <ref name='xmlSaveFlush'/>
-      <ref name='xmlSaveOption'/>
-      <ref name='xmlSaveSetAttrEscape'/>
-      <ref name='xmlSaveSetEscape'/>
-      <ref name='xmlSaveToBuffer'/>
-      <ref name='xmlSaveToFd'/>
-      <ref name='xmlSaveToFilename'/>
-      <ref name='xmlSaveToIO'/>
-      <ref name='xmlSaveTree'/>
-    </file>
-    <file name='xmlschemas'>
-      <ref name='XML_SCHEMAS_ERR_'/>
-      <ref name='XML_SCHEMAS_ERR_ATTRINVALID'/>
-      <ref name='XML_SCHEMAS_ERR_ATTRUNKNOWN'/>
-      <ref name='XML_SCHEMAS_ERR_CONSTRUCT'/>
-      <ref name='XML_SCHEMAS_ERR_ELEMCONT'/>
-      <ref name='XML_SCHEMAS_ERR_EXTRACONTENT'/>
-      <ref name='XML_SCHEMAS_ERR_FACET'/>
-      <ref name='XML_SCHEMAS_ERR_HAVEDEFAULT'/>
-      <ref name='XML_SCHEMAS_ERR_INTERNAL'/>
-      <ref name='XML_SCHEMAS_ERR_INVALIDATTR'/>
-      <ref name='XML_SCHEMAS_ERR_INVALIDELEM'/>
-      <ref name='XML_SCHEMAS_ERR_ISABSTRACT'/>
-      <ref name='XML_SCHEMAS_ERR_MISSING'/>
-      <ref name='XML_SCHEMAS_ERR_NOROLLBACK'/>
-      <ref name='XML_SCHEMAS_ERR_NOROOT'/>
-      <ref name='XML_SCHEMAS_ERR_NOTDETERMINIST'/>
-      <ref name='XML_SCHEMAS_ERR_NOTEMPTY'/>
-      <ref name='XML_SCHEMAS_ERR_NOTNILLABLE'/>
-      <ref name='XML_SCHEMAS_ERR_NOTSIMPLE'/>
-      <ref name='XML_SCHEMAS_ERR_NOTTOPLEVEL'/>
-      <ref name='XML_SCHEMAS_ERR_NOTYPE'/>
-      <ref name='XML_SCHEMAS_ERR_OK'/>
-      <ref name='XML_SCHEMAS_ERR_UNDECLAREDELEM'/>
-      <ref name='XML_SCHEMAS_ERR_VALUE'/>
-      <ref name='XML_SCHEMAS_ERR_WRONGELEM'/>
-      <ref name='XML_SCHEMAS_ERR_XXX'/>
-      <ref name='XML_SCHEMA_VAL_VC_I_CREATE'/>
-      <ref name='xmlSchema'/>
-      <ref name='xmlSchemaDump'/>
-      <ref name='xmlSchemaFree'/>
-      <ref name='xmlSchemaFreeParserCtxt'/>
-      <ref name='xmlSchemaFreeValidCtxt'/>
-      <ref name='xmlSchemaGetParserErrors'/>
-      <ref name='xmlSchemaGetValidErrors'/>
-      <ref name='xmlSchemaIsValid'/>
-      <ref name='xmlSchemaNewDocParserCtxt'/>
-      <ref name='xmlSchemaNewMemParserCtxt'/>
-      <ref name='xmlSchemaNewParserCtxt'/>
-      <ref name='xmlSchemaNewValidCtxt'/>
-      <ref name='xmlSchemaParse'/>
-      <ref name='xmlSchemaParserCtxt'/>
-      <ref name='xmlSchemaParserCtxtPtr'/>
-      <ref name='xmlSchemaPtr'/>
-      <ref name='xmlSchemaSAXPlug'/>
-      <ref name='xmlSchemaSAXPlugPtr'/>
-      <ref name='xmlSchemaSAXPlugStruct'/>
-      <ref name='xmlSchemaSAXUnplug'/>
-      <ref name='xmlSchemaSetParserErrors'/>
-      <ref name='xmlSchemaSetParserStructuredErrors'/>
-      <ref name='xmlSchemaSetValidErrors'/>
-      <ref name='xmlSchemaSetValidOptions'/>
-      <ref name='xmlSchemaSetValidStructuredErrors'/>
-      <ref name='xmlSchemaValidCtxt'/>
-      <ref name='xmlSchemaValidCtxtGetOptions'/>
-      <ref name='xmlSchemaValidCtxtGetParserCtxt'/>
-      <ref name='xmlSchemaValidCtxtPtr'/>
-      <ref name='xmlSchemaValidError'/>
-      <ref name='xmlSchemaValidOption'/>
-      <ref name='xmlSchemaValidateDoc'/>
-      <ref name='xmlSchemaValidateFile'/>
-      <ref name='xmlSchemaValidateOneElement'/>
-      <ref name='xmlSchemaValidateSetFilename'/>
-      <ref name='xmlSchemaValidateSetLocator'/>
-      <ref name='xmlSchemaValidateStream'/>
-      <ref name='xmlSchemaValidityErrorFunc'/>
-      <ref name='xmlSchemaValidityLocatorFunc'/>
-      <ref name='xmlSchemaValidityWarningFunc'/>
-    </file>
-    <file name='xmlschemastypes'>
-      <ref name='XML_SCHEMA_WHITESPACE_COLLAPSE'/>
-      <ref name='XML_SCHEMA_WHITESPACE_PRESERVE'/>
-      <ref name='XML_SCHEMA_WHITESPACE_REPLACE'/>
-      <ref name='XML_SCHEMA_WHITESPACE_UNKNOWN'/>
-      <ref name='xmlSchemaCheckFacet'/>
-      <ref name='xmlSchemaCleanupTypes'/>
-      <ref name='xmlSchemaCollapseString'/>
-      <ref name='xmlSchemaCompareValues'/>
-      <ref name='xmlSchemaCompareValuesWhtsp'/>
-      <ref name='xmlSchemaCopyValue'/>
-      <ref name='xmlSchemaFreeFacet'/>
-      <ref name='xmlSchemaFreeValue'/>
-      <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-      <ref name='xmlSchemaGetBuiltInType'/>
-      <ref name='xmlSchemaGetCanonValue'/>
-      <ref name='xmlSchemaGetCanonValueWhtsp'/>
-      <ref name='xmlSchemaGetFacetValueAsULong'/>
-      <ref name='xmlSchemaGetPredefinedType'/>
-      <ref name='xmlSchemaGetValType'/>
-      <ref name='xmlSchemaInitTypes'/>
-      <ref name='xmlSchemaIsBuiltInTypeFacet'/>
-      <ref name='xmlSchemaNewFacet'/>
-      <ref name='xmlSchemaNewNOTATIONValue'/>
-      <ref name='xmlSchemaNewQNameValue'/>
-      <ref name='xmlSchemaNewStringValue'/>
-      <ref name='xmlSchemaValPredefTypeNode'/>
-      <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-      <ref name='xmlSchemaValidateFacet'/>
-      <ref name='xmlSchemaValidateFacetWhtsp'/>
-      <ref name='xmlSchemaValidateLengthFacet'/>
-      <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-      <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-      <ref name='xmlSchemaValidatePredefinedType'/>
-      <ref name='xmlSchemaValueAppend'/>
-      <ref name='xmlSchemaValueGetAsBoolean'/>
-      <ref name='xmlSchemaValueGetAsString'/>
-      <ref name='xmlSchemaValueGetNext'/>
-      <ref name='xmlSchemaWhiteSpaceReplace'/>
-      <ref name='xmlSchemaWhitespaceValueType'/>
-    </file>
-    <file name='xmlstring'>
-      <ref name='BAD_CAST'/>
-      <ref name='xmlChar'/>
-      <ref name='xmlCharStrdup'/>
-      <ref name='xmlCharStrndup'/>
-      <ref name='xmlCheckUTF8'/>
-      <ref name='xmlGetUTF8Char'/>
-      <ref name='xmlStrEqual'/>
-      <ref name='xmlStrPrintf'/>
-      <ref name='xmlStrQEqual'/>
-      <ref name='xmlStrVPrintf'/>
-      <ref name='xmlStrcasecmp'/>
-      <ref name='xmlStrcasestr'/>
-      <ref name='xmlStrcat'/>
-      <ref name='xmlStrchr'/>
-      <ref name='xmlStrcmp'/>
-      <ref name='xmlStrdup'/>
-      <ref name='xmlStrlen'/>
-      <ref name='xmlStrncasecmp'/>
-      <ref name='xmlStrncat'/>
-      <ref name='xmlStrncatNew'/>
-      <ref name='xmlStrncmp'/>
-      <ref name='xmlStrndup'/>
-      <ref name='xmlStrstr'/>
-      <ref name='xmlStrsub'/>
-      <ref name='xmlUTF8Charcmp'/>
-      <ref name='xmlUTF8Size'/>
-      <ref name='xmlUTF8Strlen'/>
-      <ref name='xmlUTF8Strloc'/>
-      <ref name='xmlUTF8Strndup'/>
-      <ref name='xmlUTF8Strpos'/>
-      <ref name='xmlUTF8Strsize'/>
-      <ref name='xmlUTF8Strsub'/>
-    </file>
-    <file name='xmlunicode'>
-      <ref name='xmlUCSIsAegeanNumbers'/>
-      <ref name='xmlUCSIsAlphabeticPresentationForms'/>
-      <ref name='xmlUCSIsArabic'/>
-      <ref name='xmlUCSIsArabicPresentationFormsA'/>
-      <ref name='xmlUCSIsArabicPresentationFormsB'/>
-      <ref name='xmlUCSIsArmenian'/>
-      <ref name='xmlUCSIsArrows'/>
-      <ref name='xmlUCSIsBasicLatin'/>
-      <ref name='xmlUCSIsBengali'/>
-      <ref name='xmlUCSIsBlock'/>
-      <ref name='xmlUCSIsBlockElements'/>
-      <ref name='xmlUCSIsBopomofo'/>
-      <ref name='xmlUCSIsBopomofoExtended'/>
-      <ref name='xmlUCSIsBoxDrawing'/>
-      <ref name='xmlUCSIsBraillePatterns'/>
-      <ref name='xmlUCSIsBuhid'/>
-      <ref name='xmlUCSIsByzantineMusicalSymbols'/>
-      <ref name='xmlUCSIsCJKCompatibility'/>
-      <ref name='xmlUCSIsCJKCompatibilityForms'/>
-      <ref name='xmlUCSIsCJKCompatibilityIdeographs'/>
-      <ref name='xmlUCSIsCJKCompatibilityIdeographsSupplement'/>
-      <ref name='xmlUCSIsCJKRadicalsSupplement'/>
-      <ref name='xmlUCSIsCJKSymbolsandPunctuation'/>
-      <ref name='xmlUCSIsCJKUnifiedIdeographs'/>
-      <ref name='xmlUCSIsCJKUnifiedIdeographsExtensionA'/>
-      <ref name='xmlUCSIsCJKUnifiedIdeographsExtensionB'/>
-      <ref name='xmlUCSIsCat'/>
-      <ref name='xmlUCSIsCatC'/>
-      <ref name='xmlUCSIsCatCc'/>
-      <ref name='xmlUCSIsCatCf'/>
-      <ref name='xmlUCSIsCatCo'/>
-      <ref name='xmlUCSIsCatCs'/>
-      <ref name='xmlUCSIsCatL'/>
-      <ref name='xmlUCSIsCatLl'/>
-      <ref name='xmlUCSIsCatLm'/>
-      <ref name='xmlUCSIsCatLo'/>
-      <ref name='xmlUCSIsCatLt'/>
-      <ref name='xmlUCSIsCatLu'/>
-      <ref name='xmlUCSIsCatM'/>
-      <ref name='xmlUCSIsCatMc'/>
-      <ref name='xmlUCSIsCatMe'/>
-      <ref name='xmlUCSIsCatMn'/>
-      <ref name='xmlUCSIsCatN'/>
-      <ref name='xmlUCSIsCatNd'/>
-      <ref name='xmlUCSIsCatNl'/>
-      <ref name='xmlUCSIsCatNo'/>
-      <ref name='xmlUCSIsCatP'/>
-      <ref name='xmlUCSIsCatPc'/>
-      <ref name='xmlUCSIsCatPd'/>
-      <ref name='xmlUCSIsCatPe'/>
-      <ref name='xmlUCSIsCatPf'/>
-      <ref name='xmlUCSIsCatPi'/>
-      <ref name='xmlUCSIsCatPo'/>
-      <ref name='xmlUCSIsCatPs'/>
-      <ref name='xmlUCSIsCatS'/>
-      <ref name='xmlUCSIsCatSc'/>
-      <ref name='xmlUCSIsCatSk'/>
-      <ref name='xmlUCSIsCatSm'/>
-      <ref name='xmlUCSIsCatSo'/>
-      <ref name='xmlUCSIsCatZ'/>
-      <ref name='xmlUCSIsCatZl'/>
-      <ref name='xmlUCSIsCatZp'/>
-      <ref name='xmlUCSIsCatZs'/>
-      <ref name='xmlUCSIsCherokee'/>
-      <ref name='xmlUCSIsCombiningDiacriticalMarks'/>
-      <ref name='xmlUCSIsCombiningDiacriticalMarksforSymbols'/>
-      <ref name='xmlUCSIsCombiningHalfMarks'/>
-      <ref name='xmlUCSIsCombiningMarksforSymbols'/>
-      <ref name='xmlUCSIsControlPictures'/>
-      <ref name='xmlUCSIsCurrencySymbols'/>
-      <ref name='xmlUCSIsCypriotSyllabary'/>
-      <ref name='xmlUCSIsCyrillic'/>
-      <ref name='xmlUCSIsCyrillicSupplement'/>
-      <ref name='xmlUCSIsDeseret'/>
-      <ref name='xmlUCSIsDevanagari'/>
-      <ref name='xmlUCSIsDingbats'/>
-      <ref name='xmlUCSIsEnclosedAlphanumerics'/>
-      <ref name='xmlUCSIsEnclosedCJKLettersandMonths'/>
-      <ref name='xmlUCSIsEthiopic'/>
-      <ref name='xmlUCSIsGeneralPunctuation'/>
-      <ref name='xmlUCSIsGeometricShapes'/>
-      <ref name='xmlUCSIsGeorgian'/>
-      <ref name='xmlUCSIsGothic'/>
-      <ref name='xmlUCSIsGreek'/>
-      <ref name='xmlUCSIsGreekExtended'/>
-      <ref name='xmlUCSIsGreekandCoptic'/>
-      <ref name='xmlUCSIsGujarati'/>
-      <ref name='xmlUCSIsGurmukhi'/>
-      <ref name='xmlUCSIsHalfwidthandFullwidthForms'/>
-      <ref name='xmlUCSIsHangulCompatibilityJamo'/>
-      <ref name='xmlUCSIsHangulJamo'/>
-      <ref name='xmlUCSIsHangulSyllables'/>
-      <ref name='xmlUCSIsHanunoo'/>
-      <ref name='xmlUCSIsHebrew'/>
-      <ref name='xmlUCSIsHighPrivateUseSurrogates'/>
-      <ref name='xmlUCSIsHighSurrogates'/>
-      <ref name='xmlUCSIsHiragana'/>
-      <ref name='xmlUCSIsIPAExtensions'/>
-      <ref name='xmlUCSIsIdeographicDescriptionCharacters'/>
-      <ref name='xmlUCSIsKanbun'/>
-      <ref name='xmlUCSIsKangxiRadicals'/>
-      <ref name='xmlUCSIsKannada'/>
-      <ref name='xmlUCSIsKatakana'/>
-      <ref name='xmlUCSIsKatakanaPhoneticExtensions'/>
-      <ref name='xmlUCSIsKhmer'/>
-      <ref name='xmlUCSIsKhmerSymbols'/>
-      <ref name='xmlUCSIsLao'/>
-      <ref name='xmlUCSIsLatin1Supplement'/>
-      <ref name='xmlUCSIsLatinExtendedA'/>
-      <ref name='xmlUCSIsLatinExtendedAdditional'/>
-      <ref name='xmlUCSIsLatinExtendedB'/>
-      <ref name='xmlUCSIsLetterlikeSymbols'/>
-      <ref name='xmlUCSIsLimbu'/>
-      <ref name='xmlUCSIsLinearBIdeograms'/>
-      <ref name='xmlUCSIsLinearBSyllabary'/>
-      <ref name='xmlUCSIsLowSurrogates'/>
-      <ref name='xmlUCSIsMalayalam'/>
-      <ref name='xmlUCSIsMathematicalAlphanumericSymbols'/>
-      <ref name='xmlUCSIsMathematicalOperators'/>
-      <ref name='xmlUCSIsMiscellaneousMathematicalSymbolsA'/>
-      <ref name='xmlUCSIsMiscellaneousMathematicalSymbolsB'/>
-      <ref name='xmlUCSIsMiscellaneousSymbols'/>
-      <ref name='xmlUCSIsMiscellaneousSymbolsandArrows'/>
-      <ref name='xmlUCSIsMiscellaneousTechnical'/>
-      <ref name='xmlUCSIsMongolian'/>
-      <ref name='xmlUCSIsMusicalSymbols'/>
-      <ref name='xmlUCSIsMyanmar'/>
-      <ref name='xmlUCSIsNumberForms'/>
-      <ref name='xmlUCSIsOgham'/>
-      <ref name='xmlUCSIsOldItalic'/>
-      <ref name='xmlUCSIsOpticalCharacterRecognition'/>
-      <ref name='xmlUCSIsOriya'/>
-      <ref name='xmlUCSIsOsmanya'/>
-      <ref name='xmlUCSIsPhoneticExtensions'/>
-      <ref name='xmlUCSIsPrivateUse'/>
-      <ref name='xmlUCSIsPrivateUseArea'/>
-      <ref name='xmlUCSIsRunic'/>
-      <ref name='xmlUCSIsShavian'/>
-      <ref name='xmlUCSIsSinhala'/>
-      <ref name='xmlUCSIsSmallFormVariants'/>
-      <ref name='xmlUCSIsSpacingModifierLetters'/>
-      <ref name='xmlUCSIsSpecials'/>
-      <ref name='xmlUCSIsSuperscriptsandSubscripts'/>
-      <ref name='xmlUCSIsSupplementalArrowsA'/>
-      <ref name='xmlUCSIsSupplementalArrowsB'/>
-      <ref name='xmlUCSIsSupplementalMathematicalOperators'/>
-      <ref name='xmlUCSIsSupplementaryPrivateUseAreaA'/>
-      <ref name='xmlUCSIsSupplementaryPrivateUseAreaB'/>
-      <ref name='xmlUCSIsSyriac'/>
-      <ref name='xmlUCSIsTagalog'/>
-      <ref name='xmlUCSIsTagbanwa'/>
-      <ref name='xmlUCSIsTags'/>
-      <ref name='xmlUCSIsTaiLe'/>
-      <ref name='xmlUCSIsTaiXuanJingSymbols'/>
-      <ref name='xmlUCSIsTamil'/>
-      <ref name='xmlUCSIsTelugu'/>
-      <ref name='xmlUCSIsThaana'/>
-      <ref name='xmlUCSIsThai'/>
-      <ref name='xmlUCSIsTibetan'/>
-      <ref name='xmlUCSIsUgaritic'/>
-      <ref name='xmlUCSIsUnifiedCanadianAboriginalSyllabics'/>
-      <ref name='xmlUCSIsVariationSelectors'/>
-      <ref name='xmlUCSIsVariationSelectorsSupplement'/>
-      <ref name='xmlUCSIsYiRadicals'/>
-      <ref name='xmlUCSIsYiSyllables'/>
-      <ref name='xmlUCSIsYijingHexagramSymbols'/>
-    </file>
-    <file name='xmlversion'>
-      <ref name='ATTRIBUTE_UNUSED'/>
-      <ref name='DEBUG_MEMORY_LOCATION'/>
-      <ref name='LIBXML_ATTR_ALLOC_SIZE'/>
-      <ref name='LIBXML_ATTR_FORMAT'/>
-      <ref name='LIBXML_AUTOMATA_ENABLED'/>
-      <ref name='LIBXML_C14N_ENABLED'/>
-      <ref name='LIBXML_CATALOG_ENABLED'/>
-      <ref name='LIBXML_DEBUG_ENABLED'/>
-      <ref name='LIBXML_DEBUG_RUNTIME'/>
-      <ref name='LIBXML_DOTTED_VERSION'/>
-      <ref name='LIBXML_EXPR_ENABLED'/>
-      <ref name='LIBXML_FTP_ENABLED'/>
-      <ref name='LIBXML_HTML_ENABLED'/>
-      <ref name='LIBXML_HTTP_ENABLED'/>
-      <ref name='LIBXML_ICONV_ENABLED'/>
-      <ref name='LIBXML_ICU_ENABLED'/>
-      <ref name='LIBXML_ISO8859X_ENABLED'/>
-      <ref name='LIBXML_LEGACY_ENABLED'/>
-      <ref name='LIBXML_LZMA_ENABLED'/>
-      <ref name='LIBXML_MODULES_ENABLED'/>
-      <ref name='LIBXML_MODULE_EXTENSION'/>
-      <ref name='LIBXML_OUTPUT_ENABLED'/>
-      <ref name='LIBXML_PATTERN_ENABLED'/>
-      <ref name='LIBXML_PUSH_ENABLED'/>
-      <ref name='LIBXML_READER_ENABLED'/>
-      <ref name='LIBXML_REGEXP_ENABLED'/>
-      <ref name='LIBXML_SAX1_ENABLED'/>
-      <ref name='LIBXML_SCHEMAS_ENABLED'/>
-      <ref name='LIBXML_SCHEMATRON_ENABLED'/>
-      <ref name='LIBXML_TEST_VERSION'/>
-      <ref name='LIBXML_THREAD_ALLOC_ENABLED'/>
-      <ref name='LIBXML_THREAD_ENABLED'/>
-      <ref name='LIBXML_TREE_ENABLED'/>
-      <ref name='LIBXML_UNICODE_ENABLED'/>
-      <ref name='LIBXML_VALID_ENABLED'/>
-      <ref name='LIBXML_VERSION'/>
-      <ref name='LIBXML_VERSION_EXTRA'/>
-      <ref name='LIBXML_VERSION_STRING'/>
-      <ref name='LIBXML_WRITER_ENABLED'/>
-      <ref name='LIBXML_XINCLUDE_ENABLED'/>
-      <ref name='LIBXML_XPATH_ENABLED'/>
-      <ref name='LIBXML_XPTR_ENABLED'/>
-      <ref name='LIBXML_XPTR_LOCS_ENABLED'/>
-      <ref name='LIBXML_ZLIB_ENABLED'/>
-      <ref name='WITHOUT_TRIO'/>
-      <ref name='WITH_TRIO'/>
-      <ref name='XML_DEPRECATED'/>
-      <ref name='xmlCheckVersion'/>
-    </file>
-    <file name='xmlwriter'>
-      <ref name='xmlFreeTextWriter'/>
-      <ref name='xmlNewTextWriter'/>
-      <ref name='xmlNewTextWriterDoc'/>
-      <ref name='xmlNewTextWriterFilename'/>
-      <ref name='xmlNewTextWriterMemory'/>
-      <ref name='xmlNewTextWriterPushParser'/>
-      <ref name='xmlNewTextWriterTree'/>
-      <ref name='xmlTextWriter'/>
-      <ref name='xmlTextWriterEndAttribute'/>
-      <ref name='xmlTextWriterEndCDATA'/>
-      <ref name='xmlTextWriterEndComment'/>
-      <ref name='xmlTextWriterEndDTD'/>
-      <ref name='xmlTextWriterEndDTDAttlist'/>
-      <ref name='xmlTextWriterEndDTDElement'/>
-      <ref name='xmlTextWriterEndDTDEntity'/>
-      <ref name='xmlTextWriterEndDocument'/>
-      <ref name='xmlTextWriterEndElement'/>
-      <ref name='xmlTextWriterEndPI'/>
-      <ref name='xmlTextWriterFlush'/>
-      <ref name='xmlTextWriterFullEndElement'/>
-      <ref name='xmlTextWriterPtr'/>
-      <ref name='xmlTextWriterSetIndent'/>
-      <ref name='xmlTextWriterSetIndentString'/>
-      <ref name='xmlTextWriterSetQuoteChar'/>
-      <ref name='xmlTextWriterStartAttribute'/>
-      <ref name='xmlTextWriterStartAttributeNS'/>
-      <ref name='xmlTextWriterStartCDATA'/>
-      <ref name='xmlTextWriterStartComment'/>
-      <ref name='xmlTextWriterStartDTD'/>
-      <ref name='xmlTextWriterStartDTDAttlist'/>
-      <ref name='xmlTextWriterStartDTDElement'/>
-      <ref name='xmlTextWriterStartDTDEntity'/>
-      <ref name='xmlTextWriterStartDocument'/>
-      <ref name='xmlTextWriterStartElement'/>
-      <ref name='xmlTextWriterStartElementNS'/>
-      <ref name='xmlTextWriterStartPI'/>
-      <ref name='xmlTextWriterWriteAttribute'/>
-      <ref name='xmlTextWriterWriteAttributeNS'/>
-      <ref name='xmlTextWriterWriteBase64'/>
-      <ref name='xmlTextWriterWriteBinHex'/>
-      <ref name='xmlTextWriterWriteCDATA'/>
-      <ref name='xmlTextWriterWriteComment'/>
-      <ref name='xmlTextWriterWriteDTD'/>
-      <ref name='xmlTextWriterWriteDTDAttlist'/>
-      <ref name='xmlTextWriterWriteDTDElement'/>
-      <ref name='xmlTextWriterWriteDTDEntity'/>
-      <ref name='xmlTextWriterWriteDTDExternalEntity'/>
-      <ref name='xmlTextWriterWriteDTDExternalEntityContents'/>
-      <ref name='xmlTextWriterWriteDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteDTDNotation'/>
-      <ref name='xmlTextWriterWriteDocType'/>
-      <ref name='xmlTextWriterWriteElement'/>
-      <ref name='xmlTextWriterWriteElementNS'/>
-      <ref name='xmlTextWriterWriteFormatAttribute'/>
-      <ref name='xmlTextWriterWriteFormatAttributeNS'/>
-      <ref name='xmlTextWriterWriteFormatCDATA'/>
-      <ref name='xmlTextWriterWriteFormatComment'/>
-      <ref name='xmlTextWriterWriteFormatDTD'/>
-      <ref name='xmlTextWriterWriteFormatDTDAttlist'/>
-      <ref name='xmlTextWriterWriteFormatDTDElement'/>
-      <ref name='xmlTextWriterWriteFormatDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteFormatElement'/>
-      <ref name='xmlTextWriterWriteFormatElementNS'/>
-      <ref name='xmlTextWriterWriteFormatPI'/>
-      <ref name='xmlTextWriterWriteFormatRaw'/>
-      <ref name='xmlTextWriterWriteFormatString'/>
-      <ref name='xmlTextWriterWritePI'/>
-      <ref name='xmlTextWriterWriteProcessingInstruction'/>
-      <ref name='xmlTextWriterWriteRaw'/>
-      <ref name='xmlTextWriterWriteRawLen'/>
-      <ref name='xmlTextWriterWriteString'/>
-      <ref name='xmlTextWriterWriteVFormatAttribute'/>
-      <ref name='xmlTextWriterWriteVFormatAttributeNS'/>
-      <ref name='xmlTextWriterWriteVFormatCDATA'/>
-      <ref name='xmlTextWriterWriteVFormatComment'/>
-      <ref name='xmlTextWriterWriteVFormatDTD'/>
-      <ref name='xmlTextWriterWriteVFormatDTDAttlist'/>
-      <ref name='xmlTextWriterWriteVFormatDTDElement'/>
-      <ref name='xmlTextWriterWriteVFormatDTDInternalEntity'/>
-      <ref name='xmlTextWriterWriteVFormatElement'/>
-      <ref name='xmlTextWriterWriteVFormatElementNS'/>
-      <ref name='xmlTextWriterWriteVFormatPI'/>
-      <ref name='xmlTextWriterWriteVFormatRaw'/>
-      <ref name='xmlTextWriterWriteVFormatString'/>
-    </file>
-    <file name='xpath'>
-      <ref name='XML_XPATH_CHECKNS'/>
-      <ref name='XML_XPATH_NOVAR'/>
-      <ref name='XPATH_BOOLEAN'/>
-      <ref name='XPATH_ENCODING_ERROR'/>
-      <ref name='XPATH_EXPRESSION_OK'/>
-      <ref name='XPATH_EXPR_ERROR'/>
-      <ref name='XPATH_FORBID_VARIABLE_ERROR'/>
-      <ref name='XPATH_INVALID_ARITY'/>
-      <ref name='XPATH_INVALID_CHAR_ERROR'/>
-      <ref name='XPATH_INVALID_CTXT'/>
-      <ref name='XPATH_INVALID_CTXT_POSITION'/>
-      <ref name='XPATH_INVALID_CTXT_SIZE'/>
-      <ref name='XPATH_INVALID_OPERAND'/>
-      <ref name='XPATH_INVALID_PREDICATE_ERROR'/>
-      <ref name='XPATH_INVALID_TYPE'/>
-      <ref name='XPATH_LOCATIONSET'/>
-      <ref name='XPATH_MEMORY_ERROR'/>
-      <ref name='XPATH_NODESET'/>
-      <ref name='XPATH_NUMBER'/>
-      <ref name='XPATH_NUMBER_ERROR'/>
-      <ref name='XPATH_OP_LIMIT_EXCEEDED'/>
-      <ref name='XPATH_POINT'/>
-      <ref name='XPATH_RANGE'/>
-      <ref name='XPATH_RECURSION_LIMIT_EXCEEDED'/>
-      <ref name='XPATH_STACK_ERROR'/>
-      <ref name='XPATH_START_LITERAL_ERROR'/>
-      <ref name='XPATH_STRING'/>
-      <ref name='XPATH_UNCLOSED_ERROR'/>
-      <ref name='XPATH_UNDEFINED'/>
-      <ref name='XPATH_UNDEF_PREFIX_ERROR'/>
-      <ref name='XPATH_UNDEF_VARIABLE_ERROR'/>
-      <ref name='XPATH_UNFINISHED_LITERAL_ERROR'/>
-      <ref name='XPATH_UNKNOWN_FUNC_ERROR'/>
-      <ref name='XPATH_USERS'/>
-      <ref name='XPATH_VARIABLE_REF_ERROR'/>
-      <ref name='XPATH_XSLT_TREE'/>
-      <ref name='XPTR_RESOURCE_ERROR'/>
-      <ref name='XPTR_SUB_RESOURCE_ERROR'/>
-      <ref name='XPTR_SYNTAX_ERROR'/>
-      <ref name='_xmlNodeSet'/>
-      <ref name='_xmlXPathAxis'/>
-      <ref name='_xmlXPathContext'/>
-      <ref name='_xmlXPathFunct'/>
-      <ref name='_xmlXPathObject'/>
-      <ref name='_xmlXPathParserContext'/>
-      <ref name='_xmlXPathType'/>
-      <ref name='_xmlXPathVariable'/>
-      <ref name='xmlNodeSet'/>
-      <ref name='xmlNodeSetPtr'/>
-      <ref name='xmlXPathAxis'/>
-      <ref name='xmlXPathAxisFunc'/>
-      <ref name='xmlXPathAxisPtr'/>
-      <ref name='xmlXPathCastBooleanToNumber'/>
-      <ref name='xmlXPathCastBooleanToString'/>
-      <ref name='xmlXPathCastNodeSetToBoolean'/>
-      <ref name='xmlXPathCastNodeSetToNumber'/>
-      <ref name='xmlXPathCastNodeSetToString'/>
-      <ref name='xmlXPathCastNodeToNumber'/>
-      <ref name='xmlXPathCastNodeToString'/>
-      <ref name='xmlXPathCastNumberToBoolean'/>
-      <ref name='xmlXPathCastNumberToString'/>
-      <ref name='xmlXPathCastStringToBoolean'/>
-      <ref name='xmlXPathCastStringToNumber'/>
-      <ref name='xmlXPathCastToBoolean'/>
-      <ref name='xmlXPathCastToNumber'/>
-      <ref name='xmlXPathCastToString'/>
-      <ref name='xmlXPathCmpNodes'/>
-      <ref name='xmlXPathCompExpr'/>
-      <ref name='xmlXPathCompExprPtr'/>
-      <ref name='xmlXPathCompile'/>
-      <ref name='xmlXPathCompiledEval'/>
-      <ref name='xmlXPathCompiledEvalToBoolean'/>
-      <ref name='xmlXPathContext'/>
-      <ref name='xmlXPathContextPtr'/>
-      <ref name='xmlXPathContextSetCache'/>
-      <ref name='xmlXPathConvertBoolean'/>
-      <ref name='xmlXPathConvertFunc'/>
-      <ref name='xmlXPathConvertNumber'/>
-      <ref name='xmlXPathConvertString'/>
-      <ref name='xmlXPathCtxtCompile'/>
-      <ref name='xmlXPathError'/>
-      <ref name='xmlXPathEval'/>
-      <ref name='xmlXPathEvalExpression'/>
-      <ref name='xmlXPathEvalFunc'/>
-      <ref name='xmlXPathEvalPredicate'/>
-      <ref name='xmlXPathFreeCompExpr'/>
-      <ref name='xmlXPathFreeContext'/>
-      <ref name='xmlXPathFreeNodeSet'/>
-      <ref name='xmlXPathFreeNodeSetList'/>
-      <ref name='xmlXPathFreeObject'/>
-      <ref name='xmlXPathFuncLookupFunc'/>
-      <ref name='xmlXPathFuncPtr'/>
-      <ref name='xmlXPathFunct'/>
-      <ref name='xmlXPathFunction'/>
-      <ref name='xmlXPathInit'/>
-      <ref name='xmlXPathIsInf'/>
-      <ref name='xmlXPathIsNaN'/>
-      <ref name='xmlXPathNAN'/>
-      <ref name='xmlXPathNINF'/>
-      <ref name='xmlXPathNewContext'/>
-      <ref name='xmlXPathNodeEval'/>
-      <ref name='xmlXPathNodeSetCreate'/>
-      <ref name='xmlXPathNodeSetGetLength'/>
-      <ref name='xmlXPathNodeSetIsEmpty'/>
-      <ref name='xmlXPathNodeSetItem'/>
-      <ref name='xmlXPathObject'/>
-      <ref name='xmlXPathObjectCopy'/>
-      <ref name='xmlXPathObjectPtr'/>
-      <ref name='xmlXPathObjectType'/>
-      <ref name='xmlXPathOrderDocElems'/>
-      <ref name='xmlXPathPINF'/>
-      <ref name='xmlXPathParserContext'/>
-      <ref name='xmlXPathParserContextPtr'/>
-      <ref name='xmlXPathSetContextNode'/>
-      <ref name='xmlXPathType'/>
-      <ref name='xmlXPathTypePtr'/>
-      <ref name='xmlXPathVariable'/>
-      <ref name='xmlXPathVariableLookupFunc'/>
-      <ref name='xmlXPathVariablePtr'/>
-    </file>
-    <file name='xpathInternals'>
-      <ref name='CAST_TO_BOOLEAN'/>
-      <ref name='CAST_TO_NUMBER'/>
-      <ref name='CAST_TO_STRING'/>
-      <ref name='CHECK_ARITY'/>
-      <ref name='CHECK_ERROR'/>
-      <ref name='CHECK_ERROR0'/>
-      <ref name='CHECK_TYPE'/>
-      <ref name='CHECK_TYPE0'/>
-      <ref name='XP_ERROR'/>
-      <ref name='XP_ERROR0'/>
-      <ref name='valuePop'/>
-      <ref name='valuePush'/>
-      <ref name='xmlXPathAddValues'/>
-      <ref name='xmlXPathBooleanFunction'/>
-      <ref name='xmlXPathCeilingFunction'/>
-      <ref name='xmlXPathCheckError'/>
-      <ref name='xmlXPathCompareValues'/>
-      <ref name='xmlXPathConcatFunction'/>
-      <ref name='xmlXPathContainsFunction'/>
-      <ref name='xmlXPathCountFunction'/>
-      <ref name='xmlXPathDebugDumpCompExpr'/>
-      <ref name='xmlXPathDebugDumpObject'/>
-      <ref name='xmlXPathDifference'/>
-      <ref name='xmlXPathDistinct'/>
-      <ref name='xmlXPathDistinctSorted'/>
-      <ref name='xmlXPathDivValues'/>
-      <ref name='xmlXPathEmptyNodeSet'/>
-      <ref name='xmlXPathEqualValues'/>
-      <ref name='xmlXPathErr'/>
-      <ref name='xmlXPathEvalExpr'/>
-      <ref name='xmlXPathEvaluatePredicateResult'/>
-      <ref name='xmlXPathFalseFunction'/>
-      <ref name='xmlXPathFloorFunction'/>
-      <ref name='xmlXPathFreeParserContext'/>
-      <ref name='xmlXPathFunctionLookup'/>
-      <ref name='xmlXPathFunctionLookupNS'/>
-      <ref name='xmlXPathGetContextNode'/>
-      <ref name='xmlXPathGetDocument'/>
-      <ref name='xmlXPathGetError'/>
-      <ref name='xmlXPathHasSameNodes'/>
-      <ref name='xmlXPathIdFunction'/>
-      <ref name='xmlXPathIntersection'/>
-      <ref name='xmlXPathIsNodeType'/>
-      <ref name='xmlXPathLangFunction'/>
-      <ref name='xmlXPathLastFunction'/>
-      <ref name='xmlXPathLeading'/>
-      <ref name='xmlXPathLeadingSorted'/>
-      <ref name='xmlXPathLocalNameFunction'/>
-      <ref name='xmlXPathModValues'/>
-      <ref name='xmlXPathMultValues'/>
-      <ref name='xmlXPathNamespaceURIFunction'/>
-      <ref name='xmlXPathNewBoolean'/>
-      <ref name='xmlXPathNewCString'/>
-      <ref name='xmlXPathNewFloat'/>
-      <ref name='xmlXPathNewNodeSet'/>
-      <ref name='xmlXPathNewNodeSetList'/>
-      <ref name='xmlXPathNewParserContext'/>
-      <ref name='xmlXPathNewString'/>
-      <ref name='xmlXPathNewValueTree'/>
-      <ref name='xmlXPathNextAncestor'/>
-      <ref name='xmlXPathNextAncestorOrSelf'/>
-      <ref name='xmlXPathNextAttribute'/>
-      <ref name='xmlXPathNextChild'/>
-      <ref name='xmlXPathNextDescendant'/>
-      <ref name='xmlXPathNextDescendantOrSelf'/>
-      <ref name='xmlXPathNextFollowing'/>
-      <ref name='xmlXPathNextFollowingSibling'/>
-      <ref name='xmlXPathNextNamespace'/>
-      <ref name='xmlXPathNextParent'/>
-      <ref name='xmlXPathNextPreceding'/>
-      <ref name='xmlXPathNextPrecedingSibling'/>
-      <ref name='xmlXPathNextSelf'/>
-      <ref name='xmlXPathNodeLeading'/>
-      <ref name='xmlXPathNodeLeadingSorted'/>
-      <ref name='xmlXPathNodeSetAdd'/>
-      <ref name='xmlXPathNodeSetAddNs'/>
-      <ref name='xmlXPathNodeSetAddUnique'/>
-      <ref name='xmlXPathNodeSetContains'/>
-      <ref name='xmlXPathNodeSetDel'/>
-      <ref name='xmlXPathNodeSetFreeNs'/>
-      <ref name='xmlXPathNodeSetMerge'/>
-      <ref name='xmlXPathNodeSetRemove'/>
-      <ref name='xmlXPathNodeSetSort'/>
-      <ref name='xmlXPathNodeTrailing'/>
-      <ref name='xmlXPathNodeTrailingSorted'/>
-      <ref name='xmlXPathNormalizeFunction'/>
-      <ref name='xmlXPathNotEqualValues'/>
-      <ref name='xmlXPathNotFunction'/>
-      <ref name='xmlXPathNsLookup'/>
-      <ref name='xmlXPathNumberFunction'/>
-      <ref name='xmlXPathParseNCName'/>
-      <ref name='xmlXPathParseName'/>
-      <ref name='xmlXPathPopBoolean'/>
-      <ref name='xmlXPathPopExternal'/>
-      <ref name='xmlXPathPopNodeSet'/>
-      <ref name='xmlXPathPopNumber'/>
-      <ref name='xmlXPathPopString'/>
-      <ref name='xmlXPathPositionFunction'/>
-      <ref name='xmlXPathRegisterAllFunctions'/>
-      <ref name='xmlXPathRegisterFunc'/>
-      <ref name='xmlXPathRegisterFuncLookup'/>
-      <ref name='xmlXPathRegisterFuncNS'/>
-      <ref name='xmlXPathRegisterNs'/>
-      <ref name='xmlXPathRegisterVariable'/>
-      <ref name='xmlXPathRegisterVariableLookup'/>
-      <ref name='xmlXPathRegisterVariableNS'/>
-      <ref name='xmlXPathRegisteredFuncsCleanup'/>
-      <ref name='xmlXPathRegisteredNsCleanup'/>
-      <ref name='xmlXPathRegisteredVariablesCleanup'/>
-      <ref name='xmlXPathReturnBoolean'/>
-      <ref name='xmlXPathReturnEmptyNodeSet'/>
-      <ref name='xmlXPathReturnEmptyString'/>
-      <ref name='xmlXPathReturnExternal'/>
-      <ref name='xmlXPathReturnFalse'/>
-      <ref name='xmlXPathReturnNodeSet'/>
-      <ref name='xmlXPathReturnNumber'/>
-      <ref name='xmlXPathReturnString'/>
-      <ref name='xmlXPathReturnTrue'/>
-      <ref name='xmlXPathRoot'/>
-      <ref name='xmlXPathRoundFunction'/>
-      <ref name='xmlXPathSetArityError'/>
-      <ref name='xmlXPathSetError'/>
-      <ref name='xmlXPathSetTypeError'/>
-      <ref name='xmlXPathStackIsExternal'/>
-      <ref name='xmlXPathStackIsNodeSet'/>
-      <ref name='xmlXPathStartsWithFunction'/>
-      <ref name='xmlXPathStringEvalNumber'/>
-      <ref name='xmlXPathStringFunction'/>
-      <ref name='xmlXPathStringLengthFunction'/>
-      <ref name='xmlXPathSubValues'/>
-      <ref name='xmlXPathSubstringAfterFunction'/>
-      <ref name='xmlXPathSubstringBeforeFunction'/>
-      <ref name='xmlXPathSubstringFunction'/>
-      <ref name='xmlXPathSumFunction'/>
-      <ref name='xmlXPathTrailing'/>
-      <ref name='xmlXPathTrailingSorted'/>
-      <ref name='xmlXPathTranslateFunction'/>
-      <ref name='xmlXPathTrueFunction'/>
-      <ref name='xmlXPathValueFlipSign'/>
-      <ref name='xmlXPathVariableLookup'/>
-      <ref name='xmlXPathVariableLookupNS'/>
-      <ref name='xmlXPathWrapCString'/>
-      <ref name='xmlXPathWrapExternal'/>
-      <ref name='xmlXPathWrapNodeSet'/>
-      <ref name='xmlXPathWrapString'/>
-      <ref name='xmlXPatherror'/>
-    </file>
-    <file name='xpointer'>
-      <ref name='_xmlLocationSet'/>
-      <ref name='xmlLocationSet'/>
-      <ref name='xmlLocationSetPtr'/>
-      <ref name='xmlXPtrBuildNodeList'/>
-      <ref name='xmlXPtrEval'/>
-      <ref name='xmlXPtrEvalRangePredicate'/>
-      <ref name='xmlXPtrFreeLocationSet'/>
-      <ref name='xmlXPtrLocationSetAdd'/>
-      <ref name='xmlXPtrLocationSetCreate'/>
-      <ref name='xmlXPtrLocationSetDel'/>
-      <ref name='xmlXPtrLocationSetMerge'/>
-      <ref name='xmlXPtrLocationSetRemove'/>
-      <ref name='xmlXPtrNewCollapsedRange'/>
-      <ref name='xmlXPtrNewContext'/>
-      <ref name='xmlXPtrNewLocationSetNodeSet'/>
-      <ref name='xmlXPtrNewLocationSetNodes'/>
-      <ref name='xmlXPtrNewRange'/>
-      <ref name='xmlXPtrNewRangeNodeObject'/>
-      <ref name='xmlXPtrNewRangeNodePoint'/>
-      <ref name='xmlXPtrNewRangeNodes'/>
-      <ref name='xmlXPtrNewRangePointNode'/>
-      <ref name='xmlXPtrNewRangePoints'/>
-      <ref name='xmlXPtrRangeToFunction'/>
-      <ref name='xmlXPtrWrapLocationSet'/>
-    </file>
-  </files>
-  <index>
-    <chunk name='chunk0'>
-      <letter name='A'>
-        <word name='A-Z'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='A-Za-z'>
-          <ref name='xmlParseEncName'/>
-        </word>
-        <word name='A-Za-z0-9'>
-          <ref name='xmlParseEncName'/>
-        </word>
-        <word name='ABC'>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='ABI'>
-          <ref name='_xmlError'/>
-        </word>
-        <word name='ALL'>
-          <ref name='xmlAutomataNewAllTrans'/>
-        </word>
-        <word name='ANY'>
-          <ref name='xmlIsMixedElement'/>
-          <ref name='xmlParseElementContentDecl'/>
-        </word>
-        <word name='APIs'>
-          <ref name='LIBXML_LEGACY_ENABLED'/>
-          <ref name='xmlSchemaValidateSetFilename'/>
-        </word>
-        <word name='ARRAY'>
-          <ref name='xmlStrlen'/>
-          <ref name='xmlUTF8Strsize'/>
-        </word>
-        <word name='ASCII'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='xmlAddEncodingAlias'/>
-          <ref name='xmlDelEncodingAlias'/>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-          <ref name='xmlGetEncodingAlias'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-          <ref name='xmlNewCharEncodingHandler'/>
-          <ref name='xmlParseCharEncoding'/>
-        </word>
-        <word name='ATTLIST'>
-          <ref name='xmlTextWriterStartDTDAttlist'/>
-          <ref name='xmlTextWriterStartDTDEntity'/>
-          <ref name='xmlTextWriterWriteDTDAttlist'/>
-          <ref name='xmlTextWriterWriteFormatDTDAttlist'/>
-          <ref name='xmlTextWriterWriteVFormatDTDAttlist'/>
-        </word>
-        <word name='ATTRIBUTE'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-        </word>
-        <word name='Absolute'>
-          <ref name='xmlBuildURI'/>
-        </word>
-        <word name='Accessor'>
-          <ref name='xmlSchemaGetValType'/>
-          <ref name='xmlSchemaValueGetAsBoolean'/>
-          <ref name='xmlSchemaValueGetAsString'/>
-          <ref name='xmlSchemaValueGetNext'/>
-        </word>
-        <word name='Activation'>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderRelaxNGValidate'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-          <ref name='xmlTextReaderSetSchema'/>
-        </word>
-        <word name='Actually'>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-        </word>
-        <word name='Add'>
-          <ref name='xmlACatalogAdd'/>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAddChildList'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-          <ref name='xmlBufferAdd'/>
-          <ref name='xmlBufferAddHead'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlCatalogAddLocal'/>
-          <ref name='xmlDictLookup'/>
-          <ref name='xmlDictQLookup'/>
-          <ref name='xmlHashAddEntry'/>
-          <ref name='xmlHashAddEntry2'/>
-          <ref name='xmlHashAddEntry3'/>
-          <ref name='xmlHashUpdateEntry'/>
-          <ref name='xmlHashUpdateEntry2'/>
-          <ref name='xmlHashUpdateEntry3'/>
-        </word>
-        <word name='Added'>
-          <ref name='xmlDictGetUsage'/>
-          <ref name='xmlDictSetLimit'/>
-        </word>
-        <word name='Additional'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlInitGlobals'/>
-        </word>
-        <word name='AegeanNumbers'>
-          <ref name='xmlUCSIsAegeanNumbers'/>
-        </word>
-        <word name='Alias'>
-          <ref name='xmlXPathEvalExpression'/>
-        </word>
-        <word name='All'>
-          <ref name='_xmlSchema'/>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlNanoFTPGet'/>
-          <ref name='xmlNanoFTPList'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlTextWriterEndDocument'/>
-        </word>
-        <word name='Allocate'>
-          <ref name='htmlNewParserCtxt'/>
-          <ref name='xmlNanoFTPNewCtxt'/>
-          <ref name='xmlNewDocElementContent'/>
-          <ref name='xmlNewElementContent'/>
-          <ref name='xmlNewParserCtxt'/>
-          <ref name='xmlNewValidCtxt'/>
-          <ref name='xmlSchemaNewFacet'/>
-          <ref name='xmlSchemaNewNOTATIONValue'/>
-          <ref name='xmlSchemaNewQNameValue'/>
-          <ref name='xmlSchemaNewStringValue'/>
-        </word>
-        <word name='Allocates'>
-          <ref name='xmlDOMWrapNewCtxt'/>
-        </word>
-        <word name='Allows'>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-          <ref name='xmlSchemaValidateSetLocator'/>
-        </word>
-        <word name='AlphabeticPresentationForms'>
-          <ref name='xmlUCSIsAlphabeticPresentationForms'/>
-        </word>
-        <word name='Also'>
-          <ref name='xmlCheckUTF8'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-        </word>
-        <word name='Always'>
-          <ref name='IS_COMBINING_CH'/>
-        </word>
-        <word name='Append'>
-          <ref name='xmlBufferCCat'/>
-          <ref name='xmlBufferCat'/>
-          <ref name='xmlNodeAddContent'/>
-          <ref name='xmlNodeAddContentLen'/>
-        </word>
-        <word name='Appendix'>
-          <ref name='xmlRegexpCompile'/>
-        </word>
-        <word name='Appends'>
-          <ref name='xmlSchemaValueAppend'/>
-        </word>
-        <word name='Applies'>
-          <ref name='htmlCtxtUseOptions'/>
-          <ref name='xmlCtxtUseOptions'/>
-          <ref name='xmlNormalizeURIPath'/>
-          <ref name='xmlXPathCompiledEvalToBoolean'/>
-        </word>
-        <word name='Apply'>
-          <ref name='XML_SCHEMAS_ANYATTR_STRICT'/>
-          <ref name='XML_SCHEMAS_ANY_STRICT'/>
-        </word>
-        <word name='Arabic'>
-          <ref name='xmlUCSIsArabic'/>
-        </word>
-        <word name='ArabicPresentationForms-A'>
-          <ref name='xmlUCSIsArabicPresentationFormsA'/>
-        </word>
-        <word name='ArabicPresentationForms-B'>
-          <ref name='xmlUCSIsArabicPresentationFormsB'/>
-        </word>
-        <word name='Armenian'>
-          <ref name='xmlUCSIsArmenian'/>
-        </word>
-        <word name='Array'>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='Arrows'>
-          <ref name='xmlUCSIsArrows'/>
-        </word>
-        <word name='Associate'>
-          <ref name='xmlSetNs'/>
-        </word>
-        <word name='Att'>
-          <ref name='xmlParseStartTag'/>
-        </word>
-        <word name='AttDef'>
-          <ref name='xmlParseAttributeListDecl'/>
-        </word>
-        <word name='AttType'>
-          <ref name='xmlParseAttributeListDecl'/>
-          <ref name='xmlParseAttributeType'/>
-        </word>
-        <word name='AttValue'>
-          <ref name='htmlParseElement'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='AttlistDecl'>
-          <ref name='xmlParseAttributeListDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='Attribute'>
-          <ref name='_xmlAttribute'/>
-          <ref name='htmlNodeStatus'/>
-          <ref name='htmlParseElement'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseAttributeListDecl'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlTextReaderIsDefault'/>
-          <ref name='xmlTextReaderMoveToElement'/>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlValidateOneNamespace'/>
-        </word>
-        <word name='Attribute-Value'>
-          <ref name='xmlParseAttValue'/>
-        </word>
-        <word name='Attributes'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlParseNotationType'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneNamespace'/>
-          <ref name='xmlXPtrBuildNodeList'/>
-        </word>
-        <word name='Automatic'>
-          <ref name='htmlCreateFileParserCtxt'/>
-          <ref name='htmlParseFile'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlCreateEntityParserCtxt'/>
-          <ref name='xmlCreateFileParserCtxt'/>
-          <ref name='xmlCreateURLParserCtxt'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlParseFile'/>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-          <ref name='xmlRecoverFile'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXUserParseFile'/>
-        </word>
-        <word name='Automatically'>
-          <ref name='xmlIsBaseCharQ'/>
-          <ref name='xmlIsBaseChar_ch'/>
-          <ref name='xmlIsBlankQ'/>
-          <ref name='xmlIsBlank_ch'/>
-          <ref name='xmlIsCharQ'/>
-          <ref name='xmlIsChar_ch'/>
-          <ref name='xmlIsCombiningQ'/>
-          <ref name='xmlIsDigitQ'/>
-          <ref name='xmlIsDigit_ch'/>
-          <ref name='xmlIsExtenderQ'/>
-          <ref name='xmlIsExtender_ch'/>
-          <ref name='xmlIsIdeographicQ'/>
-          <ref name='xmlIsPubidCharQ'/>
-          <ref name='xmlIsPubidChar_ch'/>
-        </word>
-      </letter>
-      <letter name='B'>
-        <word name='BASE'>
-          <ref name='xmlNodeGetBase'/>
-        </word>
-        <word name='BAr'>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='BOM'>
-          <ref name='xmlCharEncOutFunc'/>
-        </word>
-        <word name='Balanced'>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseEntity'/>
-          <ref name='xmlParseInNodeContext'/>
-          <ref name='xmlSAXParseEntity'/>
-        </word>
-        <word name='Base'>
-          <ref name='_xmlParserInput'/>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xmlNodeGetBase'/>
-        </word>
-        <word name='BaseChar'>
-          <ref name='IS_BASECHAR'/>
-          <ref name='IS_LETTER'/>
-          <ref name='xmlIsLetter'/>
-        </word>
-        <word name='Based'>
-          <ref name='xmlExpExpDerive'/>
-        </word>
-        <word name='BasicLatin'>
-          <ref name='xmlUCSIsBasicLatin'/>
-        </word>
-        <word name='Basically'>
-          <ref name='xmlValidateDtd'/>
-        </word>
-        <word name='Before'>
-          <ref name='xmlParseAttValue'/>
-        </word>
-        <word name='Behaves'>
-          <ref name='IS_CHAR_CH'/>
-          <ref name='IS_DIGIT_CH'/>
-          <ref name='IS_EXTENDER_CH'/>
-        </word>
-        <word name='Behaviour'>
-          <ref name='IS_BLANK_CH'/>
-        </word>
-        <word name='Bengali'>
-          <ref name='xmlUCSIsBengali'/>
-        </word>
-        <word name='Best'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='BinHex'>
-          <ref name='xmlTextWriterWriteBinHex'/>
-        </word>
-        <word name='Bit'>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='XML_DETECT_IDS'/>
-          <ref name='XML_SKIP_IDS'/>
-        </word>
-        <word name='BlockElements'>
-          <ref name='xmlUCSIsBlockElements'/>
-        </word>
-        <word name='Blocks'>
-          <ref name='xmlStopParser'/>
-        </word>
-        <word name='Bopomofo'>
-          <ref name='xmlUCSIsBopomofo'/>
-        </word>
-        <word name='BopomofoExtended'>
-          <ref name='xmlUCSIsBopomofoExtended'/>
-        </word>
-        <word name='Both'>
-          <ref name='XML_SUBSTITUTE_BOTH'/>
-          <ref name='xmlSplitQName2'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='BoxDrawing'>
-          <ref name='xmlUCSIsBoxDrawing'/>
-        </word>
-        <word name='BraillePatterns'>
-          <ref name='xmlUCSIsBraillePatterns'/>
-        </word>
-        <word name='Brzozowski'>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlExpStringDerive'/>
-        </word>
-        <word name='Buffer'>
-          <ref name='xmlIOParseDTD'/>
-        </word>
-        <word name='Bugs:'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='Buhid'>
-          <ref name='xmlUCSIsBuhid'/>
-        </word>
-        <word name='Build'>
-          <ref name='xmlCopyAttributeTable'/>
-          <ref name='xmlCopyDocElementContent'/>
-          <ref name='xmlCopyElementContent'/>
-          <ref name='xmlCopyElementTable'/>
-          <ref name='xmlCopyEntitiesTable'/>
-          <ref name='xmlCopyNotationTable'/>
-          <ref name='xmlGetNodePath'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlRegNewExecCtxt'/>
-          <ref name='xmlValidBuildContentModel'/>
-          <ref name='xmlValidGetPotentialChildren'/>
-          <ref name='xmlXPtrBuildNodeList'/>
-        </word>
-        <word name='Builds'>
-          <ref name='xmlBuildQName'/>
-          <ref name='xmlNodeListGetRawString'/>
-        </word>
-        <word name='But'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlValidateNotationDecl'/>
-        </word>
-        <word name='ByzantineMusicalSymbols'>
-          <ref name='xmlUCSIsByzantineMusicalSymbols'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk1'>
-      <letter name='C'>
-        <word name='C14N'>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlC14NIsVisibleCallback'/>
-        </word>
-        <word name='CATALOG'>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-        </word>
-        <word name='CDATA'>
-          <ref name='HTML_PRESERVE_NODE'/>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlNewCDataBlock'/>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseCDSect'/>
-          <ref name='xmlParseCharData'/>
-          <ref name='xmlTextWriterEndCDATA'/>
-          <ref name='xmlTextWriterStartCDATA'/>
-          <ref name='xmlTextWriterWriteCDATA'/>
-          <ref name='xmlTextWriterWriteFormatCDATA'/>
-          <ref name='xmlTextWriterWriteVFormatCDATA'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-        </word>
-        <word name='CDEnd'>
-          <ref name='xmlParseCDSect'/>
-        </word>
-        <word name='CDSect'>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseCDSect'/>
-          <ref name='xmlParseContent'/>
-          <ref name='xmlParseInNodeContext'/>
-        </word>
-        <word name='CDStart'>
-          <ref name='xmlParseCDSect'/>
-        </word>
-        <word name='CData'>
-          <ref name='xmlParseCDSect'/>
-          <ref name='xmlRelaxNGValidatePushCData'/>
-          <ref name='xmlValidatePushCData'/>
-        </word>
-        <word name='CJKCompatibility'>
-          <ref name='xmlUCSIsCJKCompatibility'/>
-        </word>
-        <word name='CJKCompatibilityForms'>
-          <ref name='xmlUCSIsCJKCompatibilityForms'/>
-        </word>
-        <word name='CJKCompatibilityIdeographs'>
-          <ref name='xmlUCSIsCJKCompatibilityIdeographs'/>
-        </word>
-        <word name='CJKCompatibilityIdeographsSupplement'>
-          <ref name='xmlUCSIsCJKCompatibilityIdeographsSupplement'/>
-        </word>
-        <word name='CJKRadicalsSupplement'>
-          <ref name='xmlUCSIsCJKRadicalsSupplement'/>
-        </word>
-        <word name='CJKSymbolsandPunctuation'>
-          <ref name='xmlUCSIsCJKSymbolsandPunctuation'/>
-        </word>
-        <word name='CJKUnifiedIdeographs'>
-          <ref name='xmlUCSIsCJKUnifiedIdeographs'/>
-        </word>
-        <word name='CJKUnifiedIdeographsExtensionA'>
-          <ref name='xmlUCSIsCJKUnifiedIdeographsExtensionA'/>
-        </word>
-        <word name='CJKUnifiedIdeographsExtensionB'>
-          <ref name='xmlUCSIsCJKUnifiedIdeographsExtensionB'/>
-        </word>
-        <word name='CWD'>
-          <ref name='xmlNanoFTPCwd'/>
-        </word>
-        <word name='Cache'>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='Call'>
-          <ref name='htmlDefaultSAXHandlerInit'/>
-          <ref name='htmlInitAutoClose'/>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDefaultSAXHandlerInit'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlInitGlobals'/>
-          <ref name='xmlInitMemory'/>
-          <ref name='xmlInitParser'/>
-          <ref name='xmlInitThreads'/>
-          <ref name='xmlInitializeDict'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-          <ref name='xmlXPathInit'/>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='Callback'>
-          <ref name='externalSubset'/>
-          <ref name='externalSubsetSAXFunc'/>
-          <ref name='internalSubset'/>
-          <ref name='internalSubsetSAXFunc'/>
-          <ref name='xmlEntityReferenceFunc'/>
-          <ref name='xmlHashCopier'/>
-          <ref name='xmlHashDeallocator'/>
-          <ref name='xmlHashScanner'/>
-          <ref name='xmlHashScannerFull'/>
-          <ref name='xmlInputCloseCallback'/>
-          <ref name='xmlInputMatchCallback'/>
-          <ref name='xmlInputOpenCallback'/>
-          <ref name='xmlInputReadCallback'/>
-          <ref name='xmlListDataCompare'/>
-          <ref name='xmlListDeallocator'/>
-          <ref name='xmlListWalker'/>
-          <ref name='xmlOutputCloseCallback'/>
-          <ref name='xmlOutputMatchCallback'/>
-          <ref name='xmlOutputOpenCallback'/>
-          <ref name='xmlOutputWriteCallback'/>
-          <ref name='xmlParserInputDeallocate'/>
-          <ref name='xmlRegExecCallbacks'/>
-          <ref name='xmlSAX2ExternalSubset'/>
-          <ref name='xmlSAX2InternalSubset'/>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='Callback:'>
-          <ref name='resolveEntitySAXFunc'/>
-        </word>
-        <word name='Called'>
-          <ref name='cdataBlockSAXFunc'/>
-          <ref name='endDocumentSAXFunc'/>
-          <ref name='endElementSAXFunc'/>
-          <ref name='referenceSAXFunc'/>
-          <ref name='startDocumentSAXFunc'/>
-          <ref name='startElementSAXFunc'/>
-        </word>
-        <word name='Calling'>
-          <ref name='xmlRegisterHTTPPostCallbacks'/>
-        </word>
-        <word name='Canonical'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='Canonicalization'>
-          <ref name='LIBXML_C14N_ENABLED'/>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='Carl'>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='Catalog'>
-          <ref name='LIBXML_CATALOG_ENABLED'/>
-          <ref name='XML_CATALOG_PI'/>
-          <ref name='xmlACatalogAdd'/>
-          <ref name='xmlACatalogDump'/>
-          <ref name='xmlACatalogRemove'/>
-          <ref name='xmlACatalogResolve'/>
-          <ref name='xmlACatalogResolvePublic'/>
-          <ref name='xmlACatalogResolveSystem'/>
-          <ref name='xmlACatalogResolveURI'/>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-          <ref name='xmlFreeCatalog'/>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlNewCatalog'/>
-        </word>
-        <word name='Catalogs'>
-          <ref name='XML_CATALOGS_NAMESPACE'/>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-        </word>
-        <word name='Change'>
-          <ref name='xmlSetFeature'/>
-          <ref name='xmlTextReaderSetParserProp'/>
-        </word>
-        <word name='Changes'>
-          <ref name='xmlSetExternalEntityLoader'/>
-        </word>
-        <word name='Char'>
-          <ref name='IS_BYTE_CHAR'/>
-          <ref name='IS_CHAR'/>
-          <ref name='xmlParseCDSect'/>
-          <ref name='xmlParseCharRef'/>
-          <ref name='xmlParseComment'/>
-          <ref name='xmlParsePI'/>
-        </word>
-        <word name='CharData'>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseCharData'/>
-          <ref name='xmlParseContent'/>
-          <ref name='xmlParseInNodeContext'/>
-        </word>
-        <word name='CharRef'>
-          <ref name='htmlParseCharRef'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-          <ref name='xmlParseCharRef'/>
-          <ref name='xmlParseReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-        </word>
-        <word name='Character'>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocDumpMemoryEnc'/>
-          <ref name='xmlGetCharEncodingName'/>
-          <ref name='xmlParseCharEncoding'/>
-          <ref name='xmlParseCharRef'/>
-        </word>
-        <word name='Characters'>
-          <ref name='xmlParseCharRef'/>
-        </word>
-        <word name='Checka'>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-        </word>
-        <word name='Checks'>
-          <ref name='htmlAttrAllowed'/>
-          <ref name='htmlElementAllowedHere'/>
-          <ref name='htmlElementAllowedHereDesc'/>
-          <ref name='htmlElementStatusHere'/>
-          <ref name='htmlNodeStatus'/>
-          <ref name='xmlAutomataIsDeterminist'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlCheckUTF8'/>
-          <ref name='xmlIsBlankNode'/>
-          <ref name='xmlSchemaCheckFacet'/>
-          <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-          <ref name='xmlXPathNodeSetIsEmpty'/>
-          <ref name='xmlXPathStackIsExternal'/>
-        </word>
-        <word name='Cherokee'>
-          <ref name='xmlUCSIsCherokee'/>
-        </word>
-        <word name='Children'>
-          <ref name='xmlParseElementContentDecl'/>
-        </word>
-        <word name='Chunk'>
-          <ref name='htmlParseChunk'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseChunk'/>
-          <ref name='xmlParseInNodeContext'/>
-        </word>
-        <word name='Cleanup'>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupPredefinedEntities'/>
-          <ref name='xmlCtxtResetLastError'/>
-          <ref name='xmlNanoFTPCleanup'/>
-          <ref name='xmlNanoHTTPCleanup'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlResetError'/>
-          <ref name='xmlResetLastError'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-          <ref name='xmlSchemaFreeValue'/>
-          <ref name='xmlXPathRegisteredFuncsCleanup'/>
-          <ref name='xmlXPathRegisteredNsCleanup'/>
-          <ref name='xmlXPathRegisteredVariablesCleanup'/>
-        </word>
-        <word name='Clear'>
-          <ref name='xmlClearNodeInfoSeq'/>
-          <ref name='xmlClearParserCtxt'/>
-          <ref name='xmlPopInputCallbacks'/>
-        </word>
-        <word name='Clears'>
-          <ref name='xmlSetupParserForBuffer'/>
-        </word>
-        <word name='Close'>
-          <ref name='xmlFileClose'/>
-          <ref name='xmlIOFTPClose'/>
-          <ref name='xmlIOHTTPClose'/>
-          <ref name='xmlNanoFTPClose'/>
-          <ref name='xmlNanoFTPCloseConnection'/>
-          <ref name='xmlSaveClose'/>
-        </word>
-        <word name='Closed'>
-          <ref name='xmlTextReaderClose'/>
-        </word>
-        <word name='CombiningChar'>
-          <ref name='IS_COMBINING'/>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlParseName'/>
-          <ref name='xmlScanName'/>
-          <ref name='xmlXPathParseNCName'/>
-          <ref name='xmlXPathParseName'/>
-        </word>
-        <word name='CombiningDiacriticalMarks'>
-          <ref name='xmlUCSIsCombiningDiacriticalMarks'/>
-        </word>
-        <word name='CombiningDiacriticalMarksforSymbols'>
-          <ref name='xmlUCSIsCombiningDiacriticalMarksforSymbols'/>
-        </word>
-        <word name='CombiningHalfMarks'>
-          <ref name='xmlUCSIsCombiningHalfMarks'/>
-        </word>
-        <word name='CombiningMarksforSymbols'>
-          <ref name='xmlUCSIsCombiningMarksforSymbols'/>
-        </word>
-        <word name='Comment'>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseComment'/>
-          <ref name='xmlParseContent'/>
-          <ref name='xmlParseInNodeContext'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParseMisc'/>
-        </word>
-        <word name='Compare'>
-          <ref name='xmlParseCharEncoding'/>
-          <ref name='xmlSchemaCompareValues'/>
-          <ref name='xmlSchemaCompareValuesWhtsp'/>
-          <ref name='xmlXPathCmpNodes'/>
-        </word>
-        <word name='Compile'>
-          <ref name='xmlAutomataCompile'/>
-          <ref name='xmlPatterncompile'/>
-          <ref name='xmlXPathCompile'/>
-          <ref name='xmlXPathCtxtCompile'/>
-          <ref name='xmlXPathStringEvalNumber'/>
-        </word>
-        <word name='Compress'>
-          <ref name='htmlCreateFileParserCtxt'/>
-          <ref name='htmlParseFile'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlCreateEntityParserCtxt'/>
-          <ref name='xmlCreateFileParserCtxt'/>
-          <ref name='xmlCreateURLParserCtxt'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlParseFile'/>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-          <ref name='xmlRecoverFile'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXUserParseFile'/>
-        </word>
-        <word name='Computes'>
-          <ref name='xmlBuildURI'/>
-        </word>
-        <word name='Concat'>
-          <ref name='xmlTextConcat'/>
-        </word>
-        <word name='Constructs'>
-          <ref name='xmlCanonicPath'/>
-          <ref name='xmlPathToURI'/>
-        </word>
-        <word name='Content'>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlParseElementContentDecl'/>
-        </word>
-        <word name='Content-Type'>
-          <ref name='xmlNanoHTTPFetch'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlNanoHTTPOpen'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-        </word>
-        <word name='Contrary'>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-        </word>
-        <word name='ControlPictures'>
-          <ref name='xmlUCSIsControlPictures'/>
-        </word>
-        <word name='Convenient'>
-          <ref name='xmlBoolToText'/>
-        </word>
-        <word name='Convert'>
-          <ref name='xmlCatalogConvert'/>
-          <ref name='xmlConvertSGMLCatalog'/>
-        </word>
-        <word name='Converts'>
-          <ref name='xmlXPathCastBooleanToNumber'/>
-          <ref name='xmlXPathCastBooleanToString'/>
-          <ref name='xmlXPathCastNodeSetToBoolean'/>
-          <ref name='xmlXPathCastNodeSetToNumber'/>
-          <ref name='xmlXPathCastNodeSetToString'/>
-          <ref name='xmlXPathCastNodeToNumber'/>
-          <ref name='xmlXPathCastNodeToString'/>
-          <ref name='xmlXPathCastNumberToBoolean'/>
-          <ref name='xmlXPathCastNumberToString'/>
-          <ref name='xmlXPathCastStringToBoolean'/>
-          <ref name='xmlXPathCastStringToNumber'/>
-          <ref name='xmlXPathCastToBoolean'/>
-          <ref name='xmlXPathCastToNumber'/>
-          <ref name='xmlXPathCastToString'/>
-          <ref name='xmlXPathConvertBoolean'/>
-          <ref name='xmlXPathConvertNumber'/>
-          <ref name='xmlXPathConvertString'/>
-        </word>
-        <word name='Copies'>
-          <ref name='xmlSchemaCopyValue'/>
-        </word>
-        <word name='Copy'>
-          <ref name='xmlCopyEnumeration'/>
-          <ref name='xmlGetFeaturesList'/>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='Correct'>
-          <ref name='xmlSetCompressMode'/>
-          <ref name='xmlSetDocCompressMode'/>
-        </word>
-        <word name='Could'>
-          <ref name='_xmlSchemaType'/>
-        </word>
-        <word name='Count'>
-          <ref name='xmlLsCountNode'/>
-        </word>
-        <word name='Creates'>
-          <ref name='htmlNewDoc'/>
-          <ref name='htmlNewDocNoDtD'/>
-          <ref name='xmlCreateDocParserCtxt'/>
-          <ref name='xmlExpNewCtxt'/>
-          <ref name='xmlNewDoc'/>
-          <ref name='xmlXIncludeNewContext'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='Creation'>
-          <ref name='xmlNewCDataBlock'/>
-          <ref name='xmlNewCharRef'/>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewComment'/>
-          <ref name='xmlNewDocComment'/>
-          <ref name='xmlNewDocFragment'/>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-          <ref name='xmlNewDocPI'/>
-          <ref name='xmlNewDocRawNode'/>
-          <ref name='xmlNewDocText'/>
-          <ref name='xmlNewDocTextLen'/>
-          <ref name='xmlNewDtd'/>
-          <ref name='xmlNewGlobalNs'/>
-          <ref name='xmlNewNode'/>
-          <ref name='xmlNewNodeEatName'/>
-          <ref name='xmlNewNs'/>
-          <ref name='xmlNewPI'/>
-          <ref name='xmlNewReference'/>
-          <ref name='xmlNewText'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlNewTextLen'/>
-        </word>
-        <word name='CurrencySymbols'>
-          <ref name='xmlUCSIsCurrencySymbols'/>
-        </word>
-        <word name='Current'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlParserInput'/>
-          <ref name='_xmlValidCtxt'/>
-        </word>
-        <word name='Currently'>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlNanoFTPGetConnection'/>
-          <ref name='xmlNanoFTPInit'/>
-          <ref name='xmlNanoHTTPInit'/>
-          <ref name='xmlTextReaderNextSibling'/>
-        </word>
-        <word name='Cut'>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='CypriotSyllabary'>
-          <ref name='xmlUCSIsCypriotSyllabary'/>
-        </word>
-        <word name='Cyrillic'>
-          <ref name='xmlUCSIsCyrillic'/>
-        </word>
-        <word name='CyrillicSupplement'>
-          <ref name='xmlUCSIsCyrillicSupplement'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk2'>
-      <letter name='D'>
-        <word name='DEBUG_MEMORY'>
-          <ref name='DEBUG_MEMORY'/>
-        </word>
-        <word name='DEBUG_MEMORY_FREED'>
-          <ref name='DEBUG_MEMORY'/>
-        </word>
-        <word name='DEBUG_MEMORY_LOCATION'>
-          <ref name='DEBUG_MEMORY'/>
-        </word>
-        <word name='DELE'>
-          <ref name='xmlNanoFTPDele'/>
-        </word>
-        <word name='DELEGATE'>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-        </word>
-        <word name='DEMO'>
-          <ref name='getPublicId'/>
-          <ref name='xmlSAX2GetPublicId'/>
-        </word>
-        <word name='DEPRECATED'>
-          <ref name='checkNamespace'/>
-          <ref name='getNamespace'/>
-          <ref name='globalNamespace'/>
-          <ref name='namespaceDecl'/>
-          <ref name='setDocumentLocator'/>
-          <ref name='setNamespace'/>
-          <ref name='xmlAddRef'/>
-          <ref name='xmlCatalogGetPublic'/>
-          <ref name='xmlCatalogGetSystem'/>
-          <ref name='xmlFreeRefTable'/>
-          <ref name='xmlGetRefs'/>
-          <ref name='xmlIsBaseChar'/>
-          <ref name='xmlIsBlank'/>
-          <ref name='xmlIsChar'/>
-          <ref name='xmlIsCombining'/>
-          <ref name='xmlIsDigit'/>
-          <ref name='xmlIsExtender'/>
-          <ref name='xmlIsIdeographic'/>
-          <ref name='xmlIsPubidChar'/>
-          <ref name='xmlIsRef'/>
-          <ref name='xmlNewGlobalNs'/>
-          <ref name='xmlRemoveRef'/>
-        </word>
-        <word name='DIGIT'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='DISCOURAGED'>
-          <ref name='xmlNewComment'/>
-          <ref name='xmlNewNode'/>
-          <ref name='xmlNewNodeEatName'/>
-          <ref name='xmlNewPI'/>
-          <ref name='xmlNewText'/>
-          <ref name='xmlNewTextLen'/>
-        </word>
-        <word name='DOCTYPE'>
-          <ref name='xmlParseDocTypeDecl'/>
-        </word>
-        <word name='DOM-wrapper'>
-          <ref name='xmlDOMWrapFreeCtxt'/>
-          <ref name='xmlDOMWrapNewCtxt'/>
-        </word>
-        <word name='DTDs'>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='xmlParserHandlePEReference'/>
-        </word>
-        <word name='Data'>
-          <ref name='xmlParseCDSect'/>
-        </word>
-        <word name='Datatype'>
-          <ref name='xmlRegexpCompile'/>
-        </word>
-        <word name='Datatypes'>
-          <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-        </word>
-        <word name='Deallocate'>
-          <ref name='xmlFreeAttributeTable'/>
-          <ref name='xmlFreeElementTable'/>
-          <ref name='xmlFreeEntitiesTable'/>
-          <ref name='xmlFreeIDTable'/>
-          <ref name='xmlFreeNotationTable'/>
-          <ref name='xmlFreeRefTable'/>
-          <ref name='xmlFreeTextReader'/>
-          <ref name='xmlFreeTextWriter'/>
-          <ref name='xmlRelaxNGFree'/>
-          <ref name='xmlSchemaFree'/>
-          <ref name='xmlSchemaFreeFacet'/>
-          <ref name='xmlSchemaFreeType'/>
-          <ref name='xmlSchematronFree'/>
-        </word>
-        <word name='Deallocates'>
-          <ref name='xmlSchemaFreeWildcard'/>
-        </word>
-        <word name='Debugging'>
-          <ref name='LIBXML_DEBUG_ENABLED'/>
-          <ref name='xmlExpCtxtNbCons'/>
-          <ref name='xmlExpCtxtNbNodes'/>
-        </word>
-        <word name='Declaration'>
-          <ref name='xmlParseElementDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidateElementDecl'/>
-        </word>
-        <word name='Declared'>
-          <ref name='xmlParseEntityDecl'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlValidateNotationUse'/>
-        </word>
-        <word name='Default'>
-          <ref name='xmlHandleEntity'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneNamespace'/>
-        </word>
-        <word name='DefaultDecl'>
-          <ref name='xmlParseAttributeListDecl'/>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='Deletes'>
-          <ref name='xmlListDelete'/>
-        </word>
-        <word name='Depth'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlValidCtxt'/>
-        </word>
-        <word name='Dereference'>
-          <ref name='xmlExpFree'/>
-        </word>
-        <word name='DeregisterNodeFunc'>
-          <ref name='xmlDeregisterNodeDefault'/>
-        </word>
-        <word name='Deseret'>
-          <ref name='xmlUCSIsDeseret'/>
-        </word>
-        <word name='Determine'>
-          <ref name='htmlIsBooleanAttr'/>
-          <ref name='xmlIsID'/>
-          <ref name='xmlIsRef'/>
-          <ref name='xmlTextReaderConstEncoding'/>
-          <ref name='xmlTextReaderConstXmlVersion'/>
-          <ref name='xmlTextReaderIsNamespaceDecl'/>
-          <ref name='xmlTextReaderStandalone'/>
-        </word>
-        <word name='Devanagari'>
-          <ref name='xmlUCSIsDevanagari'/>
-        </word>
-        <word name='Different'>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='Digit'>
-          <ref name='IS_DIGIT'/>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlParseName'/>
-          <ref name='xmlScanName'/>
-          <ref name='xmlXPathParseNCName'/>
-          <ref name='xmlXPathParseName'/>
-        </word>
-        <word name='Digits'>
-          <ref name='xmlXPathStringEvalNumber'/>
-        </word>
-        <word name='Digits?'>
-          <ref name='xmlXPathStringEvalNumber'/>
-        </word>
-        <word name='Dingbats'>
-          <ref name='xmlUCSIsDingbats'/>
-        </word>
-        <word name='Display'>
-          <ref name='errorSAXFunc'/>
-          <ref name='fatalErrorSAXFunc'/>
-          <ref name='warningSAXFunc'/>
-          <ref name='xmlParserError'/>
-          <ref name='xmlParserValidityError'/>
-          <ref name='xmlParserValidityWarning'/>
-          <ref name='xmlParserWarning'/>
-        </word>
-        <word name='Displays'>
-          <ref name='xmlParserPrintFileContext'/>
-          <ref name='xmlParserPrintFileInfo'/>
-        </word>
-        <word name='Document'>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocDumpMemoryEnc'/>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlXIncludeNewContext'/>
-        </word>
-        <word name='Does'>
-          <ref name='hasExternalSubset'/>
-          <ref name='hasExternalSubsetSAXFunc'/>
-          <ref name='hasInternalSubset'/>
-          <ref name='hasInternalSubsetSAXFunc'/>
-          <ref name='xmlCharInRange'/>
-          <ref name='xmlSAX2HasExternalSubset'/>
-          <ref name='xmlSAX2HasInternalSubset'/>
-          <ref name='xmlShellList'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-          <ref name='xmlValidateDocumentFinal'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='Douglas'>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='Draft'>
-          <ref name='xmlParseNamespace'/>
-        </word>
-        <word name='DtD'>
-          <ref name='xmlGetDtdAttrDesc'/>
-          <ref name='xmlGetDtdElementDesc'/>
-          <ref name='xmlGetDtdNotationDesc'/>
-          <ref name='xmlGetDtdQAttrDesc'/>
-          <ref name='xmlGetDtdQElementDesc'/>
-          <ref name='xmlValidateDtd'/>
-        </word>
-        <word name='DtDs'>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlIsMixedElement'/>
-        </word>
-        <word name='Dtd'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='Dumps'>
-          <ref name='xmlBufferDump'/>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlDebugDumpAttr'/>
-          <ref name='xmlDebugDumpAttrList'/>
-          <ref name='xmlDebugDumpDTD'/>
-          <ref name='xmlDebugDumpDocument'/>
-          <ref name='xmlDebugDumpDocumentHead'/>
-          <ref name='xmlDebugDumpEntities'/>
-          <ref name='xmlDebugDumpNode'/>
-          <ref name='xmlDebugDumpNodeList'/>
-          <ref name='xmlDebugDumpOneNode'/>
-          <ref name='xmlDebugDumpString'/>
-          <ref name='xmlXPathDebugDumpCompExpr'/>
-        </word>
-        <word name='Duplicate'>
-          <ref name='xmlHashAddEntry'/>
-          <ref name='xmlHashAddEntry2'/>
-          <ref name='xmlHashAddEntry3'/>
-          <ref name='xmlListDup'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlValidateElementDecl'/>
-        </word>
-      </letter>
-      <letter name='E'>
-        <word name='ELEMENT'>
-          <ref name='_xmlElementContent'/>
-        </word>
-        <word name='EMPTY'>
-          <ref name='xmlParseElementContentDecl'/>
-        </word>
-        <word name='ENTITIES'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlValidateAttributeValue'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='ENTITY'>
-          <ref name='htmlParseEntityRef'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseEntityValue'/>
-          <ref name='xmlValidateAttributeValue'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='ENTITY_REF'>
-          <ref name='xmlBufGetNodeContent'/>
-          <ref name='xmlNodeBufGetContent'/>
-          <ref name='xmlNodeGetContent'/>
-        </word>
-        <word name='ENTITY_REFs'>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlStringGetNodeList'/>
-          <ref name='xmlStringLenGetNodeList'/>
-        </word>
-        <word name='EOF'>
-          <ref name='xmlParseContent'/>
-        </word>
-        <word name='ETag'>
-          <ref name='htmlParseElement'/>
-          <ref name='xmlParseElement'/>
-          <ref name='xmlParseEndTag'/>
-        </word>
-        <word name='EXSLT'>
-          <ref name='xmlXPathDifference'/>
-          <ref name='xmlXPathDistinct'/>
-          <ref name='xmlXPathDistinctSorted'/>
-          <ref name='xmlXPathHasSameNodes'/>
-          <ref name='xmlXPathIntersection'/>
-          <ref name='xmlXPathLeading'/>
-          <ref name='xmlXPathLeadingSorted'/>
-          <ref name='xmlXPathNodeLeading'/>
-          <ref name='xmlXPathNodeLeadingSorted'/>
-          <ref name='xmlXPathNodeTrailing'/>
-          <ref name='xmlXPathNodeTrailingSorted'/>
-          <ref name='xmlXPathTrailing'/>
-          <ref name='xmlXPathTrailingSorted'/>
-        </word>
-        <word name='Element'>
-          <ref name='_xmlAttribute'/>
-          <ref name='_xmlElement'/>
-          <ref name='_xmlElementContent'/>
-          <ref name='htmlNodeStatus'/>
-          <ref name='xmlFirstElementChild'/>
-          <ref name='xmlLastElementChild'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseDocTypeDecl'/>
-          <ref name='xmlParseElement'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementContentDecl'/>
-          <ref name='xmlParseElementDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlTextReaderReadString'/>
-          <ref name='xmlValidateElementDecl'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlValidateRoot'/>
-        </word>
-        <word name='ElementTable'>
-          <ref name='htmlTagLookup'/>
-        </word>
-        <word name='Empties'>
-          <ref name='xmlXPathEmptyNodeSet'/>
-        </word>
-        <word name='EmptyElemTag'>
-          <ref name='htmlParseElement'/>
-          <ref name='xmlParseElement'/>
-          <ref name='xmlParseStartTag'/>
-        </word>
-        <word name='EmptyElement'>
-          <ref name='xmlParseStartTag'/>
-        </word>
-        <word name='EncName'>
-          <ref name='xmlParseEncName'/>
-          <ref name='xmlParseEncodingDecl'/>
-        </word>
-        <word name='Encapsulating'>
-          <ref name='xmlNodeGetBase'/>
-        </word>
-        <word name='EnclosedAlphanumerics'>
-          <ref name='xmlUCSIsEnclosedAlphanumerics'/>
-        </word>
-        <word name='EnclosedCJKLettersandMonths'>
-          <ref name='xmlUCSIsEnclosedCJKLettersandMonths'/>
-        </word>
-        <word name='Encoding'>
-          <ref name='htmlGetMetaEncoding'/>
-          <ref name='xmlGetCharEncodingName'/>
-          <ref name='xmlParseCharEncoding'/>
-        </word>
-        <word name='EncodingDecl'>
-          <ref name='xmlParseEncodingDecl'/>
-          <ref name='xmlParseTextDecl'/>
-        </word>
-        <word name='EncodingDecl?'>
-          <ref name='xmlParseXMLDecl'/>
-        </word>
-        <word name='End'>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlDtd'/>
-          <ref name='_xmlNode'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-          <ref name='xmlTextWriterEndAttribute'/>
-          <ref name='xmlTextWriterEndCDATA'/>
-          <ref name='xmlTextWriterEndComment'/>
-          <ref name='xmlTextWriterEndDTD'/>
-          <ref name='xmlTextWriterEndDTDAttlist'/>
-          <ref name='xmlTextWriterEndDTDElement'/>
-          <ref name='xmlTextWriterEndDTDEntity'/>
-          <ref name='xmlTextWriterEndDocument'/>
-          <ref name='xmlTextWriterEndElement'/>
-          <ref name='xmlTextWriterEndPI'/>
-          <ref name='xmlTextWriterFullEndElement'/>
-        </word>
-        <word name='End-of-Line'>
-          <ref name='xmlCurrentChar'/>
-        </word>
-        <word name='Ensures'>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-        </word>
-        <word name='Entities'>
-          <ref name='xmlGetCharEncodingName'/>
-          <ref name='xmlParseCharEncoding'/>
-        </word>
-        <word name='EntitiesTable'>
-          <ref name='htmlEntityLookup'/>
-          <ref name='htmlEntityValueLookup'/>
-        </word>
-        <word name='Entity'>
-          <ref name='_xmlEntity'/>
-          <ref name='xmlBufGetNodeContent'/>
-          <ref name='xmlNewEntityInputStream'/>
-          <ref name='xmlNodeBufGetContent'/>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlNodeGetContent'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlValidateAttributeValue'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneNamespace'/>
-        </word>
-        <word name='EntityDecl'>
-          <ref name='xmlParseEntityDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='EntityDef'>
-          <ref name='xmlParseEntityDecl'/>
-        </word>
-        <word name='EntityRef'>
-          <ref name='htmlParseEntityRef'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-        </word>
-        <word name='EntityReference'>
-          <ref name='xmlTextReaderReadAttributeValue'/>
-        </word>
-        <word name='EntityValue'>
-          <ref name='xmlParseEntityDecl'/>
-          <ref name='xmlParseEntityValue'/>
-        </word>
-        <word name='Enumerated'>
-          <ref name='xmlParseEnumeratedType'/>
-        </word>
-        <word name='EnumeratedType'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseEnumeratedType'/>
-        </word>
-        <word name='Enumeration'>
-          <ref name='_xmlEnumeration'/>
-          <ref name='xmlParseEnumeratedType'/>
-          <ref name='xmlParseEnumerationType'/>
-          <ref name='xmlValidateAttributeDecl'/>
-        </word>
-        <word name='Equal'>
-          <ref name='xmlStrQEqual'/>
-        </word>
-        <word name='Escaping'>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='Ethiopic'>
-          <ref name='xmlUCSIsEthiopic'/>
-        </word>
-        <word name='Evaluate'>
-          <ref name='xmlXPathCompiledEval'/>
-          <ref name='xmlXPathEval'/>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-          <ref name='xmlXPathNodeEval'/>
-          <ref name='xmlXPtrEval'/>
-          <ref name='xmlXPtrEvalRangePredicate'/>
-        </word>
-        <word name='Evaluates'>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlSchemaIsBuiltInTypeFacet'/>
-        </word>
-        <word name='Everything'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='setDocumentLocator'/>
-          <ref name='setDocumentLocatorSAXFunc'/>
-          <ref name='xmlSAX2SetDocumentLocator'/>
-        </word>
-        <word name='Examines'>
-          <ref name='xmlHasFeature'/>
-        </word>
-        <word name='Exclusive'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='Existing'>
-          <ref name='xmlAddEncodingAlias'/>
-          <ref name='xmlHashRemoveEntry'/>
-          <ref name='xmlHashRemoveEntry2'/>
-          <ref name='xmlHashRemoveEntry3'/>
-          <ref name='xmlHashUpdateEntry'/>
-          <ref name='xmlHashUpdateEntry2'/>
-          <ref name='xmlHashUpdateEntry3'/>
-        </word>
-        <word name='Exp'>
-          <ref name='xmlAutomataCompile'/>
-        </word>
-        <word name='Experimental'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='Expr'>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-          <ref name='xmlXPtrEvalRangePredicate'/>
-        </word>
-        <word name='Expresses'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='Expression'>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-        </word>
-        <word name='Extender'>
-          <ref name='IS_EXTENDER'/>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlParseName'/>
-          <ref name='xmlScanName'/>
-          <ref name='xmlXPathParseNCName'/>
-          <ref name='xmlXPathParseName'/>
-        </word>
-        <word name='External'>
-          <ref name='_xmlDtd'/>
-          <ref name='_xmlEntity'/>
-          <ref name='xmlACatalogResolve'/>
-          <ref name='xmlCatalogLocalResolve'/>
-          <ref name='xmlCatalogResolve'/>
-          <ref name='xmlExternalEntityLoader'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseDTD'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlSAXParseDTD'/>
-        </word>
-        <word name='ExternalID'>
-          <ref name='xmlParseDocTypeDecl'/>
-          <ref name='xmlParseEntityDecl'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlParseNotationDecl'/>
-        </word>
-        <word name='Extract'>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlSchemaGetFacetValueAsULong'/>
-          <ref name='xmlStrsub'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk3'>
-      <letter name='F'>
-        <word name='FALSE'>
-          <ref name='xmlTextWriterStartDTDEntity'/>
-          <ref name='xmlTextWriterWriteDTDEntity'/>
-          <ref name='xmlTextWriterWriteDTDExternalEntity'/>
-          <ref name='xmlTextWriterWriteDTDInternalEntity'/>
-          <ref name='xmlTextWriterWriteFormatDTDInternalEntity'/>
-          <ref name='xmlTextWriterWriteVFormatDTDInternalEntity'/>
-        </word>
-        <word name='FFFE'>
-          <ref name='IS_CHAR'/>
-        </word>
-        <word name='FFFF'>
-          <ref name='IS_CHAR'/>
-        </word>
-        <word name='FIXED'>
-          <ref name='xmlGetNoNsProp'/>
-          <ref name='xmlGetNsProp'/>
-          <ref name='xmlGetProp'/>
-          <ref name='xmlHasNsProp'/>
-          <ref name='xmlHasProp'/>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='FREE'>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='Facet'>
-          <ref name='xmlSchemaFreeFacet'/>
-          <ref name='xmlSchemaNewFacet'/>
-        </word>
-        <word name='False'>
-          <ref name='xmlBoolToText'/>
-        </word>
-        <word name='Fetch'>
-          <ref name='xmlNanoFTPGet'/>
-        </word>
-        <word name='File'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='Fills'>
-          <ref name='xmlBufGetNodeContent'/>
-          <ref name='xmlNodeBufGetContent'/>
-        </word>
-        <word name='Find'>
-          <ref name='xmlExpGetLanguage'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlGetRefs'/>
-          <ref name='xmlHashLookup'/>
-          <ref name='xmlHashLookup2'/>
-          <ref name='xmlHashLookup3'/>
-          <ref name='xmlHashQLookup'/>
-          <ref name='xmlHashQLookup2'/>
-          <ref name='xmlHashQLookup3'/>
-          <ref name='xmlHashRemoveEntry'/>
-          <ref name='xmlHashRemoveEntry2'/>
-          <ref name='xmlHashRemoveEntry3'/>
-          <ref name='xmlParserFindNodeInfo'/>
-          <ref name='xmlParserFindNodeInfoIndex'/>
-        </word>
-        <word name='Finds'>
-          <ref name='xmlChildElementCount'/>
-          <ref name='xmlExpIsNillable'/>
-          <ref name='xmlFirstElementChild'/>
-          <ref name='xmlLastElementChild'/>
-          <ref name='xmlNextElementSibling'/>
-          <ref name='xmlPreviousElementSibling'/>
-        </word>
-        <word name='First'>
-          <ref name='XML_SCHEMAS_TYPE_FIXUP_1'/>
-          <ref name='_xmlEntity'/>
-        </word>
-        <word name='Fixed'>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneNamespace'/>
-        </word>
-        <word name='Float'>
-          <ref name='xmlXPathStringEvalNumber'/>
-        </word>
-        <word name='Flush'>
-          <ref name='xmlSaveFlush'/>
-          <ref name='xmlTextWriterFlush'/>
-        </word>
-        <word name='For'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCtxtResetLastError'/>
-          <ref name='xmlParseComment'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlResetLastError'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-          <ref name='xmlXPathSubstringAfterFunction'/>
-          <ref name='xmlXPathSubstringBeforeFunction'/>
-          <ref name='xmlXPathSubstringFunction'/>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='Form'>
-          <ref name='xmlBuildURI'/>
-        </word>
-        <word name='Formats'>
-          <ref name='xmlStrPrintf'/>
-          <ref name='xmlStrVPrintf'/>
-          <ref name='xmlXPatherror'/>
-        </word>
-        <word name='Formatting'>
-          <ref name='htmlDocContentDumpOutput'/>
-        </word>
-        <word name='Formed'>
-          <ref name='xmlRecoverDoc'/>
-          <ref name='xmlRecoverFile'/>
-          <ref name='xmlRecoverMemory'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-        </word>
-        <word name='Fragment'>
-          <ref name='xmlNewDocFragment'/>
-        </word>
-        <word name='Frameset'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='Frees'>
-          <ref name='xmlBufferFree'/>
-          <ref name='xmlDOMWrapFreeCtxt'/>
-          <ref name='xmlNanoFTPFreeCtxt'/>
-        </word>
-        <word name='Front-end'>
-          <ref name='xmlCharEncFirstLine'/>
-        </word>
-        <word name='Function'>
-          <ref name='xmlBufContent'/>
-          <ref name='xmlBufEnd'/>
-          <ref name='xmlBufUse'/>
-          <ref name='xmlBufferContent'/>
-          <ref name='xmlBufferLength'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-          <ref name='xmlXPathFunctionLookup'/>
-          <ref name='xmlXPathFunctionLookupNS'/>
-        </word>
-      </letter>
-      <letter name='G'>
-        <word name='GCC'>
-          <ref name='ATTRIBUTE_UNUSED'/>
-          <ref name='LIBXML_ATTR_ALLOC_SIZE'/>
-          <ref name='LIBXML_ATTR_FORMAT'/>
-        </word>
-        <word name='GEDecl'>
-          <ref name='xmlParseEntityDecl'/>
-        </word>
-        <word name='GET'>
-          <ref name='xmlNanoHTTPFetch'/>
-          <ref name='xmlNanoHTTPOpen'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-        </word>
-        <word name='GeneralPunctuation'>
-          <ref name='xmlUCSIsGeneralPunctuation'/>
-        </word>
-        <word name='Generic'>
-          <ref name='xmlCharEncCloseFunc'/>
-          <ref name='xmlCharEncInFunc'/>
-          <ref name='xmlCharEncOutFunc'/>
-        </word>
-        <word name='GeometricShapes'>
-          <ref name='xmlUCSIsGeometricShapes'/>
-        </word>
-        <word name='Georgian'>
-          <ref name='xmlUCSIsGeorgian'/>
-        </word>
-        <word name='Gets'>
-          <ref name='xmlTextReaderReadState'/>
-        </word>
-        <word name='Gives'>
-          <ref name='xmlOutputBufferGetContent'/>
-          <ref name='xmlOutputBufferGetSize'/>
-          <ref name='xmlSchemaGetBuiltInType'/>
-        </word>
-        <word name='Global'>
-          <ref name='_xmlDoc'/>
-        </word>
-        <word name='Gothic'>
-          <ref name='xmlUCSIsGothic'/>
-        </word>
-        <word name='Greek'>
-          <ref name='xmlUCSIsGreek'/>
-        </word>
-        <word name='GreekExtended'>
-          <ref name='xmlUCSIsGreekExtended'/>
-        </word>
-        <word name='GreekandCoptic'>
-          <ref name='xmlUCSIsGreekandCoptic'/>
-        </word>
-        <word name='Group'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-        </word>
-        <word name='Grow'>
-          <ref name='xmlBufferGrow'/>
-          <ref name='xmlParserInputBufferGrow'/>
-        </word>
-        <word name='Guess'>
-          <ref name='xmlDetectCharEncoding'/>
-        </word>
-        <word name='Gujarati'>
-          <ref name='xmlUCSIsGujarati'/>
-        </word>
-        <word name='Gurmukhi'>
-          <ref name='xmlUCSIsGurmukhi'/>
-        </word>
-      </letter>
-      <letter name='H'>
-        <word name='HTML_DEPRECATED'>
-          <ref name='htmlAttrAllowed'/>
-          <ref name='htmlElementStatusHere'/>
-        </word>
-        <word name='HTML_INVALID'>
-          <ref name='htmlAttrAllowed'/>
-          <ref name='htmlElementStatusHere'/>
-        </word>
-        <word name='HTML_NA'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='HTML_REQUIRED'>
-          <ref name='htmlAttrAllowed'/>
-        </word>
-        <word name='HTML_VALID'>
-          <ref name='htmlAttrAllowed'/>
-          <ref name='htmlElementStatusHere'/>
-        </word>
-        <word name='Hacking'>
-          <ref name='xmlTextReaderCurrentDoc'/>
-          <ref name='xmlTextReaderCurrentNode'/>
-        </word>
-        <word name='HalfwidthandFullwidthForms'>
-          <ref name='xmlUCSIsHalfwidthandFullwidthForms'/>
-        </word>
-        <word name='Handle'>
-          <ref name='attribute'/>
-          <ref name='attributeSAXFunc'/>
-          <ref name='xmlErrMemory'/>
-          <ref name='xmlXPathErr'/>
-        </word>
-        <word name='Handling'>
-          <ref name='xmlCurrentChar'/>
-        </word>
-        <word name='HangulCompatibilityJamo'>
-          <ref name='xmlUCSIsHangulCompatibilityJamo'/>
-        </word>
-        <word name='HangulJamo'>
-          <ref name='xmlUCSIsHangulJamo'/>
-        </word>
-        <word name='HangulSyllables'>
-          <ref name='xmlUCSIsHangulSyllables'/>
-        </word>
-        <word name='Hanunoo'>
-          <ref name='xmlUCSIsHanunoo'/>
-        </word>
-        <word name='Has'>
-          <ref name='htmlAttrAllowed'/>
-        </word>
-        <word name='Hash'>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlDtd'/>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='Hebrew'>
-          <ref name='xmlUCSIsHebrew'/>
-        </word>
-        <word name='Hence'>
-          <ref name='xmlParseNotationDecl'/>
-        </word>
-        <word name='HighPrivateUseSurrogates'>
-          <ref name='xmlUCSIsHighPrivateUseSurrogates'/>
-        </word>
-        <word name='HighSurrogates'>
-          <ref name='xmlUCSIsHighSurrogates'/>
-        </word>
-        <word name='Hiragana'>
-          <ref name='xmlUCSIsHiragana'/>
-        </word>
-        <word name='Hmm'>
-          <ref name='xmlSchemaValueGetAsBoolean'/>
-        </word>
-        <word name='Holds'>
-          <ref name='_xmlSchemaType'/>
-        </word>
-        <word name='How'>
-          <ref name='_xmlParserInput'/>
-        </word>
-        <word name='However'>
-          <ref name='htmlFreeParserCtxt'/>
-          <ref name='xmlFreeParserCtxt'/>
-          <ref name='xmlNodeGetBase'/>
-        </word>
-      </letter>
-      <letter name='I'>
-        <word name='I18N'>
-          <ref name='_xmlOutputBuffer'/>
-          <ref name='_xmlParserInputBuffer'/>
-          <ref name='xmlOutputBufferWrite'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlOutputBufferWriteString'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlParserInputBufferPush'/>
-          <ref name='xmlParserInputBufferRead'/>
-        </word>
-        <word name='IANA'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='IDREF'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateAttributeValue'/>
-          <ref name='xmlValidateDocumentFinal'/>
-          <ref name='xmlValidateDtd'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlValidateOneNamespace'/>
-        </word>
-        <word name='IDREFS'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlValidateAttributeValue'/>
-          <ref name='xmlValidateDocumentFinal'/>
-        </word>
-        <word name='IDREFs'>
-          <ref name='_xmlDoc'/>
-        </word>
-        <word name='IDs'>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='IEEE'>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathStringFunction'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='IMPLIED'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='IPAExtensions'>
-          <ref name='xmlUCSIsIPAExtensions'/>
-        </word>
-        <word name='ISO'>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='XML_CAST_FPTR'/>
-          <ref name='isolat1ToUTF8'/>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='ISO-8859-'>
-          <ref name='LIBXML_ISO8859X_ENABLED'/>
-        </word>
-        <word name='ISO-Latin'>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-        </word>
-        <word name='ISO639Code'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='ISOLatin'>
-          <ref name='_xmlOutputBuffer'/>
-        </word>
-        <word name='IS_BLANK'>
-          <ref name='IS_BLANK_CH'/>
-        </word>
-        <word name='IS_CHAR'>
-          <ref name='IS_CHAR_CH'/>
-        </word>
-        <word name='IS_DIGIT'>
-          <ref name='IS_DIGIT_CH'/>
-        </word>
-        <word name='IS_EXTENDER'>
-          <ref name='IS_EXTENDER_CH'/>
-        </word>
-        <word name='IS_LETTER'>
-          <ref name='IS_LETTER_CH'/>
-        </word>
-        <word name='IS_PUBIDCHAR'>
-          <ref name='IS_PUBIDCHAR_CH'/>
-        </word>
-        <word name='IanaCode'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='Identifier'>
-          <ref name='xmlACatalogResolve'/>
-          <ref name='xmlCatalogLocalResolve'/>
-          <ref name='xmlCatalogResolve'/>
-        </word>
-        <word name='Identifiers'>
-          <ref name='XML_MAX_NAMELEN'/>
-        </word>
-        <word name='Ideographic'>
-          <ref name='IS_IDEOGRAPHIC'/>
-          <ref name='IS_LETTER'/>
-          <ref name='xmlIsLetter'/>
-        </word>
-        <word name='IdeographicDescriptionCharacters'>
-          <ref name='xmlUCSIsIdeographicDescriptionCharacters'/>
-        </word>
-        <word name='Ignore'>
-          <ref name='XML_SCHEMAS_ANYATTR_LAX'/>
-        </word>
-        <word name='Ignored'>
-          <ref name='xmlCopyChar'/>
-        </word>
-        <word name='Implements'>
-          <ref name='xmlShell'/>
-          <ref name='xmlShellBase'/>
-          <ref name='xmlShellCat'/>
-          <ref name='xmlShellDir'/>
-          <ref name='xmlShellDu'/>
-          <ref name='xmlShellList'/>
-          <ref name='xmlShellLoad'/>
-          <ref name='xmlShellPwd'/>
-          <ref name='xmlShellSave'/>
-          <ref name='xmlShellValidate'/>
-          <ref name='xmlShellWrite'/>
-          <ref name='xmlXPathDifference'/>
-          <ref name='xmlXPathDistinct'/>
-          <ref name='xmlXPathDistinctSorted'/>
-          <ref name='xmlXPathHasSameNodes'/>
-          <ref name='xmlXPathIntersection'/>
-          <ref name='xmlXPathLeading'/>
-          <ref name='xmlXPathLeadingSorted'/>
-          <ref name='xmlXPathNodeLeading'/>
-          <ref name='xmlXPathNodeLeadingSorted'/>
-          <ref name='xmlXPathNodeSetItem'/>
-          <ref name='xmlXPathNodeTrailing'/>
-          <ref name='xmlXPathNodeTrailingSorted'/>
-          <ref name='xmlXPathTrailing'/>
-          <ref name='xmlXPathTrailingSorted'/>
-        </word>
-        <word name='Included'>
-          <ref name='xmlParserHandlePEReference'/>
-        </word>
-        <word name='Increase'>
-          <ref name='xmlExpRef'/>
-        </word>
-        <word name='Increment'>
-          <ref name='xmlDictReference'/>
-        </word>
-        <word name='Indicate'>
-          <ref name='xmlExpMaxToken'/>
-        </word>
-        <word name='Indicates'>
-          <ref name='_xmlSchemaWildcard'/>
-        </word>
-        <word name='Infinity'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='Initial'>
-          <ref name='xmlAutomataGetInitState'/>
-        </word>
-        <word name='Initialization'>
-          <ref name='xmlInitParser'/>
-        </word>
-        <word name='Initialize'>
-          <ref name='htmlDefaultSAXHandlerInit'/>
-          <ref name='inithtmlDefaultSAXHandler'/>
-          <ref name='initxmlDefaultSAXHandler'/>
-          <ref name='xmlDefaultSAXHandlerInit'/>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlInitMemory'/>
-          <ref name='xmlInitNodeInfoSeq'/>
-          <ref name='xmlInitParserCtxt'/>
-          <ref name='xmlNanoFTPInit'/>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoHTTPInit'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-          <ref name='xmlRelaxNGInitTypes'/>
-          <ref name='xmlSAX2InitDefaultSAXHandler'/>
-          <ref name='xmlSAX2InitHtmlDefaultSAXHandler'/>
-          <ref name='xmlSAXVersion'/>
-          <ref name='xmlSchemaInitTypes'/>
-          <ref name='xmlXPathInit'/>
-          <ref name='xmlXPathRoot'/>
-        </word>
-        <word name='Initially'>
-          <ref name='xmlSubstituteEntitiesDefault'/>
-        </word>
-        <word name='Initiate'>
-          <ref name='xmlNanoFTPGetSocket'/>
-        </word>
-        <word name='Input'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlIOParseDTD'/>
-          <ref name='xmlInputCloseCallback'/>
-          <ref name='xmlInputMatchCallback'/>
-          <ref name='xmlInputOpenCallback'/>
-          <ref name='xmlInputReadCallback'/>
-          <ref name='xmlNewIOInputStream'/>
-        </word>
-        <word name='Insert'>
-          <ref name='xmlListAppend'/>
-          <ref name='xmlListInsert'/>
-          <ref name='xmlParserAddNodeInfo'/>
-        </word>
-        <word name='Instruction'>
-          <ref name='XML_CATALOG_PI'/>
-          <ref name='xmlParsePI'/>
-        </word>
-        <word name='Intended'>
-          <ref name='xmlSnprintfElementContent'/>
-        </word>
-        <word name='Internal'>
-          <ref name='_xmlDOMWrapCtxt'/>
-          <ref name='_xmlDoc'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='Introduced'>
-          <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-          <ref name='XML_MAX_LOOKUP_LIMIT'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-        </word>
-        <word name='Irregular'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk4'>
-      <letter name='J'>
-        <word name='Jan'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='Java'>
-          <ref name='xmlCheckUTF8'/>
-        </word>
-      </letter>
-      <letter name='K'>
-        <word name='Kanbun'>
-          <ref name='xmlUCSIsKanbun'/>
-        </word>
-        <word name='KangxiRadicals'>
-          <ref name='xmlUCSIsKangxiRadicals'/>
-        </word>
-        <word name='Kannada'>
-          <ref name='xmlUCSIsKannada'/>
-        </word>
-        <word name='Katakana'>
-          <ref name='xmlUCSIsKatakana'/>
-        </word>
-        <word name='KatakanaPhoneticExtensions'>
-          <ref name='xmlUCSIsKatakanaPhoneticExtensions'/>
-        </word>
-        <word name='Khmer'>
-          <ref name='xmlUCSIsKhmer'/>
-        </word>
-        <word name='KhmerSymbols'>
-          <ref name='xmlUCSIsKhmerSymbols'/>
-        </word>
-      </letter>
-      <letter name='L'>
-        <word name='Langcode'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='LanguageID'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='Lao'>
-          <ref name='xmlUCSIsLao'/>
-        </word>
-        <word name='Last'>
-          <ref name='_xmlEntity'/>
-        </word>
-        <word name='Latin'>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='isolat1ToUTF8'/>
-        </word>
-        <word name='Latin-1Supplement'>
-          <ref name='xmlUCSIsLatin1Supplement'/>
-        </word>
-        <word name='LatinExtended-A'>
-          <ref name='xmlUCSIsLatinExtendedA'/>
-        </word>
-        <word name='LatinExtended-B'>
-          <ref name='xmlUCSIsLatinExtendedB'/>
-        </word>
-        <word name='LatinExtendedAdditional'>
-          <ref name='xmlUCSIsLatinExtendedAdditional'/>
-        </word>
-        <word name='Legal'>
-          <ref name='xmlParseCharRef'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlValidateAttributeDecl'/>
-        </word>
-        <word name='Length'>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocDumpMemoryEnc'/>
-        </word>
-        <word name='Letter'>
-          <ref name='IS_LETTER'/>
-          <ref name='xmlIsLetter'/>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlParseName'/>
-          <ref name='xmlScanName'/>
-          <ref name='xmlXPathParseNCName'/>
-          <ref name='xmlXPathParseName'/>
-        </word>
-        <word name='LetterlikeSymbols'>
-          <ref name='xmlUCSIsLetterlikeSymbols'/>
-        </word>
-        <word name='Like'>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='Limbu'>
-          <ref name='xmlUCSIsLimbu'/>
-        </word>
-        <word name='LinearBIdeograms'>
-          <ref name='xmlUCSIsLinearBIdeograms'/>
-        </word>
-        <word name='LinearBSyllabary'>
-          <ref name='xmlUCSIsLinearBSyllabary'/>
-        </word>
-        <word name='List'>
-          <ref name='_xmlElement'/>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='Literal'>
-          <ref name='xmlParseSystemLiteral'/>
-        </word>
-        <word name='Load'>
-          <ref name='xmlIOParseDTD'/>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadCatalogs'/>
-          <ref name='xmlLoadExternalEntity'/>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-          <ref name='xmlParseDTD'/>
-          <ref name='xmlSAXParseDTD'/>
-        </word>
-        <word name='Local'>
-          <ref name='_xmlOutputBuffer'/>
-          <ref name='_xmlParserInputBuffer'/>
-          <ref name='_xmlSchemaType'/>
-        </word>
-        <word name='LocalPart'>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlSplitQName'/>
-          <ref name='xmlSplitQName2'/>
-        </word>
-        <word name='Location'>
-          <ref name='xmlXPathEval'/>
-          <ref name='xmlXPathNodeEval'/>
-          <ref name='xmlXPtrEval'/>
-          <ref name='xmlXPtrEvalRangePredicate'/>
-        </word>
-        <word name='LocationSet'>
-          <ref name='xmlXPtrFreeLocationSet'/>
-          <ref name='xmlXPtrLocationSetAdd'/>
-          <ref name='xmlXPtrLocationSetDel'/>
-          <ref name='xmlXPtrLocationSetMerge'/>
-          <ref name='xmlXPtrLocationSetRemove'/>
-          <ref name='xmlXPtrNewLocationSetNodeSet'/>
-          <ref name='xmlXPtrNewLocationSetNodes'/>
-          <ref name='xmlXPtrWrapLocationSet'/>
-        </word>
-        <word name='Locator'>
-          <ref name='setDocumentLocator'/>
-          <ref name='setDocumentLocatorSAXFunc'/>
-          <ref name='xmlSAX2SetDocumentLocator'/>
-        </word>
-        <word name='Lookup'>
-          <ref name='htmlEntityLookup'/>
-          <ref name='htmlEntityValueLookup'/>
-          <ref name='htmlTagLookup'/>
-          <ref name='xmlGetEncodingAlias'/>
-          <ref name='xmlModuleSymbol'/>
-          <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-          <ref name='xmlSchemaGetPredefinedType'/>
-        </word>
-        <word name='Loose'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='LowSurrogates'>
-          <ref name='xmlUCSIsLowSurrogates'/>
-        </word>
-        <word name='Lzma'>
-          <ref name='LIBXML_LZMA_ENABLED'/>
-        </word>
-      </letter>
-      <letter name='M'>
-        <word name='META'>
-          <ref name='htmlSetMetaEncoding'/>
-        </word>
-        <word name='MODIFIER'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='MULT'>
-          <ref name='_xmlElementContent'/>
-        </word>
-        <word name='MUST'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlTextReaderNormalization'/>
-        </word>
-        <word name='Makes'>
-          <ref name='xmlAutomataSetFinalState'/>
-        </word>
-        <word name='Malayalam'>
-          <ref name='xmlUCSIsMalayalam'/>
-        </word>
-        <word name='Maps'>
-          <ref name='xmlChildrenNode'/>
-          <ref name='xmlRootNode'/>
-        </word>
-        <word name='Marks'>
-          <ref name='XML_SCHEMAS_ATTRGROUP_MARKED'/>
-          <ref name='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE'/>
-          <ref name='XML_SCHEMAS_TYPE_MARKED'/>
-        </word>
-        <word name='Markup'>
-          <ref name='xmlParseExternalSubset'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='Match'>
-          <ref name='xmlParseElement'/>
-        </word>
-        <word name='MathematicalAlphanumericSymbols'>
-          <ref name='xmlUCSIsMathematicalAlphanumericSymbols'/>
-        </word>
-        <word name='MathematicalOperators'>
-          <ref name='xmlUCSIsMathematicalOperators'/>
-        </word>
-        <word name='Max'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlValidCtxt'/>
-        </word>
-        <word name='Maximum'>
-          <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-          <ref name='XML_MAX_LOOKUP_LIMIT'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-        </word>
-        <word name='May'>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='Memory'>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocDumpMemoryEnc'/>
-        </word>
-        <word name='Merge'>
-          <ref name='xmlTextMerge'/>
-        </word>
-        <word name='Merges'>
-          <ref name='xmlXPathNodeSetMerge'/>
-          <ref name='xmlXPtrLocationSetMerge'/>
-        </word>
-        <word name='Meta'>
-          <ref name='htmlGetMetaEncoding'/>
-          <ref name='htmlSetMetaEncoding'/>
-        </word>
-        <word name='Method'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='Mime-Type'>
-          <ref name='xmlNanoHTTPMimeType'/>
-        </word>
-        <word name='Minimal'>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='Misc'>
-          <ref name='xmlParseDocument'/>
-          <ref name='xmlParseMisc'/>
-        </word>
-        <word name='MiscellaneousMathematicalSymbols-A'>
-          <ref name='xmlUCSIsMiscellaneousMathematicalSymbolsA'/>
-        </word>
-        <word name='MiscellaneousMathematicalSymbols-B'>
-          <ref name='xmlUCSIsMiscellaneousMathematicalSymbolsB'/>
-        </word>
-        <word name='MiscellaneousSymbols'>
-          <ref name='xmlUCSIsMiscellaneousSymbols'/>
-        </word>
-        <word name='MiscellaneousSymbolsandArrows'>
-          <ref name='xmlUCSIsMiscellaneousSymbolsandArrows'/>
-        </word>
-        <word name='MiscellaneousTechnical'>
-          <ref name='xmlUCSIsMiscellaneousTechnical'/>
-        </word>
-        <word name='Mixed'>
-          <ref name='xmlIsMixedElement'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-        </word>
-        <word name='Mongolian'>
-          <ref name='xmlUCSIsMongolian'/>
-        </word>
-        <word name='More'>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='Move'>
-          <ref name='xmlListCopy'/>
-        </word>
-        <word name='Moves'>
-          <ref name='xmlTextReaderMoveToAttribute'/>
-          <ref name='xmlTextReaderMoveToAttributeNo'/>
-          <ref name='xmlTextReaderMoveToAttributeNs'/>
-          <ref name='xmlTextReaderMoveToElement'/>
-          <ref name='xmlTextReaderMoveToFirstAttribute'/>
-          <ref name='xmlTextReaderMoveToNextAttribute'/>
-          <ref name='xmlTextReaderRead'/>
-        </word>
-        <word name='MusicalSymbols'>
-          <ref name='xmlUCSIsMusicalSymbols'/>
-        </word>
-        <word name='Myanmar'>
-          <ref name='xmlUCSIsMyanmar'/>
-        </word>
-      </letter>
-      <letter name='N'>
-        <word name='NAME'>
-          <ref name='xmlParseDTD'/>
-          <ref name='xmlSAXParseDTD'/>
-        </word>
-        <word name='NCName'>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlNamespaceParseNSDef'/>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlSplitQName'/>
-          <ref name='xmlSplitQName2'/>
-          <ref name='xmlValidateNCName'/>
-          <ref name='xmlXPathParseNCName'/>
-        </word>
-        <word name='NCNameChar'>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlXPathParseNCName'/>
-        </word>
-        <word name='NDATA'>
-          <ref name='xmlParseEntityDecl'/>
-        </word>
-        <word name='NDataDecl'>
-          <ref name='xmlParseEntityDecl'/>
-        </word>
-        <word name='NDataDecl?'>
-          <ref name='xmlParseEntityDecl'/>
-        </word>
-        <word name='NMTOKEN'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlValidateAttributeValue'/>
-        </word>
-        <word name='NMTOKENS'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlValidateAttributeValue'/>
-        </word>
-        <word name='NMToken'>
-          <ref name='xmlValidateNMToken'/>
-        </word>
-        <word name='NOT'>
-          <ref name='xmlAddChild'/>
-        </word>
-        <word name='NOTATION'>
-          <ref name='xmlParseEnumeratedType'/>
-          <ref name='xmlParseNotationType'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaNewNOTATIONValue'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='NOTE'>
-          <ref name='htmlReadFd'/>
-          <ref name='xmlBufShrink'/>
-          <ref name='xmlCtxtReadFd'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlParseNotationDecl'/>
-          <ref name='xmlReadFd'/>
-          <ref name='xmlReaderForFd'/>
-          <ref name='xmlReaderNewFd'/>
-        </word>
-        <word name='NOTE:'>
-          <ref name='_xmlParserInput'/>
-          <ref name='htmlSetMetaEncoding'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-          <ref name='xmlGetProp'/>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlNewTextWriter'/>
-          <ref name='xmlNewTextWriterPushParser'/>
-          <ref name='xmlNodeAddContent'/>
-          <ref name='xmlNodeAddContentLen'/>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-          <ref name='xmlTextReaderCurrentDoc'/>
-        </word>
-        <word name='NRK'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='NSDef'>
-          <ref name='xmlNamespaceParseNSDef'/>
-        </word>
-        <word name='NaN'>
-          <ref name='xmlXPathBooleanFunction'/>
-          <ref name='xmlXPathIsNaN'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='NameChar'>
-          <ref name='xmlParseName'/>
-          <ref name='xmlParseNmtoken'/>
-          <ref name='xmlScanName'/>
-          <ref name='xmlXPathParseName'/>
-        </word>
-        <word name='Names'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseName'/>
-          <ref name='xmlScanName'/>
-          <ref name='xmlValidateAttributeValue'/>
-          <ref name='xmlValidateNamesValue'/>
-        </word>
-        <word name='Namespace'>
-          <ref name='XML_XML_NAMESPACE'/>
-          <ref name='_xmlElementContent'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlNewGlobalNs'/>
-          <ref name='xmlNewNs'/>
-          <ref name='xmlXPathNodeSetFreeNs'/>
-          <ref name='xmlXPtrBuildNodeList'/>
-        </word>
-        <word name='Needed'>
-          <ref name='xmlScanName'/>
-        </word>
-        <word name='Nesting'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='New'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='Nmtoken'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseEnumerationType'/>
-          <ref name='xmlParseNmtoken'/>
-          <ref name='xmlValidateAttributeValue'/>
-          <ref name='xmlValidateNmtokenValue'/>
-        </word>
-        <word name='Nmtokens'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseNmtoken'/>
-          <ref name='xmlValidateAttributeValue'/>
-          <ref name='xmlValidateNmtokensValue'/>
-        </word>
-        <word name='Node'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlValidCtxt'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlXPathNewNodeSet'/>
-        </word>
-        <word name='NodeInfo'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='NodeList'>
-          <ref name='xmlXPathNodeSetGetLength'/>
-          <ref name='xmlXPathNodeSetItem'/>
-        </word>
-        <word name='NodePtr'>
-          <ref name='xmlXPathNewNodeSet'/>
-          <ref name='xmlXPathNewValueTree'/>
-          <ref name='xmlXPathWrapNodeSet'/>
-          <ref name='xmlXPtrNewLocationSetNodes'/>
-        </word>
-        <word name='NodeSet'>
-          <ref name='xmlXPathFreeNodeSet'/>
-          <ref name='xmlXPathNewNodeSet'/>
-          <ref name='xmlXPathNewNodeSetList'/>
-          <ref name='xmlXPathNodeSetAdd'/>
-          <ref name='xmlXPathNodeSetAddNs'/>
-          <ref name='xmlXPathNodeSetAddUnique'/>
-          <ref name='xmlXPathNodeSetDel'/>
-          <ref name='xmlXPathNodeSetMerge'/>
-          <ref name='xmlXPathNodeSetRemove'/>
-        </word>
-        <word name='NodeSetList'>
-          <ref name='xmlXPathFreeNodeSetList'/>
-        </word>
-        <word name='NodeType'>
-          <ref name='xmlXPathIsNodeType'/>
-        </word>
-        <word name='Nodeset'>
-          <ref name='xmlXPathNewNodeSetList'/>
-          <ref name='xmlXPathWrapNodeSet'/>
-        </word>
-        <word name='Non-static'>
-          <ref name='xmlIOHTTPOpenW'/>
-        </word>
-        <word name='Normalization'>
-          <ref name='xmlNormalizeURIPath'/>
-        </word>
-        <word name='Normalization:'>
-          <ref name='xmlParseAttValue'/>
-        </word>
-        <word name='Not'>
-          <ref name='_xmlSchemaElement'/>
-        </word>
-        <word name='Notation'>
-          <ref name='_xmlNotation'/>
-          <ref name='xmlParseEntityDecl'/>
-          <ref name='xmlParseNotationType'/>
-          <ref name='xmlValidateNotationUse'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneNamespace'/>
-        </word>
-        <word name='NotationDecl'>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParseNotationDecl'/>
-        </word>
-        <word name='NotationType'>
-          <ref name='xmlParseEnumeratedType'/>
-          <ref name='xmlParseNotationType'/>
-        </word>
-        <word name='Note:'>
-          <ref name='fatalErrorSAXFunc'/>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlGetDtdEntity'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseNotationType'/>
-          <ref name='xmlRelaxNGNewDocParserCtxt'/>
-          <ref name='xmlUTF8Strsub'/>
-        </word>
-        <word name='Number'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlXPathStringEvalNumber'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='NumberForms'>
-          <ref name='xmlUCSIsNumberForms'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk5'>
-      <letter name='O'>
-        <word name='OBSOLETE:'>
-          <ref name='xmlHandleEntity'/>
-        </word>
-        <word name='ONCE'>
-          <ref name='_xmlElementContent'/>
-        </word>
-        <word name='OPT'>
-          <ref name='_xmlElementContent'/>
-        </word>
-        <word name='OUT'>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-        </word>
-        <word name='OUT:'>
-          <ref name='htmlDocDumpMemory'/>
-          <ref name='htmlDocDumpMemoryFormat'/>
-          <ref name='xmlDocDumpFormatMemory'/>
-          <ref name='xmlDocDumpMemory'/>
-        </word>
-        <word name='Obsolete'>
-          <ref name='XML_SCHEMAS_ANYATTR_LAX'/>
-          <ref name='XML_SCHEMAS_ANYATTR_SKIP'/>
-          <ref name='XML_SCHEMAS_ANYATTR_STRICT'/>
-          <ref name='XML_SCHEMAS_ELEM_NSDEFAULT'/>
-          <ref name='_xmlSchema'/>
-          <ref name='_xmlSchemaElement'/>
-          <ref name='_xmlSchemaFacet'/>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xmlXPtrRangeToFunction'/>
-        </word>
-        <word name='Obtain'>
-          <ref name='xmlTextReaderLocatorBaseURI'/>
-          <ref name='xmlTextReaderLocatorLineNumber'/>
-        </word>
-        <word name='Ogham'>
-          <ref name='xmlUCSIsOgham'/>
-        </word>
-        <word name='OldItalic'>
-          <ref name='xmlUCSIsOldItalic'/>
-        </word>
-        <word name='One'>
-          <ref name='INPUT_CHUNK'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlValidateElementDecl'/>
-        </word>
-        <word name='Open'>
-          <ref name='xmlIOHTTPOpenW'/>
-        </word>
-        <word name='Opens'>
-          <ref name='xmlModuleOpen'/>
-        </word>
-        <word name='OpticalCharacterRecognition'>
-          <ref name='xmlUCSIsOpticalCharacterRecognition'/>
-        </word>
-        <word name='Optional'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='Oriya'>
-          <ref name='xmlUCSIsOriya'/>
-        </word>
-        <word name='Osmanya'>
-          <ref name='xmlUCSIsOsmanya'/>
-        </word>
-        <word name='Other'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='Otherwise'>
-          <ref name='xmlSplitQName2'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-        </word>
-        <word name='Output'>
-          <ref name='xmlOutputCloseCallback'/>
-          <ref name='xmlOutputMatchCallback'/>
-          <ref name='xmlOutputOpenCallback'/>
-          <ref name='xmlOutputWriteCallback'/>
-        </word>
-        <word name='OutputBufferCreateFilenameFunc'>
-          <ref name='xmlOutputBufferCreateFilenameDefault'/>
-        </word>
-        <word name='Override'>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMemSetup'/>
-        </word>
-      </letter>
-      <letter name='P'>
-        <word name='P32'>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-        </word>
-        <word name='PCDATA'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='_xmlElementContent'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-        </word>
-        <word name='PEDecl'>
-          <ref name='xmlParseEntityDecl'/>
-        </word>
-        <word name='PEDef'>
-          <ref name='xmlParseEntityDecl'/>
-        </word>
-        <word name='PEReference'>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlParseDocTypeDecl'/>
-          <ref name='xmlParseEntityValue'/>
-          <ref name='xmlParseExternalSubset'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-        </word>
-        <word name='PEs'>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='PITarget'>
-          <ref name='xmlParsePI'/>
-          <ref name='xmlParsePITarget'/>
-        </word>
-        <word name='PIs'>
-          <ref name='xmlDocGetRootElement'/>
-          <ref name='xmlDocSetRootElement'/>
-        </word>
-        <word name='PLUS'>
-          <ref name='_xmlElementContent'/>
-        </word>
-        <word name='POST'>
-          <ref name='xmlIOHTTPOpenW'/>
-          <ref name='xmlRegisterHTTPPostCallbacks'/>
-        </word>
-        <word name='PSVI'>
-          <ref name='_xmlAttr'/>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlNode'/>
-        </word>
-        <word name='PUBLIC'>
-          <ref name='_xmlDtd'/>
-          <ref name='_xmlEntity'/>
-          <ref name='xmlCreateEntityParserCtxt'/>
-          <ref name='xmlCreateIntSubset'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlParseNotationDecl'/>
-        </word>
-        <word name='PUT'>
-          <ref name='xmlRegisterHTTPPostCallbacks'/>
-        </word>
-        <word name='Parameter'>
-          <ref name='xmlParserHandlePEReference'/>
-        </word>
-        <word name='Parameter-entity'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-        </word>
-        <word name='Parse'>
-          <ref name='htmlParseChunk'/>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseCDSect'/>
-          <ref name='xmlParseChunk'/>
-          <ref name='xmlParseContent'/>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlParseInNodeContext'/>
-          <ref name='xmlParseQuotedString'/>
-          <ref name='xmlParseURI'/>
-          <ref name='xmlParseURIRaw'/>
-          <ref name='xmlParseURIReference'/>
-          <ref name='xmlStringGetNodeList'/>
-          <ref name='xmlStringLenGetNodeList'/>
-          <ref name='xmlXPathEvalExpr'/>
-        </word>
-        <word name='Parsed'>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParserHandleReference'/>
-        </word>
-        <word name='ParserInputBufferCreateFilenameFunc'>
-          <ref name='xmlParserInputBufferCreateFilenameDefault'/>
-        </word>
-        <word name='Parses'>
-          <ref name='xmlRegexpCompile'/>
-          <ref name='xmlTextReaderReadAttributeValue'/>
-        </word>
-        <word name='Parsing'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='Part'>
-          <ref name='xmlRegexpCompile'/>
-          <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-        </word>
-        <word name='Path'>
-          <ref name='xmlGetNodePath'/>
-          <ref name='xmlXPathEval'/>
-          <ref name='xmlXPathNodeEval'/>
-          <ref name='xmlXPtrEval'/>
-        </word>
-        <word name='People'>
-          <ref name='xmlEncodeEntities'/>
-        </word>
-        <word name='PhoneticExtensions'>
-          <ref name='xmlUCSIsPhoneticExtensions'/>
-        </word>
-        <word name='Please'>
-          <ref name='xmlNormalizeWindowsPath'/>
-        </word>
-        <word name='Plug'>
-          <ref name='xmlSchemaSAXPlug'/>
-        </word>
-        <word name='Pointer'>
-          <ref name='xmlCheckUTF8'/>
-        </word>
-        <word name='Points'>
-          <ref name='xmlXPtrNewRangePoints'/>
-        </word>
-        <word name='Pop'>
-          <ref name='_xmlXPathParserContext'/>
-          <ref name='xmlRelaxNGValidatePopElement'/>
-          <ref name='xmlValidatePopElement'/>
-        </word>
-        <word name='Pops'>
-          <ref name='inputPop'/>
-          <ref name='namePop'/>
-          <ref name='nodePop'/>
-          <ref name='valuePop'/>
-          <ref name='xmlXPathPopBoolean'/>
-          <ref name='xmlXPathPopExternal'/>
-          <ref name='xmlXPathPopNodeSet'/>
-          <ref name='xmlXPathPopNumber'/>
-          <ref name='xmlXPathPopString'/>
-        </word>
-        <word name='Position'>
-          <ref name='_xmlParserNodeInfo'/>
-        </word>
-        <word name='Possibility'>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='Precompiled'>
-          <ref name='xmlXPathCompiledEval'/>
-        </word>
-        <word name='Predicate'>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-          <ref name='xmlXPtrEvalRangePredicate'/>
-        </word>
-        <word name='PredicateExpr'>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-          <ref name='xmlXPtrEvalRangePredicate'/>
-        </word>
-        <word name='Prefix'>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlSplitQName'/>
-          <ref name='xmlSplitQName2'/>
-          <ref name='xmlTextReaderConstName'/>
-          <ref name='xmlTextReaderName'/>
-        </word>
-        <word name='PrefixDef'>
-          <ref name='xmlNamespaceParseNSDef'/>
-        </word>
-        <word name='Print'>
-          <ref name='xmlRegexpPrint'/>
-          <ref name='xmlShellPrintNode'/>
-          <ref name='xmlShellPrintXPathError'/>
-        </word>
-        <word name='Prints'>
-          <ref name='xmlPrintURI'/>
-          <ref name='xmlShellPrintXPathResult'/>
-        </word>
-        <word name='PrivateUse'>
-          <ref name='xmlUCSIsPrivateUse'/>
-        </word>
-        <word name='PrivateUseArea'>
-          <ref name='xmlUCSIsPrivateUseArea'/>
-        </word>
-        <word name='Processing'>
-          <ref name='XML_CATALOG_PI'/>
-          <ref name='xmlParsePI'/>
-        </word>
-        <word name='Productions'>
-          <ref name='xmlParseExternalID'/>
-        </word>
-        <word name='Proper'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='Prototype'>
-          <ref name='xmlXPathFuncLookupFunc'/>
-          <ref name='xmlXPathVariableLookupFunc'/>
-        </word>
-        <word name='Provide'>
-          <ref name='getColumnNumber'/>
-          <ref name='getLineNumber'/>
-          <ref name='xmlSAX2GetColumnNumber'/>
-          <ref name='xmlSAX2GetLineNumber'/>
-          <ref name='xmlTextReaderGetParserColumnNumber'/>
-          <ref name='xmlTextReaderGetParserLineNumber'/>
-        </word>
-        <word name='Provides'>
-          <ref name='getPublicId'/>
-          <ref name='getSystemId'/>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlMemBlocks'/>
-          <ref name='xmlMemGet'/>
-          <ref name='xmlMemUsed'/>
-          <ref name='xmlNanoHTTPContentLength'/>
-          <ref name='xmlNanoHTTPEncoding'/>
-          <ref name='xmlNanoHTTPMimeType'/>
-          <ref name='xmlNanoHTTPRedir'/>
-          <ref name='xmlSAX2GetPublicId'/>
-          <ref name='xmlSAX2GetSystemId'/>
-          <ref name='xmlTextReaderAttributeCount'/>
-          <ref name='xmlTextReaderConstValue'/>
-          <ref name='xmlTextReaderGetAttribute'/>
-          <ref name='xmlTextReaderGetAttributeNo'/>
-          <ref name='xmlTextReaderGetAttributeNs'/>
-          <ref name='xmlTextReaderValue'/>
-        </word>
-        <word name='Proxy'>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-        </word>
-        <word name='Proxy-Authenticate'>
-          <ref name='xmlNanoHTTPAuthHeader'/>
-        </word>
-        <word name='PubidChar'>
-          <ref name='IS_PUBIDCHAR'/>
-          <ref name='xmlParsePubidLiteral'/>
-        </word>
-        <word name='PubidLiteral'>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlParseNotationDecl'/>
-          <ref name='xmlParsePubidLiteral'/>
-        </word>
-        <word name='Public'>
-          <ref name='_xmlNotation'/>
-          <ref name='xmlExternalEntityLoader'/>
-          <ref name='xmlLoadExternalEntity'/>
-          <ref name='xmlParseExternalID'/>
-        </word>
-        <word name='PublicID'>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlParseNotationDecl'/>
-        </word>
-        <word name='Push'>
-          <ref name='xmlParserInputBufferPush'/>
-          <ref name='xmlRegExecPushString'/>
-          <ref name='xmlRegExecPushString2'/>
-          <ref name='xmlRelaxNGValidatePushElement'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-          <ref name='xmlValidatePushElement'/>
-        </word>
-        <word name='Pushes'>
-          <ref name='inputPush'/>
-          <ref name='namePush'/>
-          <ref name='nodePush'/>
-          <ref name='valuePush'/>
-          <ref name='xmlXPathReturnBoolean'/>
-          <ref name='xmlXPathReturnEmptyNodeSet'/>
-          <ref name='xmlXPathReturnEmptyString'/>
-          <ref name='xmlXPathReturnExternal'/>
-          <ref name='xmlXPathReturnFalse'/>
-          <ref name='xmlXPathReturnNodeSet'/>
-          <ref name='xmlXPathReturnNumber'/>
-          <ref name='xmlXPathReturnString'/>
-          <ref name='xmlXPathReturnTrue'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk6'>
-      <letter name='Q'>
-        <word name='QName'>
-          <ref name='xmlBuildQName'/>
-          <ref name='xmlDictQLookup'/>
-          <ref name='xmlHashQLookup'/>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseEndTag'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaNewQNameValue'/>
-          <ref name='xmlSetProp'/>
-          <ref name='xmlSplitQName'/>
-          <ref name='xmlSplitQName2'/>
-          <ref name='xmlSplitQName3'/>
-          <ref name='xmlStrQEqual'/>
-          <ref name='xmlValidateQName'/>
-        </word>
-        <word name='QNames'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlHashQLookup2'/>
-        </word>
-        <word name='QUIT'>
-          <ref name='xmlNanoFTPQuit'/>
-        </word>
-        <word name='Qualified'>
-          <ref name='xmlSplitQName3'/>
-        </word>
-        <word name='Query'>
-          <ref name='xmlDictSize'/>
-          <ref name='xmlHashSize'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-        </word>
-      </letter>
-      <letter name='R'>
-        <word name='REC'>
-          <ref name='IS_BASECHAR'/>
-          <ref name='IS_COMBINING'/>
-          <ref name='IS_DIGIT'/>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='REC-xml'>
-          <ref name='xmlGetCharEncodingName'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-        </word>
-        <word name='REFs'>
-          <ref name='XML_DETECT_IDS'/>
-          <ref name='XML_SKIP_IDS'/>
-        </word>
-        <word name='REQUIRED'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='RFC'>
-          <ref name='xmlBuildURI'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlNormalizeURIPath'/>
-          <ref name='xmlParseURI'/>
-          <ref name='xmlParseURIReference'/>
-        </word>
-        <word name='RFC2396'>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='Raises'>
-          <ref name='xmlXPathSetArityError'/>
-          <ref name='xmlXPathSetError'/>
-          <ref name='xmlXPathSetTypeError'/>
-        </word>
-        <word name='Read'>
-          <ref name='xmlBufGetNodeContent'/>
-          <ref name='xmlFileRead'/>
-          <ref name='xmlGetFeature'/>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlIOFTPRead'/>
-          <ref name='xmlIOHTTPRead'/>
-          <ref name='xmlNodeBufGetContent'/>
-          <ref name='xmlNodeGetContent'/>
-          <ref name='xmlTextReaderConstValue'/>
-          <ref name='xmlTextReaderGetParserProp'/>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderRelaxNGValidate'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-          <ref name='xmlTextReaderSetSchema'/>
-        </word>
-        <word name='Reader'>
-          <ref name='xmlTextReaderPreserve'/>
-          <ref name='xmlTextReaderPreservePattern'/>
-        </word>
-        <word name='Readers'>
-          <ref name='xmlTextReaderNextSibling'/>
-        </word>
-        <word name='Reads'>
-          <ref name='xmlTextReaderCurrentNode'/>
-          <ref name='xmlTextReaderExpand'/>
-          <ref name='xmlTextReaderReadInnerXml'/>
-          <ref name='xmlTextReaderReadOuterXml'/>
-          <ref name='xmlTextReaderReadString'/>
-        </word>
-        <word name='Rec'>
-          <ref name='xmlValidateDocument'/>
-          <ref name='xmlValidateDocumentFinal'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='Receive'>
-          <ref name='setDocumentLocator'/>
-          <ref name='setDocumentLocatorSAXFunc'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlSAX2SetDocumentLocator'/>
-        </word>
-        <word name='Receiving'>
-          <ref name='charactersSAXFunc'/>
-          <ref name='ignorableWhitespaceSAXFunc'/>
-        </word>
-        <word name='Recurse'>
-          <ref name='xmlSearchNsByHref'/>
-        </word>
-        <word name='Recursion'>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-        </word>
-        <word name='Ref'>
-          <ref name='_xmlRef'/>
-          <ref name='xmlAddRef'/>
-          <ref name='xmlFreeRefTable'/>
-          <ref name='xmlIsRef'/>
-          <ref name='xmlRemoveRef'/>
-        </word>
-        <word name='Reference'>
-          <ref name='htmlParseCharRef'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseCharRef'/>
-          <ref name='xmlParseContent'/>
-          <ref name='xmlParseEntityValue'/>
-          <ref name='xmlParseInNodeContext'/>
-          <ref name='xmlParseReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-        </word>
-        <word name='Reference:'>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-        <word name='References'>
-          <ref name='xmlBuildURI'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlParseAttribute'/>
-        </word>
-        <word name='Reflects'>
-          <ref name='XML_SCHEMAS_QUALIF_ATTR'/>
-          <ref name='XML_SCHEMAS_QUALIF_ELEM'/>
-        </word>
-        <word name='Refresh'>
-          <ref name='xmlParserInputBufferRead'/>
-        </word>
-        <word name='Reg'>
-          <ref name='xmlAutomataCompile'/>
-        </word>
-        <word name='Register'>
-          <ref name='xmlAddAttributeDecl'/>
-          <ref name='xmlAddDocEntity'/>
-          <ref name='xmlAddDtdEntity'/>
-          <ref name='xmlAddElementDecl'/>
-          <ref name='xmlAddID'/>
-          <ref name='xmlAddNotationDecl'/>
-          <ref name='xmlAddRef'/>
-          <ref name='xmlRegisterCharEncodingHandler'/>
-          <ref name='xmlRegisterInputCallbacks'/>
-          <ref name='xmlRegisterOutputCallbacks'/>
-          <ref name='xmlTextReaderSetErrorHandler'/>
-          <ref name='xmlTextReaderSetStructuredErrorHandler'/>
-          <ref name='xmlXPathRegisterFunc'/>
-          <ref name='xmlXPathRegisterFuncNS'/>
-          <ref name='xmlXPathRegisterNs'/>
-          <ref name='xmlXPathRegisterVariable'/>
-          <ref name='xmlXPathRegisterVariableNS'/>
-        </word>
-        <word name='RegisterNodeFunc'>
-          <ref name='xmlRegisterNodeDefault'/>
-        </word>
-        <word name='Registers'>
-          <ref name='xmlAddEncodingAlias'/>
-          <ref name='xmlDeregisterNodeDefault'/>
-          <ref name='xmlOutputBufferCreateFilenameDefault'/>
-          <ref name='xmlParserInputBufferCreateFilenameDefault'/>
-          <ref name='xmlRegisterDefaultInputCallbacks'/>
-          <ref name='xmlRegisterDefaultOutputCallbacks'/>
-          <ref name='xmlRegisterNodeDefault'/>
-          <ref name='xmlXPathRegisterAllFunctions'/>
-          <ref name='xmlXPathRegisterFuncLookup'/>
-        </word>
-        <word name='Relative'>
-          <ref name='xmlBuildURI'/>
-        </word>
-        <word name='Relax-NG'>
-          <ref name='xmlRelaxNGGetParserErrors'/>
-          <ref name='xmlRelaxNGGetValidErrors'/>
-          <ref name='xmlRelaxNGParse'/>
-          <ref name='xmlRelaxNGSetParserErrors'/>
-          <ref name='xmlRelaxNGSetParserStructuredErrors'/>
-          <ref name='xmlRelaxNGSetValidErrors'/>
-          <ref name='xmlRelaxNGSetValidStructuredErrors'/>
-          <ref name='xmlRelaxNGValidateDoc'/>
-          <ref name='xmlRelaxNGValidityErrorFunc'/>
-          <ref name='xmlRelaxNGValidityWarningFunc'/>
-        </word>
-        <word name='RelaxNG'>
-          <ref name='_xmlSchemaElement'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlRelaxNGDump'/>
-          <ref name='xmlRelaxNGDumpTree'/>
-          <ref name='xmlRelaxNGFree'/>
-          <ref name='xmlRelaxNGNewDocParserCtxt'/>
-          <ref name='xmlRelaxNGParse'/>
-          <ref name='xmlRelaxNGValidatePopElement'/>
-          <ref name='xmlRelaxNGValidatePushCData'/>
-          <ref name='xmlRelaxNGValidatePushElement'/>
-          <ref name='xmlRelaxParserSetFlag'/>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderRelaxNGValidate'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-        </word>
-        <word name='RelaxNGs'>
-          <ref name='xmlRelaxNGNewDocParserCtxt'/>
-          <ref name='xmlRelaxNGNewMemParserCtxt'/>
-          <ref name='xmlRelaxNGNewParserCtxt'/>
-          <ref name='xmlRelaxNGNewValidCtxt'/>
-        </word>
-        <word name='Remove'>
-          <ref name='xmlACatalogRemove'/>
-          <ref name='xmlBufShrink'/>
-          <ref name='xmlBufferDetach'/>
-          <ref name='xmlBufferShrink'/>
-          <ref name='xmlCatalogRemove'/>
-          <ref name='xmlListClear'/>
-          <ref name='xmlListRemoveAll'/>
-          <ref name='xmlListRemoveFirst'/>
-          <ref name='xmlListRemoveLast'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlPopOutputCallbacks'/>
-          <ref name='xmlRemoveID'/>
-          <ref name='xmlRemoveRef'/>
-          <ref name='xmlUnsetNsProp'/>
-          <ref name='xmlUnsetProp'/>
-        </word>
-        <word name='Removes'>
-          <ref name='xmlListPopBack'/>
-          <ref name='xmlListPopFront'/>
-          <ref name='xmlSchemaCollapseString'/>
-          <ref name='xmlXPathNodeSetDel'/>
-          <ref name='xmlXPathNodeSetRemove'/>
-          <ref name='xmlXPtrLocationSetDel'/>
-          <ref name='xmlXPtrLocationSetRemove'/>
-        </word>
-        <word name='Replace'>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-        </word>
-        <word name='Replaces'>
-          <ref name='xmlSchemaWhiteSpaceReplace'/>
-        </word>
-        <word name='Required'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='htmlAttrAllowed'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlValidateOneElement'/>
-        </word>
-        <word name='Reset'>
-          <ref name='htmlCtxtReset'/>
-          <ref name='xmlCtxtReset'/>
-          <ref name='xmlCtxtResetPush'/>
-        </word>
-        <word name='Resize'>
-          <ref name='xmlBufferResize'/>
-        </word>
-        <word name='Resolves'>
-          <ref name='xmlTextReaderLookupNamespace'/>
-        </word>
-        <word name='Resolving'>
-          <ref name='xmlBuildURI'/>
-        </word>
-        <word name='Resource'>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='Retrieve'>
-          <ref name='xmlTextReaderGetErrorHandler'/>
-          <ref name='xmlTextReaderIsValid'/>
-        </word>
-        <word name='Return'>
-          <ref name='CHECK_TYPE0'/>
-        </word>
-        <word name='Returns'>
-          <ref name='htmlDefaultSubelement'/>
-          <ref name='htmlElementAllowedHereDesc'/>
-          <ref name='htmlRequiredAttrs'/>
-          <ref name='xmlGetDocEntity'/>
-          <ref name='xmlGetDtdEntity'/>
-          <ref name='xmlGetParameterEntity'/>
-          <ref name='xmlHasFeature'/>
-          <ref name='xmlLinkGetData'/>
-          <ref name='xmlXPathCheckError'/>
-          <ref name='xmlXPathGetContextNode'/>
-          <ref name='xmlXPathGetDocument'/>
-          <ref name='xmlXPathGetError'/>
-          <ref name='xmlXPathNodeSetGetLength'/>
-          <ref name='xmlXPathNodeSetIsEmpty'/>
-          <ref name='xmlXPathNodeSetItem'/>
-          <ref name='xmlXPathStackIsExternal'/>
-          <ref name='xmlXPathStackIsNodeSet'/>
-        </word>
-        <word name='Returns:'>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-        </word>
-        <word name='Reverse'>
-          <ref name='xmlListReverse'/>
-        </word>
-        <word name='Root'>
-          <ref name='xmlParseDocTypeDecl'/>
-          <ref name='xmlValidateRoot'/>
-        </word>
-        <word name='Runic'>
-          <ref name='xmlUCSIsRunic'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk7'>
-      <letter name='S'>
-        <word name='SAX1'>
-          <ref name='LIBXML_SAX1_ENABLED'/>
-        </word>
-        <word name='SAX2'>
-          <ref name='XML_SAX2_MAGIC'/>
-          <ref name='endElementNsSAX2Func'/>
-          <ref name='inithtmlDefaultSAXHandler'/>
-          <ref name='initxmlDefaultSAXHandler'/>
-          <ref name='startElementNsSAX2Func'/>
-          <ref name='xmlDefaultSAXHandlerInit'/>
-          <ref name='xmlSAX2EndElementNs'/>
-          <ref name='xmlSAX2InitDefaultSAXHandler'/>
-          <ref name='xmlSAX2InitHtmlDefaultSAXHandler'/>
-          <ref name='xmlSAX2StartElementNs'/>
-          <ref name='xmlSchemaValidateStream'/>
-        </word>
-        <word name='SAX::substituteEntities'>
-          <ref name='xmlSubstituteEntitiesDefault'/>
-        </word>
-        <word name='SDDecl'>
-          <ref name='xmlParseSDDecl'/>
-        </word>
-        <word name='SDDecl?'>
-          <ref name='xmlParseXMLDecl'/>
-        </word>
-        <word name='SEQ'>
-          <ref name='_xmlElementContent'/>
-        </word>
-        <word name='SGML'>
-          <ref name='xmlCatalogConvert'/>
-          <ref name='xmlCatalogIsEmpty'/>
-          <ref name='xmlConvertSGMLCatalog'/>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-          <ref name='xmlNewCatalog'/>
-          <ref name='xmlParseComment'/>
-        </word>
-        <word name='SGMLSOURCE'>
-          <ref name='getPublicId'/>
-          <ref name='xmlSAX2GetPublicId'/>
-        </word>
-        <word name='SITE'>
-          <ref name='xmlNanoFTPProxy'/>
-        </word>
-        <word name='STag'>
-          <ref name='htmlParseElement'/>
-          <ref name='xmlParseElement'/>
-          <ref name='xmlParseStartTag'/>
-        </word>
-        <word name='SYSTEM'>
-          <ref name='_xmlDtd'/>
-          <ref name='_xmlEntity'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='externalSubset'/>
-          <ref name='externalSubsetSAXFunc'/>
-          <ref name='internalSubset'/>
-          <ref name='internalSubsetSAXFunc'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlParseNotationDecl'/>
-          <ref name='xmlSAX2ExternalSubset'/>
-          <ref name='xmlSAX2InternalSubset'/>
-        </word>
-        <word name='Same'>
-          <ref name='IS_PUBIDCHAR_CH'/>
-        </word>
-        <word name='Save'>
-          <ref name='xmlCopyError'/>
-          <ref name='xmlSaveDoc'/>
-          <ref name='xmlSaveTree'/>
-          <ref name='xmlSaveUri'/>
-        </word>
-        <word name='Scan'>
-          <ref name='xmlHashCopy'/>
-          <ref name='xmlHashScan'/>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull'/>
-          <ref name='xmlHashScanFull3'/>
-        </word>
-        <word name='Schema'>
-          <ref name='xmlRelaxNGParse'/>
-          <ref name='xmlSchemaDump'/>
-          <ref name='xmlSchemaFree'/>
-          <ref name='xmlSchemaFreeFacet'/>
-          <ref name='xmlSchemaFreeType'/>
-          <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaParse'/>
-          <ref name='xmlSchematronParse'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-          <ref name='xmlTextReaderSetSchema'/>
-        </word>
-        <word name='Schemas'>
-          <ref name='LIBXML_SCHEMAS_ENABLED'/>
-          <ref name='xmlRegexpCompile'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-          <ref name='xmlSchemaFreeValue'/>
-          <ref name='xmlSchemaGetPredefinedType'/>
-          <ref name='xmlSchemaInitTypes'/>
-          <ref name='xmlSchemaNewDocParserCtxt'/>
-          <ref name='xmlSchemaNewMemParserCtxt'/>
-          <ref name='xmlSchemaNewParserCtxt'/>
-          <ref name='xmlSchemaNewValidCtxt'/>
-        </word>
-        <word name='Schematron'>
-          <ref name='LIBXML_SCHEMATRON_ENABLED'/>
-          <ref name='xmlSchematronFree'/>
-          <ref name='xmlSchematronParse'/>
-          <ref name='xmlSchematronSetValidStructuredErrors'/>
-          <ref name='xmlSchematronValidityErrorFunc'/>
-          <ref name='xmlSchematronValidityWarningFunc'/>
-        </word>
-        <word name='Schematrons'>
-          <ref name='xmlSchematronNewDocParserCtxt'/>
-          <ref name='xmlSchematronNewMemParserCtxt'/>
-          <ref name='xmlSchematronNewParserCtxt'/>
-          <ref name='xmlSchematronNewValidCtxt'/>
-        </word>
-        <word name='Script'>
-          <ref name='htmlIsScriptAttribute'/>
-        </word>
-        <word name='Search'>
-          <ref name='xmlFindCharEncodingHandler'/>
-          <ref name='xmlGetCharEncodingHandler'/>
-          <ref name='xmlGetDtdAttrDesc'/>
-          <ref name='xmlGetDtdElementDesc'/>
-          <ref name='xmlGetDtdNotationDesc'/>
-          <ref name='xmlGetDtdQAttrDesc'/>
-          <ref name='xmlGetDtdQElementDesc'/>
-          <ref name='xmlGetID'/>
-          <ref name='xmlGetLastChild'/>
-          <ref name='xmlGetNoNsProp'/>
-          <ref name='xmlGetNsList'/>
-          <ref name='xmlGetNsProp'/>
-          <ref name='xmlGetProp'/>
-          <ref name='xmlHasNsProp'/>
-          <ref name='xmlHasProp'/>
-          <ref name='xmlIsMixedElement'/>
-          <ref name='xmlListReverseSearch'/>
-          <ref name='xmlListSearch'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlSearchNsByHref'/>
-          <ref name='xmlXPathFunctionLookup'/>
-          <ref name='xmlXPathFunctionLookupNS'/>
-          <ref name='xmlXPathNsLookup'/>
-          <ref name='xmlXPathVariableLookup'/>
-          <ref name='xmlXPathVariableLookupNS'/>
-        </word>
-        <word name='Searches'>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlNodeGetLang'/>
-          <ref name='xmlNodeGetSpacePreserve'/>
-        </word>
-        <word name='Second'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='Section'>
-          <ref name='xmlGetCharEncodingName'/>
-          <ref name='xmlNormalizeURIPath'/>
-        </word>
-        <word name='See'>
-          <ref name='xmlAddChildList'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlLinkGetData'/>
-          <ref name='xmlParseNotationDecl'/>
-          <ref name='xmlReplaceNode'/>
-          <ref name='xmlTextReaderByteConsumed'/>
-        </word>
-        <word name='Semi'>
-          <ref name='xmlRelaxParserSetFlag'/>
-        </word>
-        <word name='Send'>
-          <ref name='xmlNanoFTPQuit'/>
-        </word>
-        <word name='Serialize'>
-          <ref name='xmlAttrSerializeTxtContent'/>
-          <ref name='xmlExpDump'/>
-        </word>
-        <word name='Sets'>
-          <ref name='htmlSetMetaEncoding'/>
-          <ref name='xmlBufferSetAllocationScheme'/>
-          <ref name='xmlSchemaSetValidOptions'/>
-          <ref name='xmlXPathDifference'/>
-          <ref name='xmlXPathDistinct'/>
-          <ref name='xmlXPathDistinctSorted'/>
-          <ref name='xmlXPathHasSameNodes'/>
-          <ref name='xmlXPathIntersection'/>
-          <ref name='xmlXPathLeading'/>
-          <ref name='xmlXPathLeadingSorted'/>
-          <ref name='xmlXPathNodeLeading'/>
-          <ref name='xmlXPathNodeLeadingSorted'/>
-          <ref name='xmlXPathNodeTrailing'/>
-          <ref name='xmlXPathNodeTrailingSorted'/>
-          <ref name='xmlXPathSetContextNode'/>
-          <ref name='xmlXPathTrailing'/>
-          <ref name='xmlXPathTrailingSorted'/>
-        </word>
-        <word name='Setting'>
-          <ref name='xmlSchemaValidateSetLocator'/>
-        </word>
-        <word name='Setup'>
-          <ref name='xmlNanoFTPProxy'/>
-          <ref name='xmlReaderNewDoc'/>
-          <ref name='xmlReaderNewFd'/>
-          <ref name='xmlReaderNewIO'/>
-          <ref name='xmlReaderNewMemory'/>
-          <ref name='xmlReaderNewWalker'/>
-          <ref name='xmlSetupParserForBuffer'/>
-          <ref name='xmlTextReaderSetup'/>
-        </word>
-        <word name='Shavian'>
-          <ref name='xmlUCSIsShavian'/>
-        </word>
-        <word name='Shell'>
-          <ref name='xmlShellReadlineFunc'/>
-        </word>
-        <word name='Should'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMemSetup'/>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-          <ref name='xmlStrEqual'/>
-          <ref name='xmlStringGetNodeList'/>
-          <ref name='xmlStringLenGetNodeList'/>
-        </word>
-        <word name='Show'>
-          <ref name='xmlShellPwd'/>
-        </word>
-        <word name='Signature'>
-          <ref name='xmlC14NIsVisibleCallback'/>
-          <ref name='xmlDeregisterNodeFunc'/>
-          <ref name='xmlFreeFunc'/>
-          <ref name='xmlGenericErrorFunc'/>
-          <ref name='xmlMallocFunc'/>
-          <ref name='xmlOutputBufferCreateFilenameFunc'/>
-          <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-          <ref name='xmlReallocFunc'/>
-          <ref name='xmlRegisterNodeFunc'/>
-          <ref name='xmlRelaxNGValidityErrorFunc'/>
-          <ref name='xmlRelaxNGValidityWarningFunc'/>
-          <ref name='xmlSchemaValidityErrorFunc'/>
-          <ref name='xmlSchemaValidityWarningFunc'/>
-          <ref name='xmlSchematronValidityErrorFunc'/>
-          <ref name='xmlSchematronValidityWarningFunc'/>
-          <ref name='xmlStrdupFunc'/>
-          <ref name='xmlStructuredErrorFunc'/>
-          <ref name='xmlTextReaderErrorFunc'/>
-        </word>
-        <word name='Similarly'>
-          <ref name='xmlParseEntityRef'/>
-        </word>
-        <word name='Simply'>
-          <ref name='xmlCreateURI'/>
-        </word>
-        <word name='Since'>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlStrcat'/>
-          <ref name='xmlStrdup'/>
-          <ref name='xmlTextReaderNormalization'/>
-        </word>
-        <word name='Single'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='Sinhala'>
-          <ref name='xmlUCSIsSinhala'/>
-        </word>
-        <word name='Skip'>
-          <ref name='XML_SCHEMAS_ANYATTR_SKIP'/>
-          <ref name='XML_SCHEMAS_ANY_SKIP'/>
-          <ref name='xmlNextChar'/>
-          <ref name='xmlParseComment'/>
-          <ref name='xmlTextReaderNext'/>
-          <ref name='xmlTextReaderNextSibling'/>
-        </word>
-        <word name='Skips'>
-          <ref name='MOVETO_ENDTAG'/>
-          <ref name='MOVETO_STARTTAG'/>
-          <ref name='SKIP_EOL'/>
-        </word>
-        <word name='SmallFormVariants'>
-          <ref name='xmlUCSIsSmallFormVariants'/>
-        </word>
-        <word name='Some'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='Sort'>
-          <ref name='xmlListSort'/>
-          <ref name='xmlXPathNodeSetSort'/>
-        </word>
-        <word name='SpacingModifierLetters'>
-          <ref name='xmlUCSIsSpacingModifierLetters'/>
-        </word>
-        <word name='Spec'>
-          <ref name='xmlParseStartTag'/>
-        </word>
-        <word name='Special'>
-          <ref name='XML_SAX2_MAGIC'/>
-        </word>
-        <word name='Specials'>
-          <ref name='xmlUCSIsSpecials'/>
-        </word>
-        <word name='Speed'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='Standalone'>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-        </word>
-        <word name='Start'>
-          <ref name='xmlNanoFTPOpen'/>
-          <ref name='xmlTextWriterStartAttribute'/>
-          <ref name='xmlTextWriterStartAttributeNS'/>
-          <ref name='xmlTextWriterStartCDATA'/>
-          <ref name='xmlTextWriterStartComment'/>
-          <ref name='xmlTextWriterStartDTD'/>
-          <ref name='xmlTextWriterStartDTDAttlist'/>
-          <ref name='xmlTextWriterStartDTDElement'/>
-          <ref name='xmlTextWriterStartDTDEntity'/>
-          <ref name='xmlTextWriterStartDocument'/>
-          <ref name='xmlTextWriterStartElement'/>
-          <ref name='xmlTextWriterStartElementNS'/>
-          <ref name='xmlTextWriterStartPI'/>
-        </word>
-        <word name='Stops'>
-          <ref name='xmlParseContent'/>
-        </word>
-        <word name='StringType'>
-          <ref name='xmlParseAttributeType'/>
-        </word>
-        <word name='Strings'>
-          <ref name='xmlXPathStringLengthFunction'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='Subcode'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='Subset'>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='Super'>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-        </word>
-        <word name='SuperscriptsandSubscripts'>
-          <ref name='xmlUCSIsSuperscriptsandSubscripts'/>
-        </word>
-        <word name='SupplementalArrows-A'>
-          <ref name='xmlUCSIsSupplementalArrowsA'/>
-        </word>
-        <word name='SupplementalArrows-B'>
-          <ref name='xmlUCSIsSupplementalArrowsB'/>
-        </word>
-        <word name='SupplementalMathematicalOperators'>
-          <ref name='xmlUCSIsSupplementalMathematicalOperators'/>
-        </word>
-        <word name='SupplementaryPrivateUseArea-A'>
-          <ref name='xmlUCSIsSupplementaryPrivateUseAreaA'/>
-        </word>
-        <word name='SupplementaryPrivateUseArea-B'>
-          <ref name='xmlUCSIsSupplementaryPrivateUseAreaB'/>
-        </word>
-        <word name='Syriac'>
-          <ref name='xmlUCSIsSyriac'/>
-        </word>
-        <word name='System'>
-          <ref name='_xmlNotation'/>
-          <ref name='xmlExternalEntityLoader'/>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-        <word name='SystemLiteral'>
-          <ref name='xmlNamespaceParseNSDef'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlParseNotationDecl'/>
-          <ref name='xmlParseSystemLiteral'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk8'>
-      <letter name='T'>
-        <word name='TEXT'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAddChildList'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-          <ref name='xmlBufGetNodeContent'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlNodeBufGetContent'/>
-          <ref name='xmlNodeGetContent'/>
-        </word>
-        <word name='TEXTs'>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlStringGetNodeList'/>
-          <ref name='xmlStringLenGetNodeList'/>
-        </word>
-        <word name='TODO'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseSDDecl'/>
-        </word>
-        <word name='TODO:'>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-          <ref name='htmlEntityLookup'/>
-          <ref name='htmlEntityValueLookup'/>
-          <ref name='htmlNodeDumpFileFormat'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlEncodeEntities'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlNamespaceParseNSDef'/>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlNewTextWriterMemory'/>
-          <ref name='xmlNewTextWriterPushParser'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlParseQuotedString'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlSaveDoc'/>
-          <ref name='xmlSaveTree'/>
-          <ref name='xmlScanName'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlTextWriterWriteRawLen'/>
-          <ref name='xmlXPathNextAttribute'/>
-        </word>
-        <word name='TRUE'>
-          <ref name='xmlTextWriterStartDTDEntity'/>
-          <ref name='xmlTextWriterWriteDTDEntity'/>
-          <ref name='xmlTextWriterWriteDTDExternalEntity'/>
-          <ref name='xmlTextWriterWriteDTDInternalEntity'/>
-          <ref name='xmlTextWriterWriteFormatDTDInternalEntity'/>
-          <ref name='xmlTextWriterWriteVFormatDTDInternalEntity'/>
-        </word>
-        <word name='Tagalog'>
-          <ref name='xmlUCSIsTagalog'/>
-        </word>
-        <word name='Tagbanwa'>
-          <ref name='xmlUCSIsTagbanwa'/>
-        </word>
-        <word name='Tags'>
-          <ref name='xmlUCSIsTags'/>
-        </word>
-        <word name='TaiLe'>
-          <ref name='xmlUCSIsTaiLe'/>
-        </word>
-        <word name='TaiXuanJingSymbols'>
-          <ref name='xmlUCSIsTaiXuanJingSymbols'/>
-        </word>
-        <word name='Take'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='isolat1ToUTF8'/>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-        </word>
-        <word name='Takes'>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-        </word>
-        <word name='Tamil'>
-          <ref name='xmlUCSIsTamil'/>
-        </word>
-        <word name='Telugu'>
-          <ref name='xmlUCSIsTelugu'/>
-        </word>
-        <word name='Test'>
-          <ref name='xmlPatternMatch'/>
-        </word>
-        <word name='Text'>
-          <ref name='xmlNodeIsText'/>
-          <ref name='xmlTextReaderReadAttributeValue'/>
-          <ref name='xmlTextReaderReadString'/>
-        </word>
-        <word name='TextDecl'>
-          <ref name='xmlParseTextDecl'/>
-        </word>
-        <word name='TextDecl?'>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseEntity'/>
-          <ref name='xmlParseExtParsedEnt'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlSAXParseEntity'/>
-        </word>
-        <word name='Thaana'>
-          <ref name='xmlUCSIsThaana'/>
-        </word>
-        <word name='Thai'>
-          <ref name='xmlUCSIsThai'/>
-        </word>
-        <word name='That'>
-          <ref name='xmlAutomataNewAllTrans'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='Then'>
-          <ref name='xmlValidateOneElement'/>
-        </word>
-        <word name='There'>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='Those'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='Thus:'>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='Tibetan'>
-          <ref name='xmlUCSIsTibetan'/>
-        </word>
-        <word name='Token'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlValidateAttributeValue'/>
-          <ref name='xmlValidateNmtokenValue'/>
-          <ref name='xmlValidateNmtokensValue'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneNamespace'/>
-        </word>
-        <word name='TokenizedType'>
-          <ref name='xmlParseAttributeType'/>
-        </word>
-        <word name='Traversal'>
-          <ref name='xmlXPathNextAncestor'/>
-          <ref name='xmlXPathNextAncestorOrSelf'/>
-          <ref name='xmlXPathNextAttribute'/>
-          <ref name='xmlXPathNextChild'/>
-          <ref name='xmlXPathNextDescendant'/>
-          <ref name='xmlXPathNextDescendantOrSelf'/>
-          <ref name='xmlXPathNextFollowing'/>
-          <ref name='xmlXPathNextFollowingSibling'/>
-          <ref name='xmlXPathNextNamespace'/>
-          <ref name='xmlXPathNextParent'/>
-          <ref name='xmlXPathNextPreceding'/>
-          <ref name='xmlXPathNextPrecedingSibling'/>
-          <ref name='xmlXPathNextSelf'/>
-        </word>
-        <word name='Tree'>
-          <ref name='xmlXPathNewValueTree'/>
-        </word>
-        <word name='Tree:-'>
-          <ref name='xmlParseNamespace'/>
-        </word>
-        <word name='Trickery:'>
-          <ref name='xmlScanName'/>
-        </word>
-        <word name='Tries'>
-          <ref name='xmlNanoFTPConnect'/>
-          <ref name='xmlNanoFTPConnectTo'/>
-          <ref name='xmlNanoFTPCwd'/>
-          <ref name='xmlNanoFTPDele'/>
-        </word>
-        <word name='True'>
-          <ref name='xmlBoolToText'/>
-        </word>
-        <word name='Try'>
-          <ref name='xmlACatalogResolvePublic'/>
-          <ref name='xmlACatalogResolveSystem'/>
-          <ref name='xmlCatalogGetPublic'/>
-          <ref name='xmlCatalogGetSystem'/>
-          <ref name='xmlCatalogResolvePublic'/>
-          <ref name='xmlCatalogResolveSystem'/>
-          <ref name='xmlGetLineNo'/>
-          <ref name='xmlIsXHTML'/>
-          <ref name='xmlNanoFTPGetConnection'/>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateDocument'/>
-          <ref name='xmlValidateDtd'/>
-          <ref name='xmlValidateElement'/>
-          <ref name='xmlValidateElementDecl'/>
-          <ref name='xmlValidateNotationDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlValidateOneNamespace'/>
-          <ref name='xmlValidateRoot'/>
-        </word>
-        <word name='Type'>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseDocTypeDecl'/>
-          <ref name='xmlParseElement'/>
-          <ref name='xmlParseElementDecl'/>
-          <ref name='xmlSchemaFreeType'/>
-          <ref name='xmlValidateElementDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneNamespace'/>
-          <ref name='xmlValidateRoot'/>
-        </word>
-        <word name='Types'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-          <ref name='xmlValidateElementDecl'/>
-        </word>
-      </letter>
-      <letter name='U'>
-        <word name='UCS4'>
-          <ref name='xmlUTF8Charcmp'/>
-        </word>
-        <word name='UNICODE'>
-          <ref name='_htmlEntityDesc'/>
-          <ref name='c'/>
-        </word>
-        <word name='UNIX'>
-          <ref name='xmlShell'/>
-        </word>
-        <word name='UNUSED:'>
-          <ref name='ignorableWhitespace'/>
-          <ref name='ignorableWhitespaceSAXFunc'/>
-          <ref name='xmlSAX2IgnorableWhitespace'/>
-        </word>
-        <word name='URI-reference'>
-          <ref name='xmlParseURI'/>
-          <ref name='xmlParseURIRaw'/>
-          <ref name='xmlParseURIReference'/>
-        </word>
-        <word name='URN'>
-          <ref name='globalNamespace'/>
-          <ref name='namespaceDecl'/>
-        </word>
-        <word name='USER'>
-          <ref name='xmlNanoFTPProxy'/>
-        </word>
-        <word name='UTF16'>
-          <ref name='xmlCharEncOutFunc'/>
-        </word>
-        <word name='UTF4'>
-          <ref name='xmlDetectCharEncoding'/>
-        </word>
-        <word name='UTF8'>
-          <ref name='_xmlBuffer'/>
-          <ref name='p'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlSplitQName'/>
-          <ref name='xmlUTF8Charcmp'/>
-          <ref name='xmlUTF8Size'/>
-          <ref name='xmlUTF8Strlen'/>
-          <ref name='xmlUTF8Strloc'/>
-          <ref name='xmlUTF8Strndup'/>
-          <ref name='xmlUTF8Strpos'/>
-          <ref name='xmlUTF8Strsize'/>
-        </word>
-        <word name='Ugaritic'>
-          <ref name='xmlUCSIsUgaritic'/>
-        </word>
-        <word name='Unescaping'>
-          <ref name='xmlURIUnescapeString'/>
-        </word>
-        <word name='Unicode'>
-          <ref name='IS_CHAR'/>
-          <ref name='LIBXML_UNICODE_ENABLED'/>
-        </word>
-        <word name='UnifiedCanadianAboriginalSyllabics'>
-          <ref name='xmlUCSIsUnifiedCanadianAboriginalSyllabics'/>
-        </word>
-        <word name='Unique'>
-          <ref name='xmlParseElementDecl'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlValidateElementDecl'/>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='Unix'>
-          <ref name='xmlShellList'/>
-        </word>
-        <word name='Unlink'>
-          <ref name='xmlRemoveProp'/>
-          <ref name='xmlReplaceNode'/>
-          <ref name='xmlUnlinkNode'/>
-        </word>
-        <word name='Unlinks'>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='Unplug'>
-          <ref name='xmlSchemaSAXUnplug'/>
-        </word>
-        <word name='Unregisters'>
-          <ref name='xmlCleanupEncodingAliases'/>
-          <ref name='xmlDelEncodingAlias'/>
-        </word>
-        <word name='Update'>
-          <ref name='xmlNanoFTPUpdateURL'/>
-        </word>
-        <word name='Upgrade'>
-          <ref name='xmlKeepBlanksDefault'/>
-        </word>
-        <word name='Used'>
-          <ref name='XML_SCHEMAS_ANY_LAX'/>
-          <ref name='XML_SCHEMAS_ANY_STRICT'/>
-          <ref name='XML_SCHEMAS_ATTR_USE_PROHIBITED'/>
-          <ref name='XML_SKIP_IDS'/>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xmlCatalogGetDefaults'/>
-          <ref name='xmlCatalogSetDebug'/>
-          <ref name='xmlCatalogSetDefaults'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlScanName'/>
-        </word>
-        <word name='User'>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-        </word>
-        <word name='UserCode'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='Uses'>
-          <ref name='xmlNewNode'/>
-          <ref name='xmlURIEscape'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk9'>
-      <letter name='V'>
-        <word name='Valid'>
-          <ref name='xmlValidateOneElement'/>
-        </word>
-        <word name='Validate'>
-          <ref name='XML_SCHEMAS_ANY_LAX'/>
-          <ref name='xmlRelaxNGValidateDoc'/>
-          <ref name='xmlRelaxNGValidateFullElement'/>
-          <ref name='xmlSchemaValidateDoc'/>
-          <ref name='xmlSchemaValidateOneElement'/>
-          <ref name='xmlSchemaValidateStream'/>
-          <ref name='xmlSchematronValidateDoc'/>
-          <ref name='xmlShellValidate'/>
-          <ref name='xmlValidateAttributeValue'/>
-          <ref name='xmlValidateNameValue'/>
-          <ref name='xmlValidateNamesValue'/>
-          <ref name='xmlValidateNmtokenValue'/>
-          <ref name='xmlValidateNmtokensValue'/>
-          <ref name='xmlValidateNotationUse'/>
-        </word>
-        <word name='Validity'>
-          <ref name='xmlParseAttributeType'/>
-        </word>
-        <word name='Value'>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneNamespace'/>
-          <ref name='xmlXPathNewValueTree'/>
-        </word>
-        <word name='Values'>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlParseEnumerationType'/>
-          <ref name='xmlParseNotationType'/>
-          <ref name='xmlValidateAttributeValue'/>
-        </word>
-        <word name='Variable'>
-          <ref name='xmlXPathVariableLookup'/>
-          <ref name='xmlXPathVariableLookupNS'/>
-        </word>
-        <word name='VariationSelectors'>
-          <ref name='xmlUCSIsVariationSelectors'/>
-        </word>
-        <word name='VariationSelectorsSupplement'>
-          <ref name='xmlUCSIsVariationSelectorsSupplement'/>
-        </word>
-        <word name='VersionInfo'>
-          <ref name='xmlParseVersionInfo'/>
-          <ref name='xmlParseXMLDecl'/>
-        </word>
-        <word name='VersionInfo?'>
-          <ref name='xmlParseTextDecl'/>
-        </word>
-        <word name='VersionNum'>
-          <ref name='xmlParseVersionInfo'/>
-          <ref name='xmlParseVersionNum'/>
-        </word>
-      </letter>
-      <letter name='W'>
-        <word name='W3C'>
-          <ref name='xmlChildElementCount'/>
-          <ref name='xmlFirstElementChild'/>
-          <ref name='xmlLastElementChild'/>
-          <ref name='xmlNextElementSibling'/>
-          <ref name='xmlPreviousElementSibling'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-        </word>
-        <word name='WARNING:'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaNewStringValue'/>
-        </word>
-        <word name='WFC:'>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseCharRef'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlParseElement'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-        </word>
-        <word name='WWW-Authenticate'>
-          <ref name='xmlNanoHTTPAuthHeader'/>
-        </word>
-        <word name='WXS'>
-          <ref name='_xmlSchemaElement'/>
-        </word>
-        <word name='Walk'>
-          <ref name='xmlListReverseWalk'/>
-          <ref name='xmlListWalk'/>
-        </word>
-        <word name='Warning'>
-          <ref name='xmlSaveFileTo'/>
-          <ref name='xmlSaveFormatFileTo'/>
-        </word>
-        <word name='Was'>
-          <ref name='_xmlParserInput'/>
-        </word>
-        <word name='Well'>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseEntity'/>
-          <ref name='xmlParseInNodeContext'/>
-          <ref name='xmlRecoverDoc'/>
-          <ref name='xmlRecoverFile'/>
-          <ref name='xmlRecoverMemory'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseEntity'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-        </word>
-        <word name='What'>
-          <ref name='_xmlError'/>
-          <ref name='notationDecl'/>
-          <ref name='notationDeclSAXFunc'/>
-          <ref name='unparsedEntityDecl'/>
-          <ref name='unparsedEntityDeclSAXFunc'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlSAX2NotationDecl'/>
-          <ref name='xmlSAX2UnparsedEntityDecl'/>
-        </word>
-        <word name='When'>
-          <ref name='xmlHandleEntity'/>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='Wherever'>
-          <ref name='xmlCurrentChar'/>
-        </word>
-        <word name='Whitespace'>
-          <ref name='xmlXPathNormalizeFunction'/>
-        </word>
-        <word name='Will'>
-          <ref name='xmlSaveFile'/>
-          <ref name='xmlSaveFormatFile'/>
-        </word>
-        <word name='With'>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseEndTag'/>
-          <ref name='xmlParseStartTag'/>
-        </word>
-        <word name='Workaround'>
-          <ref name='xmlSchemaValidateSetFilename'/>
-        </word>
-        <word name='Working'>
-          <ref name='xmlParseNamespace'/>
-        </word>
-        <word name='Wrap'>
-          <ref name='xmlXPathWrapNodeSet'/>
-          <ref name='xmlXPtrWrapLocationSet'/>
-        </word>
-        <word name='Wrapper'>
-          <ref name='xmlFileOpen'/>
-        </word>
-        <word name='Wraps'>
-          <ref name='xmlXPathWrapCString'/>
-          <ref name='xmlXPathWrapExternal'/>
-          <ref name='xmlXPathWrapString'/>
-        </word>
-        <word name='Writes'>
-          <ref name='xmlTextWriterFullEndElement'/>
-        </word>
-      </letter>
-      <letter name='X'>
-        <word name='XHTML'>
-          <ref name='xmlIsXHTML'/>
-        </word>
-        <word name='XInclude'>
-          <ref name='LIBXML_XINCLUDE_ENABLED'/>
-          <ref name='XINCLUDE_NS'/>
-          <ref name='XINCLUDE_OLD_NS'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlXIncludeFreeContext'/>
-          <ref name='xmlXIncludeNewContext'/>
-          <ref name='xmlXIncludeProcess'/>
-          <ref name='xmlXIncludeProcessFlags'/>
-          <ref name='xmlXIncludeProcessFlagsData'/>
-          <ref name='xmlXIncludeProcessNode'/>
-          <ref name='xmlXIncludeProcessTree'/>
-          <ref name='xmlXIncludeProcessTreeFlags'/>
-          <ref name='xmlXIncludeProcessTreeFlagsData'/>
-          <ref name='xmlXIncludeSetFlags'/>
-        </word>
-        <word name='XInclude?'>
-          <ref name='xmlDOMWrapCloneNode'/>
-        </word>
-        <word name='XLINK_TYPE_NONE'>
-          <ref name='xlinkIsLink'/>
-        </word>
-        <word name='XML-1'>
-          <ref name='xmlDetectCharEncoding'/>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateElementDecl'/>
-          <ref name='xmlValidateNotationDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlValidateOneNamespace'/>
-          <ref name='xmlValidateRoot'/>
-        </word>
-        <word name='XML-Schema'>
-          <ref name='xmlSchemaGetValidErrors'/>
-        </word>
-        <word name='XMLDecl'>
-          <ref name='xmlParseXMLDecl'/>
-        </word>
-        <word name='XMLDecl?'>
-          <ref name='xmlParseDocument'/>
-        </word>
-        <word name='XMLSchema'>
-          <ref name='xmlSchemaGetPredefinedType'/>
-        </word>
-        <word name='XML_ATTRIBUTE_DECL'>
-          <ref name='_xmlAttribute'/>
-        </word>
-        <word name='XML_ATTRIBUTE_ENUMERATION'>
-          <ref name='xmlParseEnumeratedType'/>
-        </word>
-        <word name='XML_ATTRIBUTE_FIXED'>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='XML_ATTRIBUTE_IMPLIED'>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='XML_ATTRIBUTE_NODE'>
-          <ref name='_xmlAttr'/>
-        </word>
-        <word name='XML_ATTRIBUTE_NONE'>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='XML_ATTRIBUTE_NOTATION'>
-          <ref name='xmlParseEnumeratedType'/>
-        </word>
-        <word name='XML_ATTRIBUTE_REQUIRED'>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='XML_BUFFER_ALLOC_DOUBLEIT'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-        </word>
-        <word name='XML_BUFFER_ALLOC_EXACT'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-        </word>
-        <word name='XML_BUFFER_ALLOC_HYBRID'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-        </word>
-        <word name='XML_CAST_FPTR'>
-          <ref name='XML_CAST_FPTR'/>
-        </word>
-        <word name='XML_CATA_PREFER_PUBLIC'>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-        </word>
-        <word name='XML_CATA_PREFER_SYSTEM'>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-        </word>
-        <word name='XML_CHAR_ENCODING_'>
-          <ref name='xmlDetectCharEncoding'/>
-          <ref name='xmlParseCharEncoding'/>
-        </word>
-        <word name='XML_CHAR_ENCODING_NONE'>
-          <ref name='xmlParseCharEncoding'/>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-        </word>
-        <word name='XML_DOCUMENT_NODE'>
-          <ref name='_xmlDoc'/>
-        </word>
-        <word name='XML_DTD_NODE'>
-          <ref name='_xmlDtd'/>
-        </word>
-        <word name='XML_ELEMENT_DECL'>
-          <ref name='_xmlElement'/>
-        </word>
-        <word name='XML_ELEMENT_TYPE_xxx'>
-          <ref name='xmlParseElementContentDecl'/>
-        </word>
-        <word name='XML_ENTITY_DECL'>
-          <ref name='_xmlEntity'/>
-        </word>
-        <word name='XML_ERR_OK'>
-          <ref name='xmlParseInNodeContext'/>
-        </word>
-        <word name='XML_PARSE_BIG_LINES'>
-          <ref name='xmlGetLineNo'/>
-        </word>
-        <word name='XML_PARSE_HUGE'>
-          <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-        </word>
-        <word name='XML_SCHEMAS_ELEM_GLOBAL'>
-          <ref name='XML_SCHEMAS_ELEM_TOPLEVEL'/>
-        </word>
-        <word name='XML_SCHEMAS_FACET_PRESERVE'>
-          <ref name='_xmlSchemaFacet'/>
-        </word>
-        <word name='XML_SCHEMAS_STRING'>
-          <ref name='xmlSchemaNewStringValue'/>
-        </word>
-        <word name='XML_SUBSTITUTE_PEREF'>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-        </word>
-        <word name='XML_SUBSTITUTE_REF'>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-        </word>
-        <word name='XML_xxx_yyy_ENTITY'>
-          <ref name='xmlAddDocEntity'/>
-          <ref name='xmlAddDtdEntity'/>
-          <ref name='xmlNewEntity'/>
-        </word>
-        <word name='XMl-Schema'>
-          <ref name='xmlSchemaGetParserErrors'/>
-        </word>
-        <word name='XPATH'>
-          <ref name='xmlXPathFreeCompExpr'/>
-        </word>
-        <word name='XPATH_INVALID_ARITY'>
-          <ref name='xmlXPathSetArityError'/>
-        </word>
-        <word name='XPATH_INVALID_TYPE'>
-          <ref name='xmlXPathSetTypeError'/>
-        </word>
-        <word name='XPointer'>
-          <ref name='LIBXML_XPTR_ENABLED'/>
-          <ref name='LIBXML_XPTR_LOCS_ENABLED'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='_xmlXPathParserContext'/>
-          <ref name='xmlXPtrBuildNodeList'/>
-          <ref name='xmlXPtrEval'/>
-          <ref name='xmlXPtrEvalRangePredicate'/>
-          <ref name='xmlXPtrNewContext'/>
-          <ref name='xmlXPtrRangeToFunction'/>
-        </word>
-        <word name='XSD'>
-          <ref name='xmlAutomataNewNegTrans'/>
-          <ref name='xmlSchemaValidityErrorFunc'/>
-          <ref name='xmlSchemaValidityWarningFunc'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-          <ref name='xmlTextReaderSetSchema'/>
-        </word>
-        <word name='XSLT'>
-          <ref name='_xmlNode'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlFreePattern'/>
-          <ref name='xmlFreePatternList'/>
-          <ref name='xmlXPathNewValueTree'/>
-          <ref name='xmlXPathStackIsNodeSet'/>
-        </word>
-        <word name='Xinclude'>
-          <ref name='XINCLUDE_NS'/>
-          <ref name='XINCLUDE_OLD_NS'/>
-        </word>
-        <word name='Xml'>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-        <word name='XmlNodeType'>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk10'>
-      <letter name='Y'>
-        <word name='YES'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='YiRadicals'>
-          <ref name='xmlUCSIsYiRadicals'/>
-        </word>
-        <word name='YiSyllables'>
-          <ref name='xmlUCSIsYiSyllables'/>
-        </word>
-        <word name='YijingHexagramSymbols'>
-          <ref name='xmlUCSIsYijingHexagramSymbols'/>
-        </word>
-      </letter>
-      <letter name='Z'>
-        <word name='ZLIB'>
-          <ref name='htmlCreateFileParserCtxt'/>
-          <ref name='htmlParseFile'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlCreateEntityParserCtxt'/>
-          <ref name='xmlCreateFileParserCtxt'/>
-          <ref name='xmlCreateURLParserCtxt'/>
-          <ref name='xmlGetCompressMode'/>
-          <ref name='xmlGetDocCompressMode'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlParseFile'/>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-          <ref name='xmlRecoverFile'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXUserParseFile'/>
-          <ref name='xmlSetCompressMode'/>
-          <ref name='xmlSetDocCompressMode'/>
-        </word>
-        <word name='Zlib'>
-          <ref name='LIBXML_ZLIB_ENABLED'/>
-        </word>
-      </letter>
-      <letter name='a'>
-        <word name='a-z'>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlURIEscapeStr'/>
-        </word>
-        <word name='a-zA-Z'>
-          <ref name='IS_ASCII_LETTER'/>
-        </word>
-        <word name='a-zA-Z0-9'>
-          <ref name='IS_PUBIDCHAR'/>
-        </word>
-        <word name='a@b'>
-          <ref name='xmlNanoFTPProxy'/>
-        </word>
-        <word name='abc'>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='abc-'>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='able'>
-          <ref name='xmlEntityReferenceFunc'/>
-          <ref name='xmlFindCharEncodingHandler'/>
-          <ref name='xmlGetCharEncodingHandler'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='about'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlDebugDumpString'/>
-          <ref name='xmlShellDir'/>
-          <ref name='xmlTextWriterWriteRawLen'/>
-        </word>
-        <word name='above'>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='absent'>
-          <ref name='XML_SCHEMAS_ELEM_BLOCK_ABSENT'/>
-          <ref name='XML_SCHEMAS_ELEM_BLOCK_EXTENSION'/>
-          <ref name='XML_SCHEMAS_ELEM_FINAL_ABSENT'/>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-        </word>
-        <word name='absoluteURI'>
-          <ref name='xmlParseURI'/>
-        </word>
-        <word name='abstain'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='abstract'>
-          <ref name='XML_SCHEMAS_ELEM_ABSTRACT'/>
-          <ref name='XML_SCHEMAS_TYPE_ABSTRACT'/>
-        </word>
-        <word name='accept'>
-          <ref name='xmlExpMaxToken'/>
-          <ref name='xmlGetNoNsProp'/>
-          <ref name='xmlIsMixedElement'/>
-        </word>
-        <word name='acceptable'>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-        </word>
-        <word name='accepted'>
-          <ref name='IS_BYTE_CHAR'/>
-          <ref name='xmlCatalogGetDefaults'/>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-          <ref name='xmlCatalogSetDefaults'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlExpSubsume'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlTextReaderNormalization'/>
-        </word>
-        <word name='accepting'>
-          <ref name='xmlTextReaderNormalization'/>
-        </word>
-        <word name='accepts'>
-          <ref name='xmlExpIsNillable'/>
-          <ref name='xmlExpSubsume'/>
-        </word>
-        <word name='access'>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMemGet'/>
-          <ref name='xmlMemSetup'/>
-          <ref name='xmlNewMutex'/>
-          <ref name='xmlNewRMutex'/>
-          <ref name='xmlSchemaValidCtxtGetParserCtxt'/>
-        </word>
-        <word name='accessed'>
-          <ref name='xmlTextReaderCurrentDoc'/>
-          <ref name='xmlTextReaderCurrentNode'/>
-        </word>
-        <word name='accesses'>
-          <ref name='xmlCreateURLParserCtxt'/>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-        </word>
-        <word name='accommodate'>
-          <ref name='xmlBufferResize'/>
-        </word>
-        <word name='according'>
-          <ref name='xmlBuildURI'/>
-          <ref name='xmlDetectCharEncoding'/>
-          <ref name='xmlSAXVersion'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlURIEscape'/>
-          <ref name='xmlXPathCompareValues'/>
-        </word>
-        <word name='accordingly'>
-          <ref name='xmlParseCharEncoding'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-        </word>
-        <word name='account'>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-        </word>
-        <word name='acquire'>
-          <ref name='_xmlDOMWrapCtxt'/>
-          <ref name='xmlDOMWrapAcquireNsFunction'/>
-        </word>
-        <word name='act'>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='action'>
-          <ref name='xmlDocSetRootElement'/>
-        </word>
-        <word name='activate'>
-          <ref name='xmlTextReaderSetParserProp'/>
-        </word>
-        <word name='activated'>
-          <ref name='DEBUG_MEMORY'/>
-          <ref name='xmlAutomataNewAllTrans'/>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewNegTrans'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-          <ref name='xmlAutomataNewTransition'/>
-          <ref name='xmlAutomataNewTransition2'/>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderRelaxNGValidate'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-          <ref name='xmlTextReaderSetSchema'/>
-        </word>
-        <word name='activates'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='acts'>
-          <ref name='xmlGetProp'/>
-        </word>
-        <word name='actual'>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-          <ref name='xmlXPathFreeNodeSet'/>
-          <ref name='xmlXPtrFreeLocationSet'/>
-        </word>
-        <word name='actually'>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='setDocumentLocator'/>
-          <ref name='setDocumentLocatorSAXFunc'/>
-          <ref name='xmlAddEncodingAlias'/>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlDelEncodingAlias'/>
-          <ref name='xmlGetEncodingAlias'/>
-          <ref name='xmlNewCharEncodingHandler'/>
-          <ref name='xmlParseCharEncoding'/>
-          <ref name='xmlParseNotationDecl'/>
-          <ref name='xmlSAX2SetDocumentLocator'/>
-          <ref name='xmlStringCurrentChar'/>
-          <ref name='xmlTextReaderByteConsumed'/>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='actuate'>
-          <ref name='xlinkExtendedLinkFunk'/>
-        </word>
-        <word name='add'>
-          <ref name='xmlACatalogAdd'/>
-          <ref name='xmlBufferAdd'/>
-          <ref name='xmlBufferAddHead'/>
-          <ref name='xmlBufferCat'/>
-          <ref name='xmlBufferWriteCHAR'/>
-          <ref name='xmlBufferWriteChar'/>
-          <ref name='xmlBufferWriteQuotedString'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlListPushBack'/>
-          <ref name='xmlListPushFront'/>
-          <ref name='xmlXPathAddValues'/>
-          <ref name='xmlXPathNodeSetAdd'/>
-          <ref name='xmlXPathNodeSetAddNs'/>
-          <ref name='xmlXPathNodeSetAddUnique'/>
-          <ref name='xmlXPtrLocationSetAdd'/>
-        </word>
-        <word name='added'>
-          <ref name='attribute'/>
-          <ref name='attributeSAXFunc'/>
-          <ref name='htmlDocContentDumpFormatOutput'/>
-          <ref name='htmlDocContentDumpOutput'/>
-          <ref name='htmlDocDumpMemoryFormat'/>
-          <ref name='htmlNodeDump'/>
-          <ref name='htmlNodeDumpFile'/>
-          <ref name='htmlNodeDumpFileFormat'/>
-          <ref name='htmlNodeDumpFormatOutput'/>
-          <ref name='htmlNodeDumpOutput'/>
-          <ref name='htmlSaveFileEnc'/>
-          <ref name='htmlSaveFileFormat'/>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDocDumpFormatMemory'/>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocFormatDump'/>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlSaveFormatFile'/>
-          <ref name='xmlSaveFormatFileEnc'/>
-          <ref name='xmlSaveFormatFileTo'/>
-          <ref name='xmlStrcat'/>
-          <ref name='xmlStrncat'/>
-          <ref name='xmlXPathNodeSetMerge'/>
-          <ref name='xmlXPtrLocationSetMerge'/>
-        </word>
-        <word name='adding'>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-        </word>
-        <word name='addition'>
-          <ref name='xmlHashAddEntry'/>
-          <ref name='xmlHashAddEntry2'/>
-          <ref name='xmlHashAddEntry3'/>
-          <ref name='xmlHashUpdateEntry'/>
-          <ref name='xmlHashUpdateEntry2'/>
-          <ref name='xmlHashUpdateEntry3'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='additional'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-        </word>
-        <word name='additionally'>
-          <ref name='xmlStreamWantsAnyNode'/>
-        </word>
-        <word name='address'>
-          <ref name='xmlModuleSymbol'/>
-          <ref name='xmlNewTextWriterDoc'/>
-        </word>
-        <word name='adds'>
-          <ref name='xmlAutomataNewAllTrans'/>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewCountedTrans'/>
-          <ref name='xmlAutomataNewCounterTrans'/>
-          <ref name='xmlAutomataNewEpsilon'/>
-          <ref name='xmlAutomataNewNegTrans'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-          <ref name='xmlAutomataNewTransition'/>
-          <ref name='xmlAutomataNewTransition2'/>
-          <ref name='xmlBufferWriteCHAR'/>
-        </word>
-        <word name='adequate'>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-        </word>
-        <word name='adjacent'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAddChildList'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-        </word>
-        <word name='affect'>
-          <ref name='xmlKeepBlanksDefault'/>
-        </word>
-        <word name='affected'>
-          <ref name='xmlSchemaValidityLocatorFunc'/>
-        </word>
-        <word name='affiliation'>
-          <ref name='_xmlSchemaElement'/>
-        </word>
-        <word name='afraid'>
-          <ref name='xmlEncodeEntities'/>
-        </word>
-        <word name='after'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='XML_VCTXT_DTD_VALIDATED'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='isolat1ToUTF8'/>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAutomataCompile'/>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlNanoFTPCheckResponse'/>
-          <ref name='xmlNanoFTPFreeCtxt'/>
-          <ref name='xmlNanoFTPGetResponse'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlSaveFileTo'/>
-          <ref name='xmlSaveFormatFileTo'/>
-          <ref name='xmlUnlinkNode'/>
-          <ref name='xmlValidGetValidElements'/>
-          <ref name='xmlXPathNextFollowing'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='again'>
-          <ref name='xmlCreatePushParserCtxt'/>
-        </word>
-        <word name='against'>
-          <ref name='LIBXML_TEST_VERSION'/>
-          <ref name='XML_SCHEMAS_ELEM_INTERNAL_CHECKED'/>
-          <ref name='checkNamespace'/>
-          <ref name='xmlCheckVersion'/>
-          <ref name='xmlRegexpCompile'/>
-          <ref name='xmlRegexpExec'/>
-          <ref name='xmlSchemaValidateFacet'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-          <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-          <ref name='xmlSchematronValidateDoc'/>
-          <ref name='xmlShellValidate'/>
-          <ref name='xmlValidateDtd'/>
-        </word>
-        <word name='aggregate'>
-          <ref name='xmlBufGetNodeContent'/>
-          <ref name='xmlNodeBufGetContent'/>
-          <ref name='xmlNodeGetContent'/>
-        </word>
-        <word name='ahead'>
-          <ref name='XML_MAX_LOOKUP_LIMIT'/>
-        </word>
-        <word name='algebraic'>
-          <ref name='xmlExpExpDerive'/>
-        </word>
-        <word name='alias'>
-          <ref name='xmlAddEncodingAlias'/>
-          <ref name='xmlDelEncodingAlias'/>
-          <ref name='xmlGetEncodingAlias'/>
-        </word>
-        <word name='aliases'>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupEncodingAliases'/>
-        </word>
-        <word name='aliasing'>
-          <ref name='XML_CAST_FPTR'/>
-          <ref name='xmlSearchNsByHref'/>
-        </word>
-        <word name='allocate'>
-          <ref name='_xmlDoc'/>
-          <ref name='xmlBufferGrow'/>
-          <ref name='xmlBuildQName'/>
-          <ref name='xmlMallocAtomicLoc'/>
-          <ref name='xmlMallocLoc'/>
-          <ref name='xmlMemMalloc'/>
-          <ref name='xmlMemRealloc'/>
-          <ref name='xmlNewMutex'/>
-          <ref name='xmlNewRMutex'/>
-          <ref name='xmlReallocLoc'/>
-          <ref name='xmlXPathObjectCopy'/>
-        </word>
-        <word name='allocation'>
-          <ref name='LIBXML_THREAD_ALLOC_ENABLED'/>
-          <ref name='htmlNewParserCtxt'/>
-          <ref name='xmlBufferSetAllocationScheme'/>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlMallocAtomicLoc'/>
-          <ref name='xmlMallocLoc'/>
-          <ref name='xmlMemMalloc'/>
-          <ref name='xmlMemRealloc'/>
-          <ref name='xmlMemStrdupLoc'/>
-          <ref name='xmlMemoryStrdup'/>
-          <ref name='xmlNormalizeURIPath'/>
-          <ref name='xmlReallocLoc'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='allocations'>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMemSetup'/>
-          <ref name='xmlParserInputDeallocate'/>
-        </word>
-        <word name='allocator'>
-          <ref name='DEBUG_MEMORY'/>
-          <ref name='LIBXML_ATTR_ALLOC_SIZE'/>
-        </word>
-        <word name='allocators'>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-        </word>
-        <word name='allow'>
-          <ref name='XML_SCHEMAS_ATTR_GLOBAL'/>
-          <ref name='XML_SCHEMAS_ATTR_NSDEFAULT'/>
-          <ref name='XML_SCHEMAS_ELEM_NSDEFAULT'/>
-          <ref name='htmlAttrAllowed'/>
-          <ref name='htmlNodeStatus'/>
-          <ref name='xmlAutomataNewAllTrans'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlCheckUTF8'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-          <ref name='xmlParseVersionNum'/>
-          <ref name='xmlSchemaValidCtxtGetParserCtxt'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlShell'/>
-          <ref name='xmlValidateNCName'/>
-          <ref name='xmlValidateNMToken'/>
-          <ref name='xmlValidateName'/>
-          <ref name='xmlValidateQName'/>
-        </word>
-        <word name='allowable'>
-          <ref name='xmlSkipBlankChars'/>
-        </word>
-        <word name='allowed'>
-          <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-          <ref name='XML_MAX_LOOKUP_LIMIT'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-          <ref name='_htmlElemDesc'/>
-          <ref name='_xmlElement'/>
-          <ref name='_xmlSchemaWildcard'/>
-          <ref name='htmlElementAllowedHere'/>
-          <ref name='htmlElementAllowedHereDesc'/>
-          <ref name='htmlNodeStatus'/>
-          <ref name='xmlAutomataNewAllTrans'/>
-          <ref name='xmlAutomataNewCounterTrans'/>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlIsLetter'/>
-          <ref name='xmlNodeAddContent'/>
-          <ref name='xmlNodeAddContentLen'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseInNodeContext'/>
-          <ref name='xmlValidGetPotentialChildren'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-        </word>
-        <word name='allowing'>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-          <ref name='xmlTextReaderCurrentDoc'/>
-          <ref name='xmlTextReaderCurrentNode'/>
-        </word>
-        <word name='allows'>
-          <ref name='htmlAutoCloseTag'/>
-          <ref name='htmlIsAutoClosed'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-          <ref name='xmlParseURIRaw'/>
-          <ref name='xmlTextReaderConstString'/>
-        </word>
-        <word name='alphanumerics'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='already'>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlFreeFunc'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlInitializeDict'/>
-          <ref name='xmlMemSetup'/>
-          <ref name='xmlParseCharEncoding'/>
-          <ref name='xmlParseNotationType'/>
-          <ref name='xmlParserInputGrow'/>
-          <ref name='xmlReallocFunc'/>
-          <ref name='xmlReplaceNode'/>
-          <ref name='xmlXPathNodeSetAddUnique'/>
-          <ref name='xmlXPtrLocationSetAdd'/>
-        </word>
-        <word name='also'>
-          <ref name='_xmlEntity'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlCheckHTTPInput'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlHasProp'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlNanoFTPProxy'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-          <ref name='xmlTextReaderPreserve'/>
-          <ref name='xmlTextReaderPreservePattern'/>
-          <ref name='xmlXPathStringEvalNumber'/>
-        </word>
-        <word name='alternative'>
-          <ref name='xmlTextWriterStartDTD'/>
-          <ref name='xmlTextWriterWriteDTD'/>
-          <ref name='xmlTextWriterWriteDTDEntity'/>
-          <ref name='xmlTextWriterWriteDTDExternalEntity'/>
-          <ref name='xmlTextWriterWriteDTDExternalEntityContents'/>
-          <ref name='xmlTextWriterWriteDTDNotation'/>
-          <ref name='xmlTextWriterWriteFormatDTD'/>
-          <ref name='xmlTextWriterWriteVFormatDTD'/>
-        </word>
-        <word name='always'>
-          <ref name='INPUT_CHUNK'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlSubstituteEntitiesDefault'/>
-        </word>
-        <word name='amd'>
-          <ref name='xmlCatalogIsEmpty'/>
-        </word>
-        <word name='amount'>
-          <ref name='INPUT_CHUNK'/>
-          <ref name='_xmlParserInputBuffer'/>
-          <ref name='xmlDictGetUsage'/>
-          <ref name='xmlMemDisplayLast'/>
-          <ref name='xmlMemUsed'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlParserInputBufferRead'/>
-          <ref name='xmlParserInputGrow'/>
-        </word>
-        <word name='amp'>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlParserHandleReference'/>
-        </word>
-        <word name='ampersand'>
-          <ref name='xmlNewTextChild'/>
-        </word>
-        <word name='analysis'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlValidCtxt'/>
-        </word>
-        <word name='analyze'>
-          <ref name='xmlParseURI'/>
-          <ref name='xmlParseURIRaw'/>
-          <ref name='xmlParseURIReference'/>
-        </word>
-        <word name='analyzed'>
-          <ref name='_xmlParserInput'/>
-        </word>
-        <word name='ancestor'>
-          <ref name='xmlNodeGetLang'/>
-          <ref name='xmlNodeGetSpacePreserve'/>
-          <ref name='xmlShellPwd'/>
-          <ref name='xmlXPathLangFunction'/>
-          <ref name='xmlXPathNextAncestor'/>
-        </word>
-        <word name='ancestor-or-self'>
-          <ref name='xmlXPathNextAncestorOrSelf'/>
-        </word>
-        <word name='ancestors'>
-          <ref name='xmlXPathNextAncestor'/>
-          <ref name='xmlXPathNextAncestorOrSelf'/>
-          <ref name='xmlXPathNextPreceding'/>
-        </word>
-        <word name='anchored'>
-          <ref name='xmlGetNsProp'/>
-          <ref name='xmlHasNsProp'/>
-        </word>
-        <word name='angle'>
-          <ref name='xmlParseCharData'/>
-        </word>
-        <word name='annotation'>
-          <ref name='_xmlSchemaAnnot'/>
-        </word>
-        <word name='anonymous'>
-          <ref name='_xmlSchema'/>
-        </word>
-        <word name='another'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlInputMatchCallback'/>
-          <ref name='xmlOutputMatchCallback'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-        </word>
-        <word name='anySimpleType'>
-          <ref name='xmlSchemaNewStringValue'/>
-        </word>
-        <word name='anyURI'>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='anymore'>
-          <ref name='XML_SCHEMAS_ANYATTR_LAX'/>
-          <ref name='XML_SCHEMAS_ANYATTR_SKIP'/>
-          <ref name='XML_SCHEMAS_ANYATTR_STRICT'/>
-          <ref name='XML_SCHEMAS_ELEM_NSDEFAULT'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlNamespaceParseNSDef'/>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlNewEntity'/>
-        </word>
-        <word name='anyway'>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlRecoverDoc'/>
-          <ref name='xmlRecoverFile'/>
-          <ref name='xmlRecoverMemory'/>
-          <ref name='xmlValidateNotationDecl'/>
-        </word>
-        <word name='apart'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='apos'>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlParserHandleReference'/>
-        </word>
-        <word name='appear'>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlParserHandlePEReference'/>
-        </word>
-        <word name='appearing'>
-          <ref name='xmlValidatePopElement'/>
-          <ref name='xmlValidatePushElement'/>
-        </word>
-        <word name='appears'>
-          <ref name='_xmlURI'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlParseCharData'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseSDDecl'/>
-        </word>
-        <word name='append'>
-          <ref name='xmlCopyChar'/>
-          <ref name='xmlCopyCharMultiByte'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='appended'>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlSchemaValueAppend'/>
-        </word>
-        <word name='appending'>
-          <ref name='xmlParseAttValue'/>
-        </word>
-        <word name='appendix'>
-          <ref name='xmlDetectCharEncoding'/>
-        </word>
-        <word name='applicable'>
-          <ref name='xmlCopyNode'/>
-          <ref name='xmlDocCopyNode'/>
-        </word>
-        <word name='application'>
-          <ref name='_xmlAttr'/>
-          <ref name='_xmlAttribute'/>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlDtd'/>
-          <ref name='_xmlElement'/>
-          <ref name='_xmlEntity'/>
-          <ref name='_xmlNode'/>
-          <ref name='_xmlNs'/>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlCheckVersion'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlGetExternalEntityLoader'/>
-          <ref name='xmlLineNumbersDefault'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-          <ref name='xmlSetExternalEntityLoader'/>
-          <ref name='xmlXIncludeProcessFlagsData'/>
-          <ref name='xmlXIncludeProcessTreeFlagsData'/>
-        </word>
-        <word name='applications'>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-        </word>
-        <word name='applied'>
-          <ref name='xmlHashCopy'/>
-          <ref name='xmlHashScan'/>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull'/>
-          <ref name='xmlHashScanFull3'/>
-        </word>
-        <word name='applies'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-        </word>
-        <word name='apply'>
-          <ref name='xmlListReverseWalk'/>
-          <ref name='xmlListWalk'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-          <ref name='xmlValidateRoot'/>
-        </word>
-        <word name='applying'>
-          <ref name='xmlGetNsList'/>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='appropriate'>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlCheckHTTPInput'/>
-          <ref name='xmlParseURIReference'/>
-        </word>
-        <word name='arcs'>
-          <ref name='xlinkExtendedLinkFunk'/>
-        </word>
-        <word name='area'>
-          <ref name='xmlBufferCreateStatic'/>
-          <ref name='xmlMallocAtomicLoc'/>
-          <ref name='xmlMallocLoc'/>
-          <ref name='xmlMemMalloc'/>
-          <ref name='xmlMemRealloc'/>
-          <ref name='xmlParserInputBufferCreateMem'/>
-          <ref name='xmlParserInputBufferCreateStatic'/>
-          <ref name='xmlReallocLoc'/>
-        </word>
-        <word name='areas'>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMemBlocks'/>
-          <ref name='xmlMemShow'/>
-        </word>
-        <word name='args'>
-          <ref name='CHECK_ARITY'/>
-          <ref name='x'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlXPtrRangeToFunction'/>
-        </word>
-        <word name='around'>
-          <ref name='xmlFileOpen'/>
-        </word>
-        <word name='arrays'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='arry'>
-          <ref name='xmlParserInputBufferPush'/>
-        </word>
-        <word name='asked'>
-          <ref name='xmlParseReference'/>
-        </word>
-        <word name='assume'>
-          <ref name='xmlStrcat'/>
-          <ref name='xmlStrdup'/>
-        </word>
-        <word name='assumed'>
-          <ref name='xmlCheckUTF8'/>
-        </word>
-        <word name='assumes'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='assuming'>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlSaveFileTo'/>
-          <ref name='xmlSaveFormatFileTo'/>
-        </word>
-        <word name='assure'>
-          <ref name='xmlGetUTF8Char'/>
-        </word>
-        <word name='atom'>
-          <ref name='xmlExpNewAtom'/>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlExpNewSeq'/>
-        </word>
-        <word name='atomic'>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-        </word>
-        <word name='attached'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='attempt'>
-          <ref name='xmlRecoverDoc'/>
-          <ref name='xmlRecoverMemory'/>
-        </word>
-        <word name='attempts'>
-          <ref name='xmlRecoverFile'/>
-        </word>
-        <word name='attr'>
-          <ref name='XML_SCHEMAS_ATTRGROUP_HAS_REFS'/>
-          <ref name='XML_SCHEMAS_ATTRGROUP_MARKED'/>
-          <ref name='XML_SCHEMAS_ATTRGROUP_REDEFINED'/>
-          <ref name='_xmlID'/>
-          <ref name='_xmlRef'/>
-        </word>
-        <word name='attribute-'>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='attribute-list'>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlParseEntityRef'/>
-        </word>
-        <word name='attribute-node'>
-          <ref name='xmlStreamPushAttr'/>
-        </word>
-        <word name='attribute-nodes'>
-          <ref name='xmlStreamWantsAnyNode'/>
-        </word>
-        <word name='attributeFormDefault'>
-          <ref name='XML_SCHEMAS_QUALIF_ATTR'/>
-        </word>
-        <word name='augmented'>
-          <ref name='htmlParseDocument'/>
-          <ref name='xmlParseDocument'/>
-          <ref name='xmlParseExtParsedEnt'/>
-          <ref name='xmlTextMerge'/>
-        </word>
-        <word name='autark'>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='authentication'>
-          <ref name='xmlNanoHTTPAuthHeader'/>
-        </word>
-        <word name='author'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='authority'>
-          <ref name='_xmlURI'/>
-        </word>
-        <word name='authorized'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='auto'>
-          <ref name='htmlHandleOmittedElem'/>
-        </word>
-        <word name='auto-repair'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='autoclose'>
-          <ref name='htmlAutoCloseTag'/>
-        </word>
-        <word name='autoclosed'>
-          <ref name='htmlIsAutoClosed'/>
-        </word>
-        <word name='autogeneration'>
-          <ref name='xmlKeepBlanksDefault'/>
-        </word>
-        <word name='automatically'>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlStrncatNew'/>
-        </word>
-        <word name='automaton'>
-          <ref name='_xmlSchemaType'/>
-        </word>
-        <word name='autoreference'>
-          <ref name='_xmlDoc'/>
-        </word>
-        <word name='avoid'>
-          <ref name='XML_MAX_LOOKUP_LIMIT'/>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlGetBufferAllocationScheme'/>
-        </word>
-        <word name='avoiding'>
-          <ref name='xmlTextReaderNext'/>
-          <ref name='xmlTextReaderNextSibling'/>
-        </word>
-        <word name='aware'>
-          <ref name='xmlGetProp'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk11'>
-      <letter name='b'>
-        <word name='back'>
-          <ref name='xmlBufferDetach'/>
-          <ref name='xmlChildElementCount'/>
-          <ref name='xmlEntityReferenceFunc'/>
-          <ref name='xmlFirstElementChild'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlLastElementChild'/>
-          <ref name='xmlNanoFTPGet'/>
-          <ref name='xmlNanoFTPList'/>
-          <ref name='xmlNextElementSibling'/>
-          <ref name='xmlPreviousElementSibling'/>
-          <ref name='xmlRelaxNGDump'/>
-          <ref name='xmlSetEntityReferenceFunc'/>
-        </word>
-        <word name='bad'>
-          <ref name='XML_MAX_LOOKUP_LIMIT'/>
-        </word>
-        <word name='badly'>
-          <ref name='xmlParseExternalID'/>
-        </word>
-        <word name='balanced'>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseInNodeContext'/>
-        </word>
-        <word name='bar'>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='base64'>
-          <ref name='xmlTextWriterWriteBase64'/>
-        </word>
-        <word name='based'>
-          <ref name='xmlGetCompressMode'/>
-          <ref name='xmlGetDocCompressMode'/>
-          <ref name='xmlGetNodePath'/>
-          <ref name='xmlNewEntityInputStream'/>
-          <ref name='xmlNewInputFromFile'/>
-          <ref name='xmlNewStringInputStream'/>
-          <ref name='xmlParseURI'/>
-          <ref name='xmlParseURIReference'/>
-          <ref name='xmlRelaxNGNewValidCtxt'/>
-          <ref name='xmlSchemaNewStringValue'/>
-          <ref name='xmlSchemaNewValidCtxt'/>
-          <ref name='xmlSchemaSAXPlug'/>
-          <ref name='xmlSchemaSAXUnplug'/>
-          <ref name='xmlSchemaValidateStream'/>
-          <ref name='xmlSchematronNewValidCtxt'/>
-          <ref name='xmlSetCompressMode'/>
-          <ref name='xmlSetDocCompressMode'/>
-          <ref name='xmlStrcat'/>
-          <ref name='xmlStrdup'/>
-          <ref name='xmlStrsub'/>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='basically'>
-          <ref name='getSystemId'/>
-          <ref name='xmlIsMixedElement'/>
-          <ref name='xmlSAX2GetSystemId'/>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateDocument'/>
-          <ref name='xmlValidateDocumentFinal'/>
-          <ref name='xmlValidateDtdFinal'/>
-          <ref name='xmlValidateElementDecl'/>
-          <ref name='xmlValidateNotationDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlValidateOneNamespace'/>
-          <ref name='xmlValidateRoot'/>
-        </word>
-        <word name='basis'>
-          <ref name='xmlSubstituteEntitiesDefault'/>
-        </word>
-        <word name='bear'>
-          <ref name='xmlParseAttributeType'/>
-        </word>
-        <word name='becomes'>
-          <ref name='xmlAddAttributeDecl'/>
-        </word>
-        <word name='before'>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlInitParser'/>
-          <ref name='xmlMemSetup'/>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderRelaxNGValidate'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-          <ref name='xmlTextReaderSetParserProp'/>
-          <ref name='xmlTextReaderSetSchema'/>
-          <ref name='xmlValidGetValidElements'/>
-          <ref name='xmlXPathNextPreceding'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='beginning'>
-          <ref name='xmlBufShrink'/>
-          <ref name='xmlBufferAddHead'/>
-          <ref name='xmlBufferShrink'/>
-          <ref name='xmlByteConsumed'/>
-          <ref name='xmlListInsert'/>
-          <ref name='xmlListPushFront'/>
-          <ref name='xmlStringCurrentChar'/>
-          <ref name='xmlTextReaderByteConsumed'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='begins'>
-          <ref name='_xmlParserNodeInfo'/>
-        </word>
-        <word name='behaves'>
-          <ref name='IS_LETTER_CH'/>
-        </word>
-        <word name='behavior'>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlSubstituteEntitiesDefault'/>
-        </word>
-        <word name='behaviour'>
-          <ref name='XML_MAX_LOOKUP_LIMIT'/>
-          <ref name='htmlNodeDump'/>
-          <ref name='htmlNodeDumpFile'/>
-          <ref name='htmlNodeDumpFileFormat'/>
-          <ref name='htmlNodeDumpFormatOutput'/>
-          <ref name='htmlNodeDumpOutput'/>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlBufShrink'/>
-          <ref name='xmlElemDump'/>
-          <ref name='xmlFreeNode'/>
-          <ref name='xmlFreeNodeList'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-          <ref name='xmlNodeGetSpacePreserve'/>
-          <ref name='xmlNodeSetSpacePreserve'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-          <ref name='xmlTextReaderNormalization'/>
-          <ref name='xmlTextReaderSetParserProp'/>
-          <ref name='xmlUTF8Strsize'/>
-        </word>
-        <word name='below'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlParseExternalID'/>
-        </word>
-        <word name='better'>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlNormalizeWindowsPath'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-          <ref name='xmlSAXDefaultVersion'/>
-          <ref name='xmlSAXUserParseMemory'/>
-        </word>
-        <word name='between'>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-          <ref name='xmlMemDisplayLast'/>
-          <ref name='xmlParseQuotedString'/>
-          <ref name='xmlXPathDifference'/>
-        </word>
-        <word name='beyond'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='binary'>
-          <ref name='xmlCharInRange'/>
-          <ref name='xmlEncodeEntities'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlParseQuotedString'/>
-          <ref name='xmlTextWriterWriteBase64'/>
-          <ref name='xmlTextWriterWriteBinHex'/>
-        </word>
-        <word name='bindings'>
-          <ref name='_xmlSchema'/>
-        </word>
-        <word name='bit'>
-          <ref name='xmlStrEqual'/>
-        </word>
-        <word name='bits'>
-          <ref name='xmlGetLineNo'/>
-        </word>
-        <word name='blanks'>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlSkipBlankChars'/>
-        </word>
-        <word name='blockDefault'>
-          <ref name='XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION'/>
-          <ref name='XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION'/>
-        </word>
-        <word name='blocked'>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMemSetup'/>
-        </word>
-        <word name='blocking'>
-          <ref name='xmlNanoFTPRead'/>
-          <ref name='xmlNanoHTTPRead'/>
-        </word>
-        <word name='blocks'>
-          <ref name='IS_CHAR'/>
-          <ref name='XML_SAX2_MAGIC'/>
-          <ref name='inithtmlDefaultSAXHandler'/>
-          <ref name='initxmlDefaultSAXHandler'/>
-          <ref name='xmlMemBlocks'/>
-          <ref name='xmlMemDisplay'/>
-          <ref name='xmlMemoryDump'/>
-        </word>
-        <word name='body'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='book1'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='bool'>
-          <ref name='xmlBoolToText'/>
-        </word>
-        <word name='both'>
-          <ref name='xmlBufferFree'/>
-          <ref name='xmlNanoFTPClose'/>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlStrEqual'/>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathIntersection'/>
-        </word>
-        <word name='bound'>
-          <ref name='xmlExpNewRange'/>
-        </word>
-        <word name='boundaries'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlSearchNs'/>
-        </word>
-        <word name='boundary'>
-          <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-          <ref name='XML_MAX_LOOKUP_LIMIT'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-        </word>
-        <word name='bracket'>
-          <ref name='xmlParseCharData'/>
-        </word>
-        <word name='branch'>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-          <ref name='xmlSchemaValidateOneElement'/>
-        </word>
-        <word name='break'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlLineNumbersDefault'/>
-        </word>
-        <word name='breaking'>
-          <ref name='xmlEncodeEntities'/>
-        </word>
-        <word name='breaks'>
-          <ref name='xmlCurrentChar'/>
-        </word>
-        <word name='brk'>
-          <ref name='_xmlError'/>
-        </word>
-        <word name='broke'>
-          <ref name='XML_CAST_FPTR'/>
-        </word>
-        <word name='broken'>
-          <ref name='xmlGetThreadId'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlTextReaderNormalization'/>
-        </word>
-        <word name='buf'>
-          <ref name='xmlSaveFileTo'/>
-          <ref name='xmlSaveFormatFileTo'/>
-        </word>
-        <word name='buffered'>
-          <ref name='xmlAllocOutputBuffer'/>
-          <ref name='xmlAllocParserInputBuffer'/>
-          <ref name='xmlFreeParserInputBuffer'/>
-          <ref name='xmlOutputBufferClose'/>
-          <ref name='xmlOutputBufferCreateBuffer'/>
-          <ref name='xmlOutputBufferCreateFd'/>
-          <ref name='xmlOutputBufferCreateFile'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlOutputBufferCreateIO'/>
-          <ref name='xmlOutputBufferFlush'/>
-          <ref name='xmlOutputBufferWrite'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlOutputBufferWriteString'/>
-          <ref name='xmlParserInputBufferCreateFd'/>
-          <ref name='xmlParserInputBufferCreateFile'/>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-          <ref name='xmlParserInputBufferCreateIO'/>
-          <ref name='xmlParserInputBufferCreateMem'/>
-          <ref name='xmlParserInputBufferCreateStatic'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlParserInputBufferPush'/>
-          <ref name='xmlParserInputBufferRead'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='buffers'>
-          <ref name='LIBXML2_NEW_BUFFER'/>
-          <ref name='xmlBufferDetach'/>
-        </word>
-        <word name='building'>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='ignorableWhitespace'/>
-          <ref name='ignorableWhitespaceSAXFunc'/>
-          <ref name='xmlBuildURI'/>
-          <ref name='xmlSAX2IgnorableWhitespace'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseEntity'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-          <ref name='xmlShellPwd'/>
-        </word>
-        <word name='builds'>
-          <ref name='xmlRegexpCompile'/>
-        </word>
-        <word name='built'>
-          <ref name='XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseEnumeratedType'/>
-          <ref name='xmlParseEnumerationType'/>
-          <ref name='xmlParseNotationType'/>
-          <ref name='xmlParseURI'/>
-          <ref name='xmlParseURIRaw'/>
-          <ref name='xmlRelaxNGParse'/>
-          <ref name='xmlSchemaGetBuiltInType'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaGetCanonValueWhtsp'/>
-          <ref name='xmlSchemaParse'/>
-          <ref name='xmlSchematronParse'/>
-          <ref name='xmlTextReaderNextSibling'/>
-        </word>
-        <word name='built-in'>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-          <ref name='xmlSchemaGetBuiltInType'/>
-          <ref name='xmlSchemaIsBuiltInTypeFacet'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-        </word>
-        <word name='builtin'>
-          <ref name='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE'/>
-          <ref name='initGenericErrorDefaultFunc'/>
-        </word>
-        <word name='bunch'>
-          <ref name='xmlParseNamespace'/>
-        </word>
-        <word name='bypass'>
-          <ref name='xmlParseCatalogFile'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk12'>
-      <letter name='c'>
-        <word name='c14n'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='cache'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='cached'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='caching:'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='calculated'>
-          <ref name='xmlStrncatNew'/>
-        </word>
-        <word name='calculates'>
-          <ref name='xmlUTF8Size'/>
-        </word>
-        <word name='callbacks'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='fatalErrorSAXFunc'/>
-          <ref name='htmlCreatePushParserCtxt'/>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xlinkNodeDetectFunc'/>
-          <ref name='xmlCleanupOutputCallbacks'/>
-          <ref name='xmlCreateIOParserCtxt'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlNanoFTPGet'/>
-          <ref name='xmlNanoFTPList'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlPopOutputCallbacks'/>
-          <ref name='xmlRegExecPushString'/>
-          <ref name='xmlRegExecPushString2'/>
-          <ref name='xmlRelaxNGGetParserErrors'/>
-          <ref name='xmlRelaxNGSetParserErrors'/>
-          <ref name='xmlRelaxNGSetParserStructuredErrors'/>
-          <ref name='xmlSAXUserParseFile'/>
-          <ref name='xmlSAXUserParseMemory'/>
-          <ref name='xmlSchemaGetParserErrors'/>
-          <ref name='xmlSchemaSetParserErrors'/>
-          <ref name='xmlXPathFuncLookupFunc'/>
-          <ref name='xmlXPathVariableLookupFunc'/>
-        </word>
-        <word name='calling'>
-          <ref name='XMLCALL'/>
-          <ref name='XMLCDECL'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlCheckFilename'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlTextReaderCurrentDoc'/>
-          <ref name='xmlXPathAddValues'/>
-          <ref name='xmlXPathDivValues'/>
-          <ref name='xmlXPathModValues'/>
-          <ref name='xmlXPathMultValues'/>
-          <ref name='xmlXPathSubValues'/>
-          <ref name='xmlXPathValueFlipSign'/>
-        </word>
-        <word name='calls'>
-          <ref name='xlinkNodeDetectFunc'/>
-          <ref name='xmlSchemaSAXPlug'/>
-          <ref name='xmlXPathAxisFunc'/>
-        </word>
-        <word name='came'>
-          <ref name='xmlPopInput'/>
-        </word>
-        <word name='cannot'>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlTextReaderReadOuterXml'/>
-          <ref name='xmlXPathRegisterNs'/>
-        </word>
-        <word name='canonic'>
-          <ref name='xmlCanonicPath'/>
-        </word>
-        <word name='canonical'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlGetCharEncodingName'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaGetCanonValueWhtsp'/>
-        </word>
-        <word name='canonicalization'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='canonicalized'>
-          <ref name='xmlNormalizeWindowsPath'/>
-        </word>
-        <word name='canonization'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='canonized'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='capable'>
-          <ref name='xmlCheckUTF8'/>
-        </word>
-        <word name='cardinality'>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='carried'>
-          <ref name='xmlBufGetNodeContent'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNewNsProp'/>
-          <ref name='xmlNewNsPropEatName'/>
-          <ref name='xmlNewProp'/>
-          <ref name='xmlNodeBufGetContent'/>
-          <ref name='xmlNodeGetContent'/>
-          <ref name='xmlNodeGetLang'/>
-          <ref name='xmlNodeGetSpacePreserve'/>
-          <ref name='xmlSetNsProp'/>
-          <ref name='xmlSetProp'/>
-          <ref name='xmlUnsetNsProp'/>
-          <ref name='xmlUnsetProp'/>
-        </word>
-        <word name='carries'>
-          <ref name='xlinkIsLink'/>
-        </word>
-        <word name='carrying'>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xlinkExtendedLinkSetFunk'/>
-          <ref name='xlinkSimpleLinkFunk'/>
-          <ref name='xmlIsID'/>
-          <ref name='xmlIsRef'/>
-          <ref name='xmlNewGlobalNs'/>
-          <ref name='xmlNewNs'/>
-        </word>
-        <word name='case-ignoring'>
-          <ref name='xmlStrcasestr'/>
-        </word>
-        <word name='cases'>
-          <ref name='XML_SKIP_IDS'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlParseElementContentDecl'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlScanName'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-        </word>
-        <word name='cast'>
-          <ref name='BAD_CAST'/>
-          <ref name='CAST_TO_BOOLEAN'/>
-          <ref name='CAST_TO_NUMBER'/>
-          <ref name='CAST_TO_STRING'/>
-          <ref name='xmlXPathConvertFunc'/>
-        </word>
-        <word name='casting'>
-          <ref name='XML_CAST_FPTR'/>
-        </word>
-        <word name='cat'>
-          <ref name='xmlShellCat'/>
-        </word>
-        <word name='catalogs'>
-          <ref name='xmlCatalogAddLocal'/>
-          <ref name='xmlCatalogCleanup'/>
-          <ref name='xmlCatalogFreeLocal'/>
-          <ref name='xmlCatalogGetDefaults'/>
-          <ref name='xmlCatalogLocalResolve'/>
-          <ref name='xmlCatalogLocalResolveURI'/>
-          <ref name='xmlCatalogSetDebug'/>
-          <ref name='xmlCatalogSetDefaults'/>
-          <ref name='xmlLoadCatalogs'/>
-        </word>
-        <word name='category'>
-          <ref name='xmlUCSIsCat'/>
-        </word>
-        <word name='cause'>
-          <ref name='xmlShellPrintXPathError'/>
-        </word>
-        <word name='caution'>
-          <ref name='_xmlURI'/>
-        </word>
-        <word name='cdata-section-'>
-          <ref name='xmlStreamPushNode'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-        </word>
-        <word name='ceiling'>
-          <ref name='xmlXPathCeilingFunction'/>
-        </word>
-        <word name='certainly'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='chained'>
-          <ref name='xmlFreeNsList'/>
-        </word>
-        <word name='change'>
-          <ref name='LIBXML2_NEW_BUFFER'/>
-          <ref name='htmlSetMetaEncoding'/>
-          <ref name='xmlCtxtResetLastError'/>
-          <ref name='xmlNanoFTPCwd'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlResetLastError'/>
-          <ref name='xmlSchemaCollapseString'/>
-          <ref name='xmlSchemaWhiteSpaceReplace'/>
-          <ref name='xmlSubstituteEntitiesDefault'/>
-          <ref name='xmlSwitchEncoding'/>
-          <ref name='xmlSwitchInputEncoding'/>
-          <ref name='xmlSwitchToEncoding'/>
-        </word>
-        <word name='changed'>
-          <ref name='xmlNodeSetBase'/>
-          <ref name='xmlNodeSetLang'/>
-          <ref name='xmlNodeSetName'/>
-          <ref name='xmlNodeSetSpacePreserve'/>
-          <ref name='xmlTextReaderSetParserProp'/>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='changes'>
-          <ref name='xmlRegisterHTTPPostCallbacks'/>
-          <ref name='xmlTextReaderClose'/>
-        </word>
-        <word name='changing'>
-          <ref name='xmlSubstituteEntitiesDefault'/>
-          <ref name='xmlTextReaderSetParserProp'/>
-        </word>
-        <word name='channel'>
-          <ref name='xmlFileClose'/>
-          <ref name='xmlFileRead'/>
-          <ref name='xmlIOFTPClose'/>
-          <ref name='xmlIOFTPOpen'/>
-          <ref name='xmlIOFTPRead'/>
-          <ref name='xmlIOHTTPClose'/>
-          <ref name='xmlIOHTTPOpen'/>
-          <ref name='xmlIOHTTPRead'/>
-          <ref name='xmlOutputBufferClose'/>
-          <ref name='xmlOutputBufferFlush'/>
-          <ref name='xmlShellPrintXPathError'/>
-        </word>
-        <word name='characters'>
-          <ref name='ignorableWhitespace'/>
-          <ref name='ignorableWhitespaceSAXFunc'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlStrPrintf'/>
-          <ref name='xmlStrVPrintf'/>
-          <ref name='xmlURIEscapeStr'/>
-          <ref name='xmlUTF8Strlen'/>
-          <ref name='xmlUTF8Strsize'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-          <ref name='xmlXPathIdFunction'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-          <ref name='xmlXPathStringLengthFunction'/>
-          <ref name='xmlXPathSubstringFunction'/>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='charencoding'>
-          <ref name='xmlGetCharEncodingName'/>
-        </word>
-        <word name='chars??'>
-          <ref name='xmlTextWriterWriteRawLen'/>
-        </word>
-        <word name='charset'>
-          <ref name='_xmlDoc'/>
-          <ref name='xmlAllocParserInputBuffer'/>
-          <ref name='xmlCreateIOParserCtxt'/>
-          <ref name='xmlIOParseDTD'/>
-          <ref name='xmlNewIOInputStream'/>
-          <ref name='xmlOutputBufferCreateIO'/>
-          <ref name='xmlParserInputBufferCreateFd'/>
-          <ref name='xmlParserInputBufferCreateFile'/>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-          <ref name='xmlParserInputBufferCreateIO'/>
-          <ref name='xmlParserInputBufferCreateMem'/>
-          <ref name='xmlParserInputBufferCreateStatic'/>
-        </word>
-        <word name='checked'>
-          <ref name='XML_SCHEMAS_ELEM_INTERNAL_CHECKED'/>
-          <ref name='_xmlEntity'/>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlNodeGetLang'/>
-          <ref name='xmlNodeGetSpacePreserve'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlSetNsProp'/>
-        </word>
-        <word name='checking'>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlBufferWriteQuotedString'/>
-          <ref name='xmlBuildURI'/>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlMemFree'/>
-          <ref name='xmlUTF8Strlen'/>
-        </word>
-        <word name='checkings'>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlValidateOneElement'/>
-        </word>
-        <word name='checks'>
-          <ref name='XML_SCHEMAS_ATTRGROUP_MARKED'/>
-          <ref name='XML_SCHEMAS_TYPE_MARKED'/>
-          <ref name='htmlAutoCloseTag'/>
-          <ref name='htmlIsAutoClosed'/>
-          <ref name='htmlNodeStatus'/>
-          <ref name='xmlCheckFilename'/>
-          <ref name='xmlCheckHTTPInput'/>
-          <ref name='xmlCheckUTF8'/>
-          <ref name='xmlNanoFTPInit'/>
-          <ref name='xmlNanoHTTPInit'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlURIEscape'/>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateDocument'/>
-          <ref name='xmlValidateDocumentFinal'/>
-          <ref name='xmlValidateDtdFinal'/>
-          <ref name='xmlValidateElementDecl'/>
-          <ref name='xmlValidateNotationDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlValidateOneNamespace'/>
-          <ref name='xmlXPathNodeSetContains'/>
-        </word>
-        <word name='child-'>
-          <ref name='_xmlAttr'/>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlDtd'/>
-          <ref name='_xmlNode'/>
-        </word>
-        <word name='childrens'>
-          <ref name='_xmlEntity'/>
-        </word>
-        <word name='childs'>
-          <ref name='_xmlNode'/>
-          <ref name='xmlIsMixedElement'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='choice'>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-        </word>
-        <word name='choices'>
-          <ref name='xmlParseElementMixedContentDecl'/>
-        </word>
-        <word name='choices:'>
-          <ref name='xmlParseNotationDecl'/>
-        </word>
-        <word name='chunk'>
-          <ref name='htmlParseChunk'/>
-          <ref name='xmlEntityReferenceFunc'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseChunk'/>
-          <ref name='xmlParseEntity'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlParseInNodeContext'/>
-          <ref name='xmlSAXParseEntity'/>
-        </word>
-        <word name='circular'>
-          <ref name='XML_SCHEMAS_ATTRGROUP_MARKED'/>
-          <ref name='XML_SCHEMAS_ELEM_CIRCULAR'/>
-          <ref name='XML_SCHEMAS_TYPE_MARKED'/>
-        </word>
-        <word name='clean'>
-          <ref name='xmlCleanupParser'/>
-        </word>
-        <word name='cleanly'>
-          <ref name='xmlCheckHTTPInput'/>
-        </word>
-        <word name='cleans'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-        </word>
-        <word name='cleanup'>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlNanoFTPCleanup'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-        </word>
-        <word name='clear'>
-          <ref name='xmlListMerge'/>
-        </word>
-        <word name='clears'>
-          <ref name='xmlCleanupInputCallbacks'/>
-          <ref name='xmlCleanupOutputCallbacks'/>
-        </word>
-        <word name='client'>
-          <ref name='xmlKeepBlanksDefault'/>
-        </word>
-        <word name='clone'>
-          <ref name='xmlDOMWrapCloneNode'/>
-        </word>
-        <word name='cloned'>
-          <ref name='xmlDOMWrapCloneNode'/>
-        </word>
-        <word name='close'>
-          <ref name='htmlAutoCloseTag'/>
-          <ref name='htmlCtxtReadIO'/>
-          <ref name='htmlIsAutoClosed'/>
-          <ref name='htmlReadIO'/>
-          <ref name='xmlCharEncCloseFunc'/>
-          <ref name='xmlCreateIOParserCtxt'/>
-          <ref name='xmlCtxtReadIO'/>
-          <ref name='xmlInputCloseCallback'/>
-          <ref name='xmlModuleClose'/>
-          <ref name='xmlOutputBufferClose'/>
-          <ref name='xmlOutputBufferCreateIO'/>
-          <ref name='xmlOutputCloseCallback'/>
-          <ref name='xmlParserInputBufferCreateIO'/>
-          <ref name='xmlReadIO'/>
-          <ref name='xmlReaderForIO'/>
-          <ref name='xmlReaderNewIO'/>
-          <ref name='xmlSaveToIO'/>
-          <ref name='xmlTextReaderClose'/>
-        </word>
-        <word name='closed'>
-          <ref name='htmlReadFd'/>
-          <ref name='xmlCtxtReadFd'/>
-          <ref name='xmlModuleClose'/>
-          <ref name='xmlNewTextWriter'/>
-          <ref name='xmlReadFd'/>
-          <ref name='xmlReaderForFd'/>
-          <ref name='xmlReaderNewFd'/>
-          <ref name='xmlTextWriterEndDocument'/>
-        </word>
-        <word name='closes'>
-          <ref name='xmlNanoHTTPClose'/>
-          <ref name='xmlNanoHTTPSave'/>
-        </word>
-        <word name='closest'>
-          <ref name='xmlNextElementSibling'/>
-          <ref name='xmlPreviousElementSibling'/>
-          <ref name='xmlXPathCeilingFunction'/>
-          <ref name='xmlXPathFloorFunction'/>
-          <ref name='xmlXPathRoundFunction'/>
-        </word>
-        <word name='closing'>
-          <ref name='xmlNanoFTPFreeCtxt'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseStartTag'/>
-        </word>
-        <word name='codes'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='coding'>
-          <ref name='xmlSAXDefaultVersion'/>
-        </word>
-        <word name='collapse'>
-          <ref name='XML_SCHEMAS_FACET_COLLAPSE'/>
-          <ref name='XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE'/>
-        </word>
-        <word name='collect'>
-          <ref name='DEBUG_MEMORY'/>
-          <ref name='xmlIOHTTPOpenW'/>
-        </word>
-        <word name='collected'>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-        </word>
-        <word name='colon'>
-          <ref name='xmlLoadCatalogs'/>
-        </word>
-        <word name='column'>
-          <ref name='_xmlError'/>
-          <ref name='getColumnNumber'/>
-          <ref name='xmlSAX2GetColumnNumber'/>
-          <ref name='xmlTextReaderGetParserColumnNumber'/>
-        </word>
-        <word name='com'>
-          <ref name='getSystemId'/>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlSAX2GetSystemId'/>
-        </word>
-        <word name='combining'>
-          <ref name='IS_COMBINING_CH'/>
-        </word>
-        <word name='come'>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='comes'>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='coming'>
-          <ref name='xmlXIncludeProcessNode'/>
-        </word>
-        <word name='command'>
-          <ref name='ftpDataCallback'/>
-          <ref name='ftpListCallback'/>
-          <ref name='xmlNanoFTPCheckResponse'/>
-          <ref name='xmlNanoFTPGetResponse'/>
-          <ref name='xmlNanoFTPQuit'/>
-          <ref name='xmlShellDu'/>
-        </word>
-        <word name='commandline'>
-          <ref name='xmlShell'/>
-        </word>
-        <word name='commands'>
-          <ref name='xmlShellPwd'/>
-        </word>
-        <word name='comment'>
-          <ref name='HTML_COMMENT_NODE'/>
-          <ref name='comment'/>
-          <ref name='commentSAXFunc'/>
-          <ref name='xmlNewComment'/>
-          <ref name='xmlNewDocComment'/>
-          <ref name='xmlParseComment'/>
-          <ref name='xmlTextWriterEndComment'/>
-          <ref name='xmlTextWriterStartComment'/>
-          <ref name='xmlTextWriterWriteComment'/>
-          <ref name='xmlTextWriterWriteFormatComment'/>
-          <ref name='xmlTextWriterWriteVFormatComment'/>
-          <ref name='xmlXPathIsNodeType'/>
-        </word>
-        <word name='comment-'>
-          <ref name='xmlStreamPushNode'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-        </word>
-        <word name='comments'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlDocGetRootElement'/>
-          <ref name='xmlDocSetRootElement'/>
-          <ref name='xmlParseComment'/>
-        </word>
-        <word name='commit'>
-          <ref name='LIBXML_VERSION_EXTRA'/>
-        </word>
-        <word name='commodity'>
-          <ref name='xmlKeepBlanksDefault'/>
-        </word>
-        <word name='common'>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlDtd'/>
-          <ref name='_xmlNode'/>
-        </word>
-        <word name='comp'>
-          <ref name='xmlFreePattern'/>
-          <ref name='xmlFreePatternList'/>
-          <ref name='xmlXPathFreeCompExpr'/>
-        </word>
-        <word name='compare'>
-          <ref name='xmlListDataCompare'/>
-          <ref name='xmlUTF8Charcmp'/>
-          <ref name='xmlXPathCompareValues'/>
-        </word>
-        <word name='compared'>
-          <ref name='xmlXPathCompareValues'/>
-        </word>
-        <word name='compares'>
-          <ref name='xmlUTF8Charcmp'/>
-        </word>
-        <word name='comparing'>
-          <ref name='xmlXPathCompareValues'/>
-        </word>
-        <word name='comparison'>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull3'/>
-          <ref name='xmlListCreate'/>
-          <ref name='xmlParseCharEncoding'/>
-          <ref name='xmlStrcasecmp'/>
-          <ref name='xmlStrcmp'/>
-          <ref name='xmlStrncasecmp'/>
-          <ref name='xmlStrncmp'/>
-          <ref name='xmlXPathCompareValues'/>
-        </word>
-        <word name='comparisons'>
-          <ref name='xmlTextReaderConstString'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='compatibility'>
-          <ref name='LIBXML_LEGACY_ENABLED'/>
-          <ref name='htmlParseElement'/>
-          <ref name='xmlChildrenNode'/>
-          <ref name='xmlCopyChar'/>
-          <ref name='xmlEncodeEntities'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlParseCharData'/>
-          <ref name='xmlParseComment'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlParseQuotedString'/>
-          <ref name='xmlRootNode'/>
-        </word>
-        <word name='compatible'>
-          <ref name='LIBXML_TEST_VERSION'/>
-          <ref name='xmlShellPwd'/>
-        </word>
-        <word name='compilation'>
-          <ref name='XML_XPATH_CHECKNS'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlPatterncompile'/>
-          <ref name='xmlXPathCompile'/>
-          <ref name='xmlXPathCtxtCompile'/>
-        </word>
-        <word name='compile'>
-          <ref name='xmlPatterncompile'/>
-        </word>
-        <word name='compile-time'>
-          <ref name='htmlCreateFileParserCtxt'/>
-          <ref name='htmlParseFile'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlCreateEntityParserCtxt'/>
-          <ref name='xmlCreateFileParserCtxt'/>
-          <ref name='xmlCreateURLParserCtxt'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlParseFile'/>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-          <ref name='xmlRecoverFile'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-        </word>
-        <word name='compiled-in'>
-          <ref name='xmlCleanupInputCallbacks'/>
-          <ref name='xmlCleanupOutputCallbacks'/>
-          <ref name='xmlPopInputCallbacks'/>
-          <ref name='xmlPopOutputCallbacks'/>
-          <ref name='xmlRegisterDefaultInputCallbacks'/>
-          <ref name='xmlRegisterDefaultOutputCallbacks'/>
-        </word>
-        <word name='compiling'>
-          <ref name='xmlRelaxNGNewDocParserCtxt'/>
-        </word>
-        <word name='complement'>
-          <ref name='xmlXPathStringEvalNumber'/>
-        </word>
-        <word name='complete'>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='XML_SCHEMAS_WILDCARD_COMPLETE'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlACatalogResolve'/>
-          <ref name='xmlACatalogResolveURI'/>
-          <ref name='xmlCatalogLocalResolve'/>
-          <ref name='xmlCatalogLocalResolveURI'/>
-          <ref name='xmlCatalogResolve'/>
-          <ref name='xmlCatalogResolveURI'/>
-        </word>
-        <word name='completed'>
-          <ref name='xmlValidateDocumentFinal'/>
-        </word>
-        <word name='completely'>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlNodeGetBase'/>
-        </word>
-        <word name='complex'>
-          <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION'/>
-          <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION'/>
-          <ref name='_xmlSchemaType'/>
-        </word>
-        <word name='complexType'>
-          <ref name='XML_SCHEMAS_TYPE_ABSTRACT'/>
-          <ref name='XML_SCHEMAS_TYPE_BLOCK_DEFAULT'/>
-          <ref name='XML_SCHEMAS_TYPE_BLOCK_EXTENSION'/>
-          <ref name='XML_SCHEMAS_TYPE_BLOCK_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_EXTENSION'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD'/>
-        </word>
-        <word name='complicated'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='component'>
-          <ref name='_xmlSchemaType'/>
-        </word>
-        <word name='components'>
-          <ref name='_xmlSchema'/>
-        </word>
-        <word name='compound'>
-          <ref name='xmlXPathFreeNodeSet'/>
-          <ref name='xmlXPtrFreeLocationSet'/>
-        </word>
-        <word name='compress'>
-          <ref name='xmlNewTextWriterDoc'/>
-          <ref name='xmlNewTextWriterFilename'/>
-          <ref name='xmlNewTextWriterMemory'/>
-          <ref name='xmlNewTextWriterPushParser'/>
-          <ref name='xmlNewTextWriterTree'/>
-        </word>
-        <word name='compressed'>
-          <ref name='_xmlParserInputBuffer'/>
-          <ref name='htmlCreateFileParserCtxt'/>
-          <ref name='htmlParseFile'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlCreateEntityParserCtxt'/>
-          <ref name='xmlCreateFileParserCtxt'/>
-          <ref name='xmlCreateURLParserCtxt'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlParseFile'/>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-          <ref name='xmlRecoverFile'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXUserParseFile'/>
-        </word>
-        <word name='compression'>
-          <ref name='_xmlDoc'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlGetCompressMode'/>
-          <ref name='xmlGetDocCompressMode'/>
-          <ref name='xmlIOHTTPOpenW'/>
-          <ref name='xmlNewTextWriterMemory'/>
-          <ref name='xmlNewTextWriterPushParser'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlSaveFile'/>
-          <ref name='xmlSaveFormatFile'/>
-          <ref name='xmlSetCompressMode'/>
-          <ref name='xmlSetDocCompressMode'/>
-        </word>
-        <word name='comprising'>
-          <ref name='xmlXPathIntersection'/>
-        </word>
-        <word name='computation'>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='compute'>
-          <ref name='xmlUTF8Strlen'/>
-        </word>
-        <word name='computed'>
-          <ref name='XML_SCHEMAS_TYPE_FACETSNEEDVALUE'/>
-          <ref name='_xmlEntity'/>
-          <ref name='xmlByteConsumed'/>
-          <ref name='xmlSchemaValPredefTypeNode'/>
-          <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-          <ref name='xmlSchemaValidatePredefinedType'/>
-          <ref name='xmlSchemaValueAppend'/>
-          <ref name='xmlSchemaValueGetAsBoolean'/>
-          <ref name='xmlSchemaValueGetAsString'/>
-          <ref name='xmlSchemaValueGetNext'/>
-          <ref name='xmlTextReaderByteConsumed'/>
-        </word>
-        <word name='computes'>
-          <ref name='xmlSchemaCheckFacet'/>
-        </word>
-        <word name='concat'>
-          <ref name='xmlXPathConcatFunction'/>
-        </word>
-        <word name='concatenated'>
-          <ref name='xmlStrcat'/>
-        </word>
-        <word name='concatenation'>
-          <ref name='xmlXPathConcatFunction'/>
-        </word>
-        <word name='concerning'>
-          <ref name='xmlDebugDumpDocumentHead'/>
-        </word>
-        <word name='condition'>
-          <ref name='xmlSchemaValidateFacet'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-        </word>
-        <word name='conditionalSect'>
-          <ref name='xmlParseExternalSubset'/>
-        </word>
-        <word name='configured'>
-          <ref name='DEBUG_MEMORY'/>
-          <ref name='DEBUG_MEMORY_LOCATION'/>
-          <ref name='LIBXML_C14N_ENABLED'/>
-          <ref name='LIBXML_CATALOG_ENABLED'/>
-          <ref name='LIBXML_DEBUG_ENABLED'/>
-          <ref name='LIBXML_DEBUG_RUNTIME'/>
-          <ref name='LIBXML_FTP_ENABLED'/>
-          <ref name='LIBXML_HTML_ENABLED'/>
-          <ref name='LIBXML_HTTP_ENABLED'/>
-          <ref name='LIBXML_OUTPUT_ENABLED'/>
-          <ref name='LIBXML_PATTERN_ENABLED'/>
-          <ref name='LIBXML_PUSH_ENABLED'/>
-          <ref name='LIBXML_READER_ENABLED'/>
-          <ref name='LIBXML_SAX1_ENABLED'/>
-          <ref name='LIBXML_THREAD_ENABLED'/>
-          <ref name='LIBXML_TREE_ENABLED'/>
-          <ref name='LIBXML_VALID_ENABLED'/>
-          <ref name='LIBXML_WRITER_ENABLED'/>
-          <ref name='LIBXML_XINCLUDE_ENABLED'/>
-          <ref name='LIBXML_XPATH_ENABLED'/>
-          <ref name='LIBXML_XPTR_ENABLED'/>
-          <ref name='LIBXML_XPTR_LOCS_ENABLED'/>
-          <ref name='WITHOUT_TRIO'/>
-          <ref name='WITH_TRIO'/>
-        </word>
-        <word name='conforming'>
-          <ref name='xmlRegexpCompile'/>
-        </word>
-        <word name='conforms'>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlSchemaValPredefTypeNode'/>
-          <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-          <ref name='xmlSchemaValidatePredefinedType'/>
-          <ref name='xmlValidateNCName'/>
-          <ref name='xmlValidateNMToken'/>
-          <ref name='xmlValidateName'/>
-          <ref name='xmlValidateQName'/>
-        </word>
-        <word name='conjunction'>
-          <ref name='xmlSchemaIsBuiltInTypeFacet'/>
-        </word>
-        <word name='connection'>
-          <ref name='xmlNanoFTPClose'/>
-          <ref name='xmlNanoFTPCloseConnection'/>
-          <ref name='xmlNanoFTPConnect'/>
-          <ref name='xmlNanoFTPConnectTo'/>
-          <ref name='xmlNanoFTPFreeCtxt'/>
-          <ref name='xmlNanoFTPGetConnection'/>
-          <ref name='xmlNanoFTPGetSocket'/>
-          <ref name='xmlNanoFTPRead'/>
-          <ref name='xmlNanoFTPUpdateURL'/>
-          <ref name='xmlNanoHTTPClose'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlNanoHTTPOpen'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-          <ref name='xmlNanoHTTPRead'/>
-        </word>
-        <word name='connector'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-        </word>
-        <word name='consequent'>
-          <ref name='_xmlError'/>
-        </word>
-        <word name='consideration'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='considered'>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull3'/>
-          <ref name='xmlParserInputBufferRead'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='consist'>
-          <ref name='xmlXPathNextAncestor'/>
-        </word>
-        <word name='const'>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-        </word>
-        <word name='constant'>
-          <ref name='XML_SAX2_MAGIC'/>
-          <ref name='xmlByteConsumed'/>
-        </word>
-        <word name='constraint'>
-          <ref name='_xmlSchemaAttribute'/>
-          <ref name='_xmlSchemaElement'/>
-          <ref name='_xmlSchemaWildcard'/>
-          <ref name='_xmlSchemaWildcardNs'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlValidateNotationDecl'/>
-        </word>
-        <word name='constraints'>
-          <ref name='XML_SCHEMAS_ELEM_INTERNAL_CHECKED'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='construct'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-        </word>
-        <word name='construction'>
-          <ref name='xmlCanonicPath'/>
-          <ref name='xmlPathToURI'/>
-        </word>
-        <word name='constructs'>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlParseNamespace'/>
-        </word>
-        <word name='consumed'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='_xmlParserInput'/>
-          <ref name='_xmlParserInputBuffer'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='isolat1ToUTF8'/>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlExpNewSeq'/>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlParserInputBufferRead'/>
-          <ref name='xmlSchemaNewNOTATIONValue'/>
-          <ref name='xmlSchemaNewQNameValue'/>
-          <ref name='xmlSchemaNewStringValue'/>
-        </word>
-        <word name='consuming'>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlScanName'/>
-        </word>
-        <word name='contain'>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlRelaxNGNewMemParserCtxt'/>
-          <ref name='xmlRelaxNGNewParserCtxt'/>
-          <ref name='xmlSchemaNewMemParserCtxt'/>
-          <ref name='xmlSchemaNewParserCtxt'/>
-          <ref name='xmlSchematronNewMemParserCtxt'/>
-          <ref name='xmlSchematronNewParserCtxt'/>
-          <ref name='xmlXPathLeading'/>
-          <ref name='xmlXPathLeadingSorted'/>
-          <ref name='xmlXPathNodeLeading'/>
-          <ref name='xmlXPathNodeLeadingSorted'/>
-          <ref name='xmlXPathNodeTrailing'/>
-          <ref name='xmlXPathNodeTrailingSorted'/>
-          <ref name='xmlXPathSubstringAfterFunction'/>
-          <ref name='xmlXPathSubstringBeforeFunction'/>
-          <ref name='xmlXPathTrailing'/>
-          <ref name='xmlXPathTrailingSorted'/>
-        </word>
-        <word name='contained'>
-          <ref name='xmlBufferDetach'/>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlStrlen'/>
-          <ref name='xmlXPathDistinct'/>
-          <ref name='xmlXPathDistinctSorted'/>
-        </word>
-        <word name='contains'>
-          <ref name='XML_SCHEMAS_ATTRGROUP_HAS_REFS'/>
-          <ref name='_xmlEntity'/>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlTextReaderMoveToElement'/>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-          <ref name='xmlXPathContainsFunction'/>
-          <ref name='xmlXPathNextAncestor'/>
-          <ref name='xmlXPathNextAncestorOrSelf'/>
-          <ref name='xmlXPathNextChild'/>
-          <ref name='xmlXPathNextDescendant'/>
-          <ref name='xmlXPathNextDescendantOrSelf'/>
-          <ref name='xmlXPathNextFollowing'/>
-          <ref name='xmlXPathNextFollowingSibling'/>
-          <ref name='xmlXPathNextNamespace'/>
-          <ref name='xmlXPathNextParent'/>
-          <ref name='xmlXPathNextPreceding'/>
-          <ref name='xmlXPathNextPrecedingSibling'/>
-          <ref name='xmlXPathNextSelf'/>
-          <ref name='xmlXPathNodeSetContains'/>
-          <ref name='xmlXPathSubstringFunction'/>
-          <ref name='xmlXPtrNewContext'/>
-        </word>
-        <word name='content:'>
-          <ref name='xmlXPathEqualValues'/>
-          <ref name='xmlXPathNotEqualValues'/>
-        </word>
-        <word name='contentType'>
-          <ref name='xmlNanoHTTPFetch'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlNanoHTTPOpen'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-        </word>
-        <word name='contents'>
-          <ref name='xmlDictFree'/>
-          <ref name='xmlHashFree'/>
-          <ref name='xmlLineNumbersDefault'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlSetupParserForBuffer'/>
-          <ref name='xmlTextReaderExpand'/>
-          <ref name='xmlTextReaderReadInnerXml'/>
-          <ref name='xmlTextReaderReadOuterXml'/>
-          <ref name='xmlTextReaderReadString'/>
-          <ref name='xmlTextWriterWriteDTDExternalEntityContents'/>
-        </word>
-        <word name='contentspec'>
-          <ref name='xmlParseElementContentDecl'/>
-          <ref name='xmlParseElementDecl'/>
-        </word>
-        <word name='context?'>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='contexts'>
-          <ref name='_xmlDOMWrapCtxt'/>
-        </word>
-        <word name='contextual'>
-          <ref name='xmlRelaxNGGetParserErrors'/>
-          <ref name='xmlRelaxNGSetParserErrors'/>
-          <ref name='xmlRelaxNGSetParserStructuredErrors'/>
-          <ref name='xmlSchemaGetParserErrors'/>
-          <ref name='xmlSchemaSetParserErrors'/>
-        </word>
-        <word name='continuing'>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='contrary'>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlXPathFreeNodeSetList'/>
-        </word>
-        <word name='contrast'>
-          <ref name='xmlNodeAddContent'/>
-          <ref name='xmlNodeAddContentLen'/>
-        </word>
-        <word name='control'>
-          <ref name='_xmlXPathContext'/>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlNanoFTPClose'/>
-          <ref name='xmlNanoFTPConnect'/>
-          <ref name='xmlNanoFTPConnectTo'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-        </word>
-        <word name='conveniently'>
-          <ref name='xmlCurrentChar'/>
-        </word>
-        <word name='convention'>
-          <ref name='XMLCALL'/>
-          <ref name='XMLCDECL'/>
-        </word>
-        <word name='conversion'>
-          <ref name='_xmlXPathType'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlParseEncodingDecl'/>
-          <ref name='xmlXPathConvertFunc'/>
-          <ref name='xmlXPathPopBoolean'/>
-          <ref name='xmlXPathPopExternal'/>
-          <ref name='xmlXPathPopNodeSet'/>
-          <ref name='xmlXPathPopNumber'/>
-          <ref name='xmlXPathPopString'/>
-        </word>
-        <word name='conversions'>
-          <ref name='_xmlOutputBuffer'/>
-          <ref name='_xmlParserInputBuffer'/>
-        </word>
-        <word name='convert'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='attribute'/>
-          <ref name='attributeSAXFunc'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='isolat1ToUTF8'/>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlEncodeEntities'/>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-          <ref name='xmlEncodeSpecialChars'/>
-          <ref name='xmlXPathAddValues'/>
-          <ref name='xmlXPathDivValues'/>
-          <ref name='xmlXPathModValues'/>
-          <ref name='xmlXPathMultValues'/>
-          <ref name='xmlXPathSubValues'/>
-          <ref name='xmlXPathValueFlipSign'/>
-        </word>
-        <word name='converted'>
-          <ref name='xmlCatalogConvert'/>
-          <ref name='xmlConvertSGMLCatalog'/>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-          <ref name='xmlXPathIdFunction'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-          <ref name='xmlXPathStringFunction'/>
-          <ref name='xmlXPathStringLengthFunction'/>
-        </word>
-        <word name='converter'>
-          <ref name='xmlAllocOutputBuffer'/>
-          <ref name='xmlOutputBufferCreateBuffer'/>
-          <ref name='xmlOutputBufferCreateFd'/>
-          <ref name='xmlOutputBufferCreateFile'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-        </word>
-        <word name='converting'>
-          <ref name='xmlSaveFileEnc'/>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-        </word>
-        <word name='converts'>
-          <ref name='xmlXPathBooleanFunction'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='cope'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='copied'>
-          <ref name='xmlBufferCreateStatic'/>
-          <ref name='xmlCopyDoc'/>
-          <ref name='xmlGetFeaturesList'/>
-          <ref name='xmlSchemaCopyValue'/>
-          <ref name='xmlXPathNodeSetMerge'/>
-        </word>
-        <word name='copier'>
-          <ref name='xmlHashCopy'/>
-        </word>
-        <word name='copying'>
-          <ref name='xmlParserInputBufferGrow'/>
-        </word>
-        <word name='correct'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='correctly'>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='correspond'>
-          <ref name='xmlIsXHTML'/>
-          <ref name='xmlParseEntity'/>
-          <ref name='xmlSAXParseEntity'/>
-        </word>
-        <word name='corresponding'>
-          <ref name='xmlGetDocEntity'/>
-          <ref name='xmlGetDtdEntity'/>
-          <ref name='xmlGetParameterEntity'/>
-          <ref name='xmlOutputBufferCreateFilenameFunc'/>
-          <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-          <ref name='xmlSetProp'/>
-          <ref name='xmlTextReaderCurrentDoc'/>
-          <ref name='xmlTextReaderCurrentNode'/>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='cost'>
-          <ref name='xmlByteConsumed'/>
-        </word>
-        <word name='costly'>
-          <ref name='XML_MAX_NAMELEN'/>
-          <ref name='xmlByteConsumed'/>
-        </word>
-        <word name='could'>
-          <ref name='xmlByteConsumed'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlModuleClose'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaGetCanonValueWhtsp'/>
-          <ref name='xmlTextReaderByteConsumed'/>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderRelaxNGValidate'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-          <ref name='xmlTextReaderSetSchema'/>
-          <ref name='xmlValidateDtd'/>
-        </word>
-        <word name='count'>
-          <ref name='_xmlEntity'/>
-          <ref name='ftpListCallback'/>
-          <ref name='xmlChildElementCount'/>
-          <ref name='xmlExpRef'/>
-          <ref name='xmlLsCountNode'/>
-          <ref name='xmlSaveDoc'/>
-          <ref name='xmlSaveTree'/>
-          <ref name='xmlSchematronValidateDoc'/>
-          <ref name='xmlTextReaderAttributeCount'/>
-          <ref name='xmlXPathCountFunction'/>
-        </word>
-        <word name='counter'>
-          <ref name='xmlAutomataNewCountedTrans'/>
-          <ref name='xmlAutomataNewCounter'/>
-          <ref name='xmlAutomataNewCounterTrans'/>
-          <ref name='xmlDictReference'/>
-        </word>
-        <word name='counterparts'>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-        </word>
-        <word name='course'>
-          <ref name='xmlTextReaderNormalization'/>
-        </word>
-        <word name='cover'>
-          <ref name='xmlSearchNs'/>
-        </word>
-        <word name='crash'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='create'>
-          <ref name='xmlBufferCreate'/>
-          <ref name='xmlBufferCreateSize'/>
-          <ref name='xmlBufferCreateStatic'/>
-          <ref name='xmlCatalogIsEmpty'/>
-          <ref name='xmlCreateEntitiesTable'/>
-          <ref name='xmlCreateEnumeration'/>
-          <ref name='xmlNewCatalog'/>
-          <ref name='xmlNewDtd'/>
-          <ref name='xmlNewNs'/>
-        </word>
-        <word name='creates'>
-          <ref name='xmlAutomataNewAllTrans'/>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewCountedTrans'/>
-          <ref name='xmlAutomataNewCounterTrans'/>
-          <ref name='xmlAutomataNewEpsilon'/>
-          <ref name='xmlAutomataNewNegTrans'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-          <ref name='xmlAutomataNewTransition'/>
-          <ref name='xmlAutomataNewTransition2'/>
-          <ref name='xmlCreateURI'/>
-          <ref name='xmlStrncatNew'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='creating'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-        </word>
-        <word name='creation'>
-          <ref name='xmlIOHTTPOpenW'/>
-          <ref name='xmlNewNs'/>
-          <ref name='xmlRegisterNodeDefault'/>
-        </word>
-        <word name='cross'>
-          <ref name='xmlSearchNs'/>
-        </word>
-        <word name='crossed'>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-        </word>
-        <word name='ctxt'>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlExpNewSeq'/>
-        </word>
-        <word name='ctxt-'>
-          <ref name='htmlFreeParserCtxt'/>
-          <ref name='xmlFreeParserCtxt'/>
-          <ref name='xmlPopInput'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='cur'>
-          <ref name='xmlXPathAxisFunc'/>
-        </word>
-        <word name='currently'>
-          <ref name='XML_SCHEMAS_INCLUDING_CONVERT_NS'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlMemBlocks'/>
-          <ref name='xmlMemGet'/>
-          <ref name='xmlMemUsed'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlOutputBufferGetContent'/>
-          <ref name='xmlOutputBufferGetSize'/>
-          <ref name='xmlSchemaValidateFile'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='custom'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlSaveSetAttrEscape'/>
-          <ref name='xmlSaveSetEscape'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk13'>
-      <letter name='d'>
-        <word name='dangerous'>
-          <ref name='xmlTextReaderCurrentNode'/>
-        </word>
-        <word name='data-type'>
-          <ref name='xmlSchemaCopyValue'/>
-        </word>
-        <word name='datatype'>
-          <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-        </word>
-        <word name='day'>
-          <ref name='ftpListCallback'/>
-        </word>
-        <word name='day:minute'>
-          <ref name='ftpListCallback'/>
-        </word>
-        <word name='de-coupled'>
-          <ref name='xmlValidateDtd'/>
-        </word>
-        <word name='deactivated'>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderRelaxNGValidate'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-          <ref name='xmlTextReaderSetSchema'/>
-        </word>
-        <word name='deallocate'>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlListDeallocator'/>
-          <ref name='xmlParserInputDeallocate'/>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-          <ref name='xmlXPathFreeNodeSetList'/>
-        </word>
-        <word name='deallocated'>
-          <ref name='xmlDictFree'/>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-          <ref name='xmlEncodeSpecialChars'/>
-          <ref name='xmlGetFeaturesList'/>
-          <ref name='xmlHashFree'/>
-          <ref name='xmlNewTextWriter'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlSaveUri'/>
-          <ref name='xmlTextReaderConstBaseUri'/>
-          <ref name='xmlTextReaderConstEncoding'/>
-          <ref name='xmlTextReaderConstLocalName'/>
-          <ref name='xmlTextReaderConstName'/>
-          <ref name='xmlTextReaderConstNamespaceUri'/>
-          <ref name='xmlTextReaderConstPrefix'/>
-          <ref name='xmlTextReaderConstString'/>
-          <ref name='xmlTextReaderConstValue'/>
-          <ref name='xmlTextReaderConstXmlVersion'/>
-          <ref name='xmlTextReaderGetAttribute'/>
-          <ref name='xmlTextReaderGetAttributeNo'/>
-          <ref name='xmlTextReaderGetAttributeNs'/>
-          <ref name='xmlTextReaderLookupNamespace'/>
-          <ref name='xmlTextReaderReadInnerXml'/>
-          <ref name='xmlTextReaderReadOuterXml'/>
-          <ref name='xmlTextReaderReadString'/>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderSetSchema'/>
-          <ref name='xmlTextReaderValue'/>
-        </word>
-        <word name='deallocation'>
-          <ref name='xmlListRemoveAll'/>
-          <ref name='xmlListRemoveFirst'/>
-          <ref name='xmlListRemoveLast'/>
-        </word>
-        <word name='deallocator'>
-          <ref name='xmlHashFree'/>
-          <ref name='xmlHashRemoveEntry'/>
-          <ref name='xmlHashRemoveEntry2'/>
-          <ref name='xmlHashRemoveEntry3'/>
-          <ref name='xmlHashUpdateEntry'/>
-          <ref name='xmlHashUpdateEntry2'/>
-          <ref name='xmlHashUpdateEntry3'/>
-          <ref name='xmlListCreate'/>
-        </word>
-        <word name='debug'>
-          <ref name='DEBUG_MEMORY'/>
-          <ref name='xmlCatalogSetDebug'/>
-          <ref name='xmlDebugDumpAttr'/>
-          <ref name='xmlDebugDumpAttrList'/>
-          <ref name='xmlDebugDumpDTD'/>
-          <ref name='xmlDebugDumpDocument'/>
-          <ref name='xmlDebugDumpDocumentHead'/>
-          <ref name='xmlDebugDumpEntities'/>
-          <ref name='xmlDebugDumpNode'/>
-          <ref name='xmlDebugDumpNodeList'/>
-          <ref name='xmlDebugDumpOneNode'/>
-          <ref name='xmlRegexpPrint'/>
-          <ref name='xmlSnprintfElementContent'/>
-        </word>
-        <word name='debugging'>
-          <ref name='DEBUG_MEMORY'/>
-          <ref name='DEBUG_MEMORY_LOCATION'/>
-          <ref name='LIBXML_DEBUG_RUNTIME'/>
-          <ref name='xmlCatalogSetDebug'/>
-          <ref name='xmlXPathDebugDumpObject'/>
-        </word>
-        <word name='decimal'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='decl'>
-          <ref name='XML_SCHEMAS_ELEM_INTERNAL_CHECKED'/>
-          <ref name='xmlAddAttributeDecl'/>
-          <ref name='xmlNewDocElementContent'/>
-          <ref name='xmlNewElementContent'/>
-        </word>
-        <word name='declarations'>
-          <ref name='_xmlXPathContext'/>
-          <ref name='htmlParseCharRef'/>
-          <ref name='startElementNsSAX2Func'/>
-          <ref name='xmlParseCharRef'/>
-          <ref name='xmlParseEntityDecl'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseEntityValue'/>
-          <ref name='xmlParseExternalSubset'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlSAX2StartElementNs'/>
-          <ref name='xmlTextWriterWriteFormatDTD'/>
-          <ref name='xmlTextWriterWriteVFormatDTD'/>
-          <ref name='xmlValidateNotationDecl'/>
-          <ref name='xmlXPtrBuildNodeList'/>
-        </word>
-        <word name='declare'>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlSearchNs'/>
-        </word>
-        <word name='declared'>
-          <ref name='_xmlElement'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlParseElementDecl'/>
-          <ref name='xmlParseEntityDecl'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlParseNotationType'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlTextReaderStandalone'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-        </word>
-        <word name='declares'>
-          <ref name='XMLCALL'/>
-          <ref name='XMLCDECL'/>
-          <ref name='XMLPUBFUN'/>
-          <ref name='XMLPUBLIC'/>
-          <ref name='XMLPUBVAR'/>
-        </word>
-        <word name='declaring'>
-          <ref name='xmlGetID'/>
-        </word>
-        <word name='decode'>
-          <ref name='xmlDecodeEntities'/>
-        </word>
-        <word name='def'>
-          <ref name='xmlParseAttributeListDecl'/>
-          <ref name='xmlParseAttributeType'/>
-        </word>
-        <word name='defaulted'>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='startElementNsSAX2Func'/>
-          <ref name='xmlSAX2StartElementNs'/>
-          <ref name='xmlTextReaderIsDefault'/>
-        </word>
-        <word name='defaultexternal'>
-          <ref name='xmlSetExternalEntityLoader'/>
-        </word>
-        <word name='defaults'>
-          <ref name='xmlShell'/>
-          <ref name='xmlXPathLocalNameFunction'/>
-          <ref name='xmlXPathNamespaceURIFunction'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-          <ref name='xmlXPathStringFunction'/>
-          <ref name='xmlXPathStringLengthFunction'/>
-        </word>
-        <word name='define'>
-          <ref name='DEBUG_MEMORY'/>
-          <ref name='XML_CAST_FPTR'/>
-          <ref name='xmlHandleEntity'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='defined'>
-          <ref name='WITHOUT_TRIO'/>
-          <ref name='WITH_TRIO'/>
-          <ref name='XML_SCHEMAS_ATTRGROUP_GLOBAL'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlGetNsList'/>
-          <ref name='xmlHandleEntity'/>
-          <ref name='xmlNewEntity'/>
-          <ref name='xmlNewNs'/>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseElementContentDecl'/>
-          <ref name='xmlParseInNodeContext'/>
-          <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlSearchNsByHref'/>
-          <ref name='xmlTextReaderIsDefault'/>
-          <ref name='xmlValidGetValidElements'/>
-          <ref name='xmlValidateDtdFinal'/>
-          <ref name='xmlXPathNextAncestorOrSelf'/>
-        </word>
-        <word name='defining'>
-          <ref name='XINCLUDE_FALLBACK'/>
-          <ref name='XINCLUDE_HREF'/>
-          <ref name='XINCLUDE_NODE'/>
-          <ref name='XINCLUDE_NS'/>
-          <ref name='XINCLUDE_OLD_NS'/>
-          <ref name='XINCLUDE_PARSE'/>
-          <ref name='XINCLUDE_PARSE_ENCODING'/>
-          <ref name='XINCLUDE_PARSE_TEXT'/>
-          <ref name='XINCLUDE_PARSE_XML'/>
-          <ref name='XINCLUDE_PARSE_XPOINTER'/>
-          <ref name='xmlGetID'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlShellDu'/>
-          <ref name='xmlTextReaderConstNamespaceUri'/>
-          <ref name='xmlTextReaderNamespaceUri'/>
-        </word>
-        <word name='definitions'>
-          <ref name='_xmlNode'/>
-          <ref name='startElementNsSAX2Func'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadCatalogs'/>
-          <ref name='xmlPatterncompile'/>
-          <ref name='xmlSAX2StartElementNs'/>
-          <ref name='xmlTextReaderPreservePattern'/>
-          <ref name='xmlValidateDtd'/>
-        </word>
-        <word name='defs'>
-          <ref name='_xmlSchema'/>
-          <ref name='_xmlSchemaElement'/>
-        </word>
-        <word name='delayed'>
-          <ref name='xmlOutputBufferWrite'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlOutputBufferWriteString'/>
-        </word>
-        <word name='delegation'>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-        </word>
-        <word name='delete'>
-          <ref name='xmlNanoFTPDele'/>
-        </word>
-        <word name='deletion'>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-        </word>
-        <word name='dependent'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='depending'>
-          <ref name='xmlIsID'/>
-          <ref name='xmlIsRef'/>
-          <ref name='xmlListDataCompare'/>
-          <ref name='xmlParseReference'/>
-          <ref name='xmlXPathEqualValues'/>
-          <ref name='xmlXPathLangFunction'/>
-          <ref name='xmlXPathNotEqualValues'/>
-        </word>
-        <word name='deprecated'>
-          <ref name='LIBXML_LEGACY_ENABLED'/>
-          <ref name='XML_DEPRECATED'/>
-          <ref name='_htmlElemDesc'/>
-          <ref name='_xmlURI'/>
-          <ref name='htmlAttrAllowed'/>
-          <ref name='htmlElementAllowedHere'/>
-          <ref name='htmlElementStatusHere'/>
-          <ref name='htmlNodeStatus'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlCreateEntitiesTable'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlParserInputRead'/>
-          <ref name='xmlScanName'/>
-        </word>
-        <word name='depth'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlValidCtxt'/>
-          <ref name='xmlPatternMaxDepth'/>
-          <ref name='xmlPatternMinDepth'/>
-          <ref name='xmlTextReaderDepth'/>
-        </word>
-        <word name='deregistration'>
-          <ref name='xmlDeregisterNodeDefault'/>
-          <ref name='xmlDeregisterNodeFunc'/>
-        </word>
-        <word name='derivation'>
-          <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION'/>
-          <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION'/>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlExpStringDerive'/>
-        </word>
-        <word name='descend'>
-          <ref name='xmlDOMWrapCloneNode'/>
-        </word>
-        <word name='descendant'>
-          <ref name='xmlXPathNextDescendant'/>
-        </word>
-        <word name='descendant-or-self'>
-          <ref name='xmlXPathNextDescendantOrSelf'/>
-        </word>
-        <word name='descendants'>
-          <ref name='xmlXPathNextDescendant'/>
-          <ref name='xmlXPathNextDescendantOrSelf'/>
-          <ref name='xmlXPathNextFollowing'/>
-        </word>
-        <word name='described'>
-          <ref name='xmlStreamWantsAnyNode'/>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateDocument'/>
-          <ref name='xmlValidateDocumentFinal'/>
-          <ref name='xmlValidateDtdFinal'/>
-          <ref name='xmlValidateElementDecl'/>
-          <ref name='xmlValidateNotationDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlValidateOneNamespace'/>
-          <ref name='xmlValidateRoot'/>
-        </word>
-        <word name='describing'>
-          <ref name='htmlCreateFileParserCtxt'/>
-          <ref name='htmlParseDoc'/>
-          <ref name='htmlParseFile'/>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlFindCharEncodingHandler'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-        </word>
-        <word name='description'>
-          <ref name='LIBXML_VERSION_EXTRA'/>
-          <ref name='_htmlElemDesc'/>
-          <ref name='_htmlEntityDesc'/>
-          <ref name='htmlElementAllowedHereDesc'/>
-          <ref name='xmlCopyDocElementContent'/>
-          <ref name='xmlCopyElementContent'/>
-          <ref name='xmlGetDtdAttrDesc'/>
-          <ref name='xmlGetDtdElementDesc'/>
-          <ref name='xmlGetDtdNotationDesc'/>
-          <ref name='xmlGetDtdQAttrDesc'/>
-          <ref name='xmlGetDtdQElementDesc'/>
-          <ref name='xmlIsMixedElement'/>
-          <ref name='xmlNodeSetLang'/>
-        </word>
-        <word name='descriptor'>
-          <ref name='htmlCtxtReadFd'/>
-          <ref name='htmlReadFd'/>
-          <ref name='xmlCtxtReadFd'/>
-          <ref name='xmlMemDisplay'/>
-          <ref name='xmlMemDisplayLast'/>
-          <ref name='xmlMemShow'/>
-          <ref name='xmlOutputBufferCreateFd'/>
-          <ref name='xmlParserInputBufferCreateFd'/>
-          <ref name='xmlReadFd'/>
-          <ref name='xmlReaderForFd'/>
-          <ref name='xmlReaderNewFd'/>
-          <ref name='xmlSaveToFd'/>
-          <ref name='xmlSaveToIO'/>
-        </word>
-        <word name='designed'>
-          <ref name='xmlCharEncodingOutputFunc'/>
-        </word>
-        <word name='desired'>
-          <ref name='xmlBufferResize'/>
-          <ref name='xmlIOHTTPOpenW'/>
-          <ref name='xmlUTF8Strloc'/>
-          <ref name='xmlUTF8Strpos'/>
-        </word>
-        <word name='destination'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlIOHTTPOpenW'/>
-          <ref name='xmlURIUnescapeString'/>
-        </word>
-        <word name='destroy'>
-          <ref name='xmlTextReaderCurrentDoc'/>
-        </word>
-        <word name='destroyed'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlTextReaderCurrentNode'/>
-          <ref name='xmlTextReaderSetup'/>
-        </word>
-        <word name='destruction'>
-          <ref name='xmlDeregisterNodeDefault'/>
-        </word>
-        <word name='details'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='detect'>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlInputMatchCallback'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlOutputMatchCallback'/>
-        </word>
-        <word name='detected'>
-          <ref name='CHECK_ERROR'/>
-          <ref name='CHECK_ERROR0'/>
-          <ref name='endDocument'/>
-          <ref name='endDocumentSAXFunc'/>
-          <ref name='endElement'/>
-          <ref name='endElementNsSAX2Func'/>
-          <ref name='endElementSAXFunc'/>
-          <ref name='reference'/>
-          <ref name='referenceSAXFunc'/>
-          <ref name='startElementNsSAX2Func'/>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xlinkExtendedLinkSetFunk'/>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlSAX2EndDocument'/>
-          <ref name='xmlSAX2EndElement'/>
-          <ref name='xmlSAX2EndElementNs'/>
-          <ref name='xmlSAX2Reference'/>
-          <ref name='xmlSAX2StartElementNs'/>
-          <ref name='xmlSchemaIsValid'/>
-        </word>
-        <word name='detection'>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xlinkExtendedLinkSetFunk'/>
-          <ref name='xlinkGetDefaultDetect'/>
-          <ref name='xlinkNodeDetectFunc'/>
-          <ref name='xlinkSetDefaultDetect'/>
-          <ref name='xlinkSimpleLinkFunk'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlIsID'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseExternalEntity'/>
-        </word>
-        <word name='determine'>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCharInRange'/>
-        </word>
-        <word name='determined'>
-          <ref name='xmlXPathLangFunction'/>
-        </word>
-        <word name='determinist'>
-          <ref name='xmlAutomataIsDeterminist'/>
-          <ref name='xmlRegexpIsDeterminist'/>
-        </word>
-        <word name='dict'>
-          <ref name='_xmlDoc'/>
-        </word>
-        <word name='dictionaries'>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-        </word>
-        <word name='did'>
-          <ref name='XML_SCHEMAS_TYPE_BLOCK_DEFAULT'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-          <ref name='xmlTextReaderStandalone'/>
-        </word>
-        <word name='difference'>
-          <ref name='xmlXPathDifference'/>
-        </word>
-        <word name='different'>
-          <ref name='_xmlBuffer'/>
-          <ref name='xmlACatalogAdd'/>
-          <ref name='xmlBuildQName'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlChildElementCount'/>
-          <ref name='xmlFirstElementChild'/>
-          <ref name='xmlLastElementChild'/>
-          <ref name='xmlNextElementSibling'/>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlPreviousElementSibling'/>
-          <ref name='xmlStrEqual'/>
-          <ref name='xmlStrQEqual'/>
-        </word>
-        <word name='differentiate'>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='differently'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='differs'>
-          <ref name='xmlBufShrink'/>
-          <ref name='xmlNewEntity'/>
-        </word>
-        <word name='digit'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='digits'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='dir'>
-          <ref name='xmlShellDir'/>
-        </word>
-        <word name='direct'>
-          <ref name='htmlElementAllowedHere'/>
-          <ref name='htmlElementAllowedHereDesc'/>
-          <ref name='htmlElementStatusHere'/>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlURIUnescapeString'/>
-        </word>
-        <word name='direction'>
-          <ref name='xmlXPathNextAncestor'/>
-          <ref name='xmlXPathNextAncestorOrSelf'/>
-          <ref name='xmlXPathNextAttribute'/>
-          <ref name='xmlXPathNextChild'/>
-          <ref name='xmlXPathNextDescendant'/>
-          <ref name='xmlXPathNextDescendantOrSelf'/>
-          <ref name='xmlXPathNextFollowing'/>
-          <ref name='xmlXPathNextFollowingSibling'/>
-          <ref name='xmlXPathNextNamespace'/>
-          <ref name='xmlXPathNextParent'/>
-          <ref name='xmlXPathNextPreceding'/>
-          <ref name='xmlXPathNextPrecedingSibling'/>
-          <ref name='xmlXPathNextSelf'/>
-        </word>
-        <word name='directly'>
-          <ref name='xmlBufGetNodeContent'/>
-          <ref name='xmlNodeBufGetContent'/>
-          <ref name='xmlNodeGetContent'/>
-          <ref name='xmlNormalizeURIPath'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseElementContentDecl'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlXPathConvertBoolean'/>
-          <ref name='xmlXPathConvertNumber'/>
-          <ref name='xmlXPathConvertString'/>
-          <ref name='xmlXPtrNewContext'/>
-        </word>
-        <word name='directories'>
-          <ref name='xmlLoadCatalogs'/>
-        </word>
-        <word name='directory'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlCheckFilename'/>
-          <ref name='xmlNanoFTPCwd'/>
-          <ref name='xmlNanoFTPDele'/>
-          <ref name='xmlParserGetDirectory'/>
-          <ref name='xmlShellList'/>
-        </word>
-        <word name='disable'>
-          <ref name='xmlCatalogSetDebug'/>
-          <ref name='xmlSchemaValidateSetLocator'/>
-        </word>
-        <word name='disabled'>
-          <ref name='LIBXML_EXPR_ENABLED'/>
-          <ref name='XML_CAST_FPTR'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlParseURIRaw'/>
-        </word>
-        <word name='disables'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='disabling'>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-        </word>
-        <word name='disallowed'>
-          <ref name='XML_SCHEMAS_ELEM_BLOCK_EXTENSION'/>
-          <ref name='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION'/>
-        </word>
-        <word name='discard'>
-          <ref name='xmlUnlinkNode'/>
-        </word>
-        <word name='discarded'>
-          <ref name='xmlDeregisterNodeFunc'/>
-        </word>
-        <word name='discarding'>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-        </word>
-        <word name='disconnected'>
-          <ref name='xmlAutomataNewState'/>
-        </word>
-        <word name='discovering'>
-          <ref name='xmlSwitchEncoding'/>
-          <ref name='xmlSwitchInputEncoding'/>
-          <ref name='xmlSwitchToEncoding'/>
-        </word>
-        <word name='display'>
-          <ref name='errorSAXFunc'/>
-          <ref name='fatalErrorSAXFunc'/>
-          <ref name='warningSAXFunc'/>
-          <ref name='xmlMemShow'/>
-          <ref name='xmlParserError'/>
-          <ref name='xmlParserValidityError'/>
-          <ref name='xmlParserValidityWarning'/>
-          <ref name='xmlParserWarning'/>
-        </word>
-        <word name='distinct'>
-          <ref name='xmlXPathDistinct'/>
-          <ref name='xmlXPathDistinctSorted'/>
-        </word>
-        <word name='distinguish'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='div'>
-          <ref name='xmlXPathDivValues'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='doc'>
-          <ref name='htmlNodeDumpFileFormat'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-          <ref name='xmlNewTextWriterDoc'/>
-        </word>
-        <word name='doc-'>
-          <ref name='xmlDOMWrapRemoveNode'/>
-          <ref name='xmlDocGetRootElement'/>
-          <ref name='xmlDocSetRootElement'/>
-          <ref name='xmlNewTextWriterTree'/>
-          <ref name='xmlNodeGetBase'/>
-        </word>
-        <word name='docs'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='doctypedecl'>
-          <ref name='xmlParseDocTypeDecl'/>
-          <ref name='xmlParseDocument'/>
-        </word>
-        <word name='documents'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlIsID'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='doesn'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='htmlElementAllowedHere'/>
-          <ref name='xmlBufferDetach'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCreateEntitiesTable'/>
-          <ref name='xmlFreeNode'/>
-          <ref name='xmlGetThreadId'/>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlPatternMatch'/>
-          <ref name='xmlRemoveProp'/>
-          <ref name='xmlSplitQName2'/>
-          <ref name='xmlUTF8Strlen'/>
-          <ref name='xmlValidateRoot'/>
-          <ref name='xmlXPathLeading'/>
-          <ref name='xmlXPathLeadingSorted'/>
-          <ref name='xmlXPathNodeLeading'/>
-          <ref name='xmlXPathNodeLeadingSorted'/>
-          <ref name='xmlXPathNodeTrailing'/>
-          <ref name='xmlXPathNodeTrailingSorted'/>
-          <ref name='xmlXPathTrailing'/>
-          <ref name='xmlXPathTrailingSorted'/>
-        </word>
-        <word name='doing'>
-          <ref name='xmlOutputBufferCreateFilenameFunc'/>
-          <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-          <ref name='xmlRegExecCallbacks'/>
-        </word>
-        <word name='don'>
-          <ref name='XML_SCHEMAS_ANY_LAX'/>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlChildElementCount'/>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlFirstElementChild'/>
-          <ref name='xmlLastElementChild'/>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNextElementSibling'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlPreviousElementSibling'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlXPathFreeNodeSetList'/>
-          <ref name='xmlXPathNodeSetFreeNs'/>
-        </word>
-        <word name='dotgnu'>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-        <word name='double'>
-          <ref name='val'/>
-          <ref name='xmlBufferWriteQuotedString'/>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-          <ref name='xmlXPathIsInf'/>
-          <ref name='xmlXPathIsNaN'/>
-          <ref name='xmlXPathNewFloat'/>
-          <ref name='xmlXPathNodeSetCreate'/>
-          <ref name='xmlXPathReturnNumber'/>
-          <ref name='xmlXPathStringEvalNumber'/>
-          <ref name='xmlXPtrLocationSetCreate'/>
-        </word>
-        <word name='double-hyphen'>
-          <ref name='xmlParseComment'/>
-        </word>
-        <word name='double-quotes'>
-          <ref name='xmlBufferWriteQuotedString'/>
-        </word>
-        <word name='doubleit'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-        </word>
-        <word name='doublequotes'>
-          <ref name='xmlParseQuotedString'/>
-        </word>
-        <word name='doubt'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='down'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-        </word>
-        <word name='draft'>
-          <ref name='XINCLUDE_OLD_NS'/>
-        </word>
-        <word name='drop'>
-          <ref name='xmlFileRead'/>
-          <ref name='xmlIOFTPRead'/>
-          <ref name='xmlIOHTTPRead'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlParseQuotedString'/>
-          <ref name='xmlXPtrBuildNodeList'/>
-        </word>
-        <word name='dtd'>
-          <ref name='getSystemId'/>
-          <ref name='htmlNewDoc'/>
-          <ref name='htmlNewDocNoDtD'/>
-          <ref name='xmlCopyDtd'/>
-          <ref name='xmlSAX2GetSystemId'/>
-          <ref name='xmlValidateDtd'/>
-        </word>
-        <word name='dtds'>
-          <ref name='getSystemId'/>
-          <ref name='xmlSAX2GetSystemId'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='due'>
-          <ref name='xmlBufShrink'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-        </word>
-        <word name='dump'>
-          <ref name='xmlBufShrink'/>
-          <ref name='xmlBufferAdd'/>
-          <ref name='xmlBufferCCat'/>
-          <ref name='xmlBufferDump'/>
-          <ref name='xmlBufferShrink'/>
-          <ref name='xmlDumpAttributeDecl'/>
-          <ref name='xmlDumpAttributeTable'/>
-          <ref name='xmlDumpElementDecl'/>
-          <ref name='xmlDumpElementTable'/>
-          <ref name='xmlDumpEntitiesTable'/>
-          <ref name='xmlDumpEntityDecl'/>
-          <ref name='xmlDumpNotationDecl'/>
-          <ref name='xmlDumpNotationTable'/>
-          <ref name='xmlLsOneNode'/>
-          <ref name='xmlMemDisplayLast'/>
-          <ref name='xmlMemShow'/>
-          <ref name='xmlSnprintfElementContent'/>
-          <ref name='xmlXPathDebugDumpObject'/>
-        </word>
-        <word name='dumping'>
-          <ref name='xmlMemDisplayLast'/>
-        </word>
-        <word name='dumps'>
-          <ref name='xmlShellBase'/>
-          <ref name='xmlShellCat'/>
-          <ref name='xmlShellDir'/>
-        </word>
-        <word name='duplicate'>
-          <ref name='xmlCanonicPath'/>
-          <ref name='xmlPathToURI'/>
-        </word>
-        <word name='duplicated'>
-          <ref name='xmlRelaxNGNewDocParserCtxt'/>
-          <ref name='xmlXPathNodeSetFreeNs'/>
-        </word>
-        <word name='duplicates'>
-          <ref name='xmlSchemaCopyValue'/>
-        </word>
-        <word name='duration'>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='during'>
-          <ref name='xmlSAXDefaultVersion'/>
-          <ref name='xmlSchemaIsValid'/>
-          <ref name='xmlSchemaNewDocParserCtxt'/>
-          <ref name='xmlSchemaSetValidOptions'/>
-          <ref name='xmlSchematronNewDocParserCtxt'/>
-        </word>
-        <word name='dynamic'>
-          <ref name='LIBXML_MODULE_EXTENSION'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk14'>
-      <letter name='e'>
-        <word name='each'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlHashCopy'/>
-          <ref name='xmlHashScan'/>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull'/>
-          <ref name='xmlHashScanFull3'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlXPathIdFunction'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='edition'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='effect'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='effective'>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadCatalogs'/>
-        </word>
-        <word name='efficiency'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='either'>
-          <ref name='xmlBoolToText'/>
-          <ref name='xmlBufGetNodeContent'/>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlNodeBufGetContent'/>
-          <ref name='xmlNodeGetContent'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlTextReaderNormalization'/>
-        </word>
-        <word name='either:'>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-        </word>
-        <word name='elem'>
-          <ref name='XML_SCHEMAS_ELEM_INTERNAL_CHECKED'/>
-        </word>
-        <word name='elem-'>
-          <ref name='_xmlDOMWrapCtxt'/>
-        </word>
-        <word name='element-'>
-          <ref name='xmlStreamPushNode'/>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='element-node'>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlStreamPush'/>
-        </word>
-        <word name='element-nodes'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-        </word>
-        <word name='elementFormDefault'>
-          <ref name='XML_SCHEMAS_QUALIF_ELEM'/>
-        </word>
-        <word name='elementdecl'>
-          <ref name='xmlParseElementDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='elements'>
-          <ref name='XML_CATALOGS_NAMESPACE'/>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='XML_SCHEMAS_ATTR_GLOBAL'/>
-          <ref name='XML_SCHEMAS_ATTR_NSDEFAULT'/>
-          <ref name='XML_SCHEMAS_ELEM_NSDEFAULT'/>
-          <ref name='_xmlDtd'/>
-          <ref name='htmlElementAllowedHere'/>
-          <ref name='htmlNodeStatus'/>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlDictSize'/>
-          <ref name='xmlFreePatternList'/>
-          <ref name='xmlHashSize'/>
-          <ref name='xmlLineNumbersDefault'/>
-          <ref name='xmlListMerge'/>
-          <ref name='xmlListReverse'/>
-          <ref name='xmlListSize'/>
-          <ref name='xmlListSort'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlShellPwd'/>
-          <ref name='xmlTextWriterEndDocument'/>
-          <ref name='xmlXPathIdFunction'/>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='else'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='isolat1ToUTF8'/>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-        </word>
-        <word name='emitted'>
-          <ref name='xmlSetGenericErrorFunc'/>
-        </word>
-        <word name='empty-element'>
-          <ref name='xmlParseStartTag'/>
-        </word>
-        <word name='enable'>
-          <ref name='xmlCatalogSetDebug'/>
-        </word>
-        <word name='enabled'>
-          <ref name='xmlSaveFile'/>
-          <ref name='xmlSaveFormatFile'/>
-        </word>
-        <word name='enables'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='enabling'>
-          <ref name='xmlLineNumbersDefault'/>
-          <ref name='xmlPedanticParserDefault'/>
-        </word>
-        <word name='enc'>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-        </word>
-        <word name='encapsulate'>
-          <ref name='xmlBufferFree'/>
-        </word>
-        <word name='encapsulating'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlNewIOInputStream'/>
-        </word>
-        <word name='enclose'>
-          <ref name='xmlTextReaderQuoteChar'/>
-        </word>
-        <word name='encode'>
-          <ref name='xmlTextWriterWriteBase64'/>
-          <ref name='xmlTextWriterWriteBinHex'/>
-        </word>
-        <word name='encoded'>
-          <ref name='_xmlOutputBuffer'/>
-          <ref name='_xmlParserInput'/>
-          <ref name='_xmlParserInputBuffer'/>
-          <ref name='xmlCheckUTF8'/>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlSplitQName'/>
-          <ref name='xmlStrcat'/>
-          <ref name='xmlStrdup'/>
-          <ref name='xmlTextWriterWriteBase64'/>
-          <ref name='xmlTextWriterWriteBinHex'/>
-          <ref name='xmlUTF8Strlen'/>
-          <ref name='xmlUTF8Strsize'/>
-          <ref name='xmlUTF8Strsub'/>
-        </word>
-        <word name='encoder'>
-          <ref name='_xmlOutputBuffer'/>
-          <ref name='_xmlParserInputBuffer'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-        </word>
-        <word name='encoder==NULL'>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='encountered'>
-          <ref name='xmlEncodeEntities'/>
-        </word>
-        <word name='encountering'>
-          <ref name='XML_CAST_FPTR'/>
-        </word>
-        <word name='end-tag'>
-          <ref name='xmlParseElement'/>
-        </word>
-        <word name='end-up'>
-          <ref name='xmlParseReference'/>
-        </word>
-        <word name='ended'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='ending'>
-          <ref name='xmlXPtrNewCollapsedRange'/>
-          <ref name='xmlXPtrNewRange'/>
-          <ref name='xmlXPtrNewRangeNodeObject'/>
-          <ref name='xmlXPtrNewRangeNodePoint'/>
-          <ref name='xmlXPtrNewRangeNodes'/>
-          <ref name='xmlXPtrNewRangePointNode'/>
-          <ref name='xmlXPtrNewRangePoints'/>
-        </word>
-        <word name='ends'>
-          <ref name='_xmlParserNodeInfo'/>
-          <ref name='xmlNanoHTTPClose'/>
-        </word>
-        <word name='enforced'>
-          <ref name='XML_MAX_LOOKUP_LIMIT'/>
-        </word>
-        <word name='engine'>
-          <ref name='xmlXPathAxisFunc'/>
-          <ref name='xmlXPathFuncLookupFunc'/>
-          <ref name='xmlXPathVariableLookupFunc'/>
-        </word>
-        <word name='englobing'>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlExpSubsume'/>
-          <ref name='xmlSnprintfElementContent'/>
-          <ref name='xmlSprintfElementContent'/>
-        </word>
-        <word name='enhancements'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='enough'>
-          <ref name='xmlBuildQName'/>
-        </word>
-        <word name='ensure'>
-          <ref name='xmlCopyNodeList'/>
-          <ref name='xmlNewTextChild'/>
-        </word>
-        <word name='ensures'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-        </word>
-        <word name='ensuring'>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='entire'>
-          <ref name='xmlCleanupInputCallbacks'/>
-          <ref name='xmlCleanupOutputCallbacks'/>
-        </word>
-        <word name='entities:'>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParserHandleReference'/>
-        </word>
-        <word name='entproc'>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-        </word>
-        <word name='entries'>
-          <ref name='xmlACatalogAdd'/>
-          <ref name='xmlACatalogRemove'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlCatalogConvert'/>
-          <ref name='xmlCatalogRemove'/>
-          <ref name='xmlConvertSGMLCatalog'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlHashAddEntry3'/>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-          <ref name='xmlMemShow'/>
-        </word>
-        <word name='entry'>
-          <ref name='xmlACatalogAdd'/>
-          <ref name='xmlACatalogRemove'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlCatalogAddLocal'/>
-          <ref name='xmlCatalogRemove'/>
-          <ref name='xmlHashDefaultDeallocator'/>
-          <ref name='xmlHashUpdateEntry'/>
-          <ref name='xmlHashUpdateEntry2'/>
-          <ref name='xmlHashUpdateEntry3'/>
-          <ref name='xmlXPathNodeSetRemove'/>
-          <ref name='xmlXPtrLocationSetRemove'/>
-        </word>
-        <word name='enumerated'>
-          <ref name='attributeDecl'/>
-          <ref name='attributeDeclSAXFunc'/>
-          <ref name='xmlSAX2AttributeDecl'/>
-        </word>
-        <word name='enumeration'>
-          <ref name='_xmlAttribute'/>
-          <ref name='xmlAddAttributeDecl'/>
-          <ref name='xmlCopyEnumeration'/>
-          <ref name='xmlCreateEnumeration'/>
-          <ref name='xmlFreeEnumeration'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseEnumeratedType'/>
-          <ref name='xmlParseEnumerationType'/>
-        </word>
-        <word name='environment'>
-          <ref name='xmlNanoFTPProxy'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlShell'/>
-          <ref name='xmlXPathInit'/>
-        </word>
-        <word name='epsilon'>
-          <ref name='xmlAutomataNewAllTrans'/>
-          <ref name='xmlAutomataNewCountedTrans'/>
-          <ref name='xmlAutomataNewCounterTrans'/>
-          <ref name='xmlAutomataNewEpsilon'/>
-        </word>
-        <word name='equal'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlStrEqual'/>
-          <ref name='xmlStrQEqual'/>
-          <ref name='xmlTextReaderConstName'/>
-          <ref name='xmlTextReaderName'/>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathEqualValues'/>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-          <ref name='xmlXPathIdFunction'/>
-          <ref name='xmlXPathNotEqualValues'/>
-          <ref name='xmlXPathPositionFunction'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='equality'>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlListDataCompare'/>
-        </word>
-        <word name='equivalent'>
-          <ref name='xmlMallocAtomicLoc'/>
-          <ref name='xmlMallocLoc'/>
-          <ref name='xmlMemFree'/>
-          <ref name='xmlMemMalloc'/>
-          <ref name='xmlMemRealloc'/>
-          <ref name='xmlMemStrdupLoc'/>
-          <ref name='xmlMemoryStrdup'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlReallocLoc'/>
-          <ref name='xmlUTF8Strpos'/>
-          <ref name='xmlXPathCastToString'/>
-          <ref name='xmlXPathConvertBoolean'/>
-          <ref name='xmlXPathConvertNumber'/>
-          <ref name='xmlXPathConvertString'/>
-        </word>
-        <word name='escape'>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='xmlURIEscape'/>
-          <ref name='xmlURIEscapeStr'/>
-        </word>
-        <word name='escaped'>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-          <ref name='xmlParseCDSect'/>
-          <ref name='xmlParseCharData'/>
-          <ref name='xmlSaveUri'/>
-          <ref name='xmlURIEscape'/>
-          <ref name='xmlURIEscapeStr'/>
-        </word>
-        <word name='escapes'>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlURIEscapeStr'/>
-        </word>
-        <word name='escaping'>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlSaveSetAttrEscape'/>
-          <ref name='xmlSaveSetEscape'/>
-        </word>
-        <word name='especially'>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='established'>
-          <ref name='xmlNanoFTPUpdateURL'/>
-        </word>
-        <word name='etc'>
-          <ref name='_xmlSchemaFacet'/>
-          <ref name='xmlDocGetRootElement'/>
-          <ref name='xmlDocSetRootElement'/>
-          <ref name='xmlParseInNodeContext'/>
-        </word>
-        <word name='evaluate'>
-          <ref name='xmlXPathEvalExpr'/>
-        </word>
-        <word name='evaluated'>
-          <ref name='xmlXPathCompiledEvalToBoolean'/>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-          <ref name='xmlXPtrNewContext'/>
-        </word>
-        <word name='evaluating'>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-        </word>
-        <word name='evaluation'>
-          <ref name='_xmlXPathFunct'/>
-          <ref name='_xmlXPathParserContext'/>
-          <ref name='valuePop'/>
-          <ref name='valuePush'/>
-          <ref name='xmlRegFreeExecCtxt'/>
-          <ref name='xmlRegNewExecCtxt'/>
-          <ref name='xmlShellPrintXPathResult'/>
-          <ref name='xmlXPathCompiledEval'/>
-          <ref name='xmlXPathEval'/>
-          <ref name='xmlXPathEvalExpression'/>
-          <ref name='xmlXPathEvalFunc'/>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-          <ref name='xmlXPathNodeEval'/>
-          <ref name='xmlXPtrBuildNodeList'/>
-          <ref name='xmlXPtrEval'/>
-        </word>
-        <word name='even'>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlExpNewSeq'/>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlTextWriterFullEndElement'/>
-        </word>
-        <word name='event'>
-          <ref name='xmlSchemaSAXPlug'/>
-          <ref name='xmlSchemaSAXUnplug'/>
-          <ref name='xmlSchemaValidateStream'/>
-        </word>
-        <word name='events'>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='xmlSchemaValidateStream'/>
-        </word>
-        <word name='ever'>
-          <ref name='xmlExpCtxtNbCons'/>
-        </word>
-        <word name='everywhere'>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-        </word>
-        <word name='exact'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-        </word>
-        <word name='examined'>
-          <ref name='xmlHasFeature'/>
-        </word>
-        <word name='example'>
-          <ref name='xmlParserInputBufferCreateStatic'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlTextReaderConstString'/>
-          <ref name='xmlXPathSubstringAfterFunction'/>
-          <ref name='xmlXPathSubstringBeforeFunction'/>
-          <ref name='xmlXPathSubstringFunction'/>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='examples'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='except'>
-          <ref name='xmlAutomataNewNegTrans'/>
-          <ref name='xmlGetNoNsProp'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseCatalogFile'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParserHandleReference'/>
-        </word>
-        <word name='exception'>
-          <ref name='xmlURIEscapeStr'/>
-        </word>
-        <word name='excluding'>
-          <ref name='IS_CHAR'/>
-          <ref name='xmlXPathNextFollowing'/>
-          <ref name='xmlXPathNextPreceding'/>
-        </word>
-        <word name='exclusions'>
-          <ref name='XML_SCHEMAS_ELEM_FINAL_ABSENT'/>
-        </word>
-        <word name='exclusions:'>
-          <ref name='XML_SCHEMAS_ELEM_FINAL_EXTENSION'/>
-          <ref name='XML_SCHEMAS_ELEM_FINAL_RESTRICTION'/>
-        </word>
-        <word name='exclusive'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='executed'>
-          <ref name='xmlAutomataCompile'/>
-        </word>
-        <word name='execution'>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlRegExecPushString'/>
-          <ref name='xmlRegExecPushString2'/>
-        </word>
-        <word name='exist'>
-          <ref name='xmlHasFeature'/>
-          <ref name='xmlXPtrLocationSetAdd'/>
-        </word>
-        <word name='existent'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-        </word>
-        <word name='exists'>
-          <ref name='xmlDictExists'/>
-          <ref name='xmlShellPwd'/>
-          <ref name='xmlTextReaderConstXmlLang'/>
-          <ref name='xmlTextReaderXmlLang'/>
-          <ref name='xmlValidateNotationDecl'/>
-        </word>
-        <word name='exit'>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-        </word>
-        <word name='expand'>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-        </word>
-        <word name='expanded'>
-          <ref name='xmlRelaxNGValidateFullElement'/>
-          <ref name='xmlSchemaNewStringValue'/>
-          <ref name='xmlXPathNamespaceURIFunction'/>
-        </word>
-        <word name='expected'>
-          <ref name='x'/>
-          <ref name='xmlBufferCreateStatic'/>
-          <ref name='xmlParserInputBufferCreateStatic'/>
-          <ref name='xmlRelaxNGNewMemParserCtxt'/>
-          <ref name='xmlRelaxNGNewParserCtxt'/>
-          <ref name='xmlSchemaNewMemParserCtxt'/>
-          <ref name='xmlSchemaNewParserCtxt'/>
-          <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-          <ref name='xmlSchematronNewMemParserCtxt'/>
-          <ref name='xmlSchematronNewParserCtxt'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='explicitly'>
-          <ref name='xmlSAXDefaultVersion'/>
-        </word>
-        <word name='explored'>
-          <ref name='xmlXPathAxisFunc'/>
-        </word>
-        <word name='exportable'>
-          <ref name='XMLPUBFUN'/>
-          <ref name='XMLPUBVAR'/>
-        </word>
-        <word name='exported'>
-          <ref name='XMLCALL'/>
-          <ref name='XMLCDECL'/>
-        </word>
-        <word name='exposing'>
-          <ref name='xmlTextReaderRead'/>
-        </word>
-        <word name='express'>
-          <ref name='LIBXML2_NEW_BUFFER'/>
-        </word>
-        <word name='expressing'>
-          <ref name='xmlPathToURI'/>
-        </word>
-        <word name='expressions'>
-          <ref name='LIBXML_EXPR_ENABLED'/>
-          <ref name='LIBXML_REGEXP_ENABLED'/>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlExpNewCtxt'/>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlExpSubsume'/>
-        </word>
-        <word name='exslSetsDistinctSorted'>
-          <ref name='xmlXPathDistinct'/>
-        </word>
-        <word name='exslSetsLeadingSorted'>
-          <ref name='xmlXPathLeading'/>
-        </word>
-        <word name='exslSetsNodeLeadingSorted'>
-          <ref name='xmlXPathNodeLeading'/>
-        </word>
-        <word name='ext'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='extParsedEnt'>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseEntity'/>
-          <ref name='xmlParseExtParsedEnt'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlSAXParseEntity'/>
-        </word>
-        <word name='extSubset'>
-          <ref name='xmlParseExternalSubset'/>
-        </word>
-        <word name='extSubsetDecl'>
-          <ref name='xmlParseExternalSubset'/>
-        </word>
-        <word name='extend'>
-          <ref name='xmlStrncat'/>
-          <ref name='xmlValidGetPotentialChildren'/>
-        </word>
-        <word name='extended'>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xlinkExtendedLinkSetFunk'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlXPathNodeSetMerge'/>
-          <ref name='xmlXPtrLocationSetMerge'/>
-        </word>
-        <word name='extension'>
-          <ref name='XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION'/>
-          <ref name='XML_SCHEMAS_ELEM_FINAL_EXTENSION'/>
-          <ref name='XML_SCHEMAS_FINAL_DEFAULT_EXTENSION'/>
-          <ref name='XML_SCHEMAS_TYPE_BLOCK_EXTENSION'/>
-          <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_EXTENSION'/>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='extensions'>
-          <ref name='_xmlSAXHandler'/>
-        </word>
-        <word name='extent'>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-        </word>
-        <word name='extlang'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='extract'>
-          <ref name='XML_GET_CONTENT'/>
-          <ref name='XML_GET_LINE'/>
-          <ref name='xmlBufContent'/>
-          <ref name='xmlBufEnd'/>
-          <ref name='xmlBufferContent'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk15'>
-      <letter name='f'>
-        <word name='fTP'>
-          <ref name='xmlNanoFTPConnectTo'/>
-        </word>
-        <word name='face'>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-        </word>
-        <word name='facet'>
-          <ref name='XML_SCHEMAS_FACET_COLLAPSE'/>
-          <ref name='XML_SCHEMAS_FACET_PRESERVE'/>
-          <ref name='XML_SCHEMAS_FACET_REPLACE'/>
-          <ref name='XML_SCHEMAS_FACET_UNKNOWN'/>
-          <ref name='_xmlSchemaFacetLink'/>
-          <ref name='xmlSchemaCheckFacet'/>
-          <ref name='xmlSchemaFreeFacet'/>
-          <ref name='xmlSchemaGetFacetValueAsULong'/>
-          <ref name='xmlSchemaIsBuiltInTypeFacet'/>
-          <ref name='xmlSchemaValidateFacet'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-          <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-        </word>
-        <word name='facets'>
-          <ref name='XML_SCHEMAS_TYPE_FACETSNEEDVALUE'/>
-          <ref name='XML_SCHEMAS_TYPE_HAS_FACETS'/>
-          <ref name='XML_SCHEMAS_TYPE_NORMVALUENEEDED'/>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xmlSchemaCheckFacet'/>
-        </word>
-        <word name='facility'>
-          <ref name='xmlExpCtxtNbCons'/>
-          <ref name='xmlExpCtxtNbNodes'/>
-        </word>
-        <word name='fail'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlShellPrintXPathError'/>
-        </word>
-        <word name='failed'>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlNanoFTPConnectTo'/>
-          <ref name='xmlNanoFTPCwd'/>
-          <ref name='xmlNanoFTPDele'/>
-          <ref name='xmlRemoveID'/>
-          <ref name='xmlRemoveRef'/>
-          <ref name='xmlShellLoad'/>
-          <ref name='xmlXIncludeProcess'/>
-          <ref name='xmlXIncludeProcessFlags'/>
-          <ref name='xmlXIncludeProcessFlagsData'/>
-          <ref name='xmlXIncludeProcessNode'/>
-          <ref name='xmlXIncludeProcessTree'/>
-          <ref name='xmlXIncludeProcessTreeFlags'/>
-          <ref name='xmlXIncludeProcessTreeFlagsData'/>
-          <ref name='xmlXPathCompareValues'/>
-        </word>
-        <word name='fails'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='_htmlElemDesc'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='xmlCanonicPath'/>
-          <ref name='xmlCharEncFirstLine'/>
-          <ref name='xmlCharEncInFunc'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlCheckFilename'/>
-          <ref name='xmlFileOpen'/>
-          <ref name='xmlPathToURI'/>
-        </word>
-        <word name='fallback'>
-          <ref name='XINCLUDE_FALLBACK'/>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlFileOpen'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseEntity'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-        </word>
-        <word name='far'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='fatalErrorSAXFunc'/>
-          <ref name='xmlSchemaIsValid'/>
-        </word>
-        <word name='fashion'>
-          <ref name='xmlNewRMutex'/>
-        </word>
-        <word name='faster'>
-          <ref name='htmlNodeStatus'/>
-          <ref name='xmlStrEqual'/>
-        </word>
-        <word name='fatal'>
-          <ref name='fatalErrorSAXFunc'/>
-        </word>
-        <word name='fatalError'>
-          <ref name='fatalErrorSAXFunc'/>
-        </word>
-        <word name='favor'>
-          <ref name='xmlNewComment'/>
-          <ref name='xmlNewElementContent'/>
-          <ref name='xmlNewNode'/>
-          <ref name='xmlNewNodeEatName'/>
-          <ref name='xmlNewPI'/>
-          <ref name='xmlNewText'/>
-          <ref name='xmlNewTextLen'/>
-        </word>
-        <word name='feature'>
-          <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-          <ref name='xmlGetFeature'/>
-          <ref name='xmlGetFeaturesList'/>
-          <ref name='xmlHasFeature'/>
-          <ref name='xmlSetFeature'/>
-        </word>
-        <word name='features'>
-          <ref name='xmlGetFeaturesList'/>
-        </word>
-        <word name='fed'>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlNewTextReader'/>
-          <ref name='xmlNewTextReaderFilename'/>
-          <ref name='xmlStreamPushNode'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-        </word>
-        <word name='feed'>
-          <ref name='xmlTextReaderSetup'/>
-        </word>
-        <word name='fetch'>
-          <ref name='xmlNanoFTPGetSocket'/>
-          <ref name='xmlNanoFTPOpen'/>
-          <ref name='xmlNanoHTTPFetch'/>
-        </word>
-        <word name='fetching'>
-          <ref name='htmlCreatePushParserCtxt'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlUTF8Strpos'/>
-        </word>
-        <word name='field'>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='XML_DETECT_IDS'/>
-          <ref name='XML_SKIP_IDS'/>
-          <ref name='_xmlError'/>
-          <ref name='xmlParseMisc'/>
-          <ref name='xmlXIncludeProcessFlagsData'/>
-          <ref name='xmlXIncludeProcessTreeFlagsData'/>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='fields'>
-          <ref name='XML_SAX2_MAGIC'/>
-          <ref name='_htmlElemDesc'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlSAXHandler'/>
-          <ref name='xmlParseURIReference'/>
-        </word>
-        <word name='files'>
-          <ref name='xmlNanoFTPList'/>
-        </word>
-        <word name='filesystem'>
-          <ref name='htmlCtxtReadFile'/>
-          <ref name='htmlReadFile'/>
-          <ref name='xmlCanonicPath'/>
-          <ref name='xmlCtxtReadFile'/>
-          <ref name='xmlPathToURI'/>
-          <ref name='xmlReadFile'/>
-          <ref name='xmlReaderForFile'/>
-          <ref name='xmlReaderNewFile'/>
-        </word>
-        <word name='filled'>
-          <ref name='xmlGetFeaturesList'/>
-        </word>
-        <word name='fills'>
-          <ref name='xmlParseURIReference'/>
-        </word>
-        <word name='filters'>
-          <ref name='xmlParseEncodingDecl'/>
-        </word>
-        <word name='final'>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_DEFAULT'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_EXTENSION'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_LIST'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_UNION'/>
-          <ref name='xmlAutomataSetFinalState'/>
-          <ref name='xmlBuildURI'/>
-          <ref name='xmlRegExecPushString'/>
-          <ref name='xmlRegExecPushString2'/>
-          <ref name='xmlValidateDocumentFinal'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='finalDefault'>
-          <ref name='XML_SCHEMAS_FINAL_DEFAULT_EXTENSION'/>
-          <ref name='XML_SCHEMAS_FINAL_DEFAULT_LIST'/>
-          <ref name='XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_FINAL_DEFAULT_UNION'/>
-        </word>
-        <word name='find'>
-          <ref name='xmlGetThreadId'/>
-          <ref name='xmlIsXHTML'/>
-          <ref name='xmlSchemaValidityLocatorFunc'/>
-        </word>
-        <word name='finding'>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoFTPUpdateURL'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-        </word>
-        <word name='finds'>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlSearchNsByHref'/>
-        </word>
-        <word name='finished'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlSkipBlankChars'/>
-          <ref name='xmlTextReaderCurrentDoc'/>
-          <ref name='xmlTextReaderPreserve'/>
-          <ref name='xmlTextReaderPreservePattern'/>
-        </word>
-        <word name='finishing'>
-          <ref name='xmlByteConsumed'/>
-        </word>
-        <word name='finite'>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='firs'>
-          <ref name='xmlCharEncOutFunc'/>
-        </word>
-        <word name='fist'>
-          <ref name='xmlEntityReferenceFunc'/>
-        </word>
-        <word name='fit'>
-          <ref name='xmlCharEncFirstLine'/>
-          <ref name='xmlCharEncInFunc'/>
-          <ref name='xmlCharEncOutFunc'/>
-        </word>
-        <word name='fixed'>
-          <ref name='XML_SCHEMAS_ATTR_FIXED'/>
-          <ref name='XML_SCHEMAS_ELEM_FIXED'/>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='fixup'>
-          <ref name='XML_SCHEMAS_TYPE_FIXUP_1'/>
-        </word>
-        <word name='flag'>
-          <ref name='XML_SCHEMAS_ELEM_CIRCULAR'/>
-          <ref name='_xmlDoc'/>
-          <ref name='htmlSetMetaEncoding'/>
-          <ref name='initxmlDefaultSAXHandler'/>
-          <ref name='xmlSAX2InitDefaultSAXHandler'/>
-          <ref name='xmlTextReaderIsValid'/>
-        </word>
-        <word name='flagged'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='htmlGetMetaEncoding'/>
-        </word>
-        <word name='flags'>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-          <ref name='_xmlValidCtxt'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlPatterncompile'/>
-          <ref name='xmlReaderForDoc'/>
-          <ref name='xmlReaderForFd'/>
-          <ref name='xmlReaderForFile'/>
-          <ref name='xmlReaderForIO'/>
-          <ref name='xmlReaderForMemory'/>
-          <ref name='xmlReaderNewDoc'/>
-          <ref name='xmlReaderNewFd'/>
-          <ref name='xmlReaderNewFile'/>
-          <ref name='xmlReaderNewIO'/>
-          <ref name='xmlReaderNewMemory'/>
-          <ref name='xmlRelaxParserSetFlag'/>
-          <ref name='xmlXIncludeSetFlags'/>
-        </word>
-        <word name='flat'>
-          <ref name='xmlStringGetNodeList'/>
-          <ref name='xmlStringLenGetNodeList'/>
-        </word>
-        <word name='floor'>
-          <ref name='xmlXPathFloorFunction'/>
-        </word>
-        <word name='flow'>
-          <ref name='xmlScanName'/>
-          <ref name='xmlSchemaSAXPlug'/>
-          <ref name='xmlSchemaSAXUnplug'/>
-          <ref name='xmlSchemaValidateSetLocator'/>
-          <ref name='xmlSchemaValidateStream'/>
-        </word>
-        <word name='flushed'>
-          <ref name='xmlTextWriterEndDocument'/>
-        </word>
-        <word name='flushes'>
-          <ref name='xmlOutputBufferClose'/>
-          <ref name='xmlOutputBufferFlush'/>
-        </word>
-        <word name='follow'>
-          <ref name='xmlAutomataNewNegTrans'/>
-          <ref name='xmlXPathNodeTrailing'/>
-          <ref name='xmlXPathNodeTrailingSorted'/>
-          <ref name='xmlXPathSubstringFunction'/>
-          <ref name='xmlXPathTrailing'/>
-          <ref name='xmlXPathTrailingSorted'/>
-        </word>
-        <word name='followed'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='following-sibling'>
-          <ref name='xmlXPathNextFollowingSibling'/>
-        </word>
-        <word name='follows'>
-          <ref name='xmlXPathStringFunction'/>
-          <ref name='xmlXPathSubstringAfterFunction'/>
-        </word>
-        <word name='follows:'>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlXPathBooleanFunction'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='for:'>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='forbid'>
-          <ref name='XML_XPATH_NOVAR'/>
-        </word>
-        <word name='force'>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-        </word>
-        <word name='forced'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='form'>
-          <ref name='htmlCreateFileParserCtxt'/>
-          <ref name='htmlParseDoc'/>
-          <ref name='htmlParseFile'/>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlPatterncompile'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='formal'>
-          <ref name='LIBXML_EXPR_ENABLED'/>
-        </word>
-        <word name='formatted'>
-          <ref name='xmlTextWriterWriteFormatAttribute'/>
-          <ref name='xmlTextWriterWriteFormatAttributeNS'/>
-          <ref name='xmlTextWriterWriteFormatCDATA'/>
-          <ref name='xmlTextWriterWriteFormatDTD'/>
-          <ref name='xmlTextWriterWriteFormatDTDAttlist'/>
-          <ref name='xmlTextWriterWriteFormatDTDElement'/>
-          <ref name='xmlTextWriterWriteFormatDTDInternalEntity'/>
-          <ref name='xmlTextWriterWriteFormatElement'/>
-          <ref name='xmlTextWriterWriteFormatElementNS'/>
-          <ref name='xmlTextWriterWriteFormatPI'/>
-          <ref name='xmlTextWriterWriteFormatRaw'/>
-          <ref name='xmlTextWriterWriteFormatString'/>
-          <ref name='xmlTextWriterWriteVFormatAttribute'/>
-          <ref name='xmlTextWriterWriteVFormatAttributeNS'/>
-          <ref name='xmlTextWriterWriteVFormatCDATA'/>
-          <ref name='xmlTextWriterWriteVFormatDTD'/>
-          <ref name='xmlTextWriterWriteVFormatDTDAttlist'/>
-          <ref name='xmlTextWriterWriteVFormatDTDElement'/>
-          <ref name='xmlTextWriterWriteVFormatDTDInternalEntity'/>
-          <ref name='xmlTextWriterWriteVFormatElement'/>
-          <ref name='xmlTextWriterWriteVFormatElementNS'/>
-          <ref name='xmlTextWriterWriteVFormatPI'/>
-          <ref name='xmlTextWriterWriteVFormatRaw'/>
-          <ref name='xmlTextWriterWriteVFormatString'/>
-        </word>
-        <word name='formatting'>
-          <ref name='htmlDocContentDumpFormatOutput'/>
-          <ref name='htmlDocDumpMemoryFormat'/>
-          <ref name='htmlNodeDump'/>
-          <ref name='htmlNodeDumpFile'/>
-          <ref name='htmlNodeDumpFileFormat'/>
-          <ref name='htmlNodeDumpFormatOutput'/>
-          <ref name='htmlNodeDumpOutput'/>
-          <ref name='htmlSaveFileEnc'/>
-          <ref name='htmlSaveFileFormat'/>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlDocDumpFormatMemory'/>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocFormatDump'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-          <ref name='xmlSaveFormatFile'/>
-          <ref name='xmlSaveFormatFileEnc'/>
-          <ref name='xmlSaveFormatFileTo'/>
-          <ref name='xmlStrPrintf'/>
-          <ref name='xmlStrVPrintf'/>
-        </word>
-        <word name='formed'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseExternalEntity'/>
-        </word>
-        <word name='forward'>
-          <ref name='xmlSchemaValidateStream'/>
-        </word>
-        <word name='fptr'>
-          <ref name='XML_CAST_FPTR'/>
-        </word>
-        <word name='fragment'>
-          <ref name='_xmlURI'/>
-          <ref name='xmlNewDocFragment'/>
-          <ref name='xmlParseURI'/>
-          <ref name='xmlPushInput'/>
-        </word>
-        <word name='fragments'>
-          <ref name='xmlParseURIRaw'/>
-        </word>
-        <word name='freeing'>
-          <ref name='xmlCanonicPath'/>
-          <ref name='xmlParserInputDeallocate'/>
-          <ref name='xmlPathToURI'/>
-        </word>
-        <word name='frees'>
-          <ref name='xmlBufferFree'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='front'>
-          <ref name='xmlValidateNCName'/>
-          <ref name='xmlValidateNMToken'/>
-          <ref name='xmlValidateName'/>
-          <ref name='xmlValidateQName'/>
-        </word>
-        <word name='front-end'>
-          <ref name='xmlCharEncCloseFunc'/>
-          <ref name='xmlCharEncInFunc'/>
-          <ref name='xmlCharEncOutFunc'/>
-        </word>
-        <word name='ftp:'>
-          <ref name='xmlNanoFTPOpen'/>
-          <ref name='xmlNanoFTPScanProxy'/>
-        </word>
-        <word name='ftp_proxy'>
-          <ref name='xmlNanoFTPProxy'/>
-        </word>
-        <word name='ftp_proxy_password'>
-          <ref name='xmlNanoFTPProxy'/>
-        </word>
-        <word name='ftp_proxy_user'>
-          <ref name='xmlNanoFTPProxy'/>
-        </word>
-        <word name='full'>
-          <ref name='_xmlEntity'/>
-          <ref name='_xmlXPathParserContext'/>
-          <ref name='htmlAttrAllowed'/>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlHashScannerFull'/>
-          <ref name='xmlRelaxNGValidateFullElement'/>
-          <ref name='xmlRelaxNGValidatePushElement'/>
-          <ref name='xmlSaveDoc'/>
-          <ref name='xmlShellPwd'/>
-          <ref name='xmlSplitQName2'/>
-          <ref name='xmlSplitQName3'/>
-          <ref name='xmlTextReaderExpand'/>
-          <ref name='xmlURIUnescapeString'/>
-          <ref name='xmlUTF8Strlen'/>
-        </word>
-        <word name='fully'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlSaveDoc'/>
-          <ref name='xmlSaveTree'/>
-        </word>
-        <word name='func'>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='funcs'>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='function:'>
-          <ref name='xmlXPathDifference'/>
-          <ref name='xmlXPathDistinct'/>
-          <ref name='xmlXPathDistinctSorted'/>
-          <ref name='xmlXPathHasSameNodes'/>
-          <ref name='xmlXPathIntersection'/>
-          <ref name='xmlXPathLeading'/>
-          <ref name='xmlXPathLeadingSorted'/>
-          <ref name='xmlXPathNodeLeading'/>
-          <ref name='xmlXPathNodeLeadingSorted'/>
-          <ref name='xmlXPathNodeTrailing'/>
-          <ref name='xmlXPathNodeTrailingSorted'/>
-          <ref name='xmlXPathTrailing'/>
-          <ref name='xmlXPathTrailingSorted'/>
-        </word>
-        <word name='functionality'>
-          <ref name='xmlInputMatchCallback'/>
-          <ref name='xmlNewGlobalNs'/>
-          <ref name='xmlOutputMatchCallback'/>
-          <ref name='xmlXPathNodeSetGetLength'/>
-          <ref name='xmlXPathNodeSetItem'/>
-        </word>
-        <word name='further'>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlStopParser'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-          <ref name='xmlXIncludeSetFlags'/>
-        </word>
-        <word name='future'>
-          <ref name='_xmlDOMWrapCtxt'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlSchemaValidateFile'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk16'>
-      <letter name='g'>
-        <word name='gDay'>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='gMonth'>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='gMonthDay'>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='gYear'>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='gYearMonth'>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='garbage'>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-        </word>
-        <word name='gcc'>
-          <ref name='XML_CAST_FPTR'/>
-        </word>
-        <word name='gcc4'>
-          <ref name='XML_CAST_FPTR'/>
-        </word>
-        <word name='genChRanges'>
-          <ref name='xmlIsBaseCharQ'/>
-          <ref name='xmlIsBaseChar_ch'/>
-          <ref name='xmlIsBlankQ'/>
-          <ref name='xmlIsBlank_ch'/>
-          <ref name='xmlIsCharQ'/>
-          <ref name='xmlIsChar_ch'/>
-          <ref name='xmlIsCombiningQ'/>
-          <ref name='xmlIsDigitQ'/>
-          <ref name='xmlIsDigit_ch'/>
-          <ref name='xmlIsExtenderQ'/>
-          <ref name='xmlIsExtender_ch'/>
-          <ref name='xmlIsIdeographicQ'/>
-          <ref name='xmlIsPubidCharQ'/>
-          <ref name='xmlIsPubidChar_ch'/>
-        </word>
-        <word name='general'>
-          <ref name='XML_SUBSTITUTE_BOTH'/>
-          <ref name='XML_SUBSTITUTE_REF'/>
-          <ref name='xmlCharEncFirstLine'/>
-          <ref name='xmlCharEncInFunc'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseExtParsedEnt'/>
-          <ref name='xmlParseExternalEntity'/>
-        </word>
-        <word name='generally'>
-          <ref name='xmlSAXDefaultVersion'/>
-        </word>
-        <word name='generate'>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocDumpMemoryEnc'/>
-          <ref name='xmlHashAddEntry'/>
-          <ref name='xmlHashAddEntry2'/>
-          <ref name='xmlHashAddEntry3'/>
-          <ref name='xmlLoadExternalEntity'/>
-          <ref name='xmlParseExternalID'/>
-        </word>
-        <word name='generated'>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocDumpMemoryEnc'/>
-          <ref name='xmlIsBaseCharQ'/>
-          <ref name='xmlIsBaseChar_ch'/>
-          <ref name='xmlIsBlankQ'/>
-          <ref name='xmlIsBlank_ch'/>
-          <ref name='xmlIsCharQ'/>
-          <ref name='xmlIsChar_ch'/>
-          <ref name='xmlIsCombiningQ'/>
-          <ref name='xmlIsDigitQ'/>
-          <ref name='xmlIsDigit_ch'/>
-          <ref name='xmlIsExtenderQ'/>
-          <ref name='xmlIsExtender_ch'/>
-          <ref name='xmlIsIdeographicQ'/>
-          <ref name='xmlIsPubidCharQ'/>
-          <ref name='xmlIsPubidChar_ch'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlShellPrintXPathResult'/>
-          <ref name='xmlTextReaderIsDefault'/>
-        </word>
-        <word name='generates'>
-          <ref name='xmlRegexpExec'/>
-        </word>
-        <word name='generating'>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocDumpMemoryEnc'/>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlRegExecErrInfo'/>
-        </word>
-        <word name='generic'>
-          <ref name='initGenericErrorDefaultFunc'/>
-          <ref name='xmlShellCmd'/>
-          <ref name='xmlShellReadlineFunc'/>
-        </word>
-        <word name='get'>
-          <ref name='_xmlSAXHandler'/>
-          <ref name='_xmlSAXHandlerV1'/>
-          <ref name='fatalErrorSAXFunc'/>
-          <ref name='xmlBufUse'/>
-          <ref name='xmlBufferLength'/>
-          <ref name='xmlCatalogGetDefaults'/>
-          <ref name='xmlGetCompressMode'/>
-          <ref name='xmlGetDocCompressMode'/>
-          <ref name='xmlGetNoNsProp'/>
-          <ref name='xmlGetNsProp'/>
-          <ref name='xmlGetProp'/>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlNanoFTPInit'/>
-          <ref name='xmlSplitQName'/>
-          <ref name='xmlSplitQName2'/>
-          <ref name='xmlTextReaderCurrentDoc'/>
-          <ref name='xmlTextReaderCurrentNode'/>
-          <ref name='xmlTextReaderGetParserProp'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-          <ref name='xmlValidateNotationDecl'/>
-        </word>
-        <word name='gie'>
-          <ref name='xmlBufferDetach'/>
-        </word>
-        <word name='gif'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='git'>
-          <ref name='LIBXML_VERSION_EXTRA'/>
-        </word>
-        <word name='give'>
-          <ref name='_xmlParserInput'/>
-          <ref name='_xmlSchema'/>
-          <ref name='xmlValidateDtd'/>
-        </word>
-        <word name='gives'>
-          <ref name='xmlParserError'/>
-          <ref name='xmlParserValidityError'/>
-          <ref name='xmlParserValidityWarning'/>
-          <ref name='xmlParserWarning'/>
-        </word>
-        <word name='giving'>
-          <ref name='xmlNewDoc'/>
-          <ref name='xmlParseVersionNum'/>
-        </word>
-        <word name='global'>
-          <ref name='XML_SCHEMAS_ELEM_GLOBAL'/>
-          <ref name='XML_SCHEMAS_TYPE_GLOBAL'/>
-          <ref name='_xmlNs'/>
-          <ref name='globalNamespace'/>
-          <ref name='xmlCatalogDump'/>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlCtxtResetLastError'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-          <ref name='xmlEncodeSpecialChars'/>
-          <ref name='xmlGetGlobalState'/>
-          <ref name='xmlGetLastError'/>
-          <ref name='xmlInitializeGlobalState'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlResetLastError'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-        </word>
-        <word name='globally'>
-          <ref name='xmlSAXDefaultVersion'/>
-        </word>
-        <word name='gnu'>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-        <word name='good'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='grafted'>
-          <ref name='xmlCopyProp'/>
-          <ref name='xmlCopyPropList'/>
-        </word>
-        <word name='grammar:'>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseInNodeContext'/>
-        </word>
-        <word name='greater'>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathFloorFunction'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='greater-than'>
-          <ref name='xmlNewTextChild'/>
-        </word>
-        <word name='group'>
-          <ref name='XML_SCHEMAS_ATTRGROUP_GLOBAL'/>
-          <ref name='XML_SCHEMAS_ATTRGROUP_HAS_REFS'/>
-          <ref name='XML_SCHEMAS_ATTRGROUP_MARKED'/>
-          <ref name='XML_SCHEMAS_ATTRGROUP_REDEFINED'/>
-          <ref name='XML_SCHEMAS_ELEM_FINAL_ABSENT'/>
-          <ref name='XML_SCHEMAS_ELEM_FINAL_EXTENSION'/>
-          <ref name='XML_SCHEMAS_ELEM_FINAL_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD'/>
-          <ref name='_xmlSchemaAttributeGroup'/>
-          <ref name='_xmlSchemaElement'/>
-          <ref name='ftpListCallback'/>
-        </word>
-        <word name='groups'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-        </word>
-        <word name='grow'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='grows'>
-          <ref name='xmlBufferWriteCHAR'/>
-          <ref name='xmlBufferWriteChar'/>
-          <ref name='xmlBufferWriteQuotedString'/>
-        </word>
-        <word name='guarantee'>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-        </word>
-        <word name='guaranteed'>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-          <ref name='xmlUTF8Strsize'/>
-        </word>
-        <word name='guess'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-      </letter>
-      <letter name='h'>
-        <word name='had'>
-          <ref name='xmlNewGlobalNs'/>
-        </word>
-        <word name='hand'>
-          <ref name='xmlLoadACatalog'/>
-        </word>
-        <word name='handled'>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlParseElementContentDecl'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlXPtrRangeToFunction'/>
-        </word>
-        <word name='handlers'>
-          <ref name='xlinkSetDefaultHandler'/>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlRegisterDefaultInputCallbacks'/>
-          <ref name='xmlRegisterDefaultOutputCallbacks'/>
-          <ref name='xmlTextReaderSetErrorHandler'/>
-          <ref name='xmlTextReaderSetStructuredErrorHandler'/>
-        </word>
-        <word name='handles'>
-          <ref name='xmlSaveFileTo'/>
-          <ref name='xmlSaveFormatFileTo'/>
-          <ref name='xmlStructuredErrorFunc'/>
-          <ref name='xmlUnsetProp'/>
-          <ref name='xmlXPathStringEvalNumber'/>
-        </word>
-        <word name='handling'>
-          <ref name='XML_SCHEMAS_FACET_UNKNOWN'/>
-          <ref name='_xmlDoc'/>
-          <ref name='attribute'/>
-          <ref name='attributeSAXFunc'/>
-          <ref name='htmlHandleOmittedElem'/>
-          <ref name='xmlChildElementCount'/>
-          <ref name='xmlFirstElementChild'/>
-          <ref name='xmlHandleEntity'/>
-          <ref name='xmlLastElementChild'/>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlNamespaceParseNSDef'/>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlNextElementSibling'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlOutputBufferCreateFilenameDefault'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlParserInputBufferCreateFilenameDefault'/>
-          <ref name='xmlPreviousElementSibling'/>
-          <ref name='xmlRegNewExecCtxt'/>
-          <ref name='xmlRegisterInputCallbacks'/>
-          <ref name='xmlRegisterOutputCallbacks'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-          <ref name='xmlXPathPopBoolean'/>
-          <ref name='xmlXPathPopExternal'/>
-          <ref name='xmlXPathPopNodeSet'/>
-          <ref name='xmlXPathPopNumber'/>
-          <ref name='xmlXPathPopString'/>
-        </word>
-        <word name='hard'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='has-same-nodes'>
-          <ref name='xmlXPathHasSameNodes'/>
-        </word>
-        <word name='haystack'>
-          <ref name='xmlStrcasestr'/>
-          <ref name='xmlStrstr'/>
-          <ref name='xmlStrsub'/>
-        </word>
-        <word name='head'>
-          <ref name='XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD'/>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='header'>
-          <ref name='xmlNanoHTTPAuthHeader'/>
-          <ref name='xmlNanoHTTPContentLength'/>
-          <ref name='xmlNanoHTTPRedir'/>
-          <ref name='xmlParseTextDecl'/>
-          <ref name='xmlParseXMLDecl'/>
-        </word>
-        <word name='headers'>
-          <ref name='xmlNanoHTTPEncoding'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlNanoHTTPMimeType'/>
-        </word>
-        <word name='heading'>
-          <ref name='xmlCharEncodingOutputFunc'/>
-        </word>
-        <word name='held'>
-          <ref name='xmlOutputBufferGetContent'/>
-          <ref name='xmlOutputBufferGetSize'/>
-        </word>
-        <word name='helper'>
-          <ref name='XML_SCHEMAS_ELEM_CIRCULAR'/>
-        </word>
-        <word name='here'>
-          <ref name='_xmlXPathContext'/>
-          <ref name='htmlNodeStatus'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseElementContentDecl'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlXPathNextAncestorOrSelf'/>
-        </word>
-        <word name='heuristic'>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='heuristic:'>
-          <ref name='xmlIsRef'/>
-        </word>
-        <word name='hex'>
-          <ref name='xmlURIEscapeStr'/>
-        </word>
-        <word name='hierarchy'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-        </word>
-        <word name='highly'>
-          <ref name='htmlParseElement'/>
-        </word>
-        <word name='hold'>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlNewTextWriterDoc'/>
-          <ref name='xmlNewTextWriterPushParser'/>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='holding'>
-          <ref name='_xmlAttribute'/>
-          <ref name='_xmlID'/>
-          <ref name='_xmlRef'/>
-          <ref name='xmlAddID'/>
-          <ref name='xmlAddRef'/>
-          <ref name='xmlNewNsProp'/>
-          <ref name='xmlNewNsPropEatName'/>
-          <ref name='xmlNewProp'/>
-        </word>
-        <word name='holds'>
-          <ref name='xmlBufferWriteQuotedString'/>
-        </word>
-        <word name='hooks'>
-          <ref name='LIBXML_THREAD_ALLOC_ENABLED'/>
-        </word>
-        <word name='host'>
-          <ref name='xmlNanoFTPProxy'/>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoFTPUpdateURL'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-        </word>
-        <word name='hosting'>
-          <ref name='xmlXPathFuncLookupFunc'/>
-          <ref name='xmlXPathNodeSetAddNs'/>
-          <ref name='xmlXPathVariableLookupFunc'/>
-        </word>
-        <word name='hostname'>
-          <ref name='xmlNanoFTPInit'/>
-          <ref name='xmlNanoFTPUpdateURL'/>
-        </word>
-        <word name='hour'>
-          <ref name='ftpListCallback'/>
-        </word>
-        <word name='how'>
-          <ref name='_xmlError'/>
-          <ref name='xmlDictGetUsage'/>
-        </word>
-        <word name='href'>
-          <ref name='XINCLUDE_HREF'/>
-        </word>
-        <word name='href==NULL'>
-          <ref name='xmlNewNs'/>
-        </word>
-        <word name='hrefs'>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xlinkExtendedLinkSetFunk'/>
-        </word>
-        <word name='html'>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-        <word name='htmlAttrAllowed'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='htmlElemDescPtr'>
-          <ref name='htmlTagLookup'/>
-        </word>
-        <word name='htmlElementAllowedHere'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='htmlElementStatusHere'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='htmlEntityDescPtr'>
-          <ref name='htmlEntityLookup'/>
-          <ref name='htmlEntityValueLookup'/>
-          <ref name='htmlParseEntityRef'/>
-        </word>
-        <word name='htmlNodePtr'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='htmlParserCtxtPtr'>
-          <ref name='htmlNewParserCtxt'/>
-        </word>
-        <word name='htmlParserOption'>
-          <ref name='htmlCtxtReadDoc'/>
-          <ref name='htmlCtxtReadFd'/>
-          <ref name='htmlCtxtReadFile'/>
-          <ref name='htmlCtxtReadIO'/>
-          <ref name='htmlCtxtReadMemory'/>
-          <ref name='htmlCtxtUseOptions'/>
-          <ref name='htmlReadDoc'/>
-          <ref name='htmlReadFd'/>
-          <ref name='htmlReadFile'/>
-          <ref name='htmlReadIO'/>
-          <ref name='htmlReadMemory'/>
-        </word>
-        <word name='htmlStartClose'>
-          <ref name='htmlAutoCloseTag'/>
-          <ref name='htmlIsAutoClosed'/>
-        </word>
-        <word name='http:'>
-          <ref name='XINCLUDE_NS'/>
-          <ref name='XINCLUDE_OLD_NS'/>
-          <ref name='getSystemId'/>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlGetCharEncodingName'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlSAX2GetSystemId'/>
-          <ref name='xmlSchemaGetPredefinedType'/>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-        <word name='human-readable'>
-          <ref name='_xmlError'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk17'>
-      <letter name='i'>
-        <word name='i-xxx'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='iconv'>
-          <ref name='LIBXML_ICONV_ENABLED'/>
-          <ref name='LIBXML_ISO8859X_ENABLED'/>
-        </word>
-        <word name='icu'>
-          <ref name='LIBXML_ICU_ENABLED'/>
-        </word>
-        <word name='identify'>
-          <ref name='xmlParseAttributeType'/>
-        </word>
-        <word name='identity-constraint'>
-          <ref name='_xmlSchema'/>
-          <ref name='_xmlSchemaElement'/>
-        </word>
-        <word name='ignorable'>
-          <ref name='ignorableWhitespace'/>
-          <ref name='ignorableWhitespaceSAXFunc'/>
-          <ref name='xmlIsBlankNode'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlSAX2IgnorableWhitespace'/>
-        </word>
-        <word name='ignorableWhitespace'>
-          <ref name='xmlKeepBlanksDefault'/>
-        </word>
-        <word name='ignored'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='ignoring'>
-          <ref name='xmlURIEscapeStr'/>
-        </word>
-        <word name='image'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='imbrication'>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-        </word>
-        <word name='img'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='immediately'>
-          <ref name='xmlCheckVersion'/>
-          <ref name='xmlOutputBufferWrite'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlOutputBufferWriteString'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='immutable'>
-          <ref name='xmlBufferCreateStatic'/>
-          <ref name='xmlBufferDetach'/>
-          <ref name='xmlParserInputBufferCreateStatic'/>
-        </word>
-        <word name='implementation'>
-          <ref name='xmlFreeFunc'/>
-          <ref name='xmlMallocFunc'/>
-          <ref name='xmlReallocFunc'/>
-          <ref name='xmlStrdupFunc'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-          <ref name='xmlXPathRegisterFunc'/>
-          <ref name='xmlXPathRegisterFuncNS'/>
-        </word>
-        <word name='implementation-defined'>
-          <ref name='xmlXPathNextNamespace'/>
-        </word>
-        <word name='implemented'>
-          <ref name='HTML_COMMENT_NODE'/>
-          <ref name='HTML_ENTITY_REF_NODE'/>
-          <ref name='HTML_PI_NODE'/>
-          <ref name='HTML_PRESERVE_NODE'/>
-          <ref name='HTML_TEXT_NODE'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlSaveDoc'/>
-          <ref name='xmlSaveTree'/>
-          <ref name='xmlSchemaCopyValue'/>
-          <ref name='xmlTextReaderNextSibling'/>
-        </word>
-        <word name='implicitly'>
-          <ref name='htmlAutoCloseTag'/>
-          <ref name='htmlIsAutoClosed'/>
-        </word>
-        <word name='implied'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='impossible'>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='improves'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-        </word>
-        <word name='in-'>
-          <ref name='xmlParserInputBufferGrow'/>
-        </word>
-        <word name='in-extenso'>
-          <ref name='xmlMemDisplay'/>
-          <ref name='xmlMemoryDump'/>
-        </word>
-        <word name='in-memory'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='htmlCreateMemoryParserCtxt'/>
-          <ref name='htmlCtxtReadDoc'/>
-          <ref name='htmlCtxtReadMemory'/>
-          <ref name='htmlParseDoc'/>
-          <ref name='htmlReadDoc'/>
-          <ref name='htmlReadMemory'/>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='xmlCreateDocParserCtxt'/>
-          <ref name='xmlCreateMemoryParserCtxt'/>
-          <ref name='xmlCtxtReadDoc'/>
-          <ref name='xmlCtxtReadMemory'/>
-          <ref name='xmlParseDoc'/>
-          <ref name='xmlParseMemory'/>
-          <ref name='xmlReadDoc'/>
-          <ref name='xmlReadMemory'/>
-          <ref name='xmlReaderForDoc'/>
-          <ref name='xmlReaderForMemory'/>
-          <ref name='xmlReaderNewDoc'/>
-          <ref name='xmlReaderNewMemory'/>
-          <ref name='xmlRecoverDoc'/>
-          <ref name='xmlRecoverMemory'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-          <ref name='xmlSAXUserParseMemory'/>
-        </word>
-        <word name='incl'>
-          <ref name='_xmlSchemaType'/>
-        </word>
-        <word name='include'>
-          <ref name='XINCLUDE_NODE'/>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCheckVersion'/>
-          <ref name='xmlListMerge'/>
-        </word>
-        <word name='include:'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='included'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NIsVisibleCallback'/>
-          <ref name='xmlDocDumpMemory'/>
-          <ref name='xmlFreeDoc'/>
-          <ref name='xmlNanoHTTPContentLength'/>
-          <ref name='xmlParseNotationType'/>
-        </word>
-        <word name='includes'>
-          <ref name='_xmlSchema'/>
-          <ref name='xmlCleanupInputCallbacks'/>
-          <ref name='xmlCleanupOutputCallbacks'/>
-          <ref name='xmlPopInputCallbacks'/>
-          <ref name='xmlPopOutputCallbacks'/>
-          <ref name='xmlXIncludeProcessFlags'/>
-          <ref name='xmlXIncludeProcessFlagsData'/>
-          <ref name='xmlXIncludeProcessTreeFlags'/>
-          <ref name='xmlXIncludeProcessTreeFlagsData'/>
-          <ref name='xmlXIncludeSetFlags'/>
-        </word>
-        <word name='including'>
-          <ref name='XML_SCHEMAS_INCLUDING_CONVERT_NS'/>
-          <ref name='attribute'/>
-          <ref name='attributeSAXFunc'/>
-          <ref name='ftpListCallback'/>
-          <ref name='startElement'/>
-          <ref name='startElementSAXFunc'/>
-          <ref name='xmlSAX2StartElement'/>
-          <ref name='xmlTextReaderReadInnerXml'/>
-          <ref name='xmlTextReaderReadOuterXml'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='inclusive'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='increase'>
-          <ref name='xmlParserInputGrow'/>
-        </word>
-        <word name='increment'>
-          <ref name='xmlAutomataNewCountedTrans'/>
-        </word>
-        <word name='incremental'>
-          <ref name='xmlValidateDocumentFinal'/>
-        </word>
-        <word name='indent'>
-          <ref name='xmlTextWriterSetIndent'/>
-        </word>
-        <word name='indentation'>
-          <ref name='xmlDebugDumpAttr'/>
-          <ref name='xmlDebugDumpAttrList'/>
-          <ref name='xmlDebugDumpNode'/>
-          <ref name='xmlDebugDumpNodeList'/>
-          <ref name='xmlDebugDumpOneNode'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlTextWriterSetIndent'/>
-          <ref name='xmlTextWriterSetIndentString'/>
-          <ref name='xmlXPathDebugDumpCompExpr'/>
-          <ref name='xmlXPathDebugDumpObject'/>
-        </word>
-        <word name='indentation?'>
-          <ref name='xmlTextWriterSetIndent'/>
-        </word>
-        <word name='indented'>
-          <ref name='xmlSaveFormatFile'/>
-        </word>
-        <word name='indenting'>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlDocDumpFormatMemory'/>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocFormatDump'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-          <ref name='xmlSaveFormatFile'/>
-          <ref name='xmlSaveFormatFileEnc'/>
-        </word>
-        <word name='independently'>
-          <ref name='xmlGetProp'/>
-          <ref name='xmlParseAttribute'/>
-        </word>
-        <word name='index'>
-          <ref name='index'/>
-          <ref name='inputPush'/>
-          <ref name='namePush'/>
-          <ref name='nodePush'/>
-          <ref name='xmlByteConsumed'/>
-          <ref name='xmlParserFindNodeInfoIndex'/>
-          <ref name='xmlPushInput'/>
-          <ref name='xmlStrsub'/>
-          <ref name='xmlTextReaderByteConsumed'/>
-          <ref name='xmlTextReaderGetAttributeNo'/>
-          <ref name='xmlTextReaderMoveToAttributeNo'/>
-          <ref name='xmlXPathNodeSetRemove'/>
-          <ref name='xmlXPtrLocationSetRemove'/>
-          <ref name='xmlXPtrNewRange'/>
-        </word>
-        <word name='indicate'>
-          <ref name='LIBXML_ATTR_ALLOC_SIZE'/>
-          <ref name='LIBXML_ATTR_FORMAT'/>
-          <ref name='XML_DEPRECATED'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlParserInputGrow'/>
-          <ref name='xmlRegExecPushString'/>
-          <ref name='xmlRegExecPushString2'/>
-          <ref name='xmlURIUnescapeString'/>
-        </word>
-        <word name='indicated'>
-          <ref name='xmlNanoHTTPFetch'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlNanoHTTPOpen'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='indicates'>
-          <ref name='XML_SCHEMAS_TYPE_FACETSNEEDVALUE'/>
-          <ref name='XML_SCHEMAS_TYPE_INTERNAL_INVALID'/>
-          <ref name='XML_SCHEMAS_TYPE_INTERNAL_RESOLVED'/>
-          <ref name='XML_SCHEMAS_TYPE_NORMVALUENEEDED'/>
-          <ref name='xmlHasNsProp'/>
-          <ref name='xmlNanoFTPRead'/>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoFTPUpdateURL'/>
-          <ref name='xmlNanoHTTPContentLength'/>
-          <ref name='xmlNanoHTTPRead'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-        </word>
-        <word name='indicating'>
-          <ref name='xmlParseCharData'/>
-          <ref name='xmlParserFindNodeInfoIndex'/>
-          <ref name='xmlShellCmd'/>
-          <ref name='xmlTextReaderErrorFunc'/>
-          <ref name='xmlTextReaderNormalization'/>
-          <ref name='xmlXPathAxisFunc'/>
-        </word>
-        <word name='indication'>
-          <ref name='xmlNanoFTPRead'/>
-          <ref name='xmlNanoHTTPRead'/>
-        </word>
-        <word name='indicative'>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlParserInputBufferRead'/>
-          <ref name='xmlParserInputGrow'/>
-          <ref name='xmlParserInputRead'/>
-        </word>
-        <word name='indicator'>
-          <ref name='htmlParseChunk'/>
-          <ref name='xmlParseChunk'/>
-        </word>
-        <word name='indirect'>
-          <ref name='xmlParseAttribute'/>
-        </word>
-        <word name='indirectly'>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-        </word>
-        <word name='infinite'>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='infinity'>
-          <ref name='xmlXPathCeilingFunction'/>
-          <ref name='xmlXPathFloorFunction'/>
-          <ref name='xmlXPathRoundFunction'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='info'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlClearNodeInfoSeq'/>
-          <ref name='xmlCopyDoc'/>
-          <ref name='xmlInitNodeInfoSeq'/>
-          <ref name='xmlMallocAtomicLoc'/>
-          <ref name='xmlMallocLoc'/>
-          <ref name='xmlMemMalloc'/>
-          <ref name='xmlMemRealloc'/>
-          <ref name='xmlMemStrdupLoc'/>
-          <ref name='xmlMemoryStrdup'/>
-          <ref name='xmlNanoFTPList'/>
-          <ref name='xmlParserAddNodeInfo'/>
-          <ref name='xmlParserFindNodeInfo'/>
-          <ref name='xmlParserFindNodeInfoIndex'/>
-          <ref name='xmlReallocLoc'/>
-        </word>
-        <word name='informative'>
-          <ref name='_xmlError'/>
-        </word>
-        <word name='infos'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='inherited'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xmlEntityReferenceFunc'/>
-          <ref name='xmlNodeGetSpacePreserve'/>
-          <ref name='xmlXPathNextAttribute'/>
-        </word>
-        <word name='inheriting'>
-          <ref name='xmlDictCreateSub'/>
-        </word>
-        <word name='inherits'>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewTextChild'/>
-        </word>
-        <word name='initial'>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlSchemaAttribute'/>
-          <ref name='xmlAutomataGetInitState'/>
-          <ref name='xmlBufferCreateSize'/>
-          <ref name='xmlInitNodeInfoSeq'/>
-          <ref name='xmlMemRealloc'/>
-          <ref name='xmlMemStrdupLoc'/>
-          <ref name='xmlMemoryStrdup'/>
-          <ref name='xmlReallocLoc'/>
-          <ref name='xmlShell'/>
-          <ref name='xmlXPathNodeSetAdd'/>
-          <ref name='xmlXPathNodeSetAddNs'/>
-          <ref name='xmlXPathNodeSetAddUnique'/>
-          <ref name='xmlXPathNodeSetCreate'/>
-          <ref name='xmlXPathNodeSetDel'/>
-          <ref name='xmlXPathNodeSetRemove'/>
-          <ref name='xmlXPtrLocationSetAdd'/>
-          <ref name='xmlXPtrLocationSetCreate'/>
-          <ref name='xmlXPtrLocationSetDel'/>
-          <ref name='xmlXPtrLocationSetRemove'/>
-        </word>
-        <word name='initialisation'>
-          <ref name='xmlInitGlobals'/>
-        </word>
-        <word name='initialization'>
-          <ref name='xmlInitializeCatalog'/>
-          <ref name='xmlInitializeDict'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadCatalogs'/>
-          <ref name='xmlSAXDefaultVersion'/>
-        </word>
-        <word name='initialize'>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='XML_DETECT_IDS'/>
-          <ref name='XML_SKIP_IDS'/>
-          <ref name='htmlDefaultSAXHandlerInit'/>
-          <ref name='htmlInitAutoClose'/>
-          <ref name='htmlNewDocNoDtD'/>
-          <ref name='htmlNewParserCtxt'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlCreateEntitiesTable'/>
-          <ref name='xmlCreateEnumeration'/>
-          <ref name='xmlDefaultSAXHandlerInit'/>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlInitGlobals'/>
-          <ref name='xmlInitMemory'/>
-          <ref name='xmlInitThreads'/>
-          <ref name='xmlInitializeDict'/>
-          <ref name='xmlInitializeGlobalState'/>
-          <ref name='xmlNanoFTPNewCtxt'/>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-          <ref name='xmlNewParserCtxt'/>
-          <ref name='xmlXPathInit'/>
-          <ref name='xmlXPathNewNodeSet'/>
-          <ref name='xmlXPathNewNodeSetList'/>
-          <ref name='xmlXPathNewValueTree'/>
-          <ref name='xmlXPtrNewLocationSetNodeSet'/>
-          <ref name='xmlXPtrNewLocationSetNodes'/>
-        </word>
-        <word name='initialized'>
-          <ref name='XML_SAX2_MAGIC'/>
-        </word>
-        <word name='initializes'>
-          <ref name='xmlDOMWrapNewCtxt'/>
-        </word>
-        <word name='initiate'>
-          <ref name='xmlCharEncOutFunc'/>
-        </word>
-        <word name='initiated'>
-          <ref name='xmlXPtrNewContext'/>
-        </word>
-        <word name='inline'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='inlined'>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-        </word>
-        <word name='inputs'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='insensitive'>
-          <ref name='xmlParseCharEncoding'/>
-        </word>
-        <word name='insert'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='inserted'>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-          <ref name='xmlReplaceNode'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='insertion'>
-          <ref name='htmlHandleOmittedElem'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='inspect'>
-          <ref name='xmlXPathDebugDumpObject'/>
-        </word>
-        <word name='installed'>
-          <ref name='xmlDictSize'/>
-          <ref name='xmlHashSize'/>
-        </word>
-        <word name='instances'>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlRelaxNGParse'/>
-          <ref name='xmlSchemaParse'/>
-          <ref name='xmlSchematronParse'/>
-        </word>
-        <word name='instead'>
-          <ref name='XML_SCHEMAS_ELEM_TOPLEVEL'/>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlBufShrink'/>
-          <ref name='xmlCopyElementContent'/>
-          <ref name='xmlDocSetRootElement'/>
-          <ref name='xmlFreeElementContent'/>
-          <ref name='xmlIsBaseChar'/>
-          <ref name='xmlIsBlank'/>
-          <ref name='xmlIsChar'/>
-          <ref name='xmlIsCombining'/>
-          <ref name='xmlIsDigit'/>
-          <ref name='xmlIsExtender'/>
-          <ref name='xmlIsIdeographic'/>
-          <ref name='xmlIsPubidChar'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlRegisterHTTPPostCallbacks'/>
-          <ref name='xmlSaveDoc'/>
-          <ref name='xmlSaveTree'/>
-          <ref name='xmlSubstituteEntitiesDefault'/>
-          <ref name='xmlXPtrEvalRangePredicate'/>
-        </word>
-        <word name='instruction'>
-          <ref name='HTML_PI_NODE'/>
-          <ref name='processingInstruction'/>
-          <ref name='processingInstructionSAXFunc'/>
-          <ref name='xmlNewDocPI'/>
-          <ref name='xmlNewPI'/>
-          <ref name='xmlSAX2ProcessingInstruction'/>
-        </word>
-        <word name='insufficient'>
-          <ref name='xmlCanonicPath'/>
-          <ref name='xmlPathToURI'/>
-        </word>
-        <word name='intact'>
-          <ref name='xmlParseURIRaw'/>
-        </word>
-        <word name='integer'>
-          <ref name='xmlGetThreadId'/>
-          <ref name='xmlStrcasecmp'/>
-          <ref name='xmlStrcmp'/>
-          <ref name='xmlStrncasecmp'/>
-          <ref name='xmlStrncmp'/>
-          <ref name='xmlXPathCeilingFunction'/>
-          <ref name='xmlXPathFloorFunction'/>
-          <ref name='xmlXPathRoundFunction'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='intended'>
-          <ref name='_xmlDOMWrapCtxt'/>
-          <ref name='xmlSchemaNewStringValue'/>
-        </word>
-        <word name='intensively'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='interact'>
-          <ref name='xmlParseExternalID'/>
-        </word>
-        <word name='interface'>
-          <ref name='LIBXML_PATTERN_ENABLED'/>
-          <ref name='LIBXML_READER_ENABLED'/>
-          <ref name='LIBXML_SAX1_ENABLED'/>
-          <ref name='LIBXML_WRITER_ENABLED'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='htmlParseDocument'/>
-          <ref name='xmlParseDocument'/>
-          <ref name='xmlParseReference'/>
-          <ref name='xmlTextReaderCurrentDoc'/>
-          <ref name='xmlTextReaderCurrentNode'/>
-        </word>
-        <word name='interfaces'>
-          <ref name='LIBXML_AUTOMATA_ENABLED'/>
-          <ref name='LIBXML_EXPR_ENABLED'/>
-          <ref name='LIBXML_MODULES_ENABLED'/>
-          <ref name='LIBXML_PUSH_ENABLED'/>
-          <ref name='LIBXML_REGEXP_ENABLED'/>
-          <ref name='LIBXML_SCHEMAS_ENABLED'/>
-          <ref name='LIBXML_SCHEMATRON_ENABLED'/>
-          <ref name='LIBXML_UNICODE_ENABLED'/>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlNamespaceParseNSDef'/>
-          <ref name='xmlNamespaceParseQName'/>
-        </word>
-        <word name='intern'>
-          <ref name='xmlTextReaderConstString'/>
-        </word>
-        <word name='internally'>
-          <ref name='xmlBufferWriteQuotedString'/>
-          <ref name='xmlExpNewCtxt'/>
-          <ref name='xmlRelaxNGNewDocParserCtxt'/>
-          <ref name='xmlRemoveID'/>
-          <ref name='xmlRemoveRef'/>
-          <ref name='xmlSchemaValidateFile'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='interned'>
-          <ref name='xmlPatterncompile'/>
-          <ref name='xmlTextReaderConstString'/>
-        </word>
-        <word name='interning'>
-          <ref name='xmlCopyNodeList'/>
-        </word>
-        <word name='interoperability'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-        </word>
-        <word name='interoperable'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='interprestation'>
-          <ref name='xmlXPathFunction'/>
-        </word>
-        <word name='interpreter'>
-          <ref name='xmlXPathAxisFunc'/>
-        </word>
-        <word name='intersection'>
-          <ref name='xmlXPathIntersection'/>
-        </word>
-        <word name='introduced'>
-          <ref name='LIBXML2_NEW_BUFFER'/>
-        </word>
-        <word name='ints'>
-          <ref name='xmlGetLineNo'/>
-        </word>
-        <word name='invalid'>
-          <ref name='XML_SCHEMAS_TYPE_INTERNAL_INVALID'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='invited'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='isn'>
-          <ref name='xmlRegisterCharEncodingHandler'/>
-        </word>
-        <word name='issue'>
-          <ref name='xmlEncodeEntities'/>
-        </word>
-        <word name='issued'>
-          <ref name='xlinkIsLink'/>
-        </word>
-        <word name='issues'>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-        </word>
-        <word name='item'>
-          <ref name='XML_SCHEMAS_TYPE_BLOCK_DEFAULT'/>
-          <ref name='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE'/>
-          <ref name='XML_SCHEMAS_TYPE_MARKED'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlHashRemoveEntry'/>
-          <ref name='xmlHashRemoveEntry2'/>
-          <ref name='xmlHashRemoveEntry3'/>
-          <ref name='xmlHashUpdateEntry'/>
-          <ref name='xmlHashUpdateEntry2'/>
-          <ref name='xmlHashUpdateEntry3'/>
-          <ref name='xmlNanoFTPDele'/>
-          <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-          <ref name='xmlXPathNodeSetItem'/>
-        </word>
-        <word name='items'>
-          <ref name='valuePush'/>
-          <ref name='xmlHashCopy'/>
-          <ref name='xmlHashFree'/>
-          <ref name='xmlHashScan'/>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull'/>
-          <ref name='xmlHashScanFull3'/>
-          <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-        </word>
-        <word name='itself'>
-          <ref name='_xmlDoc'/>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlCharEncFirstLine'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlXPathNextSelf'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk18'>
-      <letter name='j'>
-        <word name='just'>
-          <ref name='_xmlDOMWrapCtxt'/>
-          <ref name='htmlSetMetaEncoding'/>
-          <ref name='inputPop'/>
-          <ref name='namePop'/>
-          <ref name='nodePop'/>
-          <ref name='valuePop'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlCopyEnumeration'/>
-          <ref name='xmlCreateEntitiesTable'/>
-          <ref name='xmlCreateEnumeration'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlHandleEntity'/>
-          <ref name='xmlNanoFTPInit'/>
-          <ref name='xmlNanoHTTPInit'/>
-          <ref name='xmlSnprintfElementContent'/>
-          <ref name='xmlTextReaderByteConsumed'/>
-          <ref name='xmlXPathNewContext'/>
-          <ref name='xmlXPathNewParserContext'/>
-          <ref name='xmlXPathNextSelf'/>
-          <ref name='xmlXPtrNewContext'/>
-        </word>
-      </letter>
-      <letter name='k'>
-        <word name='keep'>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlExpNewSeq'/>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlParseURIRaw'/>
-          <ref name='xmlParserInputGrow'/>
-          <ref name='xmlSubstituteEntitiesDefault'/>
-          <ref name='xmlTextReaderPreserve'/>
-          <ref name='xmlTextReaderPreservePattern'/>
-          <ref name='xmlXPathNextNamespace'/>
-        </word>
-        <word name='keeps'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-        </word>
-        <word name='kept'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='htmlAutoCloseTag'/>
-          <ref name='htmlIsAutoClosed'/>
-          <ref name='htmlParseElement'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='keyword'>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='kill'>
-          <ref name='xmlCheckVersion'/>
-        </word>
-        <word name='kind'>
-          <ref name='_xmlSchemaAttributeGroup'/>
-          <ref name='_xmlSchemaElement'/>
-          <ref name='_xmlSchemaFacet'/>
-          <ref name='_xmlSchemaNotation'/>
-          <ref name='_xmlSchemaType'/>
-          <ref name='_xmlSchemaWildcard'/>
-        </word>
-        <word name='know'>
-          <ref name='BAD_CAST'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-        </word>
-        <word name='knowledge'>
-          <ref name='htmlAttrAllowed'/>
-        </word>
-        <word name='known'>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlAllocParserInputBuffer'/>
-          <ref name='xmlCreateIOParserCtxt'/>
-          <ref name='xmlIOParseDTD'/>
-          <ref name='xmlNewIOInputStream'/>
-          <ref name='xmlOutputBufferCreateIO'/>
-          <ref name='xmlParseCharEncoding'/>
-          <ref name='xmlParserInputBufferCreateFd'/>
-          <ref name='xmlParserInputBufferCreateFile'/>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-          <ref name='xmlParserInputBufferCreateIO'/>
-          <ref name='xmlParserInputBufferCreateMem'/>
-          <ref name='xmlParserInputBufferCreateStatic'/>
-        </word>
-      </letter>
-      <letter name='l'>
-        <word name='label'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='labeled'>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseExtParsedEnt'/>
-          <ref name='xmlParseExternalEntity'/>
-        </word>
-        <word name='lack'>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlMallocAtomicLoc'/>
-          <ref name='xmlMallocLoc'/>
-          <ref name='xmlMemMalloc'/>
-          <ref name='xmlMemRealloc'/>
-          <ref name='xmlReallocLoc'/>
-        </word>
-        <word name='lang'>
-          <ref name='xmlNodeGetLang'/>
-          <ref name='xmlXPathLangFunction'/>
-        </word>
-        <word name='langtag'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='language'>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlNodeGetLang'/>
-          <ref name='xmlNodeSetLang'/>
-          <ref name='xmlXPathLangFunction'/>
-        </word>
-        <word name='languages'>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlExpSubsume'/>
-        </word>
-        <word name='large'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlGetBufferAllocationScheme'/>
-        </word>
-        <word name='largest'>
-          <ref name='xmlXPathFloorFunction'/>
-        </word>
-        <word name='later'>
-          <ref name='xmlHashAddEntry'/>
-          <ref name='xmlHashAddEntry2'/>
-          <ref name='xmlHashAddEntry3'/>
-          <ref name='xmlHashUpdateEntry'/>
-          <ref name='xmlHashUpdateEntry2'/>
-          <ref name='xmlHashUpdateEntry3'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlNewEntity'/>
-          <ref name='xmlParseAttValue'/>
-        </word>
-        <word name='latest'>
-          <ref name='xmlNanoHTTPReturnCode'/>
-        </word>
-        <word name='layer'>
-          <ref name='xmlChildrenNode'/>
-          <ref name='xmlInitMemory'/>
-          <ref name='xmlNanoFTPCleanup'/>
-          <ref name='xmlNanoFTPInit'/>
-          <ref name='xmlNanoHTTPCleanup'/>
-          <ref name='xmlNanoHTTPInit'/>
-          <ref name='xmlRootNode'/>
-          <ref name='xmlSaveFileTo'/>
-          <ref name='xmlSaveFormatFileTo'/>
-          <ref name='xmlSchemaSAXPlug'/>
-          <ref name='xmlSchemaSAXUnplug'/>
-        </word>
-        <word name='leading'>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlParseNotationType'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-          <ref name='xmlXPathLeading'/>
-          <ref name='xmlXPathLeadingSorted'/>
-          <ref name='xmlXPathNodeLeading'/>
-          <ref name='xmlXPathNodeLeadingSorted'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='leak'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='least'>
-          <ref name='xmlDetectCharEncoding'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='led'>
-          <ref name='xmlInitializeDict'/>
-        </word>
-        <word name='left'>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewSeq'/>
-          <ref name='xmlMemDisplayLast'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='legacy'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='len'>
-          <ref name='xmlBufferAdd'/>
-          <ref name='xmlBufferAddHead'/>
-          <ref name='xmlCharStrndup'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlExpStringDerive'/>
-          <ref name='xmlGetFeaturesList'/>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlNewDocTextLen'/>
-          <ref name='xmlNewTextLen'/>
-          <ref name='xmlSplitQName3'/>
-          <ref name='xmlStrncat'/>
-          <ref name='xmlStrncatNew'/>
-          <ref name='xmlStrndup'/>
-          <ref name='xmlUTF8Strndup'/>
-          <ref name='xmlUTF8Strsize'/>
-        </word>
-        <word name='length-1'>
-          <ref name='xmlXPathNodeSetItem'/>
-        </word>
-        <word name='less'>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlSaveToFilename'/>
-          <ref name='xmlXPathCeilingFunction'/>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='less-than'>
-          <ref name='xmlNewTextChild'/>
-        </word>
-        <word name='level'>
-          <ref name='XML_SCHEMAS_ELEM_TOPLEVEL'/>
-          <ref name='_xmlDoc'/>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlCatalogSetDebug'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlDebugDumpAttr'/>
-          <ref name='xmlDebugDumpAttrList'/>
-          <ref name='xmlDebugDumpNode'/>
-          <ref name='xmlDebugDumpNodeList'/>
-          <ref name='xmlDebugDumpOneNode'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-          <ref name='xmlParseVersionNum'/>
-          <ref name='xmlShellPwd'/>
-          <ref name='xmlStreamPop'/>
-          <ref name='xmlXPathDebugDumpCompExpr'/>
-          <ref name='xmlXPathDebugDumpObject'/>
-        </word>
-        <word name='lexical'>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaValPredefTypeNode'/>
-          <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-          <ref name='xmlSchemaValidateFacet'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-          <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-          <ref name='xmlSchemaValidatePredefinedType'/>
-          <ref name='xmlValidateNCName'/>
-          <ref name='xmlValidateNMToken'/>
-          <ref name='xmlValidateName'/>
-          <ref name='xmlValidateQName'/>
-        </word>
-        <word name='lib'>
-          <ref name='xmlCheckVersion'/>
-        </word>
-        <word name='libc'>
-          <ref name='DEBUG_MEMORY'/>
-        </word>
-        <word name='libraries'>
-          <ref name='LIBXML_MODULE_EXTENSION'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlRelaxNGInitTypes'/>
-        </word>
-        <word name='libs'>
-          <ref name='xmlKeepBlanksDefault'/>
-        </word>
-        <word name='libxml'>
-          <ref name='DEBUG_MEMORY'/>
-          <ref name='LIBXML_TEST_VERSION'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMemSetup'/>
-          <ref name='xmlRegisterHTTPPostCallbacks'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-          <ref name='xmlShellPrintXPathError'/>
-          <ref name='xmlXPathNodeSetFreeNs'/>
-        </word>
-        <word name='libxml1'>
-          <ref name='xmlChildrenNode'/>
-          <ref name='xmlRootNode'/>
-        </word>
-        <word name='libxml2'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlFreeMutex'/>
-          <ref name='xmlInitThreads'/>
-          <ref name='xmlLockLibrary'/>
-          <ref name='xmlMutexLock'/>
-          <ref name='xmlMutexUnlock'/>
-          <ref name='xmlNewMutex'/>
-          <ref name='xmlRMutexLock'/>
-          <ref name='xmlRMutexUnlock'/>
-          <ref name='xmlUnlockLibrary'/>
-        </word>
-        <word name='lifetime'>
-          <ref name='xmlBufferCreateStatic'/>
-          <ref name='xmlExpCtxtNbCons'/>
-        </word>
-        <word name='like'>
-          <ref name='IS_CHAR_CH'/>
-          <ref name='IS_DIGIT_CH'/>
-          <ref name='IS_EXTENDER_CH'/>
-          <ref name='IS_LETTER_CH'/>
-          <ref name='LIBXML_ATTR_FORMAT'/>
-          <ref name='LIBXML_DOTTED_VERSION'/>
-          <ref name='LIBXML_TREE_ENABLED'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-          <ref name='xmlParseCatalogFile'/>
-          <ref name='xmlShellList'/>
-          <ref name='xmlTextReaderNormalization'/>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='likely'>
-          <ref name='xmlGetThreadId'/>
-        </word>
-        <word name='limit'>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='_xmlXPathParserContext'/>
-          <ref name='xmlCharEncFirstLine'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlDictSetLimit'/>
-          <ref name='xmlPatternMaxDepth'/>
-        </word>
-        <word name='limitation'>
-          <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-          <ref name='xmlGetLineNo'/>
-        </word>
-        <word name='limited'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlNodeDump'/>
-        </word>
-        <word name='limits'>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='linear'>
-          <ref name='htmlEntityLookup'/>
-          <ref name='htmlEntityValueLookup'/>
-          <ref name='xmlExpExpDerive'/>
-        </word>
-        <word name='lines'>
-          <ref name='xmlGetLineNo'/>
-        </word>
-        <word name='linked'>
-          <ref name='_xmlSchemaAttributeLink'/>
-          <ref name='_xmlSchemaFacetLink'/>
-          <ref name='_xmlSchemaTypeLink'/>
-        </word>
-        <word name='linking'>
-          <ref name='xlinkIsLink'/>
-        </word>
-        <word name='links'>
-          <ref name='ftpListCallback'/>
-        </word>
-        <word name='listing'>
-          <ref name='xmlNanoFTPList'/>
-          <ref name='xmlShellList'/>
-        </word>
-        <word name='lists'>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='literal'>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParsePubidLiteral'/>
-          <ref name='xmlParserHandlePEReference'/>
-        </word>
-        <word name='load'>
-          <ref name='xmlLoadExternalEntity'/>
-          <ref name='xmlNanoHTTPFetch'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlNanoHTTPOpen'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlShell'/>
-          <ref name='xmlShellLoad'/>
-        </word>
-        <word name='loaded'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='loader'>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadCatalogs'/>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-        </word>
-        <word name='loaders'>
-          <ref name='xmlExternalEntityLoader'/>
-        </word>
-        <word name='loading'>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlIsID'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-          <ref name='xmlShellLoad'/>
-        </word>
-        <word name='loads'>
-          <ref name='xmlShellLoad'/>
-        </word>
-        <word name='loadsubset'>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='XML_DETECT_IDS'/>
-          <ref name='XML_SKIP_IDS'/>
-        </word>
-        <word name='local-name'>
-          <ref name='xmlXPathLocalNameFunction'/>
-        </word>
-        <word name='localname'>
-          <ref name='startElementNsSAX2Func'/>
-          <ref name='xmlSAX2StartElementNs'/>
-          <ref name='xmlStrQEqual'/>
-        </word>
-        <word name='location'>
-          <ref name='htmlParseEntityRef'/>
-          <ref name='xmlGetFeature'/>
-          <ref name='xmlNanoHTTPFetch'/>
-          <ref name='xmlNanoHTTPOpen'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-          <ref name='xmlRelaxNGNewParserCtxt'/>
-          <ref name='xmlSchemaNewParserCtxt'/>
-          <ref name='xmlSchematronNewParserCtxt'/>
-          <ref name='xmlSetFeature'/>
-          <ref name='xmlUTF8Strloc'/>
-          <ref name='xmlXPtrLocationSetAdd'/>
-          <ref name='xmlXPtrRangeToFunction'/>
-        </word>
-        <word name='locations'>
-          <ref name='LIBXML_XPTR_LOCS_ENABLED'/>
-          <ref name='_xmlLocationSet'/>
-        </word>
-        <word name='locator'>
-          <ref name='setDocumentLocator'/>
-          <ref name='setDocumentLocatorSAXFunc'/>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xlinkExtendedLinkSetFunk'/>
-          <ref name='xmlCanonicPath'/>
-          <ref name='xmlPathToURI'/>
-          <ref name='xmlSAX2SetDocumentLocator'/>
-          <ref name='xmlSchemaValidateSetLocator'/>
-          <ref name='xmlSchemaValidityLocatorFunc'/>
-          <ref name='xmlTextReaderErrorFunc'/>
-          <ref name='xmlTextReaderLocatorBaseURI'/>
-          <ref name='xmlTextReaderLocatorLineNumber'/>
-        </word>
-        <word name='locators'>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xlinkExtendedLinkSetFunk'/>
-        </word>
-        <word name='lock'>
-          <ref name='xmlLockLibrary'/>
-          <ref name='xmlMutexLock'/>
-          <ref name='xmlNewRMutex'/>
-          <ref name='xmlRMutexLock'/>
-          <ref name='xmlUnlockLibrary'/>
-        </word>
-        <word name='logging'>
-          <ref name='xmlMallocAtomicLoc'/>
-          <ref name='xmlMallocLoc'/>
-          <ref name='xmlMemMalloc'/>
-          <ref name='xmlMemRealloc'/>
-          <ref name='xmlMemStrdupLoc'/>
-          <ref name='xmlMemoryStrdup'/>
-          <ref name='xmlReallocLoc'/>
-        </word>
-        <word name='long'>
-          <ref name='IS_BASECHAR'/>
-          <ref name='IS_COMBINING'/>
-          <ref name='IS_DIGIT'/>
-          <ref name='xmlDetectCharEncoding'/>
-          <ref name='xmlParserFindNodeInfoIndex'/>
-          <ref name='xmlSchemaGetFacetValueAsULong'/>
-        </word>
-        <word name='longer'>
-          <ref name='XML_MAX_NAMELEN'/>
-          <ref name='xmlCheckUTF8'/>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='look-ahead'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='lookahead'>
-          <ref name='xmlParserInputGrow'/>
-          <ref name='xmlParserInputRead'/>
-        </word>
-        <word name='looked'>
-          <ref name='_xmlNodeSet'/>
-          <ref name='xmlPatternFromRoot'/>
-        </word>
-        <word name='looks'>
-          <ref name='xmlGetNoNsProp'/>
-          <ref name='xmlGetNsProp'/>
-          <ref name='xmlGetProp'/>
-          <ref name='xmlHasNsProp'/>
-          <ref name='xmlHasProp'/>
-        </word>
-        <word name='lookups'>
-          <ref name='XML_DETECT_IDS'/>
-          <ref name='xmlParseCatalogFile'/>
-        </word>
-        <word name='loop'>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseExternalEntity'/>
-        </word>
-        <word name='loops'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='lossless'>
-          <ref name='xmlOutputBufferWrite'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlOutputBufferWriteString'/>
-        </word>
-        <word name='lower'>
-          <ref name='xmlExpNewRange'/>
-        </word>
-        <word name='lowercase'>
-          <ref name='htmlTagLookup'/>
-          <ref name='xmlIsRef'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk19'>
-      <letter name='m'>
-        <word name='machine'>
-          <ref name='xmlCheckFilename'/>
-        </word>
-        <word name='macro'>
-          <ref name='INVALID_SOCKET'/>
-          <ref name='SOCKET'/>
-          <ref name='XML_CAST_FPTR'/>
-          <ref name='xmlTextWriterWriteDocType'/>
-          <ref name='xmlTextWriterWriteProcessingInstruction'/>
-        </word>
-        <word name='made'>
-          <ref name='LIBXML_ISO8859X_ENABLED'/>
-          <ref name='htmlDefaultSAXHandlerInit'/>
-          <ref name='htmlInitAutoClose'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDefaultSAXHandlerInit'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlInitGlobals'/>
-          <ref name='xmlInitMemory'/>
-          <ref name='xmlInitThreads'/>
-          <ref name='xmlInitializeDict'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-          <ref name='xmlSetEntityReferenceFunc'/>
-          <ref name='xmlXPathInit'/>
-          <ref name='xmlXPtrNewLocationSetNodes'/>
-        </word>
-        <word name='main'>
-          <ref name='xmlIsMainThread'/>
-        </word>
-        <word name='maintained'>
-          <ref name='xmlRemoveID'/>
-          <ref name='xmlRemoveRef'/>
-          <ref name='xmlSchemaSAXPlug'/>
-        </word>
-        <word name='major'>
-          <ref name='xmlDecodeEntities'/>
-        </word>
-        <word name='make'>
-          <ref name='xmlCreateEntitiesTable'/>
-          <ref name='xmlNewNode'/>
-          <ref name='xmlSaveClose'/>
-          <ref name='xmlSaveFlush'/>
-        </word>
-        <word name='makes'>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadCatalogs'/>
-          <ref name='xmlTextReaderExpand'/>
-        </word>
-        <word name='malloc'>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMallocAtomicLoc'/>
-          <ref name='xmlMallocFunc'/>
-          <ref name='xmlMallocLoc'/>
-          <ref name='xmlMemGet'/>
-          <ref name='xmlMemMalloc'/>
-          <ref name='xmlMemSetup'/>
-        </word>
-        <word name='mallocAtomicFunc'>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-        </word>
-        <word name='manage'>
-          <ref name='xmlBufferWriteChar'/>
-          <ref name='xmlBufferWriteQuotedString'/>
-        </word>
-        <word name='manages'>
-          <ref name='xmlBufferWriteCHAR'/>
-        </word>
-        <word name='mandate'>
-          <ref name='xmlGetThreadId'/>
-        </word>
-        <word name='manipulated'>
-          <ref name='xmlNewRMutex'/>
-        </word>
-        <word name='manipulating'>
-          <ref name='xmlExpNewCtxt'/>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-        </word>
-        <word name='manipulation'>
-          <ref name='LIBXML_TREE_ENABLED'/>
-          <ref name='xmlAddChild'/>
-        </word>
-        <word name='many'>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='map'>
-          <ref name='_xmlDOMWrapCtxt'/>
-        </word>
-        <word name='maps'>
-          <ref name='xmlTextReaderLookupNamespace'/>
-          <ref name='xmlTextWriterWriteDocType'/>
-          <ref name='xmlTextWriterWriteProcessingInstruction'/>
-        </word>
-        <word name='mark'>
-          <ref name='xmlStrcat'/>
-          <ref name='xmlStrdup'/>
-          <ref name='xmlTextReaderQuoteChar'/>
-        </word>
-        <word name='marked'>
-          <ref name='XML_SCHEMAS_ATTRGROUP_MARKED'/>
-          <ref name='XML_SCHEMAS_TYPE_MARKED'/>
-          <ref name='_xmlParserInput'/>
-        </word>
-        <word name='marker'>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-        </word>
-        <word name='marking'>
-          <ref name='xmlParseCharData'/>
-        </word>
-        <word name='marks'>
-          <ref name='xmlParseCharData'/>
-        </word>
-        <word name='markup'>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlTextReaderReadInnerXml'/>
-          <ref name='xmlTextReaderReadOuterXml'/>
-          <ref name='xmlTextWriterWriteFormatDTD'/>
-          <ref name='xmlTextWriterWriteVFormatDTD'/>
-        </word>
-        <word name='markupdecl'>
-          <ref name='xmlParseDocTypeDecl'/>
-          <ref name='xmlParseExternalSubset'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='masked'>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='matched'>
-          <ref name='xmlTextReaderPreservePattern'/>
-        </word>
-        <word name='matches'>
-          <ref name='CHECK_ARITY'/>
-          <ref name='xmlFileMatch'/>
-          <ref name='xmlIOFTPMatch'/>
-          <ref name='xmlIOHTTPMatch'/>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseExtParsedEnt'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlPatternMatch'/>
-          <ref name='xmlRegexpExec'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='matching'>
-          <ref name='xmlFileMatch'/>
-          <ref name='xmlFileOpen'/>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull3'/>
-          <ref name='xmlIOFTPMatch'/>
-          <ref name='xmlIOFTPOpen'/>
-          <ref name='xmlIOHTTPMatch'/>
-          <ref name='xmlIOHTTPOpen'/>
-          <ref name='xmlRegNewExecCtxt'/>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneNamespace'/>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='max'>
-          <ref name='_xmlXPathContext'/>
-          <ref name='_xmlXPathParserContext'/>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlGetCompressMode'/>
-          <ref name='xmlGetDocCompressMode'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlSetCompressMode'/>
-          <ref name='xmlSetDocCompressMode'/>
-          <ref name='xmlStrncasecmp'/>
-          <ref name='xmlStrncmp'/>
-        </word>
-        <word name='maxLength'>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-        </word>
-        <word name='maximal'>
-          <ref name='xmlAutomataNewCounter'/>
-        </word>
-        <word name='maximum'>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-          <ref name='xmlCheckUTF8'/>
-          <ref name='xmlExpMaxToken'/>
-          <ref name='xmlExpNewCtxt'/>
-          <ref name='xmlPatternMaxDepth'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='maybe'>
-          <ref name='_xmlSchemaElement'/>
-        </word>
-        <word name='mean'>
-          <ref name='xmlPatternMinDepth'/>
-        </word>
-        <word name='means'>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='mechanism'>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlStructuredErrorFunc'/>
-          <ref name='xmlXPathRegisterFuncLookup'/>
-          <ref name='xmlXPathRegisterVariableLookup'/>
-        </word>
-        <word name='mechanisms'>
-          <ref name='xmlNodeGetBase'/>
-        </word>
-        <word name='meet'>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='member'>
-          <ref name='XML_DEPRECATED'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-          <ref name='xmlTextWriterWriteVFormatAttribute'/>
-          <ref name='xmlTextWriterWriteVFormatAttributeNS'/>
-          <ref name='xmlTextWriterWriteVFormatCDATA'/>
-          <ref name='xmlTextWriterWriteVFormatComment'/>
-          <ref name='xmlTextWriterWriteVFormatDTD'/>
-          <ref name='xmlTextWriterWriteVFormatDTDAttlist'/>
-          <ref name='xmlTextWriterWriteVFormatDTDElement'/>
-          <ref name='xmlTextWriterWriteVFormatDTDInternalEntity'/>
-          <ref name='xmlTextWriterWriteVFormatElement'/>
-          <ref name='xmlTextWriterWriteVFormatElementNS'/>
-          <ref name='xmlTextWriterWriteVFormatPI'/>
-          <ref name='xmlTextWriterWriteVFormatRaw'/>
-          <ref name='xmlTextWriterWriteVFormatString'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='member-types'>
-          <ref name='_xmlSchemaType'/>
-        </word>
-        <word name='memo'>
-          <ref name='getSystemId'/>
-          <ref name='xmlSAX2GetSystemId'/>
-        </word>
-        <word name='memorylist'>
-          <ref name='xmlMemDisplay'/>
-          <ref name='xmlMemDisplayLast'/>
-          <ref name='xmlMemoryDump'/>
-        </word>
-        <word name='merged'>
-          <ref name='xmlTextMerge'/>
-        </word>
-        <word name='merging'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAddChildList'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-        </word>
-        <word name='messages'>
-          <ref name='errorSAXFunc'/>
-          <ref name='fatalErrorSAXFunc'/>
-          <ref name='warningSAXFunc'/>
-          <ref name='xmlParserError'/>
-          <ref name='xmlParserValidityError'/>
-          <ref name='xmlParserValidityWarning'/>
-          <ref name='xmlParserWarning'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-        </word>
-        <word name='method'>
-          <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION'/>
-          <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION'/>
-          <ref name='_xmlBuffer'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlOutputBufferCreateFilenameFunc'/>
-          <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-          <ref name='xmlRegisterHTTPPostCallbacks'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-          <ref name='xmlTextReaderClose'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='might'>
-          <ref name='xmlNewTextChild'/>
-        </word>
-        <word name='migrate'>
-          <ref name='xmlEncodeEntities'/>
-        </word>
-        <word name='min'>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='minLength'>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-        </word>
-        <word name='minimal'>
-          <ref name='xmlAutomataNewCounter'/>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='minimum'>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-          <ref name='xmlBufferGrow'/>
-          <ref name='xmlBufferResize'/>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlPatternMinDepth'/>
-        </word>
-        <word name='minus'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='minute'>
-          <ref name='ftpListCallback'/>
-        </word>
-        <word name='misc'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='misleading'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-        </word>
-        <word name='missing'>
-          <ref name='xmlParseSDDecl'/>
-        </word>
-        <word name='mixed'>
-          <ref name='XML_SCHEMAS_TYPE_MIXED'/>
-          <ref name='xmlKeepBlanksDefault'/>
-        </word>
-        <word name='mixed-content'>
-          <ref name='xmlParseElementMixedContentDecl'/>
-        </word>
-        <word name='mmap'>
-          <ref name='xmlParserInputBufferCreateStatic'/>
-        </word>
-        <word name='mod'>
-          <ref name='xmlXPathModValues'/>
-        </word>
-        <word name='mode'>
-          <ref name='_xmlBuffer'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='htmlCreatePushParserCtxt'/>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlGetCompressMode'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlNanoFTPGetConnection'/>
-          <ref name='xmlParseReference'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlParserInputBufferPush'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-          <ref name='xmlSetCompressMode'/>
-        </word>
-        <word name='model'>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xmlValidBuildContentModel'/>
-        </word>
-        <word name='modified'>
-          <ref name='xmlBufferCreateStatic'/>
-          <ref name='xmlNodeAddContent'/>
-          <ref name='xmlNodeAddContentLen'/>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-          <ref name='xmlSchemaNewDocParserCtxt'/>
-          <ref name='xmlSchematronNewDocParserCtxt'/>
-        </word>
-        <word name='modifies'>
-          <ref name='xmlRelaxNGNewDocParserCtxt'/>
-        </word>
-        <word name='modify'>
-          <ref name='xmlShell'/>
-        </word>
-        <word name='module'>
-          <ref name='LIBXML_DEBUG_ENABLED'/>
-          <ref name='LIBXML_MODULES_ENABLED'/>
-          <ref name='xmlInputMatchCallback'/>
-          <ref name='xmlModuleClose'/>
-          <ref name='xmlModuleFree'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-          <ref name='xmlOutputMatchCallback'/>
-          <ref name='xmlStructuredErrorFunc'/>
-        </word>
-        <word name='modules'>
-          <ref name='LIBXML_MODULE_EXTENSION'/>
-        </word>
-        <word name='moment'>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='month'>
-          <ref name='ftpListCallback'/>
-        </word>
-        <word name='more'>
-          <ref name='XML_MAX_NAMELEN'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='xmlExpGetLanguage'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseElementDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlStrEqual'/>
-          <ref name='xmlTextReaderByteConsumed'/>
-          <ref name='xmlTextReaderNext'/>
-          <ref name='xmlTextReaderNextSibling'/>
-          <ref name='xmlTextReaderRead'/>
-          <ref name='xmlTextReaderReadAttributeValue'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='moreover'>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-        </word>
-        <word name='most'>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlGetFeaturesList'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-        </word>
-        <word name='move'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-        </word>
-        <word name='moved'>
-          <ref name='xmlTextReaderMoveToElement'/>
-        </word>
-        <word name='moving'>
-          <ref name='xmlAddChild'/>
-        </word>
-        <word name='much'>
-          <ref name='xmlDictGetUsage'/>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='multi-threaded'>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-        </word>
-        <word name='multi-threading'>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlInitGlobals'/>
-        </word>
-        <word name='multiple'>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlStringCurrentChar'/>
-        </word>
-        <word name='multiply'>
-          <ref name='xmlXPathMultValues'/>
-        </word>
-        <word name='multithreaded'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlInitParser'/>
-        </word>
-        <word name='mutex'>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlFreeMutex'/>
-          <ref name='xmlFreeRMutex'/>
-          <ref name='xmlInitializeDict'/>
-          <ref name='xmlMutexLock'/>
-          <ref name='xmlMutexUnlock'/>
-          <ref name='xmlNewMutex'/>
-          <ref name='xmlNewRMutex'/>
-          <ref name='xmlRMutexLock'/>
-          <ref name='xmlRMutexUnlock'/>
-        </word>
-        <word name='myDoc'>
-          <ref name='htmlFreeParserCtxt'/>
-          <ref name='xmlFreeParserCtxt'/>
-        </word>
-        <word name='myproxy'>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-        </word>
-        <word name='myproxy:3128'>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk20'>
-      <letter name='n'>
-        <word name='named'>
-          <ref name='xmlAddEncodingAlias'/>
-        </word>
-        <word name='names'>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlSchema'/>
-          <ref name='xmlGetFeaturesList'/>
-          <ref name='xmlHashAddEntry'/>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull3'/>
-          <ref name='xmlParseNotationType'/>
-          <ref name='xmlValidGetPotentialChildren'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='namespace-binding'>
-          <ref name='xmlSetProp'/>
-        </word>
-        <word name='namespace-uri'>
-          <ref name='xmlXPathNamespaceURIFunction'/>
-        </word>
-        <word name='namespace:'>
-          <ref name='XINCLUDE_NS'/>
-          <ref name='XINCLUDE_OLD_NS'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseStartTag'/>
-        </word>
-        <word name='namespaces'>
-          <ref name='XML_XPATH_CHECKNS'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlSchemaWildcard'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAddChildList'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCopyDoc'/>
-          <ref name='xmlCopyNode'/>
-          <ref name='xmlDOMWrapAcquireNsFunction'/>
-          <ref name='xmlDocCopyNode'/>
-          <ref name='xmlFreeNsList'/>
-          <ref name='xmlGetProp'/>
-          <ref name='xmlParseInNodeContext'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlReplaceNode'/>
-        </word>
-        <word name='naming'>
-          <ref name='xmlChildrenNode'/>
-          <ref name='xmlRootNode'/>
-        </word>
-        <word name='nbBytes'>
-          <ref name='xmlMemDisplayLast'/>
-        </word>
-        <word name='nbval'>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-        </word>
-        <word name='ncname'>
-          <ref name='xmlBuildQName'/>
-        </word>
-        <word name='ndata'>
-          <ref name='_xmlEntity'/>
-        </word>
-        <word name='nearest'>
-          <ref name='xmlNodeGetLang'/>
-          <ref name='xmlNodeGetSpacePreserve'/>
-          <ref name='xmlXPathLangFunction'/>
-        </word>
-        <word name='nearly'>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-        </word>
-        <word name='necessary'>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlCheckUTF8'/>
-          <ref name='xmlDebugDumpString'/>
-        </word>
-        <word name='needed'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='htmlEntityLookup'/>
-          <ref name='htmlEntityValueLookup'/>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-          <ref name='xmlNewEntity'/>
-          <ref name='xmlNewNodeEatName'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlSchemaSAXPlug'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-          <ref name='xmlShellPwd'/>
-          <ref name='xmlTextReaderCurrentDoc'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-          <ref name='xmlXPathPopBoolean'/>
-          <ref name='xmlXPathPopExternal'/>
-          <ref name='xmlXPathPopNodeSet'/>
-          <ref name='xmlXPathPopNumber'/>
-          <ref name='xmlXPathPopString'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='needing'>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='needle'>
-          <ref name='xmlStrcasestr'/>
-          <ref name='xmlStrstr'/>
-        </word>
-        <word name='needs'>
-          <ref name='xmlEntityReferenceFunc'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-          <ref name='xmlXPathNodeSetFreeNs'/>
-        </word>
-        <word name='negated'>
-          <ref name='_xmlSchemaWildcard'/>
-        </word>
-        <word name='negative'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlRegExecPushString'/>
-          <ref name='xmlRegExecPushString2'/>
-          <ref name='xmlRegexpExec'/>
-          <ref name='xmlRegexpIsDeterminist'/>
-          <ref name='xmlShellCmd'/>
-          <ref name='xmlXPathBooleanFunction'/>
-          <ref name='xmlXPathCeilingFunction'/>
-          <ref name='xmlXPathStringEvalNumber'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='neither'>
-          <ref name='xmlHasNsProp'/>
-          <ref name='xmlHasProp'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlTextReaderReadInnerXml'/>
-          <ref name='xmlXPathBooleanFunction'/>
-          <ref name='xmlXPathCompareValues'/>
-        </word>
-        <word name='nested'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='network'>
-          <ref name='htmlCtxtReadFile'/>
-          <ref name='htmlReadFile'/>
-          <ref name='xmlCtxtReadFile'/>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-          <ref name='xmlReadFile'/>
-          <ref name='xmlReaderForFile'/>
-          <ref name='xmlReaderNewFile'/>
-        </word>
-        <word name='nice'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='nillable'>
-          <ref name='XML_SCHEMAS_ELEM_NILLABLE'/>
-          <ref name='xmlExpIsNillable'/>
-        </word>
-        <word name='no-op'>
-          <ref name='htmlInitAutoClose'/>
-        </word>
-        <word name='nod'>
-          <ref name='xmlEntityReferenceFunc'/>
-        </word>
-        <word name='node-'>
-          <ref name='_xmlDOMWrapCtxt'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='node-set?'>
-          <ref name='xmlXPathLocalNameFunction'/>
-          <ref name='xmlXPathNamespaceURIFunction'/>
-        </word>
-        <word name='nodeInfos'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='nodelist'>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-        </word>
-        <word name='nodes1'>
-          <ref name='xmlXPathDifference'/>
-        </word>
-        <word name='nodes2'>
-          <ref name='xmlXPathDifference'/>
-        </word>
-        <word name='nodeset'>
-          <ref name='xmlXPathNodeSetFreeNs'/>
-        </word>
-        <word name='nodesets'>
-          <ref name='xmlXPathNodeSetMerge'/>
-        </word>
-        <word name='non'>
-          <ref name='XML_SCHEMAS_ANYATTR_LAX'/>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlTextReaderBaseUri'/>
-          <ref name='xmlTextReaderLocalName'/>
-          <ref name='xmlTextReaderLocatorBaseURI'/>
-          <ref name='xmlTextReaderName'/>
-          <ref name='xmlTextReaderNamespaceUri'/>
-          <ref name='xmlTextReaderPrefix'/>
-          <ref name='xmlTextReaderXmlLang'/>
-          <ref name='xmlXPathParseNCName'/>
-        </word>
-        <word name='non-CDATA'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='non-NULL'>
-          <ref name='htmlParseEntityRef'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlParseEntityValue'/>
-        </word>
-        <word name='non-UTF-8'>
-          <ref name='xmlByteConsumed'/>
-        </word>
-        <word name='non-blank'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-        </word>
-        <word name='non-determinist'>
-          <ref name='_xmlValidCtxt'/>
-        </word>
-        <word name='non-empty'>
-          <ref name='xmlXPathBooleanFunction'/>
-        </word>
-        <word name='non-final'>
-          <ref name='xmlRegExecPushString'/>
-          <ref name='xmlRegExecPushString2'/>
-        </word>
-        <word name='non-negative'>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlTextReaderPreservePattern'/>
-        </word>
-        <word name='non-normative'>
-          <ref name='xmlDetectCharEncoding'/>
-        </word>
-        <word name='non-null'>
-          <ref name='xmlShellPrintNode'/>
-        </word>
-        <word name='non-recursive'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='non-stateless'>
-          <ref name='xmlCharEncOutFunc'/>
-        </word>
-        <word name='non-validating'>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseEntityRef'/>
-        </word>
-        <word name='non-zero'>
-          <ref name='initxmlDefaultSAXHandler'/>
-          <ref name='xmlHasFeature'/>
-          <ref name='xmlIsLetter'/>
-          <ref name='xmlSAX2InitDefaultSAXHandler'/>
-          <ref name='xmlXPathBooleanFunction'/>
-        </word>
-        <word name='none'>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-          <ref name='getNamespace'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlGetLastChild'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlSchemaValueGetAsString'/>
-          <ref name='xmlSchemaValueGetNext'/>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-          <ref name='xmlTextReaderConstXmlLang'/>
-          <ref name='xmlTextReaderXmlLang'/>
-        </word>
-        <word name='nor'>
-          <ref name='xmlBufferCreateStatic'/>
-          <ref name='xmlBuildQName'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-          <ref name='xmlTextReaderReadInnerXml'/>
-          <ref name='xmlXPathBooleanFunction'/>
-        </word>
-        <word name='normal'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlParserInputBufferGrow'/>
-        </word>
-        <word name='normalization'>
-          <ref name='xmlNormalizeURIPath'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-        </word>
-        <word name='normalization:'>
-          <ref name='xmlCurrentChar'/>
-        </word>
-        <word name='normalizations'>
-          <ref name='xmlTextReaderNormalization'/>
-        </word>
-        <word name='normalize'>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlSchemaCollapseString'/>
-          <ref name='xmlTextReaderNormalization'/>
-        </word>
-        <word name='normalize-space'>
-          <ref name='xmlXPathNormalizeFunction'/>
-        </word>
-        <word name='normalized'>
-          <ref name='XML_SCHEMAS_TYPE_NORMVALUENEEDED'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-        </word>
-        <word name='normalizing'>
-          <ref name='xmlCurrentChar'/>
-        </word>
-        <word name='normally'>
-          <ref name='_xmlNs'/>
-          <ref name='c'/>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='notations'>
-          <ref name='_xmlDtd'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='note'>
-          <ref name='xmlAddChildList'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-          <ref name='xmlCheckUTF8'/>
-          <ref name='xmlLoadExternalEntity'/>
-          <ref name='xmlReplaceNode'/>
-        </word>
-        <word name='notice'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='now'>
-          <ref name='LIBXML_EXPR_ENABLED'/>
-          <ref name='XML_CAST_FPTR'/>
-          <ref name='_xmlSchema'/>
-          <ref name='_xmlSchemaElement'/>
-          <ref name='htmlInitAutoClose'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlScanName'/>
-        </word>
-        <word name='ns-binding'>
-          <ref name='xmlSetProp'/>
-        </word>
-        <word name='ns-decls'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-        </word>
-        <word name='ns-references'>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='nsDef'>
-          <ref name='_xmlDOMWrapCtxt'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='null'>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull3'/>
-          <ref name='xmlShellDu'/>
-        </word>
-        <word name='null-terminated'>
-          <ref name='xmlCheckUTF8'/>
-        </word>
-        <word name='number:'>
-          <ref name='LIBXML_VERSION'/>
-        </word>
-        <word name='number?'>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='numbers'>
-          <ref name='xmlLineNumbersDefault'/>
-          <ref name='xmlUTF8Size'/>
-          <ref name='xmlXPathAddValues'/>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathDivValues'/>
-          <ref name='xmlXPathModValues'/>
-          <ref name='xmlXPathMultValues'/>
-          <ref name='xmlXPathOrderDocElems'/>
-          <ref name='xmlXPathRoundFunction'/>
-          <ref name='xmlXPathSubValues'/>
-          <ref name='xmlXPathValueFlipSign'/>
-        </word>
-        <word name='numeric'>
-          <ref name='xmlXPathAddValues'/>
-          <ref name='xmlXPathDivValues'/>
-          <ref name='xmlXPathModValues'/>
-          <ref name='xmlXPathMultValues'/>
-          <ref name='xmlXPathStringFunction'/>
-          <ref name='xmlXPathSubValues'/>
-          <ref name='xmlXPathSubstringFunction'/>
-          <ref name='xmlXPathValueFlipSign'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk21'>
-      <letter name='o'>
-        <word name='object?'>
-          <ref name='xmlXPathNumberFunction'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='objects'>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathContextSetCache'/>
-          <ref name='xmlXPathDivValues'/>
-          <ref name='xmlXPathEqualValues'/>
-          <ref name='xmlXPathFreeNodeSetList'/>
-          <ref name='xmlXPathNotEqualValues'/>
-        </word>
-        <word name='objects:'>
-          <ref name='xmlXPathAddValues'/>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathModValues'/>
-          <ref name='xmlXPathMultValues'/>
-          <ref name='xmlXPathSubValues'/>
-        </word>
-        <word name='obligated'>
-          <ref name='xmlParseEntityRef'/>
-        </word>
-        <word name='obsolete'>
-          <ref name='xmlNormalizeWindowsPath'/>
-        </word>
-        <word name='obsolete:'>
-          <ref name='XML_SCHEMAS_ELEM_TOPLEVEL'/>
-        </word>
-        <word name='occupied'>
-          <ref name='xmlCanonicPath'/>
-          <ref name='xmlPathToURI'/>
-        </word>
-        <word name='occur'>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-          <ref name='xmlParseComment'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='occurred'>
-          <ref name='xmlCtxtGetLastError'/>
-          <ref name='xmlDictCreate'/>
-          <ref name='xmlDictCreateSub'/>
-          <ref name='xmlGetLastError'/>
-          <ref name='xmlHashCreate'/>
-          <ref name='xmlHashCreateDict'/>
-          <ref name='xmlListRemoveFirst'/>
-          <ref name='xmlListRemoveLast'/>
-          <ref name='xmlMemStrdupLoc'/>
-          <ref name='xmlMemoryStrdup'/>
-          <ref name='xmlTextReaderErrorFunc'/>
-        </word>
-        <word name='occurrence'>
-          <ref name='xmlStrcasestr'/>
-          <ref name='xmlStrchr'/>
-          <ref name='xmlStrstr'/>
-          <ref name='xmlStrsub'/>
-          <ref name='xmlXPathSubstringAfterFunction'/>
-          <ref name='xmlXPathSubstringBeforeFunction'/>
-        </word>
-        <word name='occurrences'>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='occurs'>
-          <ref name='xmlNormalizeURIPath'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlStrPrintf'/>
-          <ref name='xmlStrVPrintf'/>
-        </word>
-        <word name='octets'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='isolat1ToUTF8'/>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-        </word>
-        <word name='of:'>
-          <ref name='xmlParseSDDecl'/>
-        </word>
-        <word name='off'>
-          <ref name='xmlGetNoNsProp'/>
-          <ref name='xmlGetNsProp'/>
-          <ref name='xmlGetProp'/>
-          <ref name='xmlHasNsProp'/>
-          <ref name='xmlHasProp'/>
-          <ref name='xmlLineNumbersDefault'/>
-          <ref name='xmlParseExternalID'/>
-        </word>
-        <word name='okay'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='old'>
-          <ref name='_xmlDoc'/>
-          <ref name='globalNamespace'/>
-          <ref name='xmlDocSetRootElement'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlLineNumbersDefault'/>
-          <ref name='xmlListCopy'/>
-          <ref name='xmlNewGlobalNs'/>
-          <ref name='xmlOutputBufferCreateFilenameDefault'/>
-          <ref name='xmlParserInputBufferCreateFilenameDefault'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlParserInputBufferRead'/>
-          <ref name='xmlRegisterNodeDefault'/>
-          <ref name='xmlReplaceNode'/>
-          <ref name='xmlXPathConvertBoolean'/>
-          <ref name='xmlXPathConvertNumber'/>
-          <ref name='xmlXPathConvertString'/>
-        </word>
-        <word name='oldNs'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='older'>
-          <ref name='LIBXML_SAX1_ENABLED'/>
-          <ref name='xmlParseNamespace'/>
-        </word>
-        <word name='omitted'>
-          <ref name='htmlHandleOmittedElem'/>
-          <ref name='xmlXPathLocalNameFunction'/>
-          <ref name='xmlXPathNamespaceURIFunction'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-          <ref name='xmlXPathStringFunction'/>
-          <ref name='xmlXPathStringLengthFunction'/>
-        </word>
-        <word name='once'>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlEncodeEntities'/>
-          <ref name='xmlInitParser'/>
-          <ref name='xmlInitializeCatalog'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadCatalogs'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseElementDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlParsePI'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-          <ref name='xmlTextReaderCurrentDoc'/>
-          <ref name='xmlTextReaderPreserve'/>
-          <ref name='xmlTextReaderPreservePattern'/>
-          <ref name='xmlValidateDocumentFinal'/>
-          <ref name='xmlValidateDtdFinal'/>
-          <ref name='xmlXPathNodeSetMerge'/>
-          <ref name='xmlXPtrLocationSetMerge'/>
-        </word>
-        <word name='ones'>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='startElementNsSAX2Func'/>
-          <ref name='xmlCatalogConvert'/>
-          <ref name='xmlConvertSGMLCatalog'/>
-        </word>
-        <word name='onto'>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='opaque'>
-          <ref name='_xmlSchema'/>
-          <ref name='_xmlURI'/>
-        </word>
-        <word name='open'>
-          <ref name='htmlCtxtReadFd'/>
-          <ref name='htmlDocDump'/>
-          <ref name='htmlReadFd'/>
-          <ref name='xmlCtxtReadFd'/>
-          <ref name='xmlDocDump'/>
-          <ref name='xmlDocFormatDump'/>
-          <ref name='xmlIOFTPOpen'/>
-          <ref name='xmlIOHTTPOpen'/>
-          <ref name='xmlInputOpenCallback'/>
-          <ref name='xmlNanoFTPConnect'/>
-          <ref name='xmlNanoFTPConnectTo'/>
-          <ref name='xmlNanoFTPGetConnection'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlNanoHTTPOpen'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-          <ref name='xmlOutputOpenCallback'/>
-          <ref name='xmlReadFd'/>
-          <ref name='xmlReaderForFd'/>
-          <ref name='xmlReaderNewFd'/>
-          <ref name='xmlTextWriterEndDocument'/>
-        </word>
-        <word name='opening'>
-          <ref name='startElement'/>
-          <ref name='startElementSAXFunc'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlSAX2StartElement'/>
-        </word>
-        <word name='operands'>
-          <ref name='xmlXPathAddValues'/>
-          <ref name='xmlXPathDivValues'/>
-          <ref name='xmlXPathModValues'/>
-          <ref name='xmlXPathMultValues'/>
-          <ref name='xmlXPathSubValues'/>
-          <ref name='xmlXPathValueFlipSign'/>
-        </word>
-        <word name='operating'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlParserInputBufferPush'/>
-        </word>
-        <word name='operation'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlCatalogSetDebug'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlExpNewSeq'/>
-          <ref name='xmlTextReaderConstValue'/>
-          <ref name='xmlXPathAddValues'/>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathConvertBoolean'/>
-          <ref name='xmlXPathConvertNumber'/>
-          <ref name='xmlXPathConvertString'/>
-          <ref name='xmlXPathDivValues'/>
-          <ref name='xmlXPathEqualValues'/>
-          <ref name='xmlXPathModValues'/>
-          <ref name='xmlXPathMultValues'/>
-          <ref name='xmlXPathNotEqualValues'/>
-          <ref name='xmlXPathSubValues'/>
-          <ref name='xmlXPathValueFlipSign'/>
-        </word>
-        <word name='operations'>
-          <ref name='_xmlDOMWrapCtxt'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlModuleClose'/>
-          <ref name='xmlModuleFree'/>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='operator'>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlXPathCompareValues'/>
-        </word>
-        <word name='operators'>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlXPathAddValues'/>
-          <ref name='xmlXPathDivValues'/>
-          <ref name='xmlXPathModValues'/>
-          <ref name='xmlXPathMultValues'/>
-          <ref name='xmlXPathSubValues'/>
-          <ref name='xmlXPathValueFlipSign'/>
-        </word>
-        <word name='opposite'>
-          <ref name='xmlCleanupParser'/>
-        </word>
-        <word name='optimized'>
-          <ref name='xmlXPathNodeSetAddUnique'/>
-        </word>
-        <word name='option'>
-          <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlGetLineNo'/>
-          <ref name='xmlSchemaValidCtxtGetOptions'/>
-        </word>
-        <word name='options'>
-          <ref name='htmlCtxtUseOptions'/>
-          <ref name='xmlCtxtUseOptions'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlSaveToBuffer'/>
-          <ref name='xmlSaveToFd'/>
-          <ref name='xmlSaveToFilename'/>
-          <ref name='xmlSaveToIO'/>
-          <ref name='xmlSchemaSetValidOptions'/>
-          <ref name='xmlSchemaValidCtxtGetOptions'/>
-          <ref name='xmlSchemaValidateFile'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-          <ref name='xmlTextReaderSetup'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='ordered'>
-          <ref name='xmlListAppend'/>
-          <ref name='xmlListInsert'/>
-          <ref name='xmlXPathNextAncestor'/>
-          <ref name='xmlXPathNextFollowing'/>
-          <ref name='xmlXPathNextPreceding'/>
-        </word>
-        <word name='ordering'>
-          <ref name='xmlListDataCompare'/>
-        </word>
-        <word name='org'>
-          <ref name='XINCLUDE_NS'/>
-          <ref name='XINCLUDE_OLD_NS'/>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlGetCharEncodingName'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlSchemaGetPredefinedType'/>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-        <word name='oriented'>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='origin'>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='original'>
-          <ref name='_xmlSchemaElement'/>
-          <ref name='_xmlSchemaFacet'/>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCopyError'/>
-          <ref name='xmlGetEncodingAlias'/>
-          <ref name='xmlListMerge'/>
-          <ref name='xmlParseEntityValue'/>
-          <ref name='xmlParseURIRaw'/>
-          <ref name='xmlSchemaSAXPlug'/>
-          <ref name='xmlSchemaSAXUnplug'/>
-          <ref name='xmlShellSave'/>
-          <ref name='xmlStrcat'/>
-          <ref name='xmlStrncat'/>
-          <ref name='xmlStrncatNew'/>
-          <ref name='xmlXPathObjectCopy'/>
-        </word>
-        <word name='other'>
-          <ref name='XML_SCHEMAS_INCLUDING_CONVERT_NS'/>
-          <ref name='htmlAutoCloseTag'/>
-          <ref name='htmlIsAutoClosed'/>
-          <ref name='htmlNodeStatus'/>
-          <ref name='xmlAutomataNewNegTrans'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlMemSetup'/>
-          <ref name='xmlNanoFTPUpdateURL'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlSchemaNewStringValue'/>
-          <ref name='xmlTextReaderIsNamespaceDecl'/>
-          <ref name='xmlTextReaderReadString'/>
-          <ref name='xmlValidateRoot'/>
-          <ref name='xmlXPathIdFunction'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-          <ref name='xmlXPathStringFunction'/>
-          <ref name='xmlXPathStringLengthFunction'/>
-        </word>
-        <word name='our'>
-          <ref name='setDocumentLocator'/>
-          <ref name='setDocumentLocatorSAXFunc'/>
-          <ref name='xmlSAX2SetDocumentLocator'/>
-        </word>
-        <word name='out'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='isolat1ToUTF8'/>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlLockLibrary'/>
-          <ref name='xmlParseEntity'/>
-          <ref name='xmlSAXParseEntity'/>
-          <ref name='xmlSchemaValidityLocatorFunc'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-          <ref name='xmlTextReaderNormalization'/>
-          <ref name='xmlXPathFunction'/>
-          <ref name='xmlXPathNodeSetItem'/>
-        </word>
-        <word name='out-of'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-        </word>
-        <word name='output?'>
-          <ref name='xmlNewTextWriterDoc'/>
-          <ref name='xmlNewTextWriterFilename'/>
-          <ref name='xmlNewTextWriterMemory'/>
-          <ref name='xmlNewTextWriterPushParser'/>
-          <ref name='xmlNewTextWriterTree'/>
-        </word>
-        <word name='outside'>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='over'>
-          <ref name='xmlExpCtxtNbCons'/>
-        </word>
-        <word name='overflow'>
-          <ref name='_xmlParserInput'/>
-        </word>
-        <word name='override'>
-          <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlGetLineNo'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-        </word>
-        <word name='overriding'>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-        </word>
-        <word name='overwrite'>
-          <ref name='xmlACatalogAdd'/>
-          <ref name='xmlCatalogAdd'/>
-        </word>
-        <word name='overwritten'>
-          <ref name='xmlAddEncodingAlias'/>
-        </word>
-        <word name='own'>
-          <ref name='_xmlEntity'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-        </word>
-        <word name='owned'>
-          <ref name='xmlClearParserCtxt'/>
-          <ref name='xmlDictOwns'/>
-        </word>
-        <word name='owner'>
-          <ref name='ftpListCallback'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='ownership'>
-          <ref name='xmlAddAttributeDecl'/>
-        </word>
-        <word name='owning'>
-          <ref name='xmlCopyDocElementContent'/>
-          <ref name='xmlFreeDocElementContent'/>
-          <ref name='xmlNewDocFragment'/>
-        </word>
-        <word name='owns'>
-          <ref name='XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk22'>
-      <letter name='p'>
-        <word name='pairs'>
-          <ref name='startElement'/>
-          <ref name='startElementNsSAX2Func'/>
-          <ref name='startElementSAXFunc'/>
-          <ref name='xmlSAX2StartElement'/>
-          <ref name='xmlSAX2StartElementNs'/>
-        </word>
-        <word name='param'>
-          <ref name='_xmlDtd'/>
-        </word>
-        <word name='parameter-entity'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='parameters'>
-          <ref name='ATTRIBUTE_UNUSED'/>
-          <ref name='errorSAXFunc'/>
-          <ref name='fatalErrorSAXFunc'/>
-          <ref name='warningSAXFunc'/>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlParserError'/>
-          <ref name='xmlParserValidityError'/>
-          <ref name='xmlParserValidityWarning'/>
-          <ref name='xmlParserWarning'/>
-          <ref name='xmlStrPrintf'/>
-          <ref name='xmlStrVPrintf'/>
-          <ref name='xmlTextWriterWriteFormatAttribute'/>
-          <ref name='xmlTextWriterWriteFormatAttributeNS'/>
-          <ref name='xmlTextWriterWriteFormatCDATA'/>
-          <ref name='xmlTextWriterWriteFormatComment'/>
-          <ref name='xmlTextWriterWriteFormatDTD'/>
-          <ref name='xmlTextWriterWriteFormatDTDAttlist'/>
-          <ref name='xmlTextWriterWriteFormatDTDElement'/>
-          <ref name='xmlTextWriterWriteFormatDTDInternalEntity'/>
-          <ref name='xmlTextWriterWriteFormatElement'/>
-          <ref name='xmlTextWriterWriteFormatElementNS'/>
-          <ref name='xmlTextWriterWriteFormatPI'/>
-          <ref name='xmlTextWriterWriteFormatRaw'/>
-          <ref name='xmlTextWriterWriteFormatString'/>
-          <ref name='xmlXPathEvalFunc'/>
-        </word>
-        <word name='parent-'>
-          <ref name='_xmlNode'/>
-        </word>
-        <word name='parentheses'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-        </word>
-        <word name='parenthesis'>
-          <ref name='xmlSnprintfElementContent'/>
-          <ref name='xmlSprintfElementContent'/>
-        </word>
-        <word name='parenthesized'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-        </word>
-        <word name='parents'>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlSearchNsByHref'/>
-        </word>
-        <word name='partial'>
-          <ref name='xmlOutputBufferWrite'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlOutputBufferWriteString'/>
-        </word>
-        <word name='particular'>
-          <ref name='_xmlNodeSet'/>
-        </word>
-        <word name='pass'>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlRelaxParserSetFlag'/>
-          <ref name='xmlTextReaderSetErrorHandler'/>
-          <ref name='xmlTextReaderSetStructuredErrorHandler'/>
-        </word>
-        <word name='passed'>
-          <ref name='CHECK_ARITY'/>
-          <ref name='xmlAutomataNewNegTrans'/>
-          <ref name='xmlAutomataNewTransition'/>
-          <ref name='xmlAutomataNewTransition2'/>
-          <ref name='xmlHashScan'/>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull'/>
-          <ref name='xmlHashScanFull3'/>
-          <ref name='xmlListReverseWalk'/>
-          <ref name='xmlListWalk'/>
-          <ref name='xmlNanoFTPGet'/>
-          <ref name='xmlNanoFTPList'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-          <ref name='xmlXIncludeProcessFlagsData'/>
-          <ref name='xmlXIncludeProcessTreeFlagsData'/>
-          <ref name='xmlXPathEvalFunc'/>
-          <ref name='xmlXPathIntersection'/>
-        </word>
-        <word name='passive'>
-          <ref name='xmlNanoFTPGetConnection'/>
-        </word>
-        <word name='password'>
-          <ref name='xmlNanoFTPProxy'/>
-        </word>
-        <word name='past'>
-          <ref name='attribute'/>
-          <ref name='attributeSAXFunc'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='paste'>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='path'>
-          <ref name='_xmlURI'/>
-          <ref name='xmlCanonicPath'/>
-          <ref name='xmlCheckFilename'/>
-          <ref name='xmlGetNodePath'/>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlNanoFTPGetSocket'/>
-          <ref name='xmlNanoFTPUpdateURL'/>
-          <ref name='xmlNormalizeURIPath'/>
-          <ref name='xmlNormalizeWindowsPath'/>
-          <ref name='xmlParserGetDirectory'/>
-          <ref name='xmlPathToURI'/>
-          <ref name='xmlShellPwd'/>
-          <ref name='xmlShellValidate'/>
-          <ref name='xmlTextReaderRelaxNGValidate'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-        </word>
-        <word name='pathological'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-        </word>
-        <word name='pattern'>
-          <ref name='XML_SCHEMAS_TYPE_NORMVALUENEEDED'/>
-          <ref name='xmlPatternFromRoot'/>
-          <ref name='xmlPatternGetStreamCtxt'/>
-          <ref name='xmlPatternMatch'/>
-          <ref name='xmlPatternMaxDepth'/>
-          <ref name='xmlPatternMinDepth'/>
-          <ref name='xmlPatternStreamable'/>
-          <ref name='xmlPatterncompile'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-          <ref name='xmlTextReaderPreservePattern'/>
-        </word>
-        <word name='patterns'>
-          <ref name='_xmlSchemaFacet'/>
-        </word>
-        <word name='pcdata'>
-          <ref name='cdataBlock'/>
-          <ref name='cdataBlockSAXFunc'/>
-          <ref name='xmlSAX2CDataBlock'/>
-        </word>
-        <word name='pedantic'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlPedanticParserDefault'/>
-        </word>
-        <word name='per'>
-          <ref name='xmlGetLastError'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlValidateElementDecl'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='per-thread'>
-          <ref name='LIBXML_THREAD_ALLOC_ENABLED'/>
-        </word>
-        <word name='performance'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-        </word>
-        <word name='performed'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='permanently'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='pertain'>
-          <ref name='xmlNewDocTextLen'/>
-        </word>
-        <word name='pertains'>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseExternalEntity'/>
-        </word>
-        <word name='phase'>
-          <ref name='xmlRegNewExecCtxt'/>
-        </word>
-        <word name='pic1'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='piece'>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-        </word>
-        <word name='pieces'>
-          <ref name='xmlParseURIRaw'/>
-        </word>
-        <word name='place'>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlCopyError'/>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlMemGet'/>
-          <ref name='xmlReplaceNode'/>
-        </word>
-        <word name='places'>
-          <ref name='xmlMemDisplayLast'/>
-          <ref name='xmlStrPrintf'/>
-          <ref name='xmlStrVPrintf'/>
-        </word>
-        <word name='platforms'>
-          <ref name='xmlGetThreadId'/>
-        </word>
-        <word name='plug'>
-          <ref name='xmlXPathFuncLookupFunc'/>
-          <ref name='xmlXPathVariableLookupFunc'/>
-        </word>
-        <word name='plugin'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='plugins'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='plus'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='htmlEncodeEntities'/>
-        </word>
-        <word name='pnetlib-doc'>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-        <word name='pointed'>
-          <ref name='xmlPopInput'/>
-        </word>
-        <word name='pointers'>
-          <ref name='xmlParserInputGrow'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlSchemaSAXPlug'/>
-          <ref name='xmlSchemaSAXUnplug'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='points'>
-          <ref name='_xmlChRangeGroup'/>
-        </word>
-        <word name='pop'>
-          <ref name='xmlPopInput'/>
-        </word>
-        <word name='popped'>
-          <ref name='xmlXPathFunction'/>
-        </word>
-        <word name='pops'>
-          <ref name='xmlSkipBlankChars'/>
-        </word>
-        <word name='port'>
-          <ref name='_xmlURI'/>
-          <ref name='xmlNanoFTPConnectTo'/>
-          <ref name='xmlNanoFTPProxy'/>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoFTPUpdateURL'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-        </word>
-        <word name='portability'>
-          <ref name='INVALID_SOCKET'/>
-          <ref name='SOCKET'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-        </word>
-        <word name='pos'>
-          <ref name='xmlUTF8Strsub'/>
-        </word>
-        <word name='position:'>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='positioned'>
-          <ref name='xmlTextReaderReadAttributeValue'/>
-          <ref name='xmlTextReaderReadString'/>
-        </word>
-        <word name='positions'>
-          <ref name='xmlUTF8Strsub'/>
-        </word>
-        <word name='possible'>
-          <ref name='xmlCopyNodeList'/>
-          <ref name='xmlCreateEntityParserCtxt'/>
-          <ref name='xmlParseDefaultDecl'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderRelaxNGValidate'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-          <ref name='xmlTextReaderSetSchema'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='possibly'>
-          <ref name='xmlDocGetRootElement'/>
-          <ref name='xmlDocSetRootElement'/>
-          <ref name='xmlIsBlankNode'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlSaveToFilename'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='posteriori'>
-          <ref name='xmlSetNs'/>
-        </word>
-        <word name='potential'>
-          <ref name='xmlDebugCheckDocument'/>
-          <ref name='xmlValidGetPotentialChildren'/>
-        </word>
-        <word name='potentially'>
-          <ref name='_xmlURI'/>
-        </word>
-        <word name='practice'>
-          <ref name='xmlParseVersionNum'/>
-        </word>
-        <word name='pre-interned'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='preallocated'>
-          <ref name='xmlBuildQName'/>
-        </word>
-        <word name='precede'>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlXPathLeading'/>
-          <ref name='xmlXPathLeadingSorted'/>
-          <ref name='xmlXPathNodeLeading'/>
-          <ref name='xmlXPathNodeLeadingSorted'/>
-        </word>
-        <word name='preceded'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='precedes'>
-          <ref name='xmlXPathSubstringBeforeFunction'/>
-        </word>
-        <word name='preceding'>
-          <ref name='_xmlXPathParserContext'/>
-          <ref name='xmlXPathNextPreceding'/>
-          <ref name='xmlXPathNextPrecedingSibling'/>
-        </word>
-        <word name='preceding-sibling'>
-          <ref name='xmlXPathNextPrecedingSibling'/>
-        </word>
-        <word name='precisely'>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='precompiled'>
-          <ref name='_xmlXPathParserContext'/>
-          <ref name='xmlPatternFromRoot'/>
-          <ref name='xmlPatternGetStreamCtxt'/>
-          <ref name='xmlPatternMatch'/>
-          <ref name='xmlPatternMaxDepth'/>
-          <ref name='xmlPatternMinDepth'/>
-          <ref name='xmlPatternStreamable'/>
-          <ref name='xmlRegNewExecCtxt'/>
-          <ref name='xmlRelaxNGNewValidCtxt'/>
-          <ref name='xmlSchemaNewValidCtxt'/>
-          <ref name='xmlSchematronNewValidCtxt'/>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderSetSchema'/>
-          <ref name='xmlXPathDebugDumpCompExpr'/>
-        </word>
-        <word name='precomputed'>
-          <ref name='xmlSchemaCopyValue'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaGetCanonValueWhtsp'/>
-          <ref name='xmlSchemaValidateFacet'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-        </word>
-        <word name='predefined'>
-          <ref name='XML_XML_NAMESPACE'/>
-          <ref name='xmlCleanupPredefinedEntities'/>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-          <ref name='xmlEncodeSpecialChars'/>
-          <ref name='xmlGetDocEntity'/>
-          <ref name='xmlGetPredefinedEntity'/>
-          <ref name='xmlInitializePredefinedEntities'/>
-          <ref name='xmlParseReference'/>
-          <ref name='xmlSchemaValPredefTypeNode'/>
-          <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-          <ref name='xmlSchemaValidatePredefinedType'/>
-        </word>
-        <word name='predicate'>
-          <ref name='xmlXPathEvalPredicate'/>
-          <ref name='xmlXPathEvaluatePredicateResult'/>
-          <ref name='xmlXPtrEvalRangePredicate'/>
-        </word>
-        <word name='preferably'>
-          <ref name='xmlInitializeCatalog'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadCatalogs'/>
-        </word>
-        <word name='preference'>
-          <ref name='xmlCatalogGetDefaults'/>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-          <ref name='xmlCatalogSetDefaults'/>
-        </word>
-        <word name='prefixes'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-        </word>
-        <word name='preparing'>
-          <ref name='xmlCleanupParser'/>
-        </word>
-        <word name='preparsed'>
-          <ref name='xmlReaderNewWalker'/>
-          <ref name='xmlReaderWalker'/>
-          <ref name='xmlRelaxNGNewDocParserCtxt'/>
-          <ref name='xmlSchemaNewDocParserCtxt'/>
-          <ref name='xmlSchematronNewDocParserCtxt'/>
-        </word>
-        <word name='prepend'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='present'>
-          <ref name='xmlBufferCreateStatic'/>
-          <ref name='xmlDictLookup'/>
-          <ref name='xmlDictQLookup'/>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlNewNs'/>
-          <ref name='xmlTextReaderConstValue'/>
-          <ref name='xmlTextReaderValue'/>
-          <ref name='xmlValidateDocument'/>
-          <ref name='xmlValidateDtd'/>
-          <ref name='xmlValidateOneElement'/>
-        </word>
-        <word name='preserve'>
-          <ref name='XML_SCHEMAS_FACET_PRESERVE'/>
-          <ref name='XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlNodeGetSpacePreserve'/>
-          <ref name='xmlNodeSetSpacePreserve'/>
-          <ref name='xmlParserInputGrow'/>
-          <ref name='xmlTextReaderPreserve'/>
-          <ref name='xmlTextReaderPreservePattern'/>
-        </word>
-        <word name='preserved'>
-          <ref name='HTML_PRESERVE_NODE'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlParserInputBufferGrow'/>
-        </word>
-        <word name='preserving'>
-          <ref name='xmlNodeGetSpacePreserve'/>
-          <ref name='xmlNodeSetSpacePreserve'/>
-        </word>
-        <word name='prev'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='prevent'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='previous'>
-          <ref name='_xmlAttr'/>
-          <ref name='_xmlAttribute'/>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlDtd'/>
-          <ref name='_xmlElement'/>
-          <ref name='_xmlEntity'/>
-          <ref name='_xmlNode'/>
-          <ref name='htmlHandleOmittedElem'/>
-          <ref name='htmlParseElement'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlBufferDetach'/>
-          <ref name='xmlCatalogSetDebug'/>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-          <ref name='xmlDeregisterNodeDefault'/>
-          <ref name='xmlDictSetLimit'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlLineNumbersDefault'/>
-          <ref name='xmlPedanticParserDefault'/>
-          <ref name='xmlPreviousElementSibling'/>
-          <ref name='xmlPushInput'/>
-          <ref name='xmlSAXDefaultVersion'/>
-          <ref name='xmlSubstituteEntitiesDefault'/>
-          <ref name='xmlXPathAxisFunc'/>
-        </word>
-        <word name='primitive'>
-          <ref name='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE'/>
-          <ref name='xmlXPathConvertFunc'/>
-        </word>
-        <word name='print'>
-          <ref name='xmlShellPrintNode'/>
-          <ref name='xmlSnprintfElementContent'/>
-          <ref name='xmlSprintfElementContent'/>
-        </word>
-        <word name='printed'>
-          <ref name='htmlNodeDump'/>
-          <ref name='htmlNodeDumpFile'/>
-          <ref name='htmlNodeDumpFileFormat'/>
-          <ref name='htmlNodeDumpFormatOutput'/>
-          <ref name='htmlNodeDumpOutput'/>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlElemDump'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-        </word>
-        <word name='prior'>
-          <ref name='xmlSetupParserForBuffer'/>
-        </word>
-        <word name='private'>
-          <ref name='htmlDefaultSAXHandlerInit'/>
-          <ref name='htmlInitAutoClose'/>
-          <ref name='xmlCatalogLocalResolve'/>
-          <ref name='xmlCatalogLocalResolveURI'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDefaultSAXHandlerInit'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlInitGlobals'/>
-          <ref name='xmlInitMemory'/>
-          <ref name='xmlInitThreads'/>
-          <ref name='xmlInitializeDict'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlRelaxParserSetFlag'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-          <ref name='xmlXPathInit'/>
-        </word>
-        <word name='privateuse'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='problem'>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlRelaxNGValidateFullElement'/>
-          <ref name='xmlRelaxNGValidatePopElement'/>
-          <ref name='xmlRelaxNGValidatePushCData'/>
-          <ref name='xmlRelaxNGValidatePushElement'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-          <ref name='xmlUTF8Strsub'/>
-          <ref name='xmlValidatePopElement'/>
-          <ref name='xmlValidatePushCData'/>
-          <ref name='xmlValidatePushElement'/>
-        </word>
-        <word name='problems'>
-          <ref name='xmlBufferResize'/>
-          <ref name='xmlDebugCheckDocument'/>
-          <ref name='xmlLoadExternalEntity'/>
-          <ref name='xmlValidateDtd'/>
-        </word>
-        <word name='procedure'>
-          <ref name='initxmlDefaultSAXHandler'/>
-          <ref name='xmlSAX2InitDefaultSAXHandler'/>
-        </word>
-        <word name='process'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlNewTextReaderFilename'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlRelaxNGNewDocParserCtxt'/>
-          <ref name='xmlSchemaNewDocParserCtxt'/>
-          <ref name='xmlSchematronNewDocParserCtxt'/>
-          <ref name='xmlSkipBlankChars'/>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-        </word>
-        <word name='processed'>
-          <ref name='startDocument'/>
-          <ref name='startDocumentSAXFunc'/>
-          <ref name='startElement'/>
-          <ref name='startElementSAXFunc'/>
-          <ref name='xmlBuildURI'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlSAX2StartDocument'/>
-          <ref name='xmlSAX2StartElement'/>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderRelaxNGValidate'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-          <ref name='xmlTextReaderSetSchema'/>
-        </word>
-        <word name='processing-instruction'>
-          <ref name='xmlXPathIsNodeType'/>
-        </word>
-        <word name='processing-instruction-node'>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='processing-instruction-nodes'>
-          <ref name='xmlStreamWantsAnyNode'/>
-        </word>
-        <word name='processor'>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-        </word>
-        <word name='produce'>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlStringGetNodeList'/>
-          <ref name='xmlStringLenGetNodeList'/>
-        </word>
-        <word name='produced'>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='isolat1ToUTF8'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlCurrentChar'/>
-        </word>
-        <word name='producing'>
-          <ref name='xmlCheckUTF8'/>
-        </word>
-        <word name='production:'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='productions'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='program'>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-          <ref name='xmlXPtrNewContext'/>
-        </word>
-        <word name='programs'>
-          <ref name='xmlInitParser'/>
-        </word>
-        <word name='progressed'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='progresses'>
-          <ref name='xmlRegNewExecCtxt'/>
-        </word>
-        <word name='progressive'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlAllocParserInputBuffer'/>
-          <ref name='xmlOutputBufferCreateBuffer'/>
-          <ref name='xmlOutputBufferCreateFd'/>
-          <ref name='xmlOutputBufferCreateFile'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlOutputBufferCreateIO'/>
-          <ref name='xmlParserInputBufferCreateFd'/>
-          <ref name='xmlParserInputBufferCreateFile'/>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-          <ref name='xmlParserInputBufferCreateIO'/>
-          <ref name='xmlParserInputBufferCreateMem'/>
-          <ref name='xmlParserInputBufferCreateStatic'/>
-          <ref name='xmlParserInputBufferPush'/>
-          <ref name='xmlRegNewExecCtxt'/>
-        </word>
-        <word name='prohibited'>
-          <ref name='XML_SCHEMAS_ATTR_USE_PROHIBITED'/>
-        </word>
-        <word name='prolog'>
-          <ref name='xmlParseDocument'/>
-        </word>
-        <word name='prompt'>
-          <ref name='xmlShellReadlineFunc'/>
-        </word>
-        <word name='proper'>
-          <ref name='xmlValidateAttributeValue'/>
-        </word>
-        <word name='properly'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='properties'>
-          <ref name='_xmlNode'/>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlCopyNode'/>
-          <ref name='xmlDocCopyNode'/>
-          <ref name='xmlTextReaderRead'/>
-          <ref name='xmlTextReaderSetParserProp'/>
-        </word>
-        <word name='property'>
-          <ref name='_xmlAttr'/>
-          <ref name='_xmlDtd'/>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlFreePropList'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNewNsProp'/>
-          <ref name='xmlNewNsPropEatName'/>
-          <ref name='xmlNewProp'/>
-          <ref name='xmlTextReaderGetParserProp'/>
-        </word>
-        <word name='protocol'>
-          <ref name='xmlNanoFTPCleanup'/>
-          <ref name='xmlNanoFTPInit'/>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoFTPUpdateURL'/>
-          <ref name='xmlNanoHTTPCleanup'/>
-          <ref name='xmlNanoHTTPInit'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-        </word>
-        <word name='prototype'>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xlinkExtendedLinkSetFunk'/>
-          <ref name='xlinkNodeDetectFunc'/>
-          <ref name='xlinkSimpleLinkFunk'/>
-        </word>
-        <word name='provenance'>
-          <ref name='xmlEntityReferenceFunc'/>
-        </word>
-        <word name='provide'>
-          <ref name='INVALID_SOCKET'/>
-          <ref name='SOCKET'/>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlDocDumpFormatMemory'/>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocFormatDump'/>
-          <ref name='xmlInputMatchCallback'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-          <ref name='xmlOutputMatchCallback'/>
-          <ref name='xmlSaveFormatFile'/>
-          <ref name='xmlSaveFormatFileEnc'/>
-          <ref name='xmlSchemaValidateSetFilename'/>
-          <ref name='xmlSchemaValidateSetLocator'/>
-          <ref name='xmlSchemaValidateStream'/>
-          <ref name='xmlUTF8Strloc'/>
-          <ref name='xmlUTF8Strpos'/>
-        </word>
-        <word name='provides'>
-          <ref name='endElementNsSAX2Func'/>
-          <ref name='startElementNsSAX2Func'/>
-          <ref name='xmlByteConsumed'/>
-          <ref name='xmlExpCtxtNbCons'/>
-          <ref name='xmlExpCtxtNbNodes'/>
-          <ref name='xmlSAX2EndElementNs'/>
-          <ref name='xmlSAX2StartElementNs'/>
-          <ref name='xmlTextReaderByteConsumed'/>
-        </word>
-        <word name='providing'>
-          <ref name='INPUT_CHUNK'/>
-        </word>
-        <word name='provoked'>
-          <ref name='xmlCheckUTF8'/>
-        </word>
-        <word name='proximity'>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='proxy'>
-          <ref name='xmlNanoFTPCleanup'/>
-          <ref name='xmlNanoFTPInit'/>
-          <ref name='xmlNanoFTPProxy'/>
-          <ref name='xmlNanoFTPScanProxy'/>
-          <ref name='xmlNanoHTTPInit'/>
-          <ref name='xmlNanoHTTPScanProxy'/>
-        </word>
-        <word name='prune'>
-          <ref name='xmlReplaceNode'/>
-        </word>
-        <word name='pthread_t'>
-          <ref name='xmlGetThreadId'/>
-        </word>
-        <word name='pthreads'>
-          <ref name='xmlGetThreadId'/>
-        </word>
-        <word name='publicID'>
-          <ref name='xmlParseExternalID'/>
-        </word>
-        <word name='pull'>
-          <ref name='xmlParserInputBufferGrow'/>
-        </word>
-        <word name='pure'>
-          <ref name='xmlParseCDSect'/>
-        </word>
-        <word name='purposes'>
-          <ref name='xmlXPathDebugDumpObject'/>
-        </word>
-        <word name='push'>
-          <ref name='LIBXML_PUSH_ENABLED'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='htmlCreatePushParserCtxt'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlCtxtResetPush'/>
-          <ref name='xmlParserInputBufferPush'/>
-          <ref name='xmlStreamPop'/>
-          <ref name='xmlXPathEvalExpr'/>
-        </word>
-        <word name='pushed'>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlStreamPushNode'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-          <ref name='xmlXPathFunction'/>
-        </word>
-        <word name='pushing'>
-          <ref name='xmlParsePEReference'/>
-        </word>
-        <word name='put'>
-          <ref name='xmlCatalogAdd'/>
-        </word>
-        <word name='putative'>
-          <ref name='xmlCheckUTF8'/>
-        </word>
-        <word name='pwd'>
-          <ref name='xmlShellPwd'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk23'>
-      <letter name='q'>
-        <word name='qualified'>
-          <ref name='XML_SCHEMAS_QUALIF_ATTR'/>
-          <ref name='XML_SCHEMAS_QUALIF_ELEM'/>
-          <ref name='xmlGetDtdQAttrDesc'/>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlSplitQName'/>
-          <ref name='xmlSplitQName2'/>
-          <ref name='xmlSplitQName3'/>
-          <ref name='xmlTextReaderConstName'/>
-          <ref name='xmlTextReaderGetAttribute'/>
-          <ref name='xmlTextReaderMoveToAttribute'/>
-          <ref name='xmlTextReaderName'/>
-          <ref name='xmlValidatePopElement'/>
-          <ref name='xmlValidatePushElement'/>
-          <ref name='xmlXPathParseNCName'/>
-        </word>
-        <word name='query'>
-          <ref name='_xmlURI'/>
-        </word>
-        <word name='quot'>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlParserHandleReference'/>
-        </word>
-        <word name='quotation'>
-          <ref name='xmlTextReaderQuoteChar'/>
-        </word>
-        <word name='quote'>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='xmlBufferWriteQuotedString'/>
-          <ref name='xmlTextWriterSetQuoteChar'/>
-        </word>
-        <word name='quoted'>
-          <ref name='xmlBufferWriteQuotedString'/>
-        </word>
-        <word name='quotes'>
-          <ref name='xmlParseQuotedString'/>
-        </word>
-        <word name='quoting'>
-          <ref name='xmlTextWriterSetQuoteChar'/>
-        </word>
-      </letter>
-      <letter name='r'>
-        <word name='raise'>
-          <ref name='XP_ERROR'/>
-          <ref name='XP_ERROR0'/>
-        </word>
-        <word name='raised'>
-          <ref name='_xmlError'/>
-          <ref name='xmlCheckHTTPInput'/>
-          <ref name='xmlNanoFTPUpdateURL'/>
-          <ref name='xmlStructuredErrorFunc'/>
-          <ref name='xmlXPathCheckError'/>
-        </word>
-        <word name='range'>
-          <ref name='IS_BYTE_CHAR'/>
-          <ref name='xmlAutomataNewCounterTrans'/>
-          <ref name='xmlBufferAdd'/>
-          <ref name='xmlBufferAddHead'/>
-          <ref name='xmlCharInRange'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlTextReaderNormalization'/>
-          <ref name='xmlXPathNodeSetItem'/>
-          <ref name='xmlXPtrLocationSetAdd'/>
-          <ref name='xmlXPtrLocationSetDel'/>
-          <ref name='xmlXPtrLocationSetRemove'/>
-          <ref name='xmlXPtrNewCollapsedRange'/>
-          <ref name='xmlXPtrNewLocationSetNodes'/>
-          <ref name='xmlXPtrNewRange'/>
-          <ref name='xmlXPtrNewRangeNodeObject'/>
-          <ref name='xmlXPtrNewRangeNodePoint'/>
-          <ref name='xmlXPtrNewRangeNodes'/>
-          <ref name='xmlXPtrNewRangePointNode'/>
-          <ref name='xmlXPtrNewRangePoints'/>
-        </word>
-        <word name='range-to'>
-          <ref name='xmlXPtrRangeToFunction'/>
-        </word>
-        <word name='ranges'>
-          <ref name='_xmlChRangeGroup'/>
-          <ref name='xmlXPtrFreeLocationSet'/>
-          <ref name='xmlXPtrLocationSetMerge'/>
-        </word>
-        <word name='rangesets'>
-          <ref name='xmlXPtrLocationSetMerge'/>
-        </word>
-        <word name='rather'>
-          <ref name='xmlTextReaderIsNamespaceDecl'/>
-        </word>
-        <word name='ratio'>
-          <ref name='xmlGetDocCompressMode'/>
-          <ref name='xmlSetCompressMode'/>
-          <ref name='xmlSetDocCompressMode'/>
-        </word>
-        <word name='ration'>
-          <ref name='xmlOutputBufferCreateFilename'/>
-        </word>
-        <word name='raw'>
-          <ref name='_xmlParserInputBuffer'/>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlNamespaceParseNSDef'/>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlNodeAddContent'/>
-          <ref name='xmlNodeAddContentLen'/>
-          <ref name='xmlParseCDSect'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlTextWriterWriteFormatRaw'/>
-          <ref name='xmlTextWriterWriteRaw'/>
-          <ref name='xmlTextWriterWriteVFormatRaw'/>
-        </word>
-        <word name='re-entrant'>
-          <ref name='xmlLockLibrary'/>
-          <ref name='xmlNewRMutex'/>
-          <ref name='xmlUnlockLibrary'/>
-        </word>
-        <word name='reachable'>
-          <ref name='xmlPatternMaxDepth'/>
-          <ref name='xmlPatternMinDepth'/>
-        </word>
-        <word name='reached'>
-          <ref name='xmlRegExecPushString'/>
-          <ref name='xmlRegExecPushString2'/>
-        </word>
-        <word name='read-only'>
-          <ref name='xmlDictCreateSub'/>
-        </word>
-        <word name='readable'>
-          <ref name='xmlStrEqual'/>
-        </word>
-        <word name='reader-'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='reading'>
-          <ref name='xmlSchemaValidateStream'/>
-          <ref name='xmlShell'/>
-        </word>
-        <word name='ready'>
-          <ref name='INPUT_CHUNK'/>
-          <ref name='xmlAutomataCompile'/>
-        </word>
-        <word name='real'>
-          <ref name='xmlXPtrRangeToFunction'/>
-        </word>
-        <word name='realloc'>
-          <ref name='_xmlBuffer'/>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMemGet'/>
-          <ref name='xmlMemRealloc'/>
-          <ref name='xmlMemSetup'/>
-          <ref name='xmlReallocFunc'/>
-          <ref name='xmlReallocLoc'/>
-        </word>
-        <word name='reallocated'>
-          <ref name='xmlReallocFunc'/>
-          <ref name='xmlStrcat'/>
-          <ref name='xmlStrncat'/>
-        </word>
-        <word name='really'>
-          <ref name='HTML_COMMENT_NODE'/>
-          <ref name='HTML_ENTITY_REF_NODE'/>
-          <ref name='HTML_PI_NODE'/>
-          <ref name='HTML_PRESERVE_NODE'/>
-          <ref name='HTML_TEXT_NODE'/>
-          <ref name='htmlEntityLookup'/>
-          <ref name='htmlEntityValueLookup'/>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlCreateEntitiesTable'/>
-        </word>
-        <word name='reasonable'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='receive'>
-          <ref name='xmlExpDump'/>
-        </word>
-        <word name='received'>
-          <ref name='ftpDataCallback'/>
-          <ref name='xmlNanoHTTPReturnCode'/>
-        </word>
-        <word name='receives'>
-          <ref name='xmlParseExternalID'/>
-        </word>
-        <word name='receiving'>
-          <ref name='characters'/>
-          <ref name='ignorableWhitespace'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlSAX2Characters'/>
-          <ref name='xmlSAX2IgnorableWhitespace'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='reclaim'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlFreeMutex'/>
-          <ref name='xmlFreeRMutex'/>
-        </word>
-        <word name='recognized'>
-          <ref name='xmlParseCharEncoding'/>
-        </word>
-        <word name='recommendation'>
-          <ref name='xmlDetectCharEncoding'/>
-        </word>
-        <word name='recommendation:'>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateElementDecl'/>
-          <ref name='xmlValidateNotationDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlValidateOneNamespace'/>
-          <ref name='xmlValidateRoot'/>
-        </word>
-        <word name='recomputed'>
-          <ref name='xmlBufferAdd'/>
-          <ref name='xmlBufferAddHead'/>
-          <ref name='xmlDictExists'/>
-          <ref name='xmlDictLookup'/>
-        </word>
-        <word name='reconciliate'>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='record'>
-          <ref name='xmlACatalogAdd'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlParserAddNodeInfo'/>
-          <ref name='xmlParserFindNodeInfoIndex'/>
-        </word>
-        <word name='recorded'>
-          <ref name='valuePush'/>
-        </word>
-        <word name='recover'>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-        </word>
-        <word name='recovery'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-        </word>
-        <word name='recurse'>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlValidateRoot'/>
-        </word>
-        <word name='recursive'>
-          <ref name='htmlNodeDump'/>
-          <ref name='htmlNodeDumpFile'/>
-          <ref name='htmlNodeDumpFileFormat'/>
-          <ref name='htmlNodeDumpFormatOutput'/>
-          <ref name='htmlNodeDumpOutput'/>
-          <ref name='htmlParseElement'/>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlCopyDoc'/>
-          <ref name='xmlCopyEnumeration'/>
-          <ref name='xmlCopyNode'/>
-          <ref name='xmlCopyNodeList'/>
-          <ref name='xmlDebugDumpDocument'/>
-          <ref name='xmlDebugDumpDocumentHead'/>
-          <ref name='xmlDebugDumpNode'/>
-          <ref name='xmlDebugDumpNodeList'/>
-          <ref name='xmlDebugDumpOneNode'/>
-          <ref name='xmlDocCopyNode'/>
-          <ref name='xmlDocCopyNodeList'/>
-          <ref name='xmlElemDump'/>
-          <ref name='xmlFreeEnumeration'/>
-          <ref name='xmlFreeNode'/>
-          <ref name='xmlFreeNodeList'/>
-          <ref name='xmlNewRMutex'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParserHandlePEReference'/>
-        </word>
-        <word name='recursively'>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlParseAttValue'/>
-        </word>
-        <word name='redeclared'>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='redefined'>
-          <ref name='XML_SCHEMAS_ATTRGROUP_REDEFINED'/>
-          <ref name='XML_SCHEMAS_TYPE_REDEFINED'/>
-        </word>
-        <word name='redefinition'>
-          <ref name='xmlErrMemory'/>
-        </word>
-        <word name='redir'>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-        </word>
-        <word name='redirected'>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-          <ref name='xmlNanoHTTPRedir'/>
-        </word>
-        <word name='redirection'>
-          <ref name='xmlCheckHTTPInput'/>
-          <ref name='xmlNanoHTTPRedir'/>
-        </word>
-        <word name='reentrant'>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-          <ref name='xmlEncodeSpecialChars'/>
-          <ref name='xmlFreeRMutex'/>
-          <ref name='xmlInitParser'/>
-          <ref name='xmlNewRMutex'/>
-          <ref name='xmlRMutexLock'/>
-          <ref name='xmlRMutexUnlock'/>
-        </word>
-        <word name='ref'>
-          <ref name='XML_SCHEMAS_ATTR_INTERNAL_RESOLVED'/>
-          <ref name='XML_SCHEMAS_ELEM_INTERNAL_RESOLVED'/>
-          <ref name='_xmlEntity'/>
-          <ref name='xmlAddRef'/>
-          <ref name='xmlFreeRefTable'/>
-          <ref name='xmlNewCharRef'/>
-        </word>
-        <word name='referenced'>
-          <ref name='xmlLinkGetData'/>
-          <ref name='xmlParseAttValue'/>
-        </word>
-        <word name='referencing'>
-          <ref name='xmlGetDocEntity'/>
-          <ref name='xmlGetDtdEntity'/>
-          <ref name='xmlGetParameterEntity'/>
-        </word>
-        <word name='referred'>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseCharRef'/>
-        </word>
-        <word name='refs'>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='refuse'>
-          <ref name='xmlNewNs'/>
-        </word>
-        <word name='regarding'>
-          <ref name='xmlAddChildList'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-          <ref name='xmlReplaceNode'/>
-        </word>
-        <word name='regex'>
-          <ref name='_xmlSchemaFacet'/>
-        </word>
-        <word name='regexp'>
-          <ref name='_xmlElement'/>
-          <ref name='xmlAutomataCompile'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlRegExecPushString'/>
-          <ref name='xmlRegExecPushString2'/>
-          <ref name='xmlRegFreeRegexp'/>
-          <ref name='xmlRegNewExecCtxt'/>
-          <ref name='xmlRegexpPrint'/>
-        </word>
-        <word name='regexps'>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='region'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='register'>
-          <ref name='xmlXPathRegisterVariableLookup'/>
-        </word>
-        <word name='registered'>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlCtxtGetLastError'/>
-          <ref name='xmlCtxtResetLastError'/>
-          <ref name='xmlFindCharEncodingHandler'/>
-          <ref name='xmlGetCharEncodingHandler'/>
-          <ref name='xmlGetLastError'/>
-          <ref name='xmlPopInputCallbacks'/>
-          <ref name='xmlPopOutputCallbacks'/>
-          <ref name='xmlRegisterInputCallbacks'/>
-          <ref name='xmlRegisterOutputCallbacks'/>
-          <ref name='xmlResetLastError'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlTextReaderGetErrorHandler'/>
-          <ref name='xmlXPathRegisteredFuncsCleanup'/>
-          <ref name='xmlXPathRegisteredNsCleanup'/>
-          <ref name='xmlXPathRegisteredVariablesCleanup'/>
-        </word>
-        <word name='registers'>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlNewCharEncodingHandler'/>
-        </word>
-        <word name='registration'>
-          <ref name='XML_SKIP_IDS'/>
-          <ref name='xmlOutputBufferCreateFilenameDefault'/>
-          <ref name='xmlParserInputBufferCreateFilenameDefault'/>
-          <ref name='xmlRegisterNodeDefault'/>
-          <ref name='xmlRegisterNodeFunc'/>
-        </word>
-        <word name='regular'>
-          <ref name='LIBXML_REGEXP_ENABLED'/>
-          <ref name='xmlRegExecCallbacks'/>
-          <ref name='xmlRegFreeExecCtxt'/>
-          <ref name='xmlRegNewExecCtxt'/>
-          <ref name='xmlRegexpCompile'/>
-          <ref name='xmlRegexpExec'/>
-          <ref name='xmlRegexpIsDeterminist'/>
-          <ref name='xmlRegexpPrint'/>
-          <ref name='xmlTextReaderIsNamespaceDecl'/>
-        </word>
-        <word name='reinitialize'>
-          <ref name='xmlClearNodeInfoSeq'/>
-          <ref name='xmlClearParserCtxt'/>
-        </word>
-        <word name='related'>
-          <ref name='LIBXML_UNICODE_ENABLED'/>
-          <ref name='htmlTagLookup'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlInitThreads'/>
-          <ref name='xmlNanoHTTPClose'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-        </word>
-        <word name='relationships'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='relative'>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlByteConsumed'/>
-          <ref name='xmlTextReaderByteConsumed'/>
-          <ref name='xmlTextReaderGetAttributeNo'/>
-          <ref name='xmlTextReaderMoveToAttributeNo'/>
-          <ref name='xmlUTF8Strloc'/>
-          <ref name='xmlUTF8Strsub'/>
-        </word>
-        <word name='relative-ref'>
-          <ref name='xmlParseURIRaw'/>
-          <ref name='xmlParseURIReference'/>
-        </word>
-        <word name='relativeURI'>
-          <ref name='xmlParseURI'/>
-        </word>
-        <word name='release'>
-          <ref name='xmlClearNodeInfoSeq'/>
-          <ref name='xmlClearParserCtxt'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlExpNewSeq'/>
-          <ref name='xmlUnlockLibrary'/>
-        </word>
-        <word name='releases'>
-          <ref name='xmlTextReaderClose'/>
-        </word>
-        <word name='reliable'>
-          <ref name='xmlSaveToFilename'/>
-        </word>
-        <word name='rely'>
-          <ref name='xmlParseNamespace'/>
-        </word>
-        <word name='remainder'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='remaining'>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='remapped'>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-        </word>
-        <word name='remote'>
-          <ref name='xmlNanoFTPCwd'/>
-        </word>
-        <word name='removal'>
-          <ref name='xmlHashRemoveEntry'/>
-          <ref name='xmlHashRemoveEntry2'/>
-          <ref name='xmlHashRemoveEntry3'/>
-        </word>
-        <word name='remove'>
-          <ref name='xmlACatalogRemove'/>
-          <ref name='xmlBufShrink'/>
-          <ref name='xmlBufferShrink'/>
-          <ref name='xmlCatalogRemove'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlDocSetRootElement'/>
-          <ref name='xmlEncodeEntities'/>
-          <ref name='xmlHashRemoveEntry'/>
-          <ref name='xmlHashRemoveEntry2'/>
-          <ref name='xmlHashRemoveEntry3'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlXPathNodeSetRemove'/>
-          <ref name='xmlXPtrLocationSetRemove'/>
-        </word>
-        <word name='removes'>
-          <ref name='xmlParserInputShrink'/>
-        </word>
-        <word name='removing'>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-        </word>
-        <word name='rename'>
-          <ref name='_xmlError'/>
-        </word>
-        <word name='repeat'>
-          <ref name='xmlXPathAxisFunc'/>
-        </word>
-        <word name='repeated'>
-          <ref name='xmlExpNewRange'/>
-        </word>
-        <word name='repetition'>
-          <ref name='xmlExpNewRange'/>
-        </word>
-        <word name='replace'>
-          <ref name='XML_SCHEMAS_FACET_REPLACE'/>
-          <ref name='XML_SCHEMAS_TYPE_WHITESPACE_REPLACE'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='replaced'>
-          <ref name='xmlHashUpdateEntry'/>
-          <ref name='xmlHashUpdateEntry2'/>
-          <ref name='xmlHashUpdateEntry3'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlSchemaSAXPlug'/>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='replacement'>
-          <ref name='xmlACatalogAdd'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlEntityReferenceFunc'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='replaces'>
-          <ref name='DEBUG_MEMORY'/>
-        </word>
-        <word name='replacing'>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-          <ref name='xmlEncodeSpecialChars'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-        </word>
-        <word name='reporting'>
-          <ref name='INPUT_CHUNK'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlSchemaValidateSetFilename'/>
-          <ref name='xmlStructuredErrorFunc'/>
-        </word>
-        <word name='reports'>
-          <ref name='htmlCreatePushParserCtxt'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-        </word>
-        <word name='repr'>
-          <ref name='xmlSchemaValidateFacet'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-          <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-        </word>
-        <word name='representation'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaGetCanonValueWhtsp'/>
-        </word>
-        <word name='representations'>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='represented'>
-          <ref name='xmlParseCharData'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='represented:'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='representing'>
-          <ref name='xmlMemBlocks'/>
-          <ref name='xmlMemUsed'/>
-        </word>
-        <word name='request'>
-          <ref name='xmlIOHTTPOpenW'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlNanoHTTPOpen'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-          <ref name='xmlNanoHTTPReturnCode'/>
-        </word>
-        <word name='requested'>
-          <ref name='xmlDOMWrapAcquireNsFunction'/>
-          <ref name='xmlExternalEntityLoader'/>
-          <ref name='xmlHasFeature'/>
-          <ref name='xmlIsID'/>
-          <ref name='xmlMallocFunc'/>
-          <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-          <ref name='xmlReallocFunc'/>
-        </word>
-        <word name='requests'>
-          <ref name='xmlRegisterHTTPPostCallbacks'/>
-        </word>
-        <word name='required'>
-          <ref name='XML_SCHEMAS_ATTR_USE_REQUIRED'/>
-          <ref name='htmlRequiredAttrs'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlCatalogSetDebug'/>
-          <ref name='xmlSchemaCollapseString'/>
-          <ref name='xmlSchemaWhiteSpaceReplace'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='requires'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlRelaxNGValidatePushElement'/>
-        </word>
-        <word name='reserved'>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlURIEscapeStr'/>
-        </word>
-        <word name='reset'>
-          <ref name='htmlReadFd'/>
-          <ref name='initGenericErrorDefaultFunc'/>
-          <ref name='xmlBufferDetach'/>
-          <ref name='xmlCtxtReadFd'/>
-          <ref name='xmlNodeSetBase'/>
-          <ref name='xmlNodeSetName'/>
-          <ref name='xmlNodeSetSpacePreserve'/>
-          <ref name='xmlReadFd'/>
-          <ref name='xmlReaderForFd'/>
-          <ref name='xmlReaderNewFd'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetNsProp'/>
-          <ref name='xmlSetProp'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='resides'>
-          <ref name='xmlTextReaderConstXmlLang'/>
-          <ref name='xmlTextReaderXmlLang'/>
-        </word>
-        <word name='resize'>
-          <ref name='xmlBufferResize'/>
-        </word>
-        <word name='resolution'>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlACatalogResolve'/>
-          <ref name='xmlACatalogResolveURI'/>
-          <ref name='xmlCatalogLocalResolve'/>
-          <ref name='xmlCatalogLocalResolveURI'/>
-          <ref name='xmlCatalogResolve'/>
-          <ref name='xmlCatalogResolveURI'/>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-        </word>
-        <word name='resolveEntity'>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-        </word>
-        <word name='resolved'>
-          <ref name='XML_SCHEMAS_ATTR_INTERNAL_RESOLVED'/>
-          <ref name='XML_SCHEMAS_ELEM_INTERNAL_RESOLVED'/>
-          <ref name='xmlTextReaderLookupNamespace'/>
-        </word>
-        <word name='resolver'>
-          <ref name='xmlGetExternalEntityLoader'/>
-          <ref name='xmlSetExternalEntityLoader'/>
-        </word>
-        <word name='resources'>
-          <ref name='xmlClearParserCtxt'/>
-          <ref name='xmlFreeMutex'/>
-          <ref name='xmlFreeRMutex'/>
-          <ref name='xmlFreeTextReader'/>
-          <ref name='xmlFreeTextWriter'/>
-          <ref name='xmlOutputBufferClose'/>
-          <ref name='xmlRelaxNGFreeParserCtxt'/>
-          <ref name='xmlRelaxNGFreeValidCtxt'/>
-          <ref name='xmlSchemaFreeParserCtxt'/>
-          <ref name='xmlSchemaFreeValidCtxt'/>
-          <ref name='xmlSchematronFreeParserCtxt'/>
-          <ref name='xmlSchematronFreeValidCtxt'/>
-          <ref name='xmlTextReaderClose'/>
-          <ref name='xmlXIncludeSetFlags'/>
-        </word>
-        <word name='resp'>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-        </word>
-        <word name='respect'>
-          <ref name='xmlExpStringDerive'/>
-        </word>
-        <word name='respecting'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='response'>
-          <ref name='xmlNanoFTPCheckResponse'/>
-          <ref name='xmlNanoFTPGetResponse'/>
-          <ref name='xmlNanoHTTPContentLength'/>
-        </word>
-        <word name='responsibility'>
-          <ref name='xmlNewEntity'/>
-        </word>
-        <word name='responsible'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlCanonicPath'/>
-          <ref name='xmlPathToURI'/>
-        </word>
-        <word name='restored'>
-          <ref name='xmlSchemaSAXUnplug'/>
-          <ref name='xmlTextReaderSetErrorHandler'/>
-          <ref name='xmlTextReaderSetStructuredErrorHandler'/>
-          <ref name='xmlXPathNodeEval'/>
-        </word>
-        <word name='restrict'>
-          <ref name='xmlParseExternalID'/>
-        </word>
-        <word name='restriction'>
-          <ref name='XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_ELEM_FINAL_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_TYPE_BLOCK_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_RESTRICTION'/>
-        </word>
-        <word name='results'>
-          <ref name='xmlXPathEqualValues'/>
-          <ref name='xmlXPathNotEqualValues'/>
-        </word>
-        <word name='retValue'>
-          <ref name='xmlSchemaGetCanonValue'/>
-        </word>
-        <word name='retrieve'>
-          <ref name='xmlGetGlobalState'/>
-          <ref name='xmlNanoFTPGet'/>
-          <ref name='xmlNanoFTPGetSocket'/>
-        </word>
-        <word name='retrieved'>
-          <ref name='xmlHashAddEntry'/>
-          <ref name='xmlHashAddEntry2'/>
-          <ref name='xmlHashAddEntry3'/>
-          <ref name='xmlHashUpdateEntry'/>
-          <ref name='xmlHashUpdateEntry2'/>
-          <ref name='xmlHashUpdateEntry3'/>
-        </word>
-        <word name='retry'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='returning'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='reusal'>
-          <ref name='_xmlXPathContext'/>
-        </word>
-        <word name='reuse'>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlRegExecPushString'/>
-          <ref name='xmlRegExecPushString2'/>
-        </word>
-        <word name='reused'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='reuses'>
-          <ref name='htmlCtxtReadDoc'/>
-          <ref name='htmlCtxtReadFd'/>
-          <ref name='htmlCtxtReadFile'/>
-          <ref name='htmlCtxtReadIO'/>
-          <ref name='htmlCtxtReadMemory'/>
-          <ref name='xmlCtxtReadDoc'/>
-          <ref name='xmlCtxtReadFd'/>
-          <ref name='xmlCtxtReadFile'/>
-          <ref name='xmlCtxtReadIO'/>
-          <ref name='xmlCtxtReadMemory'/>
-          <ref name='xmlReaderNewDoc'/>
-          <ref name='xmlReaderNewFd'/>
-          <ref name='xmlReaderNewFile'/>
-          <ref name='xmlReaderNewIO'/>
-          <ref name='xmlReaderNewMemory'/>
-          <ref name='xmlReaderNewWalker'/>
-        </word>
-        <word name='reusing'>
-          <ref name='xmlXIncludeProcessNode'/>
-        </word>
-        <word name='reverse'>
-          <ref name='xmlListReverseSearch'/>
-          <ref name='xmlListReverseWalk'/>
-          <ref name='xmlXPathNextAncestor'/>
-          <ref name='xmlXPathNextAncestorOrSelf'/>
-          <ref name='xmlXPathNextPreceding'/>
-          <ref name='xmlXPathNextPrecedingSibling'/>
-        </word>
-        <word name='rewrite'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='rfc'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='rfc-editor'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='rfc5646'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='right'>
-          <ref name='xmlAutomataNewCounterTrans'/>
-          <ref name='xmlCheckFilename'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewSeq'/>
-          <ref name='xmlParseCharData'/>
-          <ref name='xmlSetListDoc'/>
-          <ref name='xmlSetTreeDoc'/>
-        </word>
-        <word name='role'>
-          <ref name='xlinkSimpleLinkFunk'/>
-        </word>
-        <word name='roles'>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xlinkExtendedLinkSetFunk'/>
-        </word>
-        <word name='rollback'>
-          <ref name='xmlScanName'/>
-        </word>
-        <word name='root'>
-          <ref name='externalSubset'/>
-          <ref name='externalSubsetSAXFunc'/>
-          <ref name='internalSubset'/>
-          <ref name='internalSubsetSAXFunc'/>
-          <ref name='xmlDocGetRootElement'/>
-          <ref name='xmlDocSetRootElement'/>
-          <ref name='xmlParseDocTypeDecl'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlPatternFromRoot'/>
-          <ref name='xmlSAX2ExternalSubset'/>
-          <ref name='xmlSAX2InternalSubset'/>
-          <ref name='xmlShellPwd'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-          <ref name='xmlValidateRoot'/>
-          <ref name='xmlXPathNewValueTree'/>
-          <ref name='xmlXPathRoot'/>
-        </word>
-        <word name='round'>
-          <ref name='xmlXPathRoundFunction'/>
-        </word>
-        <word name='routines'>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMemSetup'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseEntity'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-          <ref name='xmlSAXUserParseFile'/>
-          <ref name='xmlSAXUserParseMemory'/>
-        </word>
-        <word name='rule'>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseStartTag'/>
-        </word>
-        <word name='rules'>
-          <ref name='XML_CAST_FPTR'/>
-          <ref name='XML_SCHEMAS_ANYATTR_STRICT'/>
-          <ref name='XML_SCHEMAS_ANY_STRICT'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='run'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlByteConsumed'/>
-        </word>
-        <word name='running'>
-          <ref name='xmlKeepBlanksDefault'/>
-        </word>
-        <word name='runtime'>
-          <ref name='LIBXML_DEBUG_RUNTIME'/>
-          <ref name='XML_MAX_NAMELEN'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='xmlMemDisplayLast'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk24'>
-      <letter name='s'>
-        <word name='s390'>
-          <ref name='XML_CAST_FPTR'/>
-        </word>
-        <word name='safe'>
-          <ref name='BAD_CAST'/>
-          <ref name='xmlInitializeCatalog'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadCatalogs'/>
-        </word>
-        <word name='safely'>
-          <ref name='xmlAddChild'/>
-        </word>
-        <word name='safety'>
-          <ref name='XML_MAX_DICTIONARY_LIMIT'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-        </word>
-        <word name='same'>
-          <ref name='HTML_COMMENT_NODE'/>
-          <ref name='HTML_ENTITY_REF_NODE'/>
-          <ref name='HTML_PI_NODE'/>
-          <ref name='HTML_PRESERVE_NODE'/>
-          <ref name='HTML_TEXT_NODE'/>
-          <ref name='IS_BLANK_CH'/>
-          <ref name='checkNamespace'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlReplaceNode'/>
-          <ref name='xmlStrEqual'/>
-          <ref name='xmlStrncatNew'/>
-          <ref name='xmlURIUnescapeString'/>
-          <ref name='xmlXPathCmpNodes'/>
-          <ref name='xmlXPathIdFunction'/>
-          <ref name='xmlXPathLangFunction'/>
-          <ref name='xmlXPathNextAncestorOrSelf'/>
-          <ref name='xmlXPathNextFollowing'/>
-          <ref name='xmlXPathNextPreceding'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-          <ref name='xmlXPathSetContextNode'/>
-        </word>
-        <word name='save'>
-          <ref name='htmlNodeDumpFileFormat'/>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlMemGet'/>
-          <ref name='xmlNanoHTTPFetch'/>
-          <ref name='xmlShell'/>
-          <ref name='xmlShellSave'/>
-        </word>
-        <word name='saved'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlNanoHTTPFetch'/>
-          <ref name='xmlNanoHTTPSave'/>
-          <ref name='xmlSaveFormatFileEnc'/>
-        </word>
-        <word name='saves'>
-          <ref name='xmlNanoFTPRead'/>
-          <ref name='xmlNanoHTTPRead'/>
-          <ref name='xmlNanoHTTPSave'/>
-          <ref name='xmlShellWrite'/>
-        </word>
-        <word name='saving'>
-          <ref name='LIBXML_OUTPUT_ENABLED'/>
-          <ref name='LIBXML_WRITER_ENABLED'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlOutputBufferCreateBuffer'/>
-          <ref name='xmlOutputBufferCreateFd'/>
-          <ref name='xmlOutputBufferCreateFile'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlOutputBufferCreateIO'/>
-          <ref name='xmlSaveClose'/>
-          <ref name='xmlSaveDoc'/>
-          <ref name='xmlSaveFlush'/>
-          <ref name='xmlSaveSetAttrEscape'/>
-          <ref name='xmlSaveSetEscape'/>
-          <ref name='xmlSaveToBuffer'/>
-          <ref name='xmlSaveToFd'/>
-          <ref name='xmlSaveToFilename'/>
-          <ref name='xmlSaveToIO'/>
-          <ref name='xmlSaveTree'/>
-        </word>
-        <word name='sax'>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseEntity'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-        </word>
-        <word name='say'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseMarkupDecl'/>
-        </word>
-        <word name='says'>
-          <ref name='xmlParseComment'/>
-        </word>
-        <word name='scan'>
-          <ref name='htmlEntityLookup'/>
-          <ref name='htmlEntityValueLookup'/>
-          <ref name='xmlXPathStringEvalNumber'/>
-        </word>
-        <word name='scanner'>
-          <ref name='xmlHashScan'/>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull'/>
-          <ref name='xmlHashScanFull3'/>
-          <ref name='xmlHashScanner'/>
-          <ref name='xmlHashScannerFull'/>
-        </word>
-        <word name='scanning'>
-          <ref name='xmlHashScanner'/>
-          <ref name='xmlHashScannerFull'/>
-        </word>
-        <word name='schemas'>
-          <ref name='xmlRelaxNGNewDocParserCtxt'/>
-          <ref name='xmlRelaxNGNewMemParserCtxt'/>
-          <ref name='xmlSchemaGetFacetValueAsULong'/>
-          <ref name='xmlSchemaGetValType'/>
-          <ref name='xmlSchemaNewMemParserCtxt'/>
-          <ref name='xmlSchemaValidateDoc'/>
-          <ref name='xmlSchemaValidateFacet'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlSchemaValidateFile'/>
-          <ref name='xmlSchemaValidateStream'/>
-          <ref name='xmlSchemaValidityLocatorFunc'/>
-          <ref name='xmlSchematronNewMemParserCtxt'/>
-          <ref name='xmlTextReaderRelaxNGValidate'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-          <ref name='xmlTextReaderSchemaValidate'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-        </word>
-        <word name='schematron'>
-          <ref name='xmlSchematronValidateDoc'/>
-        </word>
-        <word name='scheme'>
-          <ref name='_xmlURI'/>
-          <ref name='xmlBufferSetAllocationScheme'/>
-          <ref name='xmlGetBufferAllocationScheme'/>
-        </word>
-        <word name='schemes'>
-          <ref name='xmlParseCharEncoding'/>
-        </word>
-        <word name='scope'>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlSetNsProp'/>
-          <ref name='xmlSetProp'/>
-          <ref name='xmlTextReaderConstXmlLang'/>
-          <ref name='xmlTextReaderLookupNamespace'/>
-          <ref name='xmlTextReaderXmlLang'/>
-        </word>
-        <word name='scoping'>
-          <ref name='xmlNewGlobalNs'/>
-        </word>
-        <word name='script'>
-          <ref name='htmlIsScriptAttribute'/>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='search'>
-          <ref name='XML_SCHEMAS_ELEM_CIRCULAR'/>
-          <ref name='_xmlXPathAxis'/>
-          <ref name='xmlCharInRange'/>
-          <ref name='xmlGetDtdAttrDesc'/>
-          <ref name='xmlGetDtdElementDesc'/>
-          <ref name='xmlGetDtdNotationDesc'/>
-          <ref name='xmlGetDtdQAttrDesc'/>
-          <ref name='xmlGetDtdQElementDesc'/>
-          <ref name='xmlListReverseSearch'/>
-          <ref name='xmlListSearch'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlStrcasestr'/>
-          <ref name='xmlStrchr'/>
-          <ref name='xmlStrstr'/>
-        </word>
-        <word name='searched'>
-          <ref name='xmlDictCreateSub'/>
-        </word>
-        <word name='section'>
-          <ref name='HTML_PRESERVE_NODE'/>
-          <ref name='xmlBuildURI'/>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-          <ref name='xmlParseCharData'/>
-          <ref name='xmlParseCharEncoding'/>
-          <ref name='xmlTextWriterEndCDATA'/>
-          <ref name='xmlTextWriterStartCDATA'/>
-        </word>
-        <word name='sections'>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlNodeGetBase'/>
-        </word>
-        <word name='seems'>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlNamespaceParseNSDef'/>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlScanName'/>
-          <ref name='xmlValidateNotationDecl'/>
-        </word>
-        <word name='selected'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='selection'>
-          <ref name='LIBXML_PATTERN_ENABLED'/>
-        </word>
-        <word name='selects'>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='self'>
-          <ref name='xmlXPathNextSelf'/>
-        </word>
-        <word name='semantic'>
-          <ref name='xmlAutomataNewNegTrans'/>
-          <ref name='xmlXPathNodeSetFreeNs'/>
-        </word>
-        <word name='semantics'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='sense'>
-          <ref name='xmlCreateEntitiesTable'/>
-        </word>
-        <word name='separated'>
-          <ref name='xmlLoadCatalogs'/>
-        </word>
-        <word name='separately'>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlValidateOneNamespace'/>
-        </word>
-        <word name='seq'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-        </word>
-        <word name='sequence'>
-          <ref name='_xmlSchemaFacet'/>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlClearNodeInfoSeq'/>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlExpIsNillable'/>
-          <ref name='xmlExpNewSeq'/>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlInitNodeInfoSeq'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseContent'/>
-          <ref name='xmlParseInNodeContext'/>
-          <ref name='xmlParserAddNodeInfo'/>
-          <ref name='xmlParserFindNodeInfoIndex'/>
-          <ref name='xmlUTF8Strlen'/>
-          <ref name='xmlUTF8Strsize'/>
-          <ref name='xmlUTF8Strsub'/>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='sequences'>
-          <ref name='xmlCheckUTF8'/>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-        </word>
-        <word name='serialization'>
-          <ref name='LIBXML_OUTPUT_ENABLED'/>
-          <ref name='xmlSaveToBuffer'/>
-          <ref name='xmlSaveToFd'/>
-          <ref name='xmlSaveToFilename'/>
-          <ref name='xmlSaveToIO'/>
-          <ref name='xmlShellCat'/>
-          <ref name='xmlShellWrite'/>
-          <ref name='xmlValidatePopElement'/>
-          <ref name='xmlValidatePushElement'/>
-        </word>
-        <word name='serialized'>
-          <ref name='xmlTextReaderReadOuterXml'/>
-        </word>
-        <word name='serializing'>
-          <ref name='xmlSaveToBuffer'/>
-          <ref name='xmlSaveToFd'/>
-          <ref name='xmlSaveToFilename'/>
-          <ref name='xmlSaveToIO'/>
-        </word>
-        <word name='server'>
-          <ref name='_xmlURI'/>
-          <ref name='xmlNanoFTPCheckResponse'/>
-          <ref name='xmlNanoFTPCloseConnection'/>
-          <ref name='xmlNanoFTPConnectTo'/>
-          <ref name='xmlNanoFTPCwd'/>
-          <ref name='xmlNanoFTPDele'/>
-          <ref name='xmlNanoFTPGet'/>
-          <ref name='xmlNanoFTPGetConnection'/>
-          <ref name='xmlNanoFTPGetResponse'/>
-          <ref name='xmlNanoFTPGetSocket'/>
-          <ref name='xmlNanoFTPList'/>
-          <ref name='xmlNanoFTPQuit'/>
-        </word>
-        <word name='set:difference'>
-          <ref name='xmlXPathDifference'/>
-        </word>
-        <word name='set:distinct'>
-          <ref name='xmlXPathDistinct'/>
-          <ref name='xmlXPathDistinctSorted'/>
-        </word>
-        <word name='set:has-same-node'>
-          <ref name='xmlXPathHasSameNodes'/>
-        </word>
-        <word name='set:intersection'>
-          <ref name='xmlXPathIntersection'/>
-        </word>
-        <word name='set:leading'>
-          <ref name='xmlXPathLeading'/>
-          <ref name='xmlXPathLeadingSorted'/>
-          <ref name='xmlXPathNodeLeading'/>
-          <ref name='xmlXPathNodeLeadingSorted'/>
-        </word>
-        <word name='set:trailing'>
-          <ref name='xmlXPathNodeTrailing'/>
-          <ref name='xmlXPathNodeTrailingSorted'/>
-          <ref name='xmlXPathTrailing'/>
-          <ref name='xmlXPathTrailingSorted'/>
-        </word>
-        <word name='sets'>
-          <ref name='initxmlDefaultSAXHandler'/>
-          <ref name='xmlGetUTF8Char'/>
-          <ref name='xmlSAX2InitDefaultSAXHandler'/>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-          <ref name='xmlXPathDifference'/>
-          <ref name='xmlXPathIntersection'/>
-        </word>
-        <word name='setting'>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='setups'>
-          <ref name='xmlParseEncodingDecl'/>
-        </word>
-        <word name='severity'>
-          <ref name='xmlTextReaderErrorFunc'/>
-        </word>
-        <word name='sgmlsource'>
-          <ref name='getSystemId'/>
-          <ref name='xmlSAX2GetSystemId'/>
-        </word>
-        <word name='shadowed'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-        </word>
-        <word name='shall'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='shared'>
-          <ref name='LIBXML_MODULE_EXTENSION'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlModuleFree'/>
-          <ref name='xmlModuleOpen'/>
-        </word>
-        <word name='shares'>
-          <ref name='xmlXPathHasSameNodes'/>
-        </word>
-        <word name='shell'>
-          <ref name='DEBUG_MEMORY'/>
-          <ref name='xmlShell'/>
-          <ref name='xmlShellBase'/>
-          <ref name='xmlShellCat'/>
-          <ref name='xmlShellCmd'/>
-          <ref name='xmlShellDir'/>
-          <ref name='xmlShellDu'/>
-          <ref name='xmlShellList'/>
-          <ref name='xmlShellLoad'/>
-          <ref name='xmlShellPwd'/>
-          <ref name='xmlShellReadlineFunc'/>
-          <ref name='xmlShellSave'/>
-          <ref name='xmlShellValidate'/>
-          <ref name='xmlShellWrite'/>
-        </word>
-        <word name='shorten'>
-          <ref name='xmlDebugDumpString'/>
-        </word>
-        <word name='shortest'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='shorthand'>
-          <ref name='xmlTextReaderConstPrefix'/>
-          <ref name='xmlTextReaderPrefix'/>
-        </word>
-        <word name='show'>
-          <ref name='LIBXML_VERSION_EXTRA'/>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xmlMemDisplay'/>
-          <ref name='xmlMemShow'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlShellDu'/>
-        </word>
-        <word name='shown'>
-          <ref name='ftpListCallback'/>
-        </word>
-        <word name='sibling'>
-          <ref name='_xmlAttr'/>
-          <ref name='_xmlAttribute'/>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlDtd'/>
-          <ref name='_xmlElement'/>
-          <ref name='_xmlEntity'/>
-          <ref name='_xmlNode'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlNextElementSibling'/>
-          <ref name='xmlPreviousElementSibling'/>
-          <ref name='xmlSchemaValueAppend'/>
-          <ref name='xmlSchemaValueGetNext'/>
-          <ref name='xmlXPathNextPrecedingSibling'/>
-        </word>
-        <word name='siblings'>
-          <ref name='xmlAddSibling'/>
-          <ref name='xmlFreeNodeList'/>
-          <ref name='xmlFreePropList'/>
-          <ref name='xmlXPathNextFollowingSibling'/>
-          <ref name='xmlXPathNextPrecedingSibling'/>
-        </word>
-        <word name='sign'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='signal'>
-          <ref name='ATTRIBUTE_UNUSED'/>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='signature'>
-          <ref name='xmlShellCmd'/>
-          <ref name='xmlShellReadlineFunc'/>
-        </word>
-        <word name='signs'>
-          <ref name='xmlNewTextChild'/>
-        </word>
-        <word name='similar'>
-          <ref name='xmlGetNoNsProp'/>
-          <ref name='xmlNewNs'/>
-          <ref name='xmlShell'/>
-          <ref name='xmlShellPwd'/>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-          <ref name='xmlXPathNodeSetGetLength'/>
-          <ref name='xmlXPathNodeSetItem'/>
-        </word>
-        <word name='simple'>
-          <ref name='XML_SCHEMAS_TYPE_ABSTRACT'/>
-          <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION'/>
-          <ref name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION'/>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xlinkSimpleLinkFunk'/>
-          <ref name='xmlAttrSerializeTxtContent'/>
-          <ref name='xmlFreeMutex'/>
-          <ref name='xmlHashScanner'/>
-          <ref name='xmlIsRef'/>
-          <ref name='xmlMutexLock'/>
-          <ref name='xmlMutexUnlock'/>
-          <ref name='xmlNewMutex'/>
-          <ref name='xmlSchemaGetBuiltInListSimpleTypeItemType'/>
-          <ref name='xmlSchemaNewStringValue'/>
-          <ref name='xmlSchemaValidateListSimpleTypeFacet'/>
-        </word>
-        <word name='simpleType'>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_DEFAULT'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_LIST'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_UNION'/>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ATOMIC'/>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_LIST'/>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_UNION'/>
-        </word>
-        <word name='simply'>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-        </word>
-        <word name='since'>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlChildElementCount'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlFirstElementChild'/>
-          <ref name='xmlLastElementChild'/>
-          <ref name='xmlNextElementSibling'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlPreviousElementSibling'/>
-          <ref name='xmlRelaxNGNewDocParserCtxt'/>
-          <ref name='xmlSchemaValidateSetLocator'/>
-        </word>
-        <word name='single'>
-          <ref name='IS_DIGIT_CH'/>
-          <ref name='XML_MAX_TEXT_LENGTH'/>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateElementDecl'/>
-          <ref name='xmlValidateNotationDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneElement'/>
-          <ref name='xmlValidateOneNamespace'/>
-          <ref name='xmlXPathNewNodeSet'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-          <ref name='xmlXPtrNewCollapsedRange'/>
-          <ref name='xmlXPtrNewLocationSetNodes'/>
-        </word>
-        <word name='single-byte'>
-          <ref name='IS_CHAR_CH'/>
-          <ref name='IS_EXTENDER_CH'/>
-          <ref name='IS_PUBIDCHAR_CH'/>
-        </word>
-        <word name='singleton'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='site1'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='site2'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='size_t'>
-          <ref name='xmlBufShrink'/>
-        </word>
-        <word name='sizes'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-        </word>
-        <word name='skip'>
-          <ref name='xmlSkipBlankChars'/>
-        </word>
-        <word name='skipped'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlSkipBlankChars'/>
-        </word>
-        <word name='slot'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='slots'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='small'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-        </word>
-        <word name='smaller'>
-          <ref name='xmlURIUnescapeString'/>
-        </word>
-        <word name='smallest'>
-          <ref name='xmlXPathCeilingFunction'/>
-        </word>
-        <word name='socket'>
-          <ref name='INVALID_SOCKET'/>
-          <ref name='xmlCheckFilename'/>
-          <ref name='xmlNanoFTPGetSocket'/>
-        </word>
-        <word name='sockets'>
-          <ref name='INVALID_SOCKET'/>
-          <ref name='SOCKET'/>
-        </word>
-        <word name='software'>
-          <ref name='LIBXML_TEST_VERSION'/>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-        <word name='solution'>
-          <ref name='xmlNormalizeWindowsPath'/>
-        </word>
-        <word name='some'>
-          <ref name='XML_SKIP_IDS'/>
-          <ref name='characters'/>
-          <ref name='charactersSAXFunc'/>
-          <ref name='ignorableWhitespace'/>
-          <ref name='ignorableWhitespaceSAXFunc'/>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlGetThreadId'/>
-          <ref name='xmlHandleEntity'/>
-          <ref name='xmlMemSetup'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParserInputDeallocate'/>
-          <ref name='xmlRelaxNGValidatePushCData'/>
-          <ref name='xmlSAX2Characters'/>
-          <ref name='xmlSAX2IgnorableWhitespace'/>
-          <ref name='xmlTextReaderSetParserProp'/>
-          <ref name='xmlValidatePushCData'/>
-          <ref name='xmlXIncludeProcess'/>
-          <ref name='xmlXIncludeProcessFlags'/>
-          <ref name='xmlXIncludeProcessFlagsData'/>
-          <ref name='xmlXIncludeProcessNode'/>
-          <ref name='xmlXIncludeProcessTree'/>
-          <ref name='xmlXIncludeProcessTreeFlags'/>
-          <ref name='xmlXIncludeProcessTreeFlagsData'/>
-        </word>
-        <word name='somehow'>
-          <ref name='xmlNodeDump'/>
-        </word>
-        <word name='sometimes'>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlExpExpDerive'/>
-        </word>
-        <word name='somewhat'>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlCleanupParser'/>
-        </word>
-        <word name='sorted'>
-          <ref name='xmlParserAddNodeInfo'/>
-          <ref name='xmlParserFindNodeInfoIndex'/>
-          <ref name='xmlXPathDistinct'/>
-          <ref name='xmlXPathDistinctSorted'/>
-          <ref name='xmlXPathLeading'/>
-          <ref name='xmlXPathLeadingSorted'/>
-          <ref name='xmlXPathNodeLeading'/>
-          <ref name='xmlXPathNodeLeadingSorted'/>
-          <ref name='xmlXPathNodeTrailing'/>
-          <ref name='xmlXPathNodeTrailingSorted'/>
-          <ref name='xmlXPathTrailing'/>
-          <ref name='xmlXPathTrailingSorted'/>
-        </word>
-        <word name='sounds'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='source'>
-          <ref name='_xmlXPathContext'/>
-          <ref name='htmlCtxtReadIO'/>
-          <ref name='htmlGetMetaEncoding'/>
-          <ref name='htmlReadIO'/>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xmlCheckFilename'/>
-          <ref name='xmlCopyError'/>
-          <ref name='xmlCtxtReadIO'/>
-          <ref name='xmlNewTextReader'/>
-          <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-          <ref name='xmlReadIO'/>
-          <ref name='xmlReaderForIO'/>
-          <ref name='xmlReaderNewIO'/>
-        </word>
-        <word name='sourceDoc'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-        </word>
-        <word name='spaces'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='htmlDocContentDumpFormatOutput'/>
-          <ref name='htmlDocContentDumpOutput'/>
-          <ref name='htmlDocDumpMemoryFormat'/>
-          <ref name='htmlNodeDumpFileFormat'/>
-          <ref name='htmlNodeDumpFormatOutput'/>
-          <ref name='htmlNodeDumpOutput'/>
-          <ref name='htmlSaveFileEnc'/>
-          <ref name='htmlSaveFileFormat'/>
-          <ref name='xmlDocDumpFormatMemory'/>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocFormatDump'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlSaveFormatFile'/>
-          <ref name='xmlSaveFormatFileEnc'/>
-          <ref name='xmlSaveFormatFileTo'/>
-          <ref name='xmlSchemaCollapseString'/>
-          <ref name='xmlValidateNCName'/>
-          <ref name='xmlValidateNMToken'/>
-          <ref name='xmlValidateName'/>
-          <ref name='xmlValidateQName'/>
-        </word>
-        <word name='span'>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlStringCurrentChar'/>
-        </word>
-        <word name='spec'>
-          <ref name='xmlCatalogSetDefaultPrefer'/>
-          <ref name='xmlChildElementCount'/>
-          <ref name='xmlFirstElementChild'/>
-          <ref name='xmlLastElementChild'/>
-          <ref name='xmlNextElementSibling'/>
-          <ref name='xmlParseComment'/>
-          <ref name='xmlPreviousElementSibling'/>
-        </word>
-        <word name='spec:'>
-          <ref name='IS_BASECHAR'/>
-          <ref name='IS_BLANK'/>
-          <ref name='IS_BYTE_CHAR'/>
-          <ref name='IS_CHAR'/>
-          <ref name='IS_COMBINING'/>
-          <ref name='IS_DIGIT'/>
-          <ref name='IS_EXTENDER'/>
-          <ref name='IS_IDEOGRAPHIC'/>
-          <ref name='IS_LETTER'/>
-          <ref name='IS_PUBIDCHAR'/>
-        </word>
-        <word name='special'>
-          <ref name='XML_SKIP_IDS'/>
-          <ref name='XML_XML_ID'/>
-          <ref name='XML_XML_NAMESPACE'/>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNodeAddContent'/>
-          <ref name='xmlNodeAddContentLen'/>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-          <ref name='xmlTextWriterWriteRawLen'/>
-          <ref name='xmlXPtrRangeToFunction'/>
-        </word>
-        <word name='specialized'>
-          <ref name='_xmlDOMWrapCtxt'/>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-        </word>
-        <word name='specific'>
-          <ref name='XML_CATALOG_PI'/>
-          <ref name='_xmlValidCtxt'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlSchemaIsBuiltInTypeFacet'/>
-        </word>
-        <word name='specification'>
-          <ref name='XML_XML_NAMESPACE'/>
-          <ref name='xmlGetThreadId'/>
-          <ref name='xmlTextReaderNormalization'/>
-        </word>
-        <word name='specifications'>
-          <ref name='xmlParseSDDecl'/>
-        </word>
-        <word name='specify'>
-          <ref name='XML_SCHEMAS_TYPE_BLOCK_DEFAULT'/>
-          <ref name='xmlTextReaderLookupNamespace'/>
-          <ref name='xmlTextReaderStandalone'/>
-        </word>
-        <word name='specifying'>
-          <ref name='xmlMallocAtomicLoc'/>
-          <ref name='xmlMallocLoc'/>
-          <ref name='xmlMemMalloc'/>
-          <ref name='xmlMemRealloc'/>
-          <ref name='xmlReallocLoc'/>
-        </word>
-        <word name='speed'>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='speedup'>
-          <ref name='xmlTextReaderConstString'/>
-        </word>
-        <word name='split'>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='stacked'>
-          <ref name='_xmlXPathParserContext'/>
-          <ref name='xmlPushInput'/>
-        </word>
-        <word name='stage'>
-          <ref name='XML_SCHEMAS_TYPE_FIXUP_1'/>
-        </word>
-        <word name='stamps'>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='standalone'>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlParserInput'/>
-          <ref name='isStandalone'/>
-          <ref name='xmlCurrentChar'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlSAX2IsStandalone'/>
-          <ref name='xmlTextReaderStandalone'/>
-        </word>
-        <word name='standalone='>
-          <ref name='_xmlDoc'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlParserHandlePEReference'/>
-        </word>
-        <word name='standalone?'>
-          <ref name='isStandaloneSAXFunc'/>
-        </word>
-        <word name='standard'>
-          <ref name='htmlParseDocument'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlParseDocument'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='start'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='startDocument'/>
-          <ref name='startDocumentSAXFunc'/>
-          <ref name='startElementNsSAX2Func'/>
-          <ref name='xmlByteConsumed'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlRelaxNGValidatePushElement'/>
-          <ref name='xmlSAX2StartDocument'/>
-          <ref name='xmlSAX2StartElementNs'/>
-          <ref name='xmlSplitQName3'/>
-          <ref name='xmlTextReaderByteConsumed'/>
-          <ref name='xmlValidatePushElement'/>
-          <ref name='xmlXPtrNewLocationSetNodes'/>
-          <ref name='xmlXPtrNewRange'/>
-        </word>
-        <word name='start-tag'>
-          <ref name='xmlParseElement'/>
-          <ref name='xmlParseStartTag'/>
-        </word>
-        <word name='started'>
-          <ref name='xmlTextWriterWriteDTDExternalEntity'/>
-        </word>
-        <word name='starting'>
-          <ref name='xmlAutomataNewAllTrans'/>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewCountedTrans'/>
-          <ref name='xmlAutomataNewCounterTrans'/>
-          <ref name='xmlAutomataNewEpsilon'/>
-          <ref name='xmlAutomataNewNegTrans'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-          <ref name='xmlAutomataNewTransition'/>
-          <ref name='xmlAutomataNewTransition2'/>
-          <ref name='xmlByteConsumed'/>
-          <ref name='xmlNewCharRef'/>
-          <ref name='xmlNewTextWriterTree'/>
-          <ref name='xmlSaveTree'/>
-          <ref name='xmlSchemaValidateOneElement'/>
-          <ref name='xmlXPathOrderDocElems'/>
-          <ref name='xmlXPathSubstringFunction'/>
-          <ref name='xmlXPtrNewCollapsedRange'/>
-          <ref name='xmlXPtrNewRange'/>
-          <ref name='xmlXPtrNewRangeNodeObject'/>
-          <ref name='xmlXPtrNewRangeNodePoint'/>
-          <ref name='xmlXPtrNewRangeNodes'/>
-          <ref name='xmlXPtrNewRangePointNode'/>
-          <ref name='xmlXPtrNewRangePoints'/>
-        </word>
-        <word name='starts'>
-          <ref name='xmlXPathStartsWithFunction'/>
-        </word>
-        <word name='starts-with'>
-          <ref name='xmlXPathStartsWithFunction'/>
-        </word>
-        <word name='startup'>
-          <ref name='setDocumentLocator'/>
-          <ref name='setDocumentLocatorSAXFunc'/>
-          <ref name='xmlInitializeCatalog'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadCatalogs'/>
-          <ref name='xmlSAX2SetDocumentLocator'/>
-        </word>
-        <word name='stashed'>
-          <ref name='xmlNanoHTTPAuthHeader'/>
-        </word>
-        <word name='stat'>
-          <ref name='xmlCheckFilename'/>
-        </word>
-        <word name='stateful'>
-          <ref name='xmlCharEncodingOutputFunc'/>
-        </word>
-        <word name='states'>
-          <ref name='_xmlValidCtxt'/>
-        </word>
-        <word name='static'>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='status'>
-          <ref name='xmlTextReaderIsValid'/>
-          <ref name='xmlTextReaderStandalone'/>
-        </word>
-        <word name='stderr'>
-          <ref name='xmlSetGenericErrorFunc'/>
-        </word>
-        <word name='stdin'>
-          <ref name='xmlParserInputBufferCreateFilename'/>
-        </word>
-        <word name='stdout'>
-          <ref name='htmlSaveFile'/>
-          <ref name='xmlOutputBufferCreateFilename'/>
-          <ref name='xmlSaveFile'/>
-          <ref name='xmlSaveFormatFile'/>
-          <ref name='xmlShell'/>
-        </word>
-        <word name='step'>
-          <ref name='xmlExpStringDerive'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-          <ref name='xmlValidateDocumentFinal'/>
-          <ref name='xmlValidateDtdFinal'/>
-          <ref name='xmlXPtrRangeToFunction'/>
-        </word>
-        <word name='steps'>
-          <ref name='xmlNormalizeURIPath'/>
-          <ref name='xmlValidateDocumentFinal'/>
-        </word>
-        <word name='still'>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlModuleFree'/>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlReconciliateNs'/>
-        </word>
-        <word name='stop'>
-          <ref name='xmlListWalker'/>
-        </word>
-        <word name='stops'>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='storage'>
-          <ref name='xmlUTF8Strsize'/>
-        </word>
-        <word name='store'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='htmlParseEntityRef'/>
-          <ref name='isolat1ToUTF8'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlExpGetLanguage'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlGetFeature'/>
-          <ref name='xmlGetLineNo'/>
-          <ref name='xmlInputReadCallback'/>
-          <ref name='xmlOutputBufferWrite'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlOutputBufferWriteString'/>
-          <ref name='xmlParseAttribute'/>
-          <ref name='xmlParseEntityValue'/>
-          <ref name='xmlValidGetPotentialChildren'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='stored'>
-          <ref name='xmlParseElementContentDecl'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlParserInputBufferPush'/>
-          <ref name='xmlParserInputBufferRead'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-          <ref name='xmlXPathOrderDocElems'/>
-        </word>
-        <word name='stores'>
-          <ref name='xmlBufNodeDump'/>
-        </word>
-        <word name='str'>
-          <ref name='htmlParseEntityRef'/>
-          <ref name='xmlBufferAdd'/>
-        </word>
-        <word name='strcasecmp'>
-          <ref name='xmlStrcasecmp'/>
-        </word>
-        <word name='strcat'>
-          <ref name='xmlStrcat'/>
-        </word>
-        <word name='strchr'>
-          <ref name='xmlStrchr'/>
-        </word>
-        <word name='strcmp'>
-          <ref name='xmlStrcmp'/>
-        </word>
-        <word name='strdup'>
-          <ref name='xmlCharStrdup'/>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMemGet'/>
-          <ref name='xmlMemSetup'/>
-          <ref name='xmlMemStrdupLoc'/>
-          <ref name='xmlMemoryStrdup'/>
-          <ref name='xmlStrdup'/>
-          <ref name='xmlStrdupFunc'/>
-        </word>
-        <word name='streamable'>
-          <ref name='xmlPatternStreamable'/>
-          <ref name='xmlSchemaValidateFile'/>
-        </word>
-        <word name='streaming'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlPatternGetStreamCtxt'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-        </word>
-        <word name='streams'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlSkipBlankChars'/>
-        </word>
-        <word name='strict'>
-          <ref name='XML_SCHEMAS_ANYATTR_STRICT'/>
-          <ref name='XML_SCHEMAS_ANY_STRICT'/>
-          <ref name='xmlParseExternalID'/>
-          <ref name='xmlXPathCompareValues'/>
-        </word>
-        <word name='string--that'>
-          <ref name='xmlNormalizeURIPath'/>
-        </word>
-        <word name='string-length'>
-          <ref name='xmlXPathStringLengthFunction'/>
-        </word>
-        <word name='string?'>
-          <ref name='xmlXPathNormalizeFunction'/>
-          <ref name='xmlXPathStringLengthFunction'/>
-        </word>
-        <word name='stringi'>
-          <ref name='xmlXPathSubstringAfterFunction'/>
-        </word>
-        <word name='strings'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlDictCreateSub'/>
-          <ref name='xmlDictGetUsage'/>
-          <ref name='xmlExpGetLanguage'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlGetFeaturesList'/>
-          <ref name='xmlPatterncompile'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlRegexpCompile'/>
-          <ref name='xmlStrEqual'/>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-          <ref name='xmlStrncatNew'/>
-        </word>
-        <word name='stripping'>
-          <ref name='xmlXPathNormalizeFunction'/>
-        </word>
-        <word name='strncasecmp'>
-          <ref name='xmlStrncasecmp'/>
-        </word>
-        <word name='strncat'>
-          <ref name='xmlStrncat'/>
-        </word>
-        <word name='strncmp'>
-          <ref name='xmlStrncmp'/>
-        </word>
-        <word name='strndup'>
-          <ref name='xmlCharStrndup'/>
-          <ref name='xmlStrndup'/>
-          <ref name='xmlUTF8Strndup'/>
-        </word>
-        <word name='strstr'>
-          <ref name='xmlStrcasestr'/>
-          <ref name='xmlStrstr'/>
-        </word>
-        <word name='struct'>
-          <ref name='XML_DEPRECATED'/>
-          <ref name='xmlFreeMutex'/>
-          <ref name='xmlFreeURI'/>
-          <ref name='xmlNewMutex'/>
-          <ref name='xmlParserFindNodeInfo'/>
-          <ref name='xmlSchemaGetBuiltInType'/>
-          <ref name='xmlSchemaNewNOTATIONValue'/>
-          <ref name='xmlSchemaNewQNameValue'/>
-          <ref name='xmlSchemaNewStringValue'/>
-        </word>
-        <word name='structured'>
-          <ref name='xmlRelaxNGSetValidStructuredErrors'/>
-          <ref name='xmlSchemaSetParserStructuredErrors'/>
-          <ref name='xmlSchemaSetValidStructuredErrors'/>
-          <ref name='xmlSchematronSetValidStructuredErrors'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-        </word>
-        <word name='structures'>
-          <ref name='xmlFreeDoc'/>
-          <ref name='xmlFreeNs'/>
-          <ref name='xmlFreeNsList'/>
-          <ref name='xmlLoadACatalog'/>
-          <ref name='xmlNewRMutex'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlRegFreeExecCtxt'/>
-        </word>
-        <word name='stuff'>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlParseNamespace'/>
-        </word>
-        <word name='style'>
-          <ref name='xmlSAXDefaultVersion'/>
-        </word>
-        <word name='sub'>
-          <ref name='xmlExpExpDerive'/>
-        </word>
-        <word name='sub-elements'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='subelement'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='htmlDefaultSubelement'/>
-          <ref name='xmlNewDocElementContent'/>
-          <ref name='xmlNewElementContent'/>
-        </word>
-        <word name='subelements'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='subexpression'>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlExpSubsume'/>
-        </word>
-        <word name='subexpressions'>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='subject'>
-          <ref name='xmlParseSDDecl'/>
-        </word>
-        <word name='sublanguage'>
-          <ref name='xmlXPathLangFunction'/>
-        </word>
-        <word name='submits'>
-          <ref name='xmlRegisterHTTPPostCallbacks'/>
-        </word>
-        <word name='subsequent'>
-          <ref name='xmlIOHTTPOpenW'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-        </word>
-        <word name='subset?'>
-          <ref name='hasExternalSubsetSAXFunc'/>
-        </word>
-        <word name='subsets'>
-          <ref name='xmlGetParameterEntity'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='substitute'>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='substituted'>
-          <ref name='XML_SUBSTITUTE_BOTH'/>
-          <ref name='XML_SUBSTITUTE_NONE'/>
-          <ref name='XML_SUBSTITUTE_PEREF'/>
-          <ref name='XML_SUBSTITUTE_REF'/>
-          <ref name='xmlBufGetNodeContent'/>
-          <ref name='xmlNodeBufGetContent'/>
-          <ref name='xmlNodeGetContent'/>
-          <ref name='xmlParseEntityValue'/>
-        </word>
-        <word name='substituting'>
-          <ref name='xmlSubstituteEntitiesDefault'/>
-        </word>
-        <word name='substitutionGroup'>
-          <ref name='XML_SCHEMAS_ELEM_INTERNAL_RESOLVED'/>
-        </word>
-        <word name='substitutions'>
-          <ref name='XML_SCHEMAS_ELEM_BLOCK_EXTENSION'/>
-          <ref name='xmlStringDecodeEntities'/>
-          <ref name='xmlStringLenDecodeEntities'/>
-          <ref name='xmlXIncludeProcess'/>
-          <ref name='xmlXIncludeProcessFlags'/>
-          <ref name='xmlXIncludeProcessFlagsData'/>
-          <ref name='xmlXIncludeProcessNode'/>
-          <ref name='xmlXIncludeProcessTree'/>
-          <ref name='xmlXIncludeProcessTreeFlags'/>
-          <ref name='xmlXIncludeProcessTreeFlagsData'/>
-        </word>
-        <word name='substitutions:'>
-          <ref name='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION'/>
-          <ref name='XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION'/>
-        </word>
-        <word name='substring'>
-          <ref name='xmlNodeAddContent'/>
-          <ref name='xmlNodeAddContentLen'/>
-          <ref name='xmlStrsub'/>
-          <ref name='xmlUTF8Strsub'/>
-          <ref name='xmlXPathSubstringAfterFunction'/>
-          <ref name='xmlXPathSubstringBeforeFunction'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='substring-after'>
-          <ref name='xmlXPathSubstringAfterFunction'/>
-        </word>
-        <word name='substring-before'>
-          <ref name='xmlXPathSubstringBeforeFunction'/>
-        </word>
-        <word name='subtag'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='subtags'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='subtraction'>
-          <ref name='xmlXPathSubValues'/>
-        </word>
-        <word name='subtree'>
-          <ref name='attribute'/>
-          <ref name='attributeSAXFunc'/>
-          <ref name='xmlFreeDocElementContent'/>
-          <ref name='xmlFreeElementContent'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlRelaxNGValidateFullElement'/>
-          <ref name='xmlSaveTree'/>
-          <ref name='xmlSchemaValidateOneElement'/>
-          <ref name='xmlShellDu'/>
-          <ref name='xmlShellWrite'/>
-          <ref name='xmlTextReaderExpand'/>
-          <ref name='xmlTextReaderNext'/>
-          <ref name='xmlTextReaderNextSibling'/>
-          <ref name='xmlValidateElement'/>
-          <ref name='xmlXIncludeProcessNode'/>
-          <ref name='xmlXIncludeProcessTree'/>
-          <ref name='xmlXIncludeProcessTreeFlags'/>
-        </word>
-        <word name='succeed'>
-          <ref name='xmlNewTextWriter'/>
-        </word>
-        <word name='succeeded'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlHashAddEntry'/>
-          <ref name='xmlHashAddEntry2'/>
-          <ref name='xmlHashAddEntry3'/>
-          <ref name='xmlHashRemoveEntry'/>
-          <ref name='xmlHashRemoveEntry2'/>
-          <ref name='xmlHashRemoveEntry3'/>
-          <ref name='xmlHashUpdateEntry'/>
-          <ref name='xmlHashUpdateEntry2'/>
-          <ref name='xmlHashUpdateEntry3'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlSchemaValueAppend'/>
-          <ref name='xmlXPathCompareValues'/>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='succeeds'>
-          <ref name='xmlCheckFilename'/>
-          <ref name='xmlNewTextWriterPushParser'/>
-        </word>
-        <word name='successful'>
-          <ref name='xmlACatalogAdd'/>
-          <ref name='xmlACatalogRemove'/>
-          <ref name='xmlBufferAdd'/>
-          <ref name='xmlBufferAddHead'/>
-          <ref name='xmlBufferCCat'/>
-          <ref name='xmlBufferCat'/>
-          <ref name='xmlCatalogAdd'/>
-          <ref name='xmlCatalogConvert'/>
-          <ref name='xmlCatalogRemove'/>
-          <ref name='xmlConvertSGMLCatalog'/>
-          <ref name='xmlGetLineNo'/>
-          <ref name='xmlListPushBack'/>
-          <ref name='xmlListPushFront'/>
-          <ref name='xmlSaveSetAttrEscape'/>
-          <ref name='xmlSaveSetEscape'/>
-          <ref name='xmlTextReaderSetParserProp'/>
-          <ref name='xmlUnsetNsProp'/>
-          <ref name='xmlUnsetProp'/>
-          <ref name='xmlXPathSetContextNode'/>
-        </word>
-        <word name='successfully'>
-          <ref name='xmlTextReaderNext'/>
-          <ref name='xmlTextReaderNextSibling'/>
-          <ref name='xmlTextReaderRead'/>
-        </word>
-        <word name='succession'>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-        </word>
-        <word name='successive'>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-        </word>
-        <word name='successors'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='such'>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlSetProp'/>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-          <ref name='xmlXPathLangFunction'/>
-          <ref name='xmlXPathNodeSetFreeNs'/>
-          <ref name='xmlXPathRoundFunction'/>
-        </word>
-        <word name='suffix'>
-          <ref name='LIBXML_MODULE_EXTENSION'/>
-        </word>
-        <word name='suggested'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='suitable'>
-          <ref name='xmlNewIOInputStream'/>
-          <ref name='xmlOutputBufferCreateFilenameFunc'/>
-          <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-          <ref name='xmlRegexpCompile'/>
-        </word>
-        <word name='sum'>
-          <ref name='xmlXPathSubstringFunction'/>
-          <ref name='xmlXPathSumFunction'/>
-        </word>
-        <word name='super'>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-        </word>
-        <word name='super-strict'>
-          <ref name='xmlCheckUTF8'/>
-        </word>
-        <word name='supplied'>
-          <ref name='xmlGetRefs'/>
-        </word>
-        <word name='supported'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlNanoFTPGetConnection'/>
-          <ref name='xmlNodeAddContent'/>
-          <ref name='xmlNodeAddContentLen'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaGetCanonValueWhtsp'/>
-          <ref name='xmlTextReaderNormalization'/>
-        </word>
-        <word name='supposed'>
-          <ref name='xmlIsMixedElement'/>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNodeAddContent'/>
-          <ref name='xmlNodeAddContentLen'/>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-          <ref name='xmlStrcat'/>
-          <ref name='xmlStrdup'/>
-        </word>
-        <word name='sure'>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlSaveClose'/>
-          <ref name='xmlSaveFlush'/>
-          <ref name='xmlURIEscape'/>
-          <ref name='xmlXPathNodeSetAddUnique'/>
-        </word>
-        <word name='surprising'>
-          <ref name='xmlRegisterCharEncodingHandler'/>
-        </word>
-        <word name='surrogate'>
-          <ref name='IS_CHAR'/>
-        </word>
-        <word name='switch'>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlParseReference'/>
-          <ref name='xmlPushInput'/>
-        </word>
-        <word name='symbol'>
-          <ref name='XMLPUBLIC'/>
-          <ref name='xmlModuleSymbol'/>
-        </word>
-        <word name='synchronizing'>
-          <ref name='xmlNewMutex'/>
-          <ref name='xmlNewRMutex'/>
-        </word>
-        <word name='syntax'>
-          <ref name='xmlParseAttributeType'/>
-        </word>
-        <word name='systematically'>
-          <ref name='xmlIsID'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk25'>
-      <letter name='t'>
-        <word name='tag'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='htmlAutoCloseTag'/>
-          <ref name='htmlIsAutoClosed'/>
-          <ref name='htmlTagLookup'/>
-          <ref name='startElement'/>
-          <ref name='startElementSAXFunc'/>
-          <ref name='xmlNodeSetName'/>
-          <ref name='xmlParseEndTag'/>
-          <ref name='xmlParseStartTag'/>
-          <ref name='xmlSAX2StartElement'/>
-          <ref name='xmlTextWriterFullEndElement'/>
-        </word>
-        <word name='tagged'>
-          <ref name='isStandalone'/>
-          <ref name='isStandaloneSAXFunc'/>
-          <ref name='xmlNewNsProp'/>
-          <ref name='xmlNewNsPropEatName'/>
-          <ref name='xmlSAX2IsStandalone'/>
-        </word>
-        <word name='tags'>
-          <ref name='htmlAutoCloseTag'/>
-          <ref name='htmlGetMetaEncoding'/>
-          <ref name='htmlHandleOmittedElem'/>
-          <ref name='htmlIsAutoClosed'/>
-          <ref name='htmlSetMetaEncoding'/>
-        </word>
-        <word name='take'>
-          <ref name='xmlLockLibrary'/>
-        </word>
-        <word name='taken'>
-          <ref name='xmlDocSetRootElement'/>
-        </word>
-        <word name='takes'>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-        </word>
-        <word name='tell'>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='XML_DETECT_IDS'/>
-          <ref name='XML_SKIP_IDS'/>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='tells'>
-          <ref name='xmlTextReaderPreserve'/>
-          <ref name='xmlTextReaderPreservePattern'/>
-        </word>
-        <word name='temporary'>
-          <ref name='_xmlValidCtxt'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlIOHTTPOpenW'/>
-        </word>
-        <word name='terminal'>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-        </word>
-        <word name='terminals'>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='terminated'>
-          <ref name='htmlCtxtReadDoc'/>
-          <ref name='htmlReadDoc'/>
-          <ref name='startElement'/>
-          <ref name='startElementSAXFunc'/>
-          <ref name='xmlBufferCCat'/>
-          <ref name='xmlBufferCat'/>
-          <ref name='xmlCtxtReadDoc'/>
-          <ref name='xmlDocDumpMemory'/>
-          <ref name='xmlExpParse'/>
-          <ref name='xmlGetNsList'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlOutputBufferWriteString'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlReadDoc'/>
-          <ref name='xmlReaderForDoc'/>
-          <ref name='xmlReaderNewDoc'/>
-          <ref name='xmlSAX2StartElement'/>
-          <ref name='xmlStrdupFunc'/>
-        </word>
-        <word name='termination'>
-          <ref name='xmlStrcat'/>
-          <ref name='xmlStrdup'/>
-        </word>
-        <word name='terms'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='test'>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlXPathEqualValues'/>
-          <ref name='xmlXPathNotEqualValues'/>
-        </word>
-        <word name='tested'>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='testing'>
-          <ref name='xmlRegexpCompile'/>
-        </word>
-        <word name='text-'>
-          <ref name='xmlStreamPushNode'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-        </word>
-        <word name='text-node'>
-          <ref name='xmlIsBlankNode'/>
-        </word>
-        <word name='textDecl?'>
-          <ref name='xmlParseExternalSubset'/>
-        </word>
-        <word name='their'>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlEncodeEntities'/>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-          <ref name='xmlLoadCatalogs'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlUnlinkNode'/>
-          <ref name='xmlXPathAddValues'/>
-          <ref name='xmlXPathDivValues'/>
-          <ref name='xmlXPathIdFunction'/>
-          <ref name='xmlXPathModValues'/>
-          <ref name='xmlXPathMultValues'/>
-          <ref name='xmlXPathSubValues'/>
-          <ref name='xmlXPathValueFlipSign'/>
-        </word>
-        <word name='them'>
-          <ref name='xmlExpGetLanguage'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewSeq'/>
-          <ref name='xmlNanoFTPRead'/>
-          <ref name='xmlNanoHTTPRead'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-        </word>
-        <word name='these'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlCheckUTF8'/>
-          <ref name='xmlParseSDDecl'/>
-        </word>
-        <word name='they'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlBufferDetach'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlStrEqual'/>
-          <ref name='xmlStrQEqual'/>
-          <ref name='xmlStrcat'/>
-          <ref name='xmlStrdup'/>
-          <ref name='xmlUnlinkNode'/>
-        </word>
-        <word name='third'>
-          <ref name='xmlHashAddEntry3'/>
-          <ref name='xmlHashLookup3'/>
-          <ref name='xmlHashQLookup3'/>
-          <ref name='xmlHashRemoveEntry3'/>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull3'/>
-          <ref name='xmlHashScannerFull'/>
-          <ref name='xmlHashUpdateEntry3'/>
-          <ref name='xmlXPathSubstringFunction'/>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='this?'>
-          <ref name='_xmlSchemaType'/>
-        </word>
-        <word name='those'>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlSchemaValidateSetLocator'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlXPathSubstringFunction'/>
-        </word>
-        <word name='though'>
-          <ref name='xmlDocDumpMemory'/>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-        </word>
-        <word name='thread'>
-          <ref name='LIBXML_THREAD_ENABLED'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlGetGlobalState'/>
-          <ref name='xmlGetLastError'/>
-          <ref name='xmlGetThreadId'/>
-          <ref name='xmlInitThreads'/>
-          <ref name='xmlInitializeCatalog'/>
-          <ref name='xmlIsMainThread'/>
-          <ref name='xmlLoadCatalog'/>
-          <ref name='xmlLoadCatalogs'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-        </word>
-        <word name='through'>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlDecodeEntities'/>
-          <ref name='xmlNormalizeURIPath'/>
-        </word>
-        <word name='thumblers'>
-          <ref name='xmlShellPwd'/>
-        </word>
-        <word name='thus'>
-          <ref name='xmlDOMWrapRemoveNode'/>
-          <ref name='xmlNewRMutex'/>
-          <ref name='xmlXPathNextAncestor'/>
-          <ref name='xmlXPathNextAncestorOrSelf'/>
-          <ref name='xmlXPathNextDescendantOrSelf'/>
-        </word>
-        <word name='tight'>
-          <ref name='xmlGetBufferAllocationScheme'/>
-        </word>
-        <word name='time'>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlXPathAxisFunc'/>
-        </word>
-        <word name='title'>
-          <ref name='xlinkSimpleLinkFunk'/>
-        </word>
-        <word name='titles'>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xlinkExtendedLinkSetFunk'/>
-        </word>
-        <word name='todo:'>
-          <ref name='_xmlError'/>
-        </word>
-        <word name='token'>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-          <ref name='xmlFreeMutex'/>
-          <ref name='xmlMutexLock'/>
-          <ref name='xmlMutexUnlock'/>
-          <ref name='xmlNewMutex'/>
-          <ref name='xmlRegExecCallbacks'/>
-          <ref name='xmlRegExecPushString'/>
-          <ref name='xmlRegExecPushString2'/>
-        </word>
-        <word name='token_r'>
-          <ref name='xmlNewRMutex'/>
-          <ref name='xmlRMutexLock'/>
-          <ref name='xmlRMutexUnlock'/>
-        </word>
-        <word name='tokens'>
-          <ref name='xmlExpGetLanguage'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlParseEnumerationType'/>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='too'>
-          <ref name='DEBUG_MEMORY'/>
-          <ref name='htmlNodeDump'/>
-          <ref name='htmlNodeDumpFile'/>
-          <ref name='htmlNodeDumpFileFormat'/>
-          <ref name='htmlNodeDumpFormatOutput'/>
-          <ref name='htmlNodeDumpOutput'/>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlCopyDoc'/>
-          <ref name='xmlElemDump'/>
-          <ref name='xmlFreeNode'/>
-          <ref name='xmlFreeNodeList'/>
-          <ref name='xmlFreeProp'/>
-          <ref name='xmlFreePropList'/>
-          <ref name='xmlGetDocEntity'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-          <ref name='xmlRemoveProp'/>
-        </word>
-        <word name='top'>
-          <ref name='CAST_TO_BOOLEAN'/>
-          <ref name='CAST_TO_NUMBER'/>
-          <ref name='CAST_TO_STRING'/>
-          <ref name='CHECK_TYPE'/>
-          <ref name='CHECK_TYPE0'/>
-          <ref name='XML_SCHEMAS_ELEM_TOPLEVEL'/>
-          <ref name='inputPop'/>
-          <ref name='inputPush'/>
-          <ref name='namePop'/>
-          <ref name='namePush'/>
-          <ref name='nodePop'/>
-          <ref name='nodePush'/>
-          <ref name='valuePop'/>
-          <ref name='valuePush'/>
-          <ref name='xmlNamespaceParseNCName'/>
-          <ref name='xmlNamespaceParseNSDef'/>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlPopInputCallbacks'/>
-          <ref name='xmlPopOutputCallbacks'/>
-          <ref name='xmlPushInput'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlSetTreeDoc'/>
-        </word>
-        <word name='total'>
-          <ref name='_xmlOutputBuffer'/>
-          <ref name='xmlGetFeaturesList'/>
-          <ref name='xmlUTF8Strsub'/>
-        </word>
-        <word name='touch'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-        <word name='track'>
-          <ref name='xmlEntityReferenceFunc'/>
-        </word>
-        <word name='tracking'>
-          <ref name='xmlParserPrintFileContext'/>
-        </word>
-        <word name='trailing'>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-          <ref name='xmlXPathNodeTrailing'/>
-          <ref name='xmlXPathNodeTrailingSorted'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-          <ref name='xmlXPathTrailing'/>
-          <ref name='xmlXPathTrailingSorted'/>
-        </word>
-        <word name='transaction'>
-          <ref name='xmlNanoHTTPSave'/>
-        </word>
-        <word name='transcoding'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='xmlCharEncFirstLine'/>
-          <ref name='xmlCharEncInFunc'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlOutputBufferWrite'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlOutputBufferWriteString'/>
-          <ref name='xmlParserInputBufferGrow'/>
-          <ref name='xmlParserInputBufferPush'/>
-          <ref name='xmlParserInputBufferRead'/>
-          <ref name='xmlSaveFileTo'/>
-          <ref name='xmlSaveFormatFileTo'/>
-        </word>
-        <word name='transferred'>
-          <ref name='xmlParsePI'/>
-        </word>
-        <word name='transformation'>
-          <ref name='xmlCharEncCloseFunc'/>
-          <ref name='xmlCharEncFirstLine'/>
-          <ref name='xmlCharEncInFunc'/>
-          <ref name='xmlCharEncOutFunc'/>
-        </word>
-        <word name='transformed'>
-          <ref name='xmlRelaxNGDumpTree'/>
-        </word>
-        <word name='transitions'>
-          <ref name='xmlAutomataNewAllTrans'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-        </word>
-        <word name='translate'>
-          <ref name='xmlXPathTranslateFunction'/>
-        </word>
-        <word name='translation'>
-          <ref name='xmlURIUnescapeString'/>
-        </word>
-        <word name='transmit'>
-          <ref name='errorSAXFunc'/>
-          <ref name='fatalErrorSAXFunc'/>
-          <ref name='warningSAXFunc'/>
-          <ref name='xmlParserError'/>
-          <ref name='xmlParserValidityError'/>
-          <ref name='xmlParserValidityWarning'/>
-          <ref name='xmlParserWarning'/>
-        </word>
-        <word name='transport'>
-          <ref name='xmlNanoFTPClose'/>
-        </word>
-        <word name='traversal'>
-          <ref name='xmlChildElementCount'/>
-          <ref name='xmlFirstElementChild'/>
-          <ref name='xmlLastElementChild'/>
-          <ref name='xmlNextElementSibling'/>
-          <ref name='xmlPreviousElementSibling'/>
-          <ref name='xmlXPathAxisFunc'/>
-          <ref name='xmlXPathNextAncestor'/>
-          <ref name='xmlXPathNextAncestorOrSelf'/>
-          <ref name='xmlXPathNextAttribute'/>
-          <ref name='xmlXPathNextChild'/>
-          <ref name='xmlXPathNextDescendant'/>
-          <ref name='xmlXPathNextDescendantOrSelf'/>
-          <ref name='xmlXPathNextFollowing'/>
-          <ref name='xmlXPathNextFollowingSibling'/>
-          <ref name='xmlXPathNextNamespace'/>
-          <ref name='xmlXPathNextParent'/>
-          <ref name='xmlXPathNextPreceding'/>
-          <ref name='xmlXPathNextPrecedingSibling'/>
-          <ref name='xmlXPathNextSelf'/>
-          <ref name='xmlXPtrNewContext'/>
-        </word>
-        <word name='traverse'>
-          <ref name='xmlXPathAxisFunc'/>
-        </word>
-        <word name='treated'>
-          <ref name='xmlParseAttValue'/>
-        </word>
-        <word name='tried'>
-          <ref name='xmlRecoverDoc'/>
-          <ref name='xmlRecoverMemory'/>
-        </word>
-        <word name='tries'>
-          <ref name='INPUT_CHUNK'/>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlNanoFTPRead'/>
-          <ref name='xmlNanoHTTPRead'/>
-          <ref name='xmlParserInputGrow'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-        </word>
-        <word name='trio'>
-          <ref name='WITHOUT_TRIO'/>
-          <ref name='WITH_TRIO'/>
-        </word>
-        <word name='troubles'>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlSearchNs'/>
-        </word>
-        <word name='try'>
-          <ref name='CAST_TO_BOOLEAN'/>
-          <ref name='CAST_TO_NUMBER'/>
-          <ref name='CAST_TO_STRING'/>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='htmlNodeDumpFileFormat'/>
-          <ref name='isolat1ToUTF8'/>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlFileOpen'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlNanoHTTPFetch'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlNanoHTTPOpen'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-          <ref name='xmlReconciliateNs'/>
-          <ref name='xmlURIEscape'/>
-          <ref name='xmlValidateRoot'/>
-        </word>
-        <word name='tune'>
-          <ref name='xmlBufferSetAllocationScheme'/>
-        </word>
-        <word name='tuple'>
-          <ref name='xmlHashAddEntry2'/>
-          <ref name='xmlHashAddEntry3'/>
-          <ref name='xmlHashLookup2'/>
-          <ref name='xmlHashLookup3'/>
-          <ref name='xmlHashQLookup2'/>
-          <ref name='xmlHashQLookup3'/>
-          <ref name='xmlHashRemoveEntry'/>
-          <ref name='xmlHashRemoveEntry2'/>
-          <ref name='xmlHashRemoveEntry3'/>
-          <ref name='xmlHashScan3'/>
-          <ref name='xmlHashScanFull3'/>
-          <ref name='xmlHashUpdateEntry2'/>
-          <ref name='xmlHashUpdateEntry3'/>
-        </word>
-        <word name='tuples'>
-          <ref name='xmlHashAddEntry2'/>
-        </word>
-        <word name='turn'>
-          <ref name='xmlBoolToText'/>
-        </word>
-        <word name='turned'>
-          <ref name='xmlGetNoNsProp'/>
-          <ref name='xmlGetNsProp'/>
-          <ref name='xmlGetProp'/>
-          <ref name='xmlHasNsProp'/>
-          <ref name='xmlHasProp'/>
-          <ref name='xmlLineNumbersDefault'/>
-        </word>
-        <word name='two'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlMemDisplayLast'/>
-          <ref name='xmlStrncatNew'/>
-          <ref name='xmlTextMerge'/>
-          <ref name='xmlUTF8Charcmp'/>
-          <ref name='xmlXPathCmpNodes'/>
-          <ref name='xmlXPathDifference'/>
-          <ref name='xmlXPathNodeSetMerge'/>
-          <ref name='xmlXPathRoundFunction'/>
-          <ref name='xmlXPtrLocationSetMerge'/>
-          <ref name='xmlXPtrNewLocationSetNodes'/>
-        </word>
-        <word name='two-character'>
-          <ref name='xmlCurrentChar'/>
-        </word>
-        <word name='txt'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='type:'>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='typefixed'>
-          <ref name='XML_SCHEMAS_TYPE_INTERNAL_RESOLVED'/>
-        </word>
-        <word name='types'>
-          <ref name='XML_SCHEMAS_FACET_COLLAPSE'/>
-          <ref name='_xmlSchemaType'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlExternalEntityLoader'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaNewStringValue'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlStreamWantsAnyNode'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk26'>
-      <letter name='u'>
-        <word name='ugly'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='htmlEntityLookup'/>
-          <ref name='htmlEntityValueLookup'/>
-        </word>
-        <word name='unary'>
-          <ref name='xmlXPathValueFlipSign'/>
-        </word>
-        <word name='unclean'>
-          <ref name='_xmlURI'/>
-        </word>
-        <word name='uncompressed'>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlGetCompressMode'/>
-          <ref name='xmlGetDocCompressMode'/>
-          <ref name='xmlSetCompressMode'/>
-          <ref name='xmlSetDocCompressMode'/>
-        </word>
-        <word name='unconditionally'>
-          <ref name='LIBXML_EXPR_ENABLED'/>
-        </word>
-        <word name='under'>
-          <ref name='xmlBuildRelativeURI'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlSetTreeDoc'/>
-          <ref name='xmlShellDu'/>
-          <ref name='xmlShellWrite'/>
-          <ref name='xmlValidateElement'/>
-        </word>
-        <word name='underlying'>
-          <ref name='xmlTextReaderClose'/>
-          <ref name='xmlTextReaderCurrentNode'/>
-        </word>
-        <word name='understand'>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='unescape'>
-          <ref name='xmlURIUnescapeString'/>
-        </word>
-        <word name='unescaped'>
-          <ref name='xmlFileOpen'/>
-          <ref name='xmlNodeAddContent'/>
-          <ref name='xmlNodeAddContentLen'/>
-          <ref name='xmlURIUnescapeString'/>
-        </word>
-        <word name='unescaping'>
-          <ref name='xmlParseURIRaw'/>
-        </word>
-        <word name='unfriendly'>
-          <ref name='XML_MAX_LOOKUP_LIMIT'/>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-        </word>
-        <word name='unicode'>
-          <ref name='htmlEntityValueLookup'/>
-          <ref name='xmlIsLetter'/>
-        </word>
-        <word name='unimplemented'>
-          <ref name='htmlCtxtUseOptions'/>
-          <ref name='xmlCtxtUseOptions'/>
-        </word>
-        <word name='union'>
-          <ref name='XML_SCHEMAS_FINAL_DEFAULT_UNION'/>
-          <ref name='XML_SCHEMAS_TYPE_FINAL_UNION'/>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ATOMIC'/>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_UNION'/>
-          <ref name='_xmlSchemaType'/>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='unique'>
-          <ref name='_xmlParserInput'/>
-          <ref name='_xmlSchema'/>
-          <ref name='xmlExpGetLanguage'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='uniquely'>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='uniqueness'>
-          <ref name='xmlValidateAttributeDecl'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneNamespace'/>
-        </word>
-        <word name='units'>
-          <ref name='xmlUTF8Strsub'/>
-        </word>
-        <word name='unknown'>
-          <ref name='XML_SCHEMAS_ANYATTR_SKIP'/>
-          <ref name='XML_SCHEMAS_ANY_SKIP'/>
-          <ref name='XML_SCHEMAS_FACET_UNKNOWN'/>
-          <ref name='htmlCtxtUseOptions'/>
-          <ref name='xmlCtxtUseOptions'/>
-          <ref name='xmlHasFeature'/>
-          <ref name='xmlUCSIsBlock'/>
-          <ref name='xmlUCSIsCat'/>
-        </word>
-        <word name='unless'>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlExpNewSeq'/>
-          <ref name='xmlGetNoNsProp'/>
-          <ref name='xmlGetNsProp'/>
-          <ref name='xmlGetProp'/>
-          <ref name='xmlHasNsProp'/>
-          <ref name='xmlHasProp'/>
-          <ref name='xmlXPathNextNamespace'/>
-        </word>
-        <word name='unlink'>
-          <ref name='xmlFreeNode'/>
-          <ref name='xmlUnlinkNode'/>
-        </word>
-        <word name='unlinked'>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlNewEntity'/>
-          <ref name='xmlReplaceNode'/>
-          <ref name='xmlUnlinkNode'/>
-        </word>
-        <word name='unload'>
-          <ref name='xmlModuleClose'/>
-          <ref name='xmlModuleFree'/>
-        </word>
-        <word name='unloaded'>
-          <ref name='xmlModuleClose'/>
-        </word>
-        <word name='unlock'>
-          <ref name='xmlMutexUnlock'/>
-          <ref name='xmlRMutexUnlock'/>
-        </word>
-        <word name='unparsed'>
-          <ref name='_xmlEntity'/>
-          <ref name='unparsedEntityDecl'/>
-          <ref name='unparsedEntityDeclSAXFunc'/>
-          <ref name='xmlLoadExternalEntity'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlSAX2UnparsedEntityDecl'/>
-        </word>
-        <word name='unplug'>
-          <ref name='xmlSchemaSAXPlug'/>
-        </word>
-        <word name='unpredictable'>
-          <ref name='UTF8ToHtml'/>
-          <ref name='UTF8Toisolat1'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='isolat1ToUTF8'/>
-        </word>
-        <word name='unpredictiable'>
-          <ref name='xmlCharEncodingInputFunc'/>
-          <ref name='xmlCharEncodingOutputFunc'/>
-        </word>
-        <word name='unregisters'>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlXPathRegisterFunc'/>
-          <ref name='xmlXPathRegisterFuncNS'/>
-          <ref name='xmlXPathRegisterNs'/>
-          <ref name='xmlXPathRegisterVariable'/>
-          <ref name='xmlXPathRegisterVariableNS'/>
-        </word>
-        <word name='unsafe'>
-          <ref name='xmlSprintfElementContent'/>
-        </word>
-        <word name='unsigned'>
-          <ref name='c'/>
-          <ref name='xmlMallocAtomicLoc'/>
-          <ref name='xmlURIUnescapeString'/>
-        </word>
-        <word name='unsupported'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-        </word>
-        <word name='until'>
-          <ref name='xmlBufferCreateStatic'/>
-          <ref name='xmlParserInputBufferCreateStatic'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlSearchNsByHref'/>
-          <ref name='xmlTextReaderExpand'/>
-          <ref name='xmlTextReaderRelaxNGSetSchema'/>
-          <ref name='xmlTextReaderSetSchema'/>
-          <ref name='xmlXPathAxisFunc'/>
-        </word>
-        <word name='update'>
-          <ref name='xmlCheckHTTPInput'/>
-          <ref name='xmlNanoFTPUpdateURL'/>
-          <ref name='xmlSetListDoc'/>
-          <ref name='xmlSetTreeDoc'/>
-          <ref name='xmlSplitQName3'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-        </word>
-        <word name='updated'>
-          <ref name='xmlCatalogAddLocal'/>
-          <ref name='xmlGetFeaturesList'/>
-          <ref name='xmlNamespaceParseQName'/>
-          <ref name='xmlRegExecErrInfo'/>
-          <ref name='xmlRegExecNextValues'/>
-          <ref name='xmlSplitQName'/>
-          <ref name='xmlSplitQName2'/>
-        </word>
-        <word name='upon'>
-          <ref name='checkNamespace'/>
-          <ref name='xlinkNodeDetectFunc'/>
-        </word>
-        <word name='upper'>
-          <ref name='XML_MAX_LOOKUP_LIMIT'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlIsRef'/>
-        </word>
-        <word name='uri'>
-          <ref name='xmlNormalizeWindowsPath'/>
-        </word>
-        <word name='usage'>
-          <ref name='XML_MAX_NAME_LENGTH'/>
-          <ref name='xmlGetBufferAllocationScheme'/>
-          <ref name='xmlSetBufferAllocationScheme'/>
-        </word>
-        <word name='used:'>
-          <ref name='XML_DEFAULT_VERSION'/>
-        </word>
-        <word name='used?'>
-          <ref name='_xmlSchemaAttribute'/>
-          <ref name='_xmlSchemaElement'/>
-        </word>
-        <word name='useful'>
-          <ref name='xmlGcMemGet'/>
-          <ref name='xmlGcMemSetup'/>
-          <ref name='xmlMemDisplayLast'/>
-          <ref name='xmlNewRMutex'/>
-          <ref name='xmlParserInputBufferCreateStatic'/>
-        </word>
-        <word name='useless'>
-          <ref name='setDocumentLocator'/>
-          <ref name='setDocumentLocatorSAXFunc'/>
-          <ref name='xmlSAX2SetDocumentLocator'/>
-        </word>
-        <word name='userData'>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='users'>
-          <ref name='_xmlSchema'/>
-        </word>
-        <word name='uses'>
-          <ref name='htmlNodeStatus'/>
-        </word>
-        <word name='usual'>
-          <ref name='xmlExpParse'/>
-        </word>
-        <word name='usually'>
-          <ref name='LIBXML_MODULE_EXTENSION'/>
-          <ref name='c'/>
-          <ref name='xmlExpExpDerive'/>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlSchemaGetPredefinedType'/>
-          <ref name='xmlTextReaderGetParserProp'/>
-          <ref name='xmlTextReaderSetParserProp'/>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='utf8'>
-          <ref name='xmlCharEncFirstLine'/>
-          <ref name='xmlCharEncInFunc'/>
-          <ref name='xmlCharEncOutFunc'/>
-        </word>
-      </letter>
-      <letter name='v'>
-        <word name='val1'>
-          <ref name='xmlXPtrLocationSetMerge'/>
-        </word>
-        <word name='valgrind'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='validated'>
-          <ref name='xmlCharInRange'/>
-          <ref name='xmlSchemaValidateLengthFacet'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-        </word>
-        <word name='validates'>
-          <ref name='xmlSchemaValPredefTypeNode'/>
-          <ref name='xmlSchemaValPredefTypeNodeNoNorm'/>
-          <ref name='xmlSchemaValidatePredefinedType'/>
-          <ref name='xmlValidateDocument'/>
-          <ref name='xmlValidateNCName'/>
-          <ref name='xmlValidateNMToken'/>
-          <ref name='xmlValidateName'/>
-          <ref name='xmlValidateQName'/>
-        </word>
-        <word name='validating'>
-          <ref name='_xmlAttr'/>
-          <ref name='_xmlElement'/>
-          <ref name='_xmlValidCtxt'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlRelaxNGValidatePushElement'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-        </word>
-        <word name='validator'>
-          <ref name='xmlSchemaValidityLocatorFunc'/>
-        </word>
-        <word name='validity'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='_xmlValidCtxt'/>
-          <ref name='xlinkIsLink'/>
-          <ref name='xmlGenericErrorFunc'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParserValidityError'/>
-          <ref name='xmlParserValidityWarning'/>
-          <ref name='xmlTextReaderIsValid'/>
-          <ref name='xmlURIEscape'/>
-          <ref name='xmlValidGetValidElements'/>
-          <ref name='xmlValidateDocumentFinal'/>
-          <ref name='xmlValidateNotationDecl'/>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='value:'>
-          <ref name='xmlCheckUTF8'/>
-        </word>
-        <word name='values:'>
-          <ref name='xmlSetCompressMode'/>
-          <ref name='xmlSetDocCompressMode'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-        </word>
-        <word name='vararg'>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='varargs'>
-          <ref name='xmlGenericErrorFunc'/>
-        </word>
-        <word name='variables'>
-          <ref name='XML_XPATH_NOVAR'/>
-          <ref name='_xmlXPathContext'/>
-          <ref name='xmlNanoFTPProxy'/>
-          <ref name='xmlXPathRegisteredNsCleanup'/>
-          <ref name='xmlXPathRegisteredVariablesCleanup'/>
-        </word>
-        <word name='variant'>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlDetectCharEncoding'/>
-        </word>
-        <word name='variants'>
-          <ref name='xmlCheckLanguageID'/>
-        </word>
-        <word name='variety'>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ABSENT'/>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_ATOMIC'/>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_LIST'/>
-          <ref name='XML_SCHEMAS_TYPE_VARIETY_UNION'/>
-        </word>
-        <word name='various'>
-          <ref name='_xmlDOMWrapCtxt'/>
-        </word>
-        <word name='versions'>
-          <ref name='htmlParseElement'/>
-        </word>
-        <word name='very'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlCharEncFirstLine'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='via'>
-          <ref name='xmlNanoHTTPFetch'/>
-          <ref name='xmlNanoHTTPMethod'/>
-          <ref name='xmlNanoHTTPMethodRedir'/>
-          <ref name='xmlNanoHTTPOpen'/>
-          <ref name='xmlNanoHTTPOpenRedir'/>
-        </word>
-        <word name='view'>
-          <ref name='xmlShell'/>
-        </word>
-        <word name='violated'>
-          <ref name='XML_CAST_FPTR'/>
-        </word>
-        <word name='visible'>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlC14NIsVisibleCallback'/>
-        </word>
-        <word name='void'>
-          <ref name='XML_CAST_FPTR'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-        </word>
-        <word name='volume'>
-          <ref name='_xmlParserCtxt'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk27'>
-      <letter name='w'>
-        <word name='walker'>
-          <ref name='xmlListReverseWalk'/>
-          <ref name='xmlListWalk'/>
-          <ref name='xmlListWalker'/>
-        </word>
-        <word name='walking'>
-          <ref name='_xmlXPathContext'/>
-          <ref name='_xmlXPathParserContext'/>
-          <ref name='xmlListWalker'/>
-        </word>
-        <word name='want'>
-          <ref name='xmlCharEncFirstLine'/>
-          <ref name='xmlCharEncInFunc'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-        </word>
-        <word name='warn'>
-          <ref name='xmlCheckVersion'/>
-        </word>
-        <word name='warning'>
-          <ref name='XML_CAST_FPTR'/>
-          <ref name='_xmlValidCtxt'/>
-          <ref name='htmlCreatePushParserCtxt'/>
-          <ref name='initxmlDefaultSAXHandler'/>
-          <ref name='warningSAXFunc'/>
-          <ref name='xmlCreatePushParserCtxt'/>
-          <ref name='xmlEncodeEntities'/>
-          <ref name='xmlParserValidityWarning'/>
-          <ref name='xmlParserWarning'/>
-          <ref name='xmlRelaxNGGetParserErrors'/>
-          <ref name='xmlRelaxNGGetValidErrors'/>
-          <ref name='xmlRelaxNGSetParserErrors'/>
-          <ref name='xmlRelaxNGSetValidErrors'/>
-          <ref name='xmlRelaxNGValidityWarningFunc'/>
-          <ref name='xmlSAX2InitDefaultSAXHandler'/>
-          <ref name='xmlSchemaGetParserErrors'/>
-          <ref name='xmlSchemaGetValidErrors'/>
-          <ref name='xmlSchemaSetParserErrors'/>
-          <ref name='xmlSchemaSetValidErrors'/>
-          <ref name='xmlSchemaValidityWarningFunc'/>
-          <ref name='xmlSchematronValidityWarningFunc'/>
-          <ref name='xmlSearchNs'/>
-          <ref name='xmlTextReaderSetErrorHandler'/>
-          <ref name='xmlTextReaderSetStructuredErrorHandler'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='warnings'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlPedanticParserDefault'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-          <ref name='xmlTextReaderSetErrorHandler'/>
-          <ref name='xmlTextReaderSetStructuredErrorHandler'/>
-        </word>
-        <word name='way'>
-          <ref name='HTML_COMMENT_NODE'/>
-          <ref name='HTML_ENTITY_REF_NODE'/>
-          <ref name='HTML_PI_NODE'/>
-          <ref name='HTML_PRESERVE_NODE'/>
-          <ref name='HTML_TEXT_NODE'/>
-          <ref name='_xmlDoc'/>
-          <ref name='xmlBoolToText'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlNewGlobalNs'/>
-        </word>
-        <word name='ways:'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='weird'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='well'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='htmlSAXParseDoc'/>
-          <ref name='htmlSAXParseFile'/>
-          <ref name='startElementNsSAX2Func'/>
-          <ref name='xmlCopyDoc'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlParseInNodeContext'/>
-          <ref name='xmlSAX2StartElementNs'/>
-          <ref name='xmlSchemaNewStringValue'/>
-        </word>
-        <word name='well-balanced'>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseInNodeContext'/>
-        </word>
-        <word name='well-formed'>
-          <ref name='xmlParseCtxtExternalEntity'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParseExtParsedEnt'/>
-          <ref name='xmlParseExternalEntity'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlValidateDtdFinal'/>
-        </word>
-        <word name='well-formedness'>
-          <ref name='xmlCtxtResetLastError'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlResetLastError'/>
-        </word>
-        <word name='wellformed'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlParseFile'/>
-        </word>
-        <word name='were'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlMemShow'/>
-          <ref name='xmlSchemaIsValid'/>
-          <ref name='xmlXIncludeProcess'/>
-          <ref name='xmlXIncludeProcessFlags'/>
-          <ref name='xmlXIncludeProcessFlagsData'/>
-          <ref name='xmlXIncludeProcessNode'/>
-          <ref name='xmlXIncludeProcessTree'/>
-          <ref name='xmlXIncludeProcessTreeFlags'/>
-          <ref name='xmlXIncludeProcessTreeFlagsData'/>
-        </word>
-        <word name='what'>
-          <ref name='xmlCatalogGetDefaults'/>
-          <ref name='xmlCatalogSetDefaults'/>
-          <ref name='xmlParseNamespace'/>
-          <ref name='xmlSchemaValidityLocatorFunc'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-          <ref name='xmlTextWriterWriteRawLen'/>
-        </word>
-        <word name='where'>
-          <ref name='_htmlElemDesc'/>
-          <ref name='xmlCopyProp'/>
-          <ref name='xmlCopyPropList'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlExpGetLanguage'/>
-          <ref name='xmlExpGetStart'/>
-          <ref name='xmlFileRead'/>
-          <ref name='xmlIOFTPRead'/>
-          <ref name='xmlIOHTTPRead'/>
-          <ref name='xmlNanoHTTPFetch'/>
-          <ref name='xmlNanoHTTPSave'/>
-          <ref name='xmlNewNs'/>
-          <ref name='xmlParseMarkupDecl'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlTextReaderErrorFunc'/>
-        </word>
-        <word name='while'>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlParseAttributeType'/>
-          <ref name='xmlParseEnumeratedType'/>
-          <ref name='xmlParseEnumerationType'/>
-          <ref name='xmlParseNotationType'/>
-          <ref name='xmlSetGenericErrorFunc'/>
-          <ref name='xmlSetStructuredErrorFunc'/>
-          <ref name='xmlTextReaderNext'/>
-          <ref name='xmlTextReaderNextSibling'/>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='white'>
-          <ref name='xmlKeepBlanksDefault'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlSchemaCollapseString'/>
-          <ref name='xmlTextReaderNormalization'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-        </word>
-        <word name='whitespace'>
-          <ref name='xmlIsBlankNode'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlSchemaCompareValuesWhtsp'/>
-          <ref name='xmlSchemaGetCanonValueWhtsp'/>
-          <ref name='xmlSchemaValidateFacetWhtsp'/>
-          <ref name='xmlSchemaValidateLengthFacetWhtsp'/>
-          <ref name='xmlXPathIdFunction'/>
-          <ref name='xmlXPathNormalizeFunction'/>
-        </word>
-        <word name='whitespace-facet'>
-          <ref name='XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE'/>
-          <ref name='XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE'/>
-          <ref name='XML_SCHEMAS_TYPE_WHITESPACE_REPLACE'/>
-        </word>
-        <word name='whitespace-separated'>
-          <ref name='xmlXPathIdFunction'/>
-        </word>
-        <word name='whitespaces'>
-          <ref name='ignorableWhitespace'/>
-          <ref name='ignorableWhitespaceSAXFunc'/>
-          <ref name='xmlSAX2IgnorableWhitespace'/>
-        </word>
-        <word name='whole'>
-          <ref name='xmlFreeDocElementContent'/>
-          <ref name='xmlFreeElementContent'/>
-        </word>
-        <word name='whose'>
-          <ref name='xmlAutomataNewCountTrans'/>
-          <ref name='xmlAutomataNewCountTrans2'/>
-          <ref name='xmlAutomataNewOnceTrans'/>
-          <ref name='xmlAutomataNewOnceTrans2'/>
-          <ref name='xmlTextReaderLookupNamespace'/>
-        </word>
-        <word name='why'>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-        </word>
-        <word name='wildcard'>
-          <ref name='XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED'/>
-          <ref name='XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD'/>
-          <ref name='XML_SCHEMAS_WILDCARD_COMPLETE'/>
-          <ref name='xmlSchemaFreeWildcard'/>
-        </word>
-        <word name='wildcards'>
-          <ref name='XML_SCHEMAS_ANY_LAX'/>
-          <ref name='XML_SCHEMAS_ANY_STRICT'/>
-          <ref name='XML_SCHEMAS_ATTR_USE_PROHIBITED'/>
-        </word>
-        <word name='windows'>
-          <ref name='INVALID_SOCKET'/>
-          <ref name='SOCKET'/>
-        </word>
-        <word name='with_ns'>
-          <ref name='_xmlNodeSet'/>
-        </word>
-        <word name='without'>
-          <ref name='XML_CAST_FPTR'/>
-          <ref name='_xmlEntity'/>
-          <ref name='entityDecl'/>
-          <ref name='entityDeclSAXFunc'/>
-          <ref name='htmlNewDocNoDtD'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlNewGlobalNs'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlSAX2EntityDecl'/>
-          <ref name='xmlScanName'/>
-          <ref name='xmlSplitQName3'/>
-          <ref name='xmlValidateOneAttribute'/>
-          <ref name='xmlValidateOneNamespace'/>
-        </word>
-        <word name='won'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlAutomataNewNegTrans'/>
-          <ref name='xmlBufferCreateStatic'/>
-          <ref name='xmlLoadSGMLSuperCatalog'/>
-          <ref name='xmlParseAttValue'/>
-        </word>
-        <word name='word'>
-          <ref name='_htmlElemDesc'/>
-        </word>
-        <word name='words'>
-          <ref name='xmlXPathNormalizeFunction'/>
-          <ref name='xmlXPathStringLengthFunction'/>
-        </word>
-        <word name='work'>
-          <ref name='xmlBufferDetach'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlPatternStreamable'/>
-          <ref name='xmlRemoveProp'/>
-          <ref name='xmlSAXParseDoc'/>
-          <ref name='xmlSAXParseFile'/>
-          <ref name='xmlSAXParseFileWithData'/>
-          <ref name='xmlSAXParseMemory'/>
-          <ref name='xmlSAXParseMemoryWithData'/>
-        </word>
-        <word name='worked'>
-          <ref name='xmlNanoFTPCwd'/>
-          <ref name='xmlNanoFTPDele'/>
-        </word>
-        <word name='works'>
-          <ref name='xmlShellDu'/>
-        </word>
-        <word name='worry'>
-          <ref name='XML_SCHEMAS_ANY_LAX'/>
-        </word>
-        <word name='worthwhile'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='would'>
-          <ref name='_xmlError'/>
-          <ref name='htmlAutoCloseTag'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlModuleSymbol'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-        </word>
-        <word name='wrapper'>
-          <ref name='xmlDOMWrapAcquireNsFunction'/>
-          <ref name='xmlDOMWrapReconcileNamespaces'/>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='wraps'>
-          <ref name='xmlTextReaderByteConsumed'/>
-        </word>
-        <word name='write'>
-          <ref name='xmlFileRead'/>
-          <ref name='xmlFindCharEncodingHandler'/>
-          <ref name='xmlGetCharEncodingHandler'/>
-          <ref name='xmlIOFTPRead'/>
-          <ref name='xmlIOHTTPRead'/>
-          <ref name='xmlNewCharEncodingHandler'/>
-          <ref name='xmlOutputBufferCreateFilenameFunc'/>
-          <ref name='xmlOutputBufferCreateIO'/>
-          <ref name='xmlOutputWriteCallback'/>
-          <ref name='xmlSaveToIO'/>
-          <ref name='xmlShellWrite'/>
-        </word>
-        <word name='writer'>
-          <ref name='xmlFreeTextWriter'/>
-          <ref name='xmlNewTextWriter'/>
-          <ref name='xmlNewTextWriterPushParser'/>
-        </word>
-        <word name='writes'>
-          <ref name='xmlBufferWriteQuotedString'/>
-          <ref name='xmlOutputBufferWrite'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlOutputBufferWriteString'/>
-        </word>
-        <word name='writing'>
-          <ref name='xmlOutputBufferCreateFilename'/>
-        </word>
-        <word name='wrt'>
-          <ref name='xmlDOMWrapRemoveNode'/>
-        </word>
-        <word name='www'>
-          <ref name='XINCLUDE_NS'/>
-          <ref name='XINCLUDE_OLD_NS'/>
-          <ref name='getSystemId'/>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-          <ref name='xmlCheckLanguageID'/>
-          <ref name='xmlGetCharEncodingName'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlParserHandleReference'/>
-          <ref name='xmlSAX2GetSystemId'/>
-          <ref name='xmlSchemaGetPredefinedType'/>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk28'>
-      <letter name='x'>
-        <word name='x00B7'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x02D0'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x02D1'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x0387'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x0640'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x0E46'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x0EC6'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x10000-'>
-          <ref name='IS_CHAR'/>
-        </word>
-        <word name='x10FFFF'>
-          <ref name='IS_CHAR'/>
-        </word>
-        <word name='x20'>
-          <ref name='IS_BLANK'/>
-          <ref name='IS_BYTE_CHAR'/>
-          <ref name='IS_PUBIDCHAR'/>
-          <ref name='xmlParseAttValue'/>
-          <ref name='xmlParseName'/>
-          <ref name='xmlParseNmtoken'/>
-          <ref name='xmlValidCtxtNormalizeAttributeValue'/>
-          <ref name='xmlValidNormalizeAttributeValue'/>
-        </word>
-        <word name='x20-'>
-          <ref name='IS_CHAR'/>
-        </word>
-        <word name='x3005'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x3007'>
-          <ref name='IS_IDEOGRAPHIC'/>
-        </word>
-        <word name='x3021-'>
-          <ref name='IS_IDEOGRAPHIC'/>
-        </word>
-        <word name='x3029'>
-          <ref name='IS_IDEOGRAPHIC'/>
-        </word>
-        <word name='x3031-'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x3035'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x309D-'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x309E'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x30FC-'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x30FE'>
-          <ref name='IS_EXTENDER'/>
-        </word>
-        <word name='x4E00-'>
-          <ref name='IS_IDEOGRAPHIC'/>
-        </word>
-        <word name='x9FA5'>
-          <ref name='IS_IDEOGRAPHIC'/>
-        </word>
-        <word name='xD7FF'>
-          <ref name='IS_CHAR'/>
-        </word>
-        <word name='xE000-'>
-          <ref name='IS_CHAR'/>
-        </word>
-        <word name='xFFFD'>
-          <ref name='IS_CHAR'/>
-        </word>
-        <word name='xlink'>
-          <ref name='xlinkGetDefaultDetect'/>
-          <ref name='xlinkGetDefaultHandler'/>
-          <ref name='xlinkSetDefaultDetect'/>
-          <ref name='xlinkSetDefaultHandler'/>
-        </word>
-        <word name='xlinkHandlerPtr'>
-          <ref name='xlinkGetDefaultHandler'/>
-        </word>
-        <word name='xlinkType'>
-          <ref name='xlinkIsLink'/>
-        </word>
-        <word name='xml-c14n'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='xml-exc-c14n'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlC14NDocSave'/>
-          <ref name='xmlC14NDocSaveTo'/>
-          <ref name='xmlC14NExecute'/>
-        </word>
-        <word name='xml-name'>
-          <ref name='xmlParseNamespace'/>
-        </word>
-        <word name='xml:'>
-          <ref name='XML_XML_NAMESPACE'/>
-        </word>
-        <word name='xml:base'>
-          <ref name='xmlNodeSetBase'/>
-        </word>
-        <word name='xml:id'>
-          <ref name='XML_XML_ID'/>
-        </word>
-        <word name='xml:lang'>
-          <ref name='xlinkExtendedLinkFunk'/>
-          <ref name='xlinkExtendedLinkSetFunk'/>
-          <ref name='xmlNodeGetLang'/>
-          <ref name='xmlNodeSetLang'/>
-          <ref name='xmlTextReaderConstXmlLang'/>
-          <ref name='xmlTextReaderXmlLang'/>
-          <ref name='xmlXPathLangFunction'/>
-        </word>
-        <word name='xml:space'>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlNodeGetSpacePreserve'/>
-          <ref name='xmlNodeSetSpacePreserve'/>
-        </word>
-        <word name='xmlAddChild'>
-          <ref name='xmlAddChildList'/>
-          <ref name='xmlAddNextSibling'/>
-          <ref name='xmlAddPrevSibling'/>
-          <ref name='xmlAddSibling'/>
-          <ref name='xmlReplaceNode'/>
-        </word>
-        <word name='xmlAddDocEntity'>
-          <ref name='xmlNewEntity'/>
-        </word>
-        <word name='xmlAttr'>
-          <ref name='attribute'/>
-          <ref name='attributeSAXFunc'/>
-        </word>
-        <word name='xmlAttrPtr'>
-          <ref name='xmlCopyProp'/>
-          <ref name='xmlCopyPropList'/>
-          <ref name='xmlGetID'/>
-        </word>
-        <word name='xmlAttributePtr'>
-          <ref name='xmlGetDtdAttrDesc'/>
-          <ref name='xmlGetDtdQAttrDesc'/>
-        </word>
-        <word name='xmlAttributeTablePtr'>
-          <ref name='xmlCopyAttributeTable'/>
-        </word>
-        <word name='xmlBufPtr'>
-          <ref name='xmlBufGetNodeContent'/>
-        </word>
-        <word name='xmlBuffer'>
-          <ref name='xmlCharEncFirstLine'/>
-          <ref name='xmlCharEncInFunc'/>
-          <ref name='xmlCharEncOutFunc'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlOutputBufferCreateBuffer'/>
-        </word>
-        <word name='xmlBufferPtr'>
-          <ref name='xmlNewTextWriterMemory'/>
-          <ref name='xmlOutputBufferCreateBuffer'/>
-        </word>
-        <word name='xmlBufferShrink'>
-          <ref name='xmlBufShrink'/>
-        </word>
-        <word name='xmlBuildURI'>
-          <ref name='xmlBuildRelativeURI'/>
-        </word>
-        <word name='xmlBytesConsumed'>
-          <ref name='xmlTextReaderByteConsumed'/>
-        </word>
-        <word name='xmlCatalogAllow'>
-          <ref name='xmlCatalogGetDefaults'/>
-        </word>
-        <word name='xmlCatalogPtr'>
-          <ref name='xmlNewCatalog'/>
-        </word>
-        <word name='xmlCatalogResolvePublic'>
-          <ref name='xmlCatalogGetPublic'/>
-        </word>
-        <word name='xmlCatalogResolveSystem'>
-          <ref name='xmlCatalogGetSystem'/>
-        </word>
-        <word name='xmlCharEncoding'>
-          <ref name='_xmlDoc'/>
-          <ref name='_xmlParserCtxt'/>
-          <ref name='xmlGetCharEncodingHandler'/>
-        </word>
-        <word name='xmlCharEncodingHandler'>
-          <ref name='xmlNewCharEncodingHandler'/>
-        </word>
-        <word name='xmlCharEncodingHandlerPtr'>
-          <ref name='xmlNewCharEncodingHandler'/>
-          <ref name='xmlRegisterCharEncodingHandler'/>
-        </word>
-        <word name='xmlCharEncodingInputFunc'>
-          <ref name='xmlNewCharEncodingHandler'/>
-        </word>
-        <word name='xmlCharEncodingOutputFunc'>
-          <ref name='xmlNewCharEncodingHandler'/>
-        </word>
-        <word name='xmlChars'>
-          <ref name='_xmlParserInput'/>
-          <ref name='xmlBufferWriteCHAR'/>
-        </word>
-        <word name='xmlCleanupParser'>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-        </word>
-        <word name='xmlCleanupThreads'>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-        <word name='xmlCopyDocElementContent'>
-          <ref name='xmlCopyElementContent'/>
-        </word>
-        <word name='xmlCreateIntSubset'>
-          <ref name='xmlNewDtd'/>
-        </word>
-        <word name='xmlDOMWrapCtxtPtr'>
-          <ref name='xmlDOMWrapNewCtxt'/>
-        </word>
-        <word name='xmlDefaultSAXLocator'>
-          <ref name='setDocumentLocator'/>
-          <ref name='setDocumentLocatorSAXFunc'/>
-          <ref name='xmlSAX2SetDocumentLocator'/>
-        </word>
-        <word name='xmlDoc'>
-          <ref name='_xmlNs'/>
-        </word>
-        <word name='xmlDocCopyNodeList'>
-          <ref name='xmlCopyNodeList'/>
-        </word>
-        <word name='xmlDocProperties'>
-          <ref name='_xmlDoc'/>
-        </word>
-        <word name='xmlDocPtr'>
-          <ref name='xmlCopyDoc'/>
-          <ref name='xmlNewTextWriterDoc'/>
-          <ref name='xmlNewTextWriterTree'/>
-          <ref name='xmlTextReaderCurrentDoc'/>
-        </word>
-        <word name='xmlDtdPtr'>
-          <ref name='xmlCopyDtd'/>
-          <ref name='xmlIOParseDTD'/>
-          <ref name='xmlParseDTD'/>
-          <ref name='xmlSAXParseDTD'/>
-        </word>
-        <word name='xmlElementContentPtr'>
-          <ref name='xmlCopyDocElementContent'/>
-          <ref name='xmlCopyElementContent'/>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-        </word>
-        <word name='xmlElementPtr'>
-          <ref name='xmlGetDtdElementDesc'/>
-          <ref name='xmlGetDtdQElementDesc'/>
-        </word>
-        <word name='xmlElementTablePtr'>
-          <ref name='xmlCopyElementTable'/>
-        </word>
-        <word name='xmlEncodeEntities'>
-          <ref name='xmlEncodeEntities'/>
-          <ref name='xmlEncodeEntitiesReentrant'/>
-        </word>
-        <word name='xmlEncodeEntitiesReentrant'>
-          <ref name='xmlEncodeEntities'/>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-        </word>
-        <word name='xmlEncodeSpecialChars'>
-          <ref name='xmlNodeSetContent'/>
-          <ref name='xmlNodeSetContentLen'/>
-        </word>
-        <word name='xmlEntitiesTablePtr'>
-          <ref name='xmlCopyEntitiesTable'/>
-          <ref name='xmlCreateEntitiesTable'/>
-        </word>
-        <word name='xmlEntityPtr'>
-          <ref name='getEntity'/>
-          <ref name='getEntitySAXFunc'/>
-          <ref name='getParameterEntity'/>
-          <ref name='getParameterEntitySAXFunc'/>
-          <ref name='xmlNewEntityInputStream'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlSAX2GetEntity'/>
-          <ref name='xmlSAX2GetParameterEntity'/>
-        </word>
-        <word name='xmlEnumerationPtr'>
-          <ref name='xmlCopyEnumeration'/>
-          <ref name='xmlCreateEnumeration'/>
-        </word>
-        <word name='xmlExpFree'>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlExpNewSeq'/>
-        </word>
-        <word name='xmlExpRef'>
-          <ref name='xmlExpNewOr'/>
-          <ref name='xmlExpNewRange'/>
-          <ref name='xmlExpNewSeq'/>
-        </word>
-        <word name='xmlExternalEntityLoader'>
-          <ref name='xmlGetExternalEntityLoader'/>
-        </word>
-        <word name='xmlFileOpen_real'>
-          <ref name='xmlFileOpen'/>
-        </word>
-        <word name='xmlFree'>
-          <ref name='xmlC14NDocDumpMemory'/>
-          <ref name='xmlDocDumpFormatMemory'/>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocDumpMemory'/>
-          <ref name='xmlDocDumpMemoryEnc'/>
-          <ref name='xmlGetNoNsProp'/>
-          <ref name='xmlGetNsProp'/>
-          <ref name='xmlGetProp'/>
-          <ref name='xmlHashDefaultDeallocator'/>
-          <ref name='xmlNodeGetBase'/>
-          <ref name='xmlNodeGetContent'/>
-          <ref name='xmlNodeGetLang'/>
-          <ref name='xmlNodeListGetRawString'/>
-          <ref name='xmlNodeListGetString'/>
-          <ref name='xmlTextReaderValue'/>
-          <ref name='xmlXPathCastToString'/>
-        </word>
-        <word name='xmlFreeDoc'>
-          <ref name='xmlTextReaderCurrentDoc'/>
-        </word>
-        <word name='xmlFreeDocElementContent'>
-          <ref name='xmlFreeElementContent'/>
-        </word>
-        <word name='xmlFreeMutex'>
-          <ref name='xmlFreeMutex'/>
-        </word>
-        <word name='xmlFreeNode'>
-          <ref name='xmlUnlinkNode'/>
-        </word>
-        <word name='xmlFreeStreamCtxt'>
-          <ref name='xmlPatternGetStreamCtxt'/>
-        </word>
-        <word name='xmlGetGlobalState'>
-          <ref name='xmlGetGlobalState'/>
-        </word>
-        <word name='xmlGetNoNsProp'>
-          <ref name='xmlGetProp'/>
-        </word>
-        <word name='xmlGetNsProp'>
-          <ref name='xmlGetProp'/>
-        </word>
-        <word name='xmlGetProp'>
-          <ref name='xmlGetNoNsProp'/>
-        </word>
-        <word name='xmlGetThreadId'>
-          <ref name='xmlGetThreadId'/>
-        </word>
-        <word name='xmlHashTablePtr'>
-          <ref name='xmlHashCreate'/>
-          <ref name='xmlHashCreateDict'/>
-        </word>
-        <word name='xmlIDPtr'>
-          <ref name='xmlAddID'/>
-        </word>
-        <word name='xmlIndentTreeOutput'>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlDocDumpFormatMemory'/>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocFormatDump'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-          <ref name='xmlSaveFormatFile'/>
-          <ref name='xmlSaveFormatFileEnc'/>
-        </word>
-        <word name='xmlInitParser'>
-          <ref name='htmlDefaultSAXHandlerInit'/>
-          <ref name='htmlInitAutoClose'/>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlDefaultSAXHandlerInit'/>
-          <ref name='xmlInitCharEncodingHandlers'/>
-          <ref name='xmlInitGlobals'/>
-          <ref name='xmlInitMemory'/>
-          <ref name='xmlInitThreads'/>
-          <ref name='xmlInitializeDict'/>
-          <ref name='xmlXPathInit'/>
-        </word>
-        <word name='xmlInitThreads'>
-          <ref name='xmlInitThreads'/>
-        </word>
-        <word name='xmlInitializeCatalog'>
-          <ref name='xmlCatalogAdd'/>
-        </word>
-        <word name='xmlInitializeGlobalState'>
-          <ref name='xmlInitializeGlobalState'/>
-        </word>
-        <word name='xmlInputCloseCallback'>
-          <ref name='xmlRegisterInputCallbacks'/>
-        </word>
-        <word name='xmlInputMatchCallback'>
-          <ref name='xmlRegisterInputCallbacks'/>
-        </word>
-        <word name='xmlInputOpenCallback'>
-          <ref name='xmlRegisterInputCallbacks'/>
-        </word>
-        <word name='xmlInputReadCallback'>
-          <ref name='xmlRegisterInputCallbacks'/>
-        </word>
-        <word name='xmlIsBaseCharQ'>
-          <ref name='xmlIsBaseChar'/>
-        </word>
-        <word name='xmlIsBaseChar_ch'>
-          <ref name='xmlIsBaseChar'/>
-        </word>
-        <word name='xmlIsBlankNode'>
-          <ref name='xmlKeepBlanksDefault'/>
-        </word>
-        <word name='xmlIsBlankQ'>
-          <ref name='xmlIsBlank'/>
-        </word>
-        <word name='xmlIsBlank_ch'>
-          <ref name='xmlIsBlank'/>
-        </word>
-        <word name='xmlIsCharQ'>
-          <ref name='xmlIsChar'/>
-        </word>
-        <word name='xmlIsChar_ch'>
-          <ref name='xmlIsChar'/>
-        </word>
-        <word name='xmlIsCombiningQ'>
-          <ref name='xmlIsCombining'/>
-        </word>
-        <word name='xmlIsDigitQ'>
-          <ref name='xmlIsDigit'/>
-        </word>
-        <word name='xmlIsDigit_ch'>
-          <ref name='xmlIsDigit'/>
-        </word>
-        <word name='xmlIsExtenderQ'>
-          <ref name='xmlIsExtender'/>
-        </word>
-        <word name='xmlIsExtender_ch'>
-          <ref name='xmlIsExtender'/>
-        </word>
-        <word name='xmlIsIdeographicQ'>
-          <ref name='xmlIsIdeographic'/>
-        </word>
-        <word name='xmlIsMainThread'>
-          <ref name='xmlIsMainThread'/>
-        </word>
-        <word name='xmlIsPubidCharQ'>
-          <ref name='xmlIsPubidChar'/>
-        </word>
-        <word name='xmlIsPubidChar_ch'>
-          <ref name='xmlIsPubidChar'/>
-        </word>
-        <word name='xmlKeepBlanksDefault'>
-          <ref name='xmlBufNodeDump'/>
-          <ref name='xmlDocDumpFormatMemory'/>
-          <ref name='xmlDocDumpFormatMemoryEnc'/>
-          <ref name='xmlDocFormatDump'/>
-          <ref name='xmlNodeDump'/>
-          <ref name='xmlNodeDumpOutput'/>
-          <ref name='xmlSaveFormatFile'/>
-          <ref name='xmlSaveFormatFileEnc'/>
-        </word>
-        <word name='xmlListWalk'>
-          <ref name='xmlListWalker'/>
-        </word>
-        <word name='xmlLoadExtDtdDefaultValue'>
-          <ref name='XML_COMPLETE_ATTRS'/>
-          <ref name='XML_DETECT_IDS'/>
-          <ref name='XML_SKIP_IDS'/>
-        </word>
-        <word name='xmlLocationSetPtr'>
-          <ref name='xmlXPtrFreeLocationSet'/>
-          <ref name='xmlXPtrLocationSetCreate'/>
-        </word>
-        <word name='xmlLockLibrary'>
-          <ref name='xmlLockLibrary'/>
-        </word>
-        <word name='xmlModuleOption'>
-          <ref name='xmlModuleOpen'/>
-        </word>
-        <word name='xmlMutexLock'>
-          <ref name='xmlMutexLock'/>
-        </word>
-        <word name='xmlMutexUnlock'>
-          <ref name='xmlMutexUnlock'/>
-        </word>
-        <word name='xmlNanoFTPGet'>
-          <ref name='ftpDataCallback'/>
-        </word>
-        <word name='xmlNanoFTPList'>
-          <ref name='ftpListCallback'/>
-        </word>
-        <word name='xmlNewChild'>
-          <ref name='xmlNewTextChild'/>
-        </word>
-        <word name='xmlNewDocComment'>
-          <ref name='xmlNewComment'/>
-        </word>
-        <word name='xmlNewDocElementContent'>
-          <ref name='xmlNewElementContent'/>
-        </word>
-        <word name='xmlNewDocNode'>
-          <ref name='xmlNewNode'/>
-        </word>
-        <word name='xmlNewDocNodeEatName'>
-          <ref name='xmlNewNodeEatName'/>
-        </word>
-        <word name='xmlNewDocPI'>
-          <ref name='xmlNewPI'/>
-        </word>
-        <word name='xmlNewDocRawNode'>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-        </word>
-        <word name='xmlNewDocText'>
-          <ref name='xmlNewText'/>
-        </word>
-        <word name='xmlNewDocTextLen'>
-          <ref name='xmlNewTextLen'/>
-        </word>
-        <word name='xmlNewMutex'>
-          <ref name='xmlNewMutex'/>
-        </word>
-        <word name='xmlNewNode'>
-          <ref name='xmlNewNodeEatName'/>
-        </word>
-        <word name='xmlNewProp'>
-          <ref name='xmlNewDocProp'/>
-        </word>
-        <word name='xmlNewTextChild'>
-          <ref name='xmlNewChild'/>
-          <ref name='xmlNewTextChild'/>
-        </word>
-        <word name='xmlNewTextWriter'>
-          <ref name='xmlNewTextWriter'/>
-          <ref name='xmlNewTextWriterDoc'/>
-          <ref name='xmlNewTextWriterFilename'/>
-          <ref name='xmlNewTextWriterMemory'/>
-          <ref name='xmlNewTextWriterPushParser'/>
-          <ref name='xmlNewTextWriterTree'/>
-        </word>
-        <word name='xmlNodeDumpOutput'>
-          <ref name='xmlNodeDump'/>
-        </word>
-        <word name='xmlNodeListGetString'>
-          <ref name='xmlNodeListGetRawString'/>
-        </word>
-        <word name='xmlNodePtr'>
-          <ref name='xmlCopyNode'/>
-          <ref name='xmlCopyNodeList'/>
-          <ref name='xmlDocCopyNode'/>
-          <ref name='xmlDocCopyNodeList'/>
-          <ref name='xmlDocGetRootElement'/>
-          <ref name='xmlNewTextWriterTree'/>
-          <ref name='xmlTextReaderCurrentNode'/>
-          <ref name='xmlTextReaderPreserve'/>
-          <ref name='xmlXPathNodeSetAdd'/>
-          <ref name='xmlXPathNodeSetAddUnique'/>
-          <ref name='xmlXPathNodeSetCreate'/>
-          <ref name='xmlXPathNodeSetDel'/>
-          <ref name='xmlXPathNodeSetItem'/>
-          <ref name='xmlXPtrBuildNodeList'/>
-        </word>
-        <word name='xmlNodeSetContent'>
-          <ref name='xmlNodeAddContent'/>
-        </word>
-        <word name='xmlNodeSetContentLen'>
-          <ref name='xmlNodeAddContentLen'/>
-        </word>
-        <word name='xmlNodeSetPtr'>
-          <ref name='xmlXPathFreeNodeSet'/>
-          <ref name='xmlXPathNodeSetCreate'/>
-        </word>
-        <word name='xmlNotationPtr'>
-          <ref name='xmlGetDtdNotationDesc'/>
-        </word>
-        <word name='xmlNotationTablePtr'>
-          <ref name='xmlCopyNotationTable'/>
-        </word>
-        <word name='xmlNs'>
-          <ref name='xmlDOMWrapAcquireNsFunction'/>
-        </word>
-        <word name='xmlNsPtr'>
-          <ref name='_xmlDOMWrapCtxt'/>
-          <ref name='getNamespace'/>
-          <ref name='xmlCopyNamespace'/>
-          <ref name='xmlCopyNamespaceList'/>
-          <ref name='xmlDOMWrapAcquireNsFunction'/>
-          <ref name='xmlGetNsList'/>
-        </word>
-        <word name='xmlOutputBuffer'>
-          <ref name='LIBXML2_NEW_BUFFER'/>
-        </word>
-        <word name='xmlOutputBufferClose'>
-          <ref name='xmlSaveFileTo'/>
-          <ref name='xmlSaveFormatFileTo'/>
-        </word>
-        <word name='xmlOutputBufferPtr'>
-          <ref name='xmlNewTextWriter'/>
-          <ref name='xmlOutputBufferCreateFilenameFunc'/>
-          <ref name='xmlOutputBufferGetContent'/>
-          <ref name='xmlOutputBufferGetSize'/>
-        </word>
-        <word name='xmlOutputCloseCallback'>
-          <ref name='xmlRegisterOutputCallbacks'/>
-        </word>
-        <word name='xmlOutputMatchCallback'>
-          <ref name='xmlRegisterOutputCallbacks'/>
-        </word>
-        <word name='xmlOutputOpenCallback'>
-          <ref name='xmlRegisterOutputCallbacks'/>
-        </word>
-        <word name='xmlOutputWriteCallback'>
-          <ref name='xmlRegisterOutputCallbacks'/>
-        </word>
-        <word name='xmlParseAttValue'>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='xmlParseChunk'>
-          <ref name='xmlCreatePushParserCtxt'/>
-        </word>
-        <word name='xmlParseElementContentDecl'>
-          <ref name='xmlParseElementChildrenContentDecl'/>
-          <ref name='xmlParseElementMixedContentDecl'/>
-        </word>
-        <word name='xmlParseElementDecl'>
-          <ref name='xmlParseElementContentDecl'/>
-        </word>
-        <word name='xmlParseExternalID'>
-          <ref name='xmlParseNotationDecl'/>
-        </word>
-        <word name='xmlParseFile'>
-          <ref name='xmlParseCatalogFile'/>
-        </word>
-        <word name='xmlParseNamespace:'>
-          <ref name='xmlParseNamespace'/>
-        </word>
-        <word name='xmlParseURI'>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='xmlParserCtxtPtr'>
-          <ref name='xmlNewParserCtxt'/>
-          <ref name='xmlNewTextWriterPushParser'/>
-        </word>
-        <word name='xmlParserError'>
-          <ref name='_xmlError'/>
-        </word>
-        <word name='xmlParserErrors'>
-          <ref name='htmlParseChunk'/>
-          <ref name='xmlParseChunk'/>
-        </word>
-        <word name='xmlParserFindNodeInfoIndex'>
-          <ref name='xmlParserFindNodeInfoIndex'/>
-        </word>
-        <word name='xmlParserHandleReference'>
-          <ref name='xmlScanName'/>
-        </word>
-        <word name='xmlParserInputBuffer'>
-          <ref name='LIBXML2_NEW_BUFFER'/>
-        </word>
-        <word name='xmlParserInputBufferPtr'>
-          <ref name='xmlNewTextReader'/>
-          <ref name='xmlParserInputBufferCreateFilenameFunc'/>
-          <ref name='xmlTextReaderGetRemainder'/>
-          <ref name='xmlTextReaderSetup'/>
-        </word>
-        <word name='xmlParserInputPtr'>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlFreeInputStream'/>
-          <ref name='xmlLoadExternalEntity'/>
-          <ref name='xmlNoNetExternalEntityLoader'/>
-          <ref name='xmlParserPrintFileContext'/>
-          <ref name='xmlParserPrintFileInfo'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-        </word>
-        <word name='xmlParserNodeInfo'>
-          <ref name='xmlParserFindNodeInfo'/>
-        </word>
-        <word name='xmlParserProperties'>
-          <ref name='xmlTextReaderGetParserProp'/>
-          <ref name='xmlTextReaderSetParserProp'/>
-        </word>
-        <word name='xmlPattern'>
-          <ref name='LIBXML_PATTERN_ENABLED'/>
-        </word>
-        <word name='xmlPatternFlags'>
-          <ref name='xmlPatterncompile'/>
-        </word>
-        <word name='xmlPatternGetStreamCtxt'>
-          <ref name='xmlPatternStreamable'/>
-        </word>
-        <word name='xmlPatterncompile'>
-          <ref name='xmlStreamPush'/>
-          <ref name='xmlStreamPushAttr'/>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='xmlPopInput:'>
-          <ref name='xmlPopInput'/>
-        </word>
-        <word name='xmlPushInput:'>
-          <ref name='xmlPushInput'/>
-        </word>
-        <word name='xmlRFreeMutex'>
-          <ref name='xmlFreeRMutex'/>
-        </word>
-        <word name='xmlRMutexLock'>
-          <ref name='xmlRMutexLock'/>
-        </word>
-        <word name='xmlRMutexUnlock'>
-          <ref name='xmlRMutexUnlock'/>
-        </word>
-        <word name='xmlRNewMutex'>
-          <ref name='xmlNewRMutex'/>
-        </word>
-        <word name='xmlReader'>
-          <ref name='LIBXML_READER_ENABLED'/>
-        </word>
-        <word name='xmlReaderTypes'>
-          <ref name='xmlTextReaderNodeType'/>
-        </word>
-        <word name='xmlReconciliateNs'>
-          <ref name='xmlAddChild'/>
-        </word>
-        <word name='xmlRefPtr'>
-          <ref name='xmlAddRef'/>
-        </word>
-        <word name='xmlRelaxNGParserFlag'>
-          <ref name='xmlRelaxParserSetFlag'/>
-        </word>
-        <word name='xmlRelaxNGValidatePushElement'>
-          <ref name='xmlRelaxNGValidateFullElement'/>
-        </word>
-        <word name='xmlSAX2Attribute'>
-          <ref name='attribute'/>
-        </word>
-        <word name='xmlSAX2AttributeDecl'>
-          <ref name='attributeDecl'/>
-        </word>
-        <word name='xmlSAX2CDataBlock'>
-          <ref name='cdataBlock'/>
-        </word>
-        <word name='xmlSAX2Characters'>
-          <ref name='characters'/>
-          <ref name='xmlSAX2IgnorableWhitespace'/>
-        </word>
-        <word name='xmlSAX2Comment'>
-          <ref name='comment'/>
-          <ref name='xmlSAX2Comment'/>
-        </word>
-        <word name='xmlSAX2ElementDecl'>
-          <ref name='elementDecl'/>
-        </word>
-        <word name='xmlSAX2EndDocument'>
-          <ref name='endDocument'/>
-        </word>
-        <word name='xmlSAX2EndElement'>
-          <ref name='endElement'/>
-        </word>
-        <word name='xmlSAX2EntityDecl'>
-          <ref name='entityDecl'/>
-        </word>
-        <word name='xmlSAX2ExternalSubset'>
-          <ref name='externalSubset'/>
-        </word>
-        <word name='xmlSAX2GetColumnNumber'>
-          <ref name='getColumnNumber'/>
-        </word>
-        <word name='xmlSAX2GetEntity'>
-          <ref name='getEntity'/>
-        </word>
-        <word name='xmlSAX2GetLineNumber'>
-          <ref name='getLineNumber'/>
-        </word>
-        <word name='xmlSAX2GetParameterEntity'>
-          <ref name='getParameterEntity'/>
-        </word>
-        <word name='xmlSAX2GetPublicId'>
-          <ref name='getPublicId'/>
-        </word>
-        <word name='xmlSAX2GetSystemId'>
-          <ref name='getSystemId'/>
-        </word>
-        <word name='xmlSAX2HasExternalSubset'>
-          <ref name='hasExternalSubset'/>
-        </word>
-        <word name='xmlSAX2HasInternalSubset'>
-          <ref name='hasInternalSubset'/>
-        </word>
-        <word name='xmlSAX2IgnorableWhitespace'>
-          <ref name='ignorableWhitespace'/>
-          <ref name='xmlKeepBlanksDefault'/>
-        </word>
-        <word name='xmlSAX2InitDefaultSAXHandler'>
-          <ref name='initxmlDefaultSAXHandler'/>
-        </word>
-        <word name='xmlSAX2InitHtmlDefaultSAXHandler'>
-          <ref name='inithtmlDefaultSAXHandler'/>
-        </word>
-        <word name='xmlSAX2InternalSubset'>
-          <ref name='internalSubset'/>
-        </word>
-        <word name='xmlSAX2IsStandalone'>
-          <ref name='isStandalone'/>
-        </word>
-        <word name='xmlSAX2NotationDecl'>
-          <ref name='notationDecl'/>
-        </word>
-        <word name='xmlSAX2ProcessingInstruction'>
-          <ref name='processingInstruction'/>
-        </word>
-        <word name='xmlSAX2Reference'>
-          <ref name='reference'/>
-          <ref name='xmlSAX2Reference'/>
-        </word>
-        <word name='xmlSAX2ResolveEntity'>
-          <ref name='resolveEntity'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-        </word>
-        <word name='xmlSAX2StartDocument'>
-          <ref name='startDocument'/>
-        </word>
-        <word name='xmlSAX2StartElement'>
-          <ref name='startElement'/>
-        </word>
-        <word name='xmlSAX2UnparsedEntityDecl'>
-          <ref name='unparsedEntityDecl'/>
-        </word>
-        <word name='xmlSAXHandlerPtr'>
-          <ref name='xmlSchemaSAXPlug'/>
-        </word>
-        <word name='xmlSAXVersion'>
-          <ref name='xmlSAXDefaultVersion'/>
-        </word>
-        <word name='xmlSaveOptions'>
-          <ref name='xmlSaveToBuffer'/>
-          <ref name='xmlSaveToFd'/>
-          <ref name='xmlSaveToFilename'/>
-          <ref name='xmlSaveToIO'/>
-        </word>
-        <word name='xmlSchemaSAXPlug'>
-          <ref name='xmlSchemaSAXUnplug'/>
-        </word>
-        <word name='xmlSchemaValType'>
-          <ref name='xmlSchemaGetValType'/>
-        </word>
-        <word name='xmlSchemaValidOption'>
-          <ref name='xmlSchemaSetValidOptions'/>
-        </word>
-        <word name='xmlSchematronValidOptions'>
-          <ref name='xmlSchematronNewValidCtxt'/>
-        </word>
-        <word name='xmlSetExternalEntityLoader'>
-          <ref name='resolveEntity'/>
-          <ref name='resolveEntitySAXFunc'/>
-          <ref name='xmlSAX2ResolveEntity'/>
-        </word>
-        <word name='xmlSnprintfElementContent'>
-          <ref name='xmlSprintfElementContent'/>
-        </word>
-        <word name='xmlStrcmp'>
-          <ref name='xmlStrEqual'/>
-        </word>
-        <word name='xmlStrdup'>
-          <ref name='xmlNewNode'/>
-        </word>
-        <word name='xmlStreamPush'>
-          <ref name='xmlStreamPushNode'/>
-        </word>
-        <word name='xmlStringDecodeEntities'>
-          <ref name='xmlDecodeEntities'/>
-        </word>
-        <word name='xmlStringGetNodeList'>
-          <ref name='xmlParseAttValue'/>
-        </word>
-        <word name='xmlStrncat'>
-          <ref name='xmlStrncatNew'/>
-        </word>
-        <word name='xmlStrncmp'>
-          <ref name='xmlUTF8Charcmp'/>
-        </word>
-        <word name='xmlSwitchToEncoding'>
-          <ref name='xmlSwitchInputEncoding'/>
-        </word>
-        <word name='xmlTextReader'>
-          <ref name='xmlNewTextReader'/>
-          <ref name='xmlNewTextReaderFilename'/>
-          <ref name='xmlReaderNewDoc'/>
-          <ref name='xmlReaderNewFd'/>
-          <ref name='xmlReaderNewFile'/>
-          <ref name='xmlReaderNewIO'/>
-          <ref name='xmlReaderNewMemory'/>
-          <ref name='xmlReaderNewWalker'/>
-          <ref name='xmlTextReaderCurrentDoc'/>
-          <ref name='xmlTextReaderCurrentNode'/>
-        </word>
-        <word name='xmlTextReaderCurrentDoc'>
-          <ref name='xmlTextReaderPreserve'/>
-          <ref name='xmlTextReaderPreservePattern'/>
-        </word>
-        <word name='xmlTextReaderLocatorPtr'>
-          <ref name='xmlTextReaderLocatorBaseURI'/>
-          <ref name='xmlTextReaderLocatorLineNumber'/>
-        </word>
-        <word name='xmlTextReaderRead'>
-          <ref name='xmlTextReaderExpand'/>
-        </word>
-        <word name='xmlTextWriterStartDTDEntity'>
-          <ref name='xmlTextWriterWriteDTDExternalEntity'/>
-        </word>
-        <word name='xmlTextWriterWriteDTD'>
-          <ref name='xmlTextWriterWriteDocType'/>
-        </word>
-        <word name='xmlTextWriterWritePI'>
-          <ref name='xmlTextWriterWriteProcessingInstruction'/>
-        </word>
-        <word name='xmlURI'>
-          <ref name='xmlCreateURI'/>
-          <ref name='xmlFreeURI'/>
-          <ref name='xmlPrintURI'/>
-          <ref name='xmlSaveUri'/>
-        </word>
-        <word name='xmlURIEscapeStr'>
-          <ref name='xmlURIEscape'/>
-        </word>
-        <word name='xmlURIFromPath'>
-          <ref name='xmlNormalizeWindowsPath'/>
-        </word>
-        <word name='xmlURIPtr'>
-          <ref name='xmlParseURI'/>
-          <ref name='xmlParseURIRaw'/>
-        </word>
-        <word name='xmlUnlinkNode'>
-          <ref name='xmlDocSetRootElement'/>
-          <ref name='xmlFreeNode'/>
-        </word>
-        <word name='xmlUnlockLibrary'>
-          <ref name='xmlUnlockLibrary'/>
-        </word>
-        <word name='xmlValidCtxtPtr'>
-          <ref name='xmlValidityErrorFunc'/>
-          <ref name='xmlValidityWarningFunc'/>
-        </word>
-        <word name='xmlValidGetValidElements'>
-          <ref name='xmlValidGetValidElements'/>
-        </word>
-        <word name='xmlValidateAttributeDecl'>
-          <ref name='xmlParseDefaultDecl'/>
-        </word>
-        <word name='xmlValidateAttributeValue'>
-          <ref name='xmlParseAttributeType'/>
-        </word>
-        <word name='xmlValidateDtdFinal'>
-          <ref name='XML_VCTXT_DTD_VALIDATED'/>
-        </word>
-        <word name='xmlValidateOneAttribute'>
-          <ref name='xmlValidateOneElement'/>
-        </word>
-        <word name='xmlWriter'>
-          <ref name='LIBXML_WRITER_ENABLED'/>
-        </word>
-        <word name='xmlXPathCheckError'>
-          <ref name='xmlXPathPopBoolean'/>
-          <ref name='xmlXPathPopExternal'/>
-          <ref name='xmlXPathPopNodeSet'/>
-          <ref name='xmlXPathPopNumber'/>
-          <ref name='xmlXPathPopString'/>
-        </word>
-        <word name='xmlXPathCompExprPtr'>
-          <ref name='xmlXPathCompile'/>
-          <ref name='xmlXPathCtxtCompile'/>
-        </word>
-        <word name='xmlXPathContext'>
-          <ref name='xmlXPathFreeContext'/>
-          <ref name='xmlXPathNewContext'/>
-          <ref name='xmlXPtrNewContext'/>
-        </word>
-        <word name='xmlXPathError'>
-          <ref name='err'/>
-        </word>
-        <word name='xmlXPathEval'>
-          <ref name='xmlXPathEvalExpression'/>
-        </word>
-        <word name='xmlXPathEvalPredicate'>
-          <ref name='xmlXPtrEvalRangePredicate'/>
-        </word>
-        <word name='xmlXPathFreeObject'>
-          <ref name='xmlXPathFreeNodeSetList'/>
-        </word>
-        <word name='xmlXPathFunction'>
-          <ref name='xmlXPathFunctionLookup'/>
-          <ref name='xmlXPathFunctionLookupNS'/>
-        </word>
-        <word name='xmlXPathNodeTrailingSorted'>
-          <ref name='xmlXPathNodeTrailing'/>
-        </word>
-        <word name='xmlXPathObject'>
-          <ref name='xmlXPathContextSetCache'/>
-        </word>
-        <word name='xmlXPathObjectPtr'>
-          <ref name='xmlXPathCompiledEval'/>
-          <ref name='xmlXPathEval'/>
-          <ref name='xmlXPathEvalExpression'/>
-          <ref name='xmlXPathFreeNodeSetList'/>
-          <ref name='xmlXPathFreeObject'/>
-          <ref name='xmlXPathNewBoolean'/>
-          <ref name='xmlXPathNewCString'/>
-          <ref name='xmlXPathNewFloat'/>
-          <ref name='xmlXPathNewNodeSet'/>
-          <ref name='xmlXPathNewNodeSetList'/>
-          <ref name='xmlXPathNewString'/>
-          <ref name='xmlXPathNewValueTree'/>
-          <ref name='xmlXPathNodeEval'/>
-          <ref name='xmlXPathWrapNodeSet'/>
-          <ref name='xmlXPtrEval'/>
-          <ref name='xmlXPtrLocationSetAdd'/>
-          <ref name='xmlXPtrLocationSetCreate'/>
-          <ref name='xmlXPtrLocationSetDel'/>
-          <ref name='xmlXPtrNewCollapsedRange'/>
-          <ref name='xmlXPtrNewLocationSetNodeSet'/>
-          <ref name='xmlXPtrNewLocationSetNodes'/>
-          <ref name='xmlXPtrNewRange'/>
-          <ref name='xmlXPtrNewRangeNodeObject'/>
-          <ref name='xmlXPtrNewRangeNodePoint'/>
-          <ref name='xmlXPtrNewRangeNodes'/>
-          <ref name='xmlXPtrNewRangePointNode'/>
-          <ref name='xmlXPtrNewRangePoints'/>
-          <ref name='xmlXPtrWrapLocationSet'/>
-        </word>
-        <word name='xmlXPathParserContext'>
-          <ref name='xmlXPathFreeParserContext'/>
-          <ref name='xmlXPathNewParserContext'/>
-        </word>
-        <word name='xmlXPathTrailingSorted'>
-          <ref name='xmlXPathTrailing'/>
-        </word>
-        <word name='xmlns'>
-          <ref name='xmlNamespaceParseNSDef'/>
-        </word>
-        <word name='xmlns:???'>
-          <ref name='xmlParseAttribute'/>
-        </word>
-        <word name='xmltextReader'>
-          <ref name='xmlReaderForDoc'/>
-          <ref name='xmlReaderForFd'/>
-          <ref name='xmlReaderForIO'/>
-          <ref name='xmlReaderForMemory'/>
-          <ref name='xmlReaderNewDoc'/>
-          <ref name='xmlReaderNewFd'/>
-          <ref name='xmlReaderNewIO'/>
-          <ref name='xmlReaderNewMemory'/>
-          <ref name='xmlReaderNewWalker'/>
-          <ref name='xmlReaderWalker'/>
-        </word>
-        <word name='xpath'>
-          <ref name='xmlShellPrintXPathError'/>
-          <ref name='xmlShellPrintXPathResult'/>
-          <ref name='xmlXPtrRangeToFunction'/>
-        </word>
-        <word name='xpointer'>
-          <ref name='XINCLUDE_PARSE_XPOINTER'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunk name='chunk29'>
-      <letter name='y'>
-        <word name='year'>
-          <ref name='ftpListCallback'/>
-        </word>
-        <word name='yes'>
-          <ref name='_xmlDoc'/>
-          <ref name='xmlInputMatchCallback'/>
-          <ref name='xmlIsBlankNode'/>
-          <ref name='xmlIsMixedElement'/>
-          <ref name='xmlNodeIsText'/>
-          <ref name='xmlOutputMatchCallback'/>
-          <ref name='xmlParseEntityRef'/>
-          <ref name='xmlParsePEReference'/>
-          <ref name='xmlParseSDDecl'/>
-          <ref name='xmlParserHandlePEReference'/>
-          <ref name='xmlRegexpIsDeterminist'/>
-          <ref name='xmlTextWriterStartDocument'/>
-        </word>
-        <word name='yet'>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlModuleOpen'/>
-          <ref name='xmlSaveDoc'/>
-          <ref name='xmlSaveTree'/>
-          <ref name='xmlSchemaGetCanonValue'/>
-          <ref name='xmlSchemaGetCanonValueWhtsp'/>
-          <ref name='xmlTextReaderRelaxNGValidateCtxt'/>
-          <ref name='xmlTextReaderSchemaValidateCtxt'/>
-        </word>
-        <word name='you'>
-          <ref name='xmlAddChild'/>
-          <ref name='xmlCleanupCharEncodingHandlers'/>
-          <ref name='xmlCleanupGlobals'/>
-          <ref name='xmlCleanupMemory'/>
-          <ref name='xmlCleanupThreads'/>
-          <ref name='xmlDOMWrapAdoptNode'/>
-          <ref name='xmlDOMWrapCloneNode'/>
-          <ref name='xmlDictCleanup'/>
-          <ref name='xmlNewDocNode'/>
-          <ref name='xmlNewDocNodeEatName'/>
-          <ref name='xmlNewDocProp'/>
-          <ref name='xmlNewTextChild'/>
-          <ref name='xmlRelaxNGCleanupTypes'/>
-          <ref name='xmlSchemaCleanupTypes'/>
-          <ref name='xmlSchemaGetBuiltInType'/>
-          <ref name='xmlSearchNs'/>
-        </word>
-        <word name='your'>
-          <ref name='xmlCleanupParser'/>
-          <ref name='xmlCleanupThreads'/>
-        </word>
-      </letter>
-      <letter name='z'>
-        <word name='zero'>
-          <ref name='htmlCtxtReadDoc'/>
-          <ref name='htmlEncodeEntities'/>
-          <ref name='htmlParseChunk'/>
-          <ref name='htmlReadDoc'/>
-          <ref name='xmlBufferCCat'/>
-          <ref name='xmlBufferCat'/>
-          <ref name='xmlByteConsumed'/>
-          <ref name='xmlCopyDoc'/>
-          <ref name='xmlCtxtReadDoc'/>
-          <ref name='xmlDocDumpMemory'/>
-          <ref name='xmlHasFeature'/>
-          <ref name='xmlOutputBufferWriteEscape'/>
-          <ref name='xmlOutputBufferWriteString'/>
-          <ref name='xmlParseBalancedChunkMemory'/>
-          <ref name='xmlParseBalancedChunkMemoryRecover'/>
-          <ref name='xmlParseChunk'/>
-          <ref name='xmlReadDoc'/>
-          <ref name='xmlReaderForDoc'/>
-          <ref name='xmlReaderNewDoc'/>
-          <ref name='xmlStrdupFunc'/>
-          <ref name='xmlStrsub'/>
-          <ref name='xmlXPathBooleanFunction'/>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='zero-based'>
-          <ref name='xmlTextReaderGetAttributeNo'/>
-          <ref name='xmlTextReaderMoveToAttributeNo'/>
-        </word>
-        <word name='zeros'>
-          <ref name='xmlXPathStringFunction'/>
-        </word>
-        <word name='zlib'>
-          <ref name='_xmlDoc'/>
-          <ref name='xmlC14NDocSave'/>
-        </word>
-      </letter>
-    </chunk>
-    <chunks>
-      <chunk name='chunk0' start='A' end='B'/>
-      <chunk name='chunk1' start='C' end='C'/>
-      <chunk name='chunk2' start='D' end='E'/>
-      <chunk name='chunk3' start='F' end='I'/>
-      <chunk name='chunk4' start='J' end='N'/>
-      <chunk name='chunk5' start='O' end='P'/>
-      <chunk name='chunk6' start='Q' end='R'/>
-      <chunk name='chunk7' start='S' end='S'/>
-      <chunk name='chunk8' start='T' end='U'/>
-      <chunk name='chunk9' start='V' end='X'/>
-      <chunk name='chunk10' start='Y' end='a'/>
-      <chunk name='chunk11' start='b' end='b'/>
-      <chunk name='chunk12' start='c' end='c'/>
-      <chunk name='chunk13' start='d' end='d'/>
-      <chunk name='chunk14' start='e' end='e'/>
-      <chunk name='chunk15' start='f' end='f'/>
-      <chunk name='chunk16' start='g' end='h'/>
-      <chunk name='chunk17' start='i' end='i'/>
-      <chunk name='chunk18' start='j' end='l'/>
-      <chunk name='chunk19' start='m' end='m'/>
-      <chunk name='chunk20' start='n' end='n'/>
-      <chunk name='chunk21' start='o' end='o'/>
-      <chunk name='chunk22' start='p' end='p'/>
-      <chunk name='chunk23' start='q' end='r'/>
-      <chunk name='chunk24' start='s' end='s'/>
-      <chunk name='chunk25' start='t' end='t'/>
-      <chunk name='chunk26' start='u' end='v'/>
-      <chunk name='chunk27' start='w' end='w'/>
-      <chunk name='chunk28' start='x' end='x'/>
-      <chunk name='chunk29' start='y' end='z'/>
-    </chunks>
-  </index>
-</apirefs>
index e660b0a..93f031b 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -15359,22 +15359,10 @@ xmlDocPtr
 xmlCtxtReadDoc(xmlParserCtxtPtr ctxt, const xmlChar * cur,
                const char *URL, const char *encoding, int options)
 {
-    xmlParserInputPtr stream;
-
     if (cur == NULL)
         return (NULL);
-    if (ctxt == NULL)
-        return (NULL);
-    xmlInitParser();
-
-    xmlCtxtReset(ctxt);
-
-    stream = xmlNewStringInputStream(ctxt, cur);
-    if (stream == NULL) {
-        return (NULL);
-    }
-    inputPush(ctxt, stream);
-    return (xmlDoRead(ctxt, URL, encoding, options, 1));
+    return (xmlCtxtReadMemory(ctxt, (const char *) cur, xmlStrlen(cur), URL,
+                              encoding, options));
 }
 
 /**