├── .gitignore ├── LICENCE ├── README.md ├── src ├── include │ ├── toml.h │ └── tomlvalue.h ├── main.cc ├── toml.cc └── tomlvalue.cc └── test ├── Makefile ├── example.toml ├── hard_example.toml ├── main.cc └── tests.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/README.md -------------------------------------------------------------------------------- /src/include/toml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/src/include/toml.h -------------------------------------------------------------------------------- /src/include/tomlvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/src/include/tomlvalue.h -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/toml.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/src/toml.cc -------------------------------------------------------------------------------- /src/tomlvalue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/src/tomlvalue.cc -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/test/example.toml -------------------------------------------------------------------------------- /test/hard_example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/test/hard_example.toml -------------------------------------------------------------------------------- /test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/test/main.cc -------------------------------------------------------------------------------- /test/tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilncrazy/ctoml/HEAD/test/tests.toml --------------------------------------------------------------------------------