123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- '\" t
- .\" Title: ne_xml_create
- .\" Author:
- .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
- .\" Date: 20 September 2021
- .\" Manual: neon API reference
- .\" Source: neon 0.32.1
- .\" Language: English
- .\"
- .TH "NE_XML_CREATE" "3" "20 September 2021" "neon 0.32.1" "neon API reference"
- .\" -----------------------------------------------------------------
- .\" * Define some portability stuff
- .\" -----------------------------------------------------------------
- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- .\" http://bugs.debian.org/507673
- .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- .ie \n(.g .ds Aq \(aq
- .el .ds Aq '
- .\" -----------------------------------------------------------------
- .\" * set default formatting
- .\" -----------------------------------------------------------------
- .\" disable hyphenation
- .nh
- .\" disable justification (adjust text to left margin only)
- .ad l
- .\" -----------------------------------------------------------------
- .\" * MAIN CONTENT STARTS HERE *
- .\" -----------------------------------------------------------------
- .SH "NAME"
- ne_xml_create, ne_xml_destroy \- create and destroy an XML parser
- .SH "SYNOPSIS"
- .sp
- .ft B
- .nf
- #include <ne_xml\&.h>
- .fi
- .ft
- .HP \w'ne_xml_parser\ *ne_xml_create('u
- .BI "ne_xml_parser *ne_xml_create(void);"
- .HP \w'void\ ne_xml_destroy('u
- .BI "void ne_xml_destroy(ne_xml_parser\ *" "parser" ");"
- .SH "DESCRIPTION"
- .PP
- The
- \fBne_xml_create\fR
- function creates an XML parser object, which can be used for parsing XML documents using stacked SAX handlers\&.
- .SH "RETURN VALUE"
- .PP
- \fBne_xml_create\fR
- returns a pointer to an XML parser object, and never
- NULL
- .SH "SEE ALSO"
- .PP
- XXX
- .SH "AUTHOR"
- .PP
- \fBJoe Orton\fR <\&[email protected]\&>
- .RS 4
- Author.
- .RE
- .SH "COPYRIGHT"
- .br
|