You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
414 B
13 lines
414 B
2 months ago
|
XML Parser
|
||
|
==========
|
||
|
|
||
|
ucw-xml/xml.h
|
||
|
-------------
|
||
|
|
||
|
To parse a document, create a parser context (<<struct_xml_context,struct xml_context>>),
|
||
|
initialize it with <<xml_init()>>, fill in requested parsing mode, pointers to hooks, and
|
||
|
other parameters. Then call <<xml_parse()>> or <<xml_next()>> as you need. At the end, dispose
|
||
|
of the context by <<xml_cleanup()>> or recycle it by <<xml_reset()>>.
|
||
|
|
||
|
!!ucw-xml/xml.h
|