2023-10-22 12:03:52 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2023, the SerenityOS developers.
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <AK/JsonParser.h>
|
|
|
|
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
|
|
|
|
|
{
|
2023-11-03 14:49:54 -03:00
|
|
|
AK::set_debug_enabled(false);
|
2025-03-19 18:47:25 -03:00
|
|
|
(void)JsonParser::parse({ data, size });
|
2023-10-22 12:03:52 -03:00
|
|
|
return 0;
|
|
|
|
|
}
|