gitextract_0me4kfa0/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ └── workflows/ │ ├── CI.yml │ └── ci-fuzz.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTORS.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── appveyor.yml ├── cJSON.c ├── cJSON.h ├── cJSON_Utils.c ├── cJSON_Utils.h ├── fuzzing/ │ ├── .gitignore │ ├── CMakeLists.txt │ ├── afl-prepare-linux.sh │ ├── afl.c │ ├── afl.sh │ ├── cjson_read_fuzzer.c │ ├── fuzz_main.c │ ├── inputs/ │ │ ├── test1 │ │ ├── test10 │ │ ├── test11 │ │ ├── test2 │ │ ├── test3 │ │ ├── test3.bu │ │ ├── test3.uf │ │ ├── test3.uu │ │ ├── test4 │ │ ├── test5 │ │ ├── test6 │ │ ├── test7 │ │ ├── test8 │ │ └── test9 │ ├── json.dict │ └── ossfuzz.sh ├── library_config/ │ ├── cJSONConfig.cmake.in │ ├── cJSONConfigVersion.cmake.in │ ├── libcjson.pc.in │ ├── libcjson_utils.pc.in │ └── uninstall.cmake ├── test.c ├── tests/ │ ├── CMakeLists.txt │ ├── cjson_add.c │ ├── common.h │ ├── compare_tests.c │ ├── inputs/ │ │ ├── test1 │ │ ├── test1.expected │ │ ├── test10 │ │ ├── test10.expected │ │ ├── test11 │ │ ├── test11.expected │ │ ├── test2 │ │ ├── test2.expected │ │ ├── test3 │ │ ├── test3.expected │ │ ├── test4 │ │ ├── test4.expected │ │ ├── test5 │ │ ├── test5.expected │ │ ├── test6 │ │ ├── test7 │ │ ├── test7.expected │ │ ├── test8 │ │ ├── test8.expected │ │ ├── test9 │ │ └── test9.expected │ ├── json-patch-tests/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── cjson-utils-tests.json │ │ ├── package.json │ │ ├── spec_tests.json │ │ └── tests.json │ ├── json_patch_tests.c │ ├── minify_tests.c │ ├── misc_tests.c │ ├── misc_utils_tests.c │ ├── old_utils_tests.c │ ├── parse_array.c │ ├── parse_examples.c │ ├── parse_hex4.c │ ├── parse_number.c │ ├── parse_object.c │ ├── parse_string.c │ ├── parse_value.c │ ├── parse_with_opts.c │ ├── print_array.c │ ├── print_number.c │ ├── print_object.c │ ├── print_string.c │ ├── print_value.c │ ├── readme_examples.c │ ├── unity/ │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── auto/ │ │ │ ├── colour_prompt.rb │ │ │ ├── colour_reporter.rb │ │ │ ├── generate_config.yml │ │ │ ├── generate_module.rb │ │ │ ├── generate_test_runner.rb │ │ │ ├── parse_output.rb │ │ │ ├── stylize_as_junit.rb │ │ │ ├── test_file_filter.rb │ │ │ ├── type_sanitizer.rb │ │ │ ├── unity_test_summary.py │ │ │ ├── unity_test_summary.rb │ │ │ └── unity_to_junit.py │ │ ├── docs/ │ │ │ ├── ThrowTheSwitchCodingStandard.md │ │ │ ├── UnityAssertionsReference.md │ │ │ ├── UnityConfigurationGuide.md │ │ │ ├── UnityGettingStartedGuide.md │ │ │ ├── UnityHelperScriptsGuide.md │ │ │ └── license.txt │ │ ├── examples/ │ │ │ ├── example_1/ │ │ │ │ ├── makefile │ │ │ │ ├── readme.txt │ │ │ │ └── src/ │ │ │ │ ├── ProductionCode.c │ │ │ │ ├── ProductionCode.h │ │ │ │ ├── ProductionCode2.c │ │ │ │ └── ProductionCode2.h │ │ │ ├── example_2/ │ │ │ │ ├── makefile │ │ │ │ ├── readme.txt │ │ │ │ └── src/ │ │ │ │ ├── ProductionCode.c │ │ │ │ ├── ProductionCode.h │ │ │ │ ├── ProductionCode2.c │ │ │ │ └── ProductionCode2.h │ │ │ ├── example_3/ │ │ │ │ ├── helper/ │ │ │ │ │ ├── UnityHelper.c │ │ │ │ │ └── UnityHelper.h │ │ │ │ ├── rakefile.rb │ │ │ │ ├── rakefile_helper.rb │ │ │ │ ├── readme.txt │ │ │ │ ├── src/ │ │ │ │ │ ├── ProductionCode.c │ │ │ │ │ ├── ProductionCode.h │ │ │ │ │ ├── ProductionCode2.c │ │ │ │ │ └── ProductionCode2.h │ │ │ │ └── target_gcc_32.yml │ │ │ └── unity_config.h │ │ ├── extras/ │ │ │ ├── eclipse/ │ │ │ │ └── error_parsers.txt │ │ │ └── fixture/ │ │ │ ├── rakefile.rb │ │ │ ├── rakefile_helper.rb │ │ │ ├── readme.txt │ │ │ └── src/ │ │ │ ├── unity_fixture.c │ │ │ ├── unity_fixture.h │ │ │ ├── unity_fixture_internals.h │ │ │ └── unity_fixture_malloc_overrides.h │ │ ├── release/ │ │ │ ├── build.info │ │ │ └── version.info │ │ └── src/ │ │ ├── unity.c │ │ ├── unity.h │ │ └── unity_internals.h │ └── unity_setup.c └── valgrind.supp