serenity/Meta/Lagom/Fuzzers/FuzzUTF16BEDecoder.cpp
2022-04-01 21:24:45 +01:00

18 lines
405 B
C++

/*
* Copyright (c) 2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/String.h>
#include <LibTextCodec/Decoder.h>
#include <stddef.h>
#include <stdint.h>
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
{
auto* decoder = TextCodec::decoder_for("utf-16be");
VERIFY(decoder);
decoder->to_utf8({ data, size });
return 0;
}