Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #include <json.hpp>
00013
00014 using json = nlohmann::json;
00015
00016 int main()
00017 {
00018 #ifdef __AFL_HAVE_MANUAL_CONTROL
00019 while (__AFL_LOOP(1000))
00020 {
00021 #endif
00022 try
00023 {
00024 json j(std::cin);
00025 std::cout << j << std::endl;
00026 }
00027 catch (std::invalid_argument& e)
00028 {
00029 std::cout << "Invalid argument in parsing" << e.what() << '\n';
00030 }
00031 #ifdef __AFL_HAVE_MANUAL_CONTROL
00032 }
00033 #endif
00034 }