X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=libs%2Ftreestore%2FREADME.md;fp=libs%2Ftreestore%2FREADME.md;h=0000000000000000000000000000000000000000;hb=6bdfcf4ad3daddcd9d689deb15798403c89ce42b;hp=f75efa9e8541166568f125658cc22c88f173a2f9;hpb=820efe0e275409090089fec7c2a7d2997f04c6d7;p=andemo diff --git a/libs/treestore/README.md b/libs/treestore/README.md deleted file mode 100644 index f75efa9..0000000 --- a/libs/treestore/README.md +++ /dev/null @@ -1,38 +0,0 @@ -libtreestore -============ - -Libtreestore is a simple C library for reading/writing hierarchical data in a -json-like text format, or a chunk-based binary format. - -A better way to describe the text format is like XML without the CDATA, and with -curly braces instead of tags: - -``` -rootnode { - some_attribute = "some_string_value" - some_numeric_attrib = 10 - vector_attrib = [255, 128, 0] - array_attrib = ["tom", "dick", "harry"] - - # you can have multiple nodes with the same name - childnode { - childattr = "whatever" - } - childnode { - another_childattr = "xyzzy" - } -} -``` - -License -------- -Copyright (C) 2016-2019 John Tsiombikas - -Libtreestore is free software. Feel free to use, modify, and/or redistribute -it, under the terms of the MIT/X11 license. See LICENSE for detauls. - -Issues ------- -At the moment only the text format has been implemented. - -More info soon...