File: xml.xml

package info (click to toggle)
neon27 0.36.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 2,836 kB
  • sloc: ansic: 27,754; xml: 4,634; makefile: 629; sh: 328
file content (56 lines) | stat: -rw-r--r-- 1,355 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<refentry id="refxml">

  <refmeta>
    <refentrytitle>ne_xml_create</refentrytitle>
    <manvolnum>3</manvolnum>
  </refmeta>

  <refnamediv>
    <refname id="ne_xml_create">ne_xml_create</refname>
    <refname id="ne_xml_destroy">ne_xml_destroy</refname>
    <refpurpose>create and destroy an XML parser</refpurpose>
  </refnamediv>
  
  <refsynopsisdiv>

    <funcsynopsis>

      <funcsynopsisinfo>#include &lt;ne_xml.h&gt;</funcsynopsisinfo>

      <funcprototype>
        <funcdef>ne_xml_parser *<function>ne_xml_create</function></funcdef>
        <void/>
      </funcprototype>

      <funcprototype>
        <funcdef>void <function>ne_xml_destroy</function></funcdef>
        <paramdef>ne_xml_parser *<parameter>parser</parameter></paramdef>
      </funcprototype>

    </funcsynopsis>

  </refsynopsisdiv>

  <refsect1>
    <title>Description</title>

    <para>The <function>ne_xml_create</function> function creates an
    XML parser object, which can be used for parsing XML documents
    using stacked SAX handlers.</para>

  </refsect1>

  <refsect1>
    <title>Return value</title>

    <para><function>ne_xml_create</function> returns a pointer to an
    XML parser object, and never &null;</para> </refsect1>

  <refsect1>
    <title>See also</title>

    <para><xref linkend="ne_xml_parse_response"/></para>
  </refsect1>

</refentry>