gitextract_n6d40b_j/ ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── build/ │ ├── machine.sh │ ├── premake.bat │ ├── premake.sh │ └── premake5.lua ├── data/ │ ├── canada.json │ ├── citm_catalog.json │ ├── data.txt │ ├── jsonchecker/ │ │ ├── fail01_EXCLUDE.json │ │ ├── fail02.json │ │ ├── fail03.json │ │ ├── fail04.json │ │ ├── fail05.json │ │ ├── fail06.json │ │ ├── fail07.json │ │ ├── fail08.json │ │ ├── fail09.json │ │ ├── fail10.json │ │ ├── fail11.json │ │ ├── fail12.json │ │ ├── fail13.json │ │ ├── fail14.json │ │ ├── fail15.json │ │ ├── fail16.json │ │ ├── fail17.json │ │ ├── fail18_EXCLUDE.json │ │ ├── fail19.json │ │ ├── fail20.json │ │ ├── fail21.json │ │ ├── fail22.json │ │ ├── fail23.json │ │ ├── fail24.json │ │ ├── fail25.json │ │ ├── fail26.json │ │ ├── fail27.json │ │ ├── fail28.json │ │ ├── fail29.json │ │ ├── fail30.json │ │ ├── fail31.json │ │ ├── fail32.json │ │ ├── fail33.json │ │ ├── pass01.json │ │ ├── pass02.json │ │ ├── pass03.json │ │ └── readme.txt │ ├── roundtrip/ │ │ ├── roundtrip01.json │ │ ├── roundtrip02.json │ │ ├── roundtrip03.json │ │ ├── roundtrip04.json │ │ ├── roundtrip05.json │ │ ├── roundtrip06.json │ │ ├── roundtrip07.json │ │ ├── roundtrip08.json │ │ ├── roundtrip09.json │ │ ├── roundtrip10.json │ │ ├── roundtrip11.json │ │ ├── roundtrip12.json │ │ ├── roundtrip13.json │ │ ├── roundtrip14.json │ │ ├── roundtrip15.json │ │ ├── roundtrip16.json │ │ ├── roundtrip17.json │ │ ├── roundtrip18.json │ │ ├── roundtrip19.json │ │ ├── roundtrip20.json │ │ ├── roundtrip21.json │ │ ├── roundtrip22.json │ │ ├── roundtrip23.json │ │ ├── roundtrip24.json │ │ ├── roundtrip25.json │ │ ├── roundtrip26.json │ │ └── roundtrip27.json │ └── twitter.json ├── resource/ │ └── combine/ │ ├── combine.css │ ├── combine.js │ └── combine.sh ├── result/ │ ├── conformance.php │ ├── makefile │ └── performance.php ├── sample/ │ ├── conformance.csv │ ├── conformance.html │ ├── conformance_ArduinoJson (C++).md │ ├── conformance_C++ REST SDK (C++11).md │ ├── conformance_CAJUN (C++).md │ ├── conformance_Configuru (C++11).md │ ├── conformance_Folly (C++11).md │ ├── conformance_JSON Spirit (C++).md │ ├── conformance_JSON Voorhees (C++).md │ ├── conformance_JVar (C++).md │ ├── conformance_Jansson (C).md │ ├── conformance_Jbson (C++14).md │ ├── conformance_JeayeSON (C++14).md │ ├── conformance_JsonBox (C++).md │ ├── conformance_JsonCpp (C++).md │ ├── conformance_Jzon (C++).md │ ├── conformance_Nlohmann (C++11).md │ ├── conformance_POCO (C++).md │ ├── conformance_Parson (C).md │ ├── conformance_PicoJSON (C++).md │ ├── conformance_Qt (C++).md │ ├── conformance_RapidJSON (C++).md │ ├── conformance_RapidJSON_AutoUTF (C++).md │ ├── conformance_RapidJSON_FullPrec (C++).md │ ├── conformance_RapidJSON_Insitu (C++).md │ ├── conformance_Scheredom json.h (C).md │ ├── conformance_SimpleJSON (C++).md │ ├── conformance_V8 (C++).md │ ├── conformance_Vinenthz_libjson (C).md │ ├── conformance_YAJL (C).md │ ├── conformance_cJSON (C).md │ ├── conformance_ccan_json (C).md │ ├── conformance_dropbox_json11 (C++11).md │ ├── conformance_gason (C++11).md │ ├── conformance_hjiang_JSON++ (C++).md │ ├── conformance_jsmn (C).md │ ├── conformance_json-c (C).md │ ├── conformance_jsoncons (C++).md │ ├── conformance_leptjson (C).md │ ├── conformance_mikeando_FastJson (C++).md │ ├── conformance_nbsdx_SimpleJSON (C++11).md │ ├── conformance_sajson (C++).md │ ├── conformance_taocpp_json (C++11).md │ ├── conformance_tunnuz_JSON++ (C++).md │ ├── conformance_udp_json-parser (C).md │ ├── conformance_ujson (C++).md │ ├── conformance_ujson4c (C).md │ ├── performance_Corei7-4980HQ@2.80GHz_mac32_clang7.0.html │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0.csv │ └── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0.html ├── src/ │ ├── cjsonlibs/ │ │ ├── ccan_all.c │ │ ├── cjson_all.c │ │ ├── facil.io_all.c │ │ ├── jansson_all.c │ │ ├── jansson_renaming.h │ │ ├── jsmn_all.c │ │ ├── jsonc_all.c │ │ ├── juson_all.c │ │ ├── parson_all.c │ │ ├── parson_renaming.h │ │ ├── pjson_all.c │ │ ├── qajson4c_all.c │ │ ├── sheredom_jsonh_all.c │ │ ├── sheredom_jsonh_renaming.h │ │ ├── udpjson_all.c │ │ ├── ujson4c_all.c │ │ ├── ultrajsondec_all.c │ │ ├── vincenthz_libjson_all.c │ │ ├── vincenthz_libjson_renaming.h │ │ ├── workflowjson_all.c │ │ └── yajl_all.c │ ├── config.h │ ├── jsonstat/ │ │ └── jsonstatmain.cpp │ ├── main.cpp │ ├── memorystat.cpp │ ├── memorystat.h │ ├── resultfilename.h │ ├── test.h │ ├── tests/ │ │ ├── ULibtest.cpp │ │ ├── arduinojsontest.cpp │ │ ├── boostjsontest.cpp │ │ ├── cajuntest.cpp │ │ ├── ccantest.cpp │ │ ├── cjsontest.cpp │ │ ├── configurutest.cpp │ │ ├── cpprestsdktest.cpp │ │ ├── dropboxjson11test.cpp │ │ ├── facil.io.cpp │ │ ├── fastjsontest.cpp │ │ ├── follytest.cpp │ │ ├── gasontest.cpp │ │ ├── janssontest.cpp │ │ ├── jeayesontest.cpp │ │ ├── jsmntest.cpp │ │ ├── jsonboxtest.cpp │ │ ├── jsonconstest.cpp │ │ ├── jsoncpptest.cpp │ │ ├── jsonctest.cpp │ │ ├── jsonspirittest.cpp │ │ ├── jsonxxtest.cpp │ │ ├── jusontest.cpp │ │ ├── jvartest.cpp │ │ ├── jzontest.cpp │ │ ├── nbsdxsimplejsontest.cpp │ │ ├── nlohmanntest.cpp │ │ ├── parsontest.cpp │ │ ├── picojsontest.cpp │ │ ├── pjsontest.cpp │ │ ├── pocotest.cpp │ │ ├── qajson4ctest.cpp │ │ ├── qttest.cpp │ │ ├── rapidjsonautoutftest.cpp │ │ ├── rapidjsonfullprectest.cpp │ │ ├── rapidjsoninsitutest.cpp │ │ ├── rapidjsoniterativetest.cpp │ │ ├── rapidjsontest.cpp │ │ ├── sajsontest.cpp │ │ ├── sheredomjsonhtest.cpp │ │ ├── simdjsontest.cpp │ │ ├── simplejsontest.cpp │ │ ├── strduptest.cpp │ │ ├── taocppnlohmanntest.cpp │ │ ├── taocpptest.cpp │ │ ├── tunnuztest.cpp │ │ ├── udpjsontest.cpp │ │ ├── ujson4ctest.cpp │ │ ├── ujsontest.cpp │ │ ├── v8test.cpp │ │ ├── vincenthzlibjsontest.cpp │ │ ├── voorheestest.cpp │ │ ├── workflowjsontest.cpp │ │ └── yajltest.cpp │ ├── timer.h │ └── tunnuz/ │ ├── code_point_to_utf8.hh │ ├── json.hh │ ├── json.tab.cc │ ├── json.tab.hh │ ├── json_st.cc │ ├── json_st.hh │ ├── lex.yy.cc │ ├── test.cc │ └── unescape.hh ├── test.lua └── thirdparty/ ├── include/ │ ├── Export.h │ ├── config.h │ ├── jansson_config.h │ ├── jeayeson/ │ │ └── include/ │ │ ├── config.hpp │ │ └── dummy/ │ │ └── note.txt │ ├── json_config.h │ └── machine.h └── json_spirit/ ├── CMakeLists.txt ├── LICENSE.txt ├── README.cmake ├── VERSION.txt ├── json.sln ├── json.vcproj ├── json_demo/ │ ├── CMakeLists.txt │ ├── address.txt │ ├── demo.txt │ ├── json_demo.cpp │ └── json_demo.vcproj ├── json_headers_only_demo/ │ ├── CMakeLists.txt │ ├── json_headers_only_demo.cpp │ └── json_headers_only_demo.vcproj ├── json_map_demo/ │ ├── CMakeLists.txt │ ├── demo.txt │ ├── json_map_demo.cpp │ └── json_map_demo.vcproj ├── json_spirit/ │ ├── CMakeLists.txt │ ├── json_spirit.h │ ├── json_spirit.vcproj │ ├── json_spirit_error_position.h │ ├── json_spirit_reader.cpp │ ├── json_spirit_reader.h │ ├── json_spirit_reader_template.h │ ├── json_spirit_stream_reader.h │ ├── json_spirit_utils.h │ ├── json_spirit_value.cpp │ ├── json_spirit_value.h │ ├── json_spirit_writer.cpp │ ├── json_spirit_writer.h │ ├── json_spirit_writer_options.h │ └── json_spirit_writer_template.h └── json_test/ ├── CMakeLists.txt ├── json_spirit_reader_test.cpp ├── json_spirit_reader_test.h ├── json_spirit_stream_reader_test.cpp ├── json_spirit_stream_reader_test.h ├── json_spirit_utils_test.cpp ├── json_spirit_utils_test.h ├── json_spirit_value_test.cpp ├── json_spirit_value_test.h ├── json_spirit_writer_test.cpp ├── json_spirit_writer_test.h ├── json_test.cpp ├── json_test.vcproj ├── test.txt ├── utils_test.cpp └── utils_test.h