4 Libtreestore is a simple C library for reading/writing hierarchical data in a
5 json-like text format, or a chunk-based binary format.
7 A better way to describe the text format is like XML without the CDATA, and with
8 curly braces instead of tags:
12 some_attribute = "some_string_value"
13 some_numeric_attrib = 10
14 vector_attrib = [255, 128, 0]
15 array_attrib = ["tom", "dick", "harry"]
17 # you can have multiple nodes with the same name
19 childattr = "whatever"
22 another_childattr = "xyzzy"
29 Copyright (C) 2016 John Tsiombikas <nuclear@member.fsf.org>
31 Libtreestore is free software. Feel free to use, modify, and/or redistribute
32 it, under the terms of the MIT/X11 license. See LICENSE for detauls.
36 At the moment only the text format has been implemented.