wok annotate mxml/description.txt @ rev 24998

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