blob: 7863281c8d5d82ef3413a1d2b66a92d0284d642f [file] [log] [blame]
/*
* Copyright 2018 Google, LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/core/SkStream.h"
#include "src/utils/SkJSON.h"
void FuzzJSON(const uint8_t *data, size_t size) {
skjson::DOM dom(reinterpret_cast<const char*>(data), size);
SkDynamicMemoryWStream wstream;
dom.write(&wstream);
}
#if defined(SK_BUILD_FOR_LIBFUZZER)
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
FuzzJSON(data, size);
return 0;
}
#endif