1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#include <jsoncons/json_parser.hpp>
#include <jsoncons/json_cursor.hpp>
#include <jsoncons/json.hpp>
using namespace jsoncons;
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, std::size_t size)
{
std::string s(reinterpret_cast<const char*>(data), size);
std::istringstream is(s);
std::error_code ec;
json_stream_cursor reader(is, ec);
while (!reader.done() && !ec)
{
const auto& event = reader.current();
std::string s2 = event.get<std::string>(ec);
if (!ec)
{
reader.next(ec);
}
}
return 0;
}
|