blob: 0e40150fda098f1499149fb3b7e4684678a86295 [file]
// Copyright (c) 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/strings/string16.h"
#include "chrome/common/string_matching/tokenized_string.h"
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
if (size < 1 || size % 2 != 0)
return 0;
// Test for base::string16 if size is even.
base::string16 string_input16(reinterpret_cast<const base::char16*>(data),
size / 2);
TokenizedString tokenized_string_from_string16(string_input16);
return 0;
}