1<refentry id="refxml">
2
3  <refmeta>
4    <refentrytitle>ne_xml_create</refentrytitle>
5    <manvolnum>3</manvolnum>
6  </refmeta>
7
8  <refnamediv>
9    <refname id="ne_xml_create">ne_xml_create</refname>
10    <refname id="ne_xml_destroy">ne_xml_destroy</refname>
11    <refpurpose>create and destroy an XML parser</refpurpose>
12  </refnamediv>
13  
14  <refsynopsisdiv>
15
16    <funcsynopsis>
17
18      <funcsynopsisinfo>#include &lt;ne_xml.h&gt;</funcsynopsisinfo>
19
20      <funcprototype>
21        <funcdef>ne_xml_parser *<function>ne_xml_create</function></funcdef>
22        <void/>
23      </funcprototype>
24
25      <funcprototype>
26        <funcdef>void <function>ne_xml_destroy</function></funcdef>
27        <paramdef>ne_xml_parser *<parameter>parser</parameter></paramdef>
28      </funcprototype>
29
30    </funcsynopsis>
31
32  </refsynopsisdiv>
33
34  <refsect1>
35    <title>Description</title>
36
37    <para>The <function>ne_xml_create</function> function creates an
38    XML parser object, which can be used for parsing XML documents
39    using stacked SAX handlers.</para>
40
41  </refsect1>
42
43  <refsect1>
44    <title>Return value</title>
45
46    <para><function>ne_xml_create</function> returns a pointer to an
47    XML parser object, and never &null;</para> </refsect1>
48
49  <refsect1>
50    <title>See also</title>
51
52    <para>XXX</para>
53  </refsect1>
54
55</refentry>
56
57