mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-13 23:35:30 +00:00
6a062afd64
Tweek look-n-feel. Fix comment editing. Use format_text() for comments, too.
59 lines
2.3 KiB
HTML
59 lines
2.3 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>Mini-XML Programmers Manual, Version 2.0</TITLE>
|
|
<META NAME="author" CONTENT="Michael Sweet">
|
|
<META NAME="copyright" CONTENT="Copyright 2003-2004">
|
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=iso-iso-8859-1">
|
|
<LINK REL="Start" HREF="index.html">
|
|
<LINK REL="Contents" HREF="toc.html">
|
|
<LINK REL="Next" HREF="LegalStuff.html">
|
|
<STYLE TYPE="text/css"><!--
|
|
BODY { font-family: serif }
|
|
H1 { font-family: sans-serif }
|
|
H2 { font-family: sans-serif }
|
|
H3 { font-family: sans-serif }
|
|
H4 { font-family: sans-serif }
|
|
H5 { font-family: sans-serif }
|
|
H6 { font-family: sans-serif }
|
|
SUB { font-size: smaller }
|
|
SUP { font-size: smaller }
|
|
PRE { font-family: monospace }
|
|
--></STYLE>
|
|
</HEAD>
|
|
<BODY>
|
|
<A HREF="toc.html">Contents</A>
|
|
<A HREF="LegalStuff.html">Next</A>
|
|
<HR NOSHADE>
|
|
<H1 align="right"><A name="INTRO">Introduction</A></H1>
|
|
<P>This programmers manual describes Mini-XML version 2.0, a small XML
|
|
parsing library that you can use to read and write XML and XML-like
|
|
data files in your application without requiring large non-standard
|
|
libraries. Mini-XML only requires an ANSI C compatible compiler (GCC
|
|
works, as do most vendors' ANSI C compilers) and a "make" program.</P>
|
|
<P>Mini-XML provides the following functionality:</P>
|
|
<UL>
|
|
<LI>Reading of UTF-8 and UTF-16 encoded XML files and strings.</LI>
|
|
<LI>Writing of UTF-8 encoded XML files and strings.</LI>
|
|
<LI>Data is stored in a linked-list tree structure, preserving the XML
|
|
data hierarchy.</LI>
|
|
<LI>Supports arbitrary element names, attributes, and attribute values
|
|
with no preset limits, just available memory.</LI>
|
|
<LI>Supports integer, real, opaque ("cdata"), and text data types in
|
|
"leaf" nodes.</LI>
|
|
<LI>Functions for creating and managing trees of data.</LI>
|
|
<LI>"Find" and "walk" functions for easily locating and navigating trees
|
|
of data.</LI>
|
|
</UL>
|
|
<P>Mini-XML doesn't do validation or other types of processing on the
|
|
data based upon schema files or other sources of definition
|
|
information, nor does it support character entities other than those
|
|
required by the XML specification.</P>
|
|
|
|
<!-- NEED 4in -->
|
|
<HR NOSHADE>
|
|
<A HREF="toc.html">Contents</A>
|
|
<A HREF="LegalStuff.html">Next</A>
|
|
</BODY>
|
|
</HTML>
|