grpc/third_party/utf8_range/fuzz/utf8_validity_fuzzer.cc

16 lines
511 B
C++

// Copyright 2022 Google LLC
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
#include "utf8_validity.h"
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
utf8_range::IsStructurallyValid(
absl::string_view(reinterpret_cast<const char *>(data), size));
utf8_range::SpanStructurallyValid(
absl::string_view(reinterpret_cast<const char *>(data), size));
return 0;
}