├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTORS.md ├── LICENSE ├── Makefile ├── README.md ├── cJSON.c ├── cJSON.h ├── cJSONConfig.cmake.in ├── cJSONConfigVersion.cmake.in ├── cJSON_Utils.c ├── cJSON_Utils.h ├── libcjson.pc.in ├── libcjson_utils.pc.in ├── test.c ├── test_utils.c └── tests ├── test1 ├── test2 ├── test3 ├── test4 ├── test5 └── test6 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/README.md -------------------------------------------------------------------------------- /cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/cJSON.c -------------------------------------------------------------------------------- /cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/cJSON.h -------------------------------------------------------------------------------- /cJSONConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/cJSONConfig.cmake.in -------------------------------------------------------------------------------- /cJSONConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/cJSONConfigVersion.cmake.in -------------------------------------------------------------------------------- /cJSON_Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/cJSON_Utils.c -------------------------------------------------------------------------------- /cJSON_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/cJSON_Utils.h -------------------------------------------------------------------------------- /libcjson.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/libcjson.pc.in -------------------------------------------------------------------------------- /libcjson_utils.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/libcjson_utils.pc.in -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/test.c -------------------------------------------------------------------------------- /test_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/test_utils.c -------------------------------------------------------------------------------- /tests/test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/tests/test1 -------------------------------------------------------------------------------- /tests/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/tests/test2 -------------------------------------------------------------------------------- /tests/test3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/tests/test3 -------------------------------------------------------------------------------- /tests/test4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/tests/test4 -------------------------------------------------------------------------------- /tests/test5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/tests/test5 -------------------------------------------------------------------------------- /tests/test6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbranigan/cJSON/HEAD/tests/test6 --------------------------------------------------------------------------------