kiss_xml 1.0.4

An easy-to-use minimalist schema-less XML parsing library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<root>
    <books>
        <!-- books are organized by continent -->
        <american>
            <book genre="fantasy" count="2">The Wizard of Oz</book>
            <book genre="sci-fi" count="3">Dune</book>
        </american>
        <asian>
            <book genre="fantasy" count="1">Journey to the West</book>
        </asian>
        <european>
            <book genre="fantasy" count="0">The Lord of the Rings</book>
            <book genre="sci-fi" count="42">The Hitchhiker's Guide to the Galaxy</book>
        </european>
    </books>
</root>