wok view mxml/description.txt @ rev 24935

updated mxml and mxml-dev (3.1 -> 3.3)
author Hans-G?nter Theisgen
date Thu Apr 14 07:26:00 2022 +0100 (2022-04-14)
parents
children
line source
1 Mini-XML is a tiny XML library that you can use to read and write XML
2 and XML-like data files in your application without requiring large
3 non-standard libraries.
4 Mini-XML only requires an ANSI C compatible compiler (GCC works, as do
5 most vendors' ANSI C compilers) and a make program.
7 Mini-XML provides the following functionality:
9 - Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files
10 and strings.
11 - Data is stored in a linked-list tree structure, preserving the XML
12 data hierarchy.
13 - SAX (streamed) reading of XML files and strings to minimize memory
14 usage.
15 - Supports arbitrary element names, attributes, and attribute values
16 with no preset limits, just available memory.
17 - Supports integer, real, opaque ("cdata"), and text data types in
18 "leaf" nodes.
19 - Functions for creating and managing trees of data.
20 - "Find" and "walk" functions for easily locating and navigating trees
21 of data.
23 Mini-XML doesn't do validation or other types of processing on the
24 data based upon schema files or other sources of definition information.