blob: 7766b6cd24688965e8d58c5d42c0a873224ed7de [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 "modules/jsonreader/SkJSONReader.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