1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- '\" t
- .\" Title: ne_xml_create
- .\" Author:
- .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
- .\" Date: 15 April 2025
- .\" Manual: neon API reference
- .\" Source: neon 0.34.2
- .\" Language: English
- .\"
- .TH "NE_XML_CREATE" "3" "15 April 2025" "neon 0.34.2" "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 "COPYRIGHT"
- .br
- Copyright \(co 2001-2024 Joe Orton
- .br
|