blob: 90da6cf254737e4bd43289227317a6c1a671ff5e [file] [log] [blame]
// Copyright 2021 The Chromium OS 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 <stddef.h>
#include <stdint.h>
#include <string>
#include "debugd/src/helpers/cups_uri_helper_utils.h"
namespace debugd {
namespace cups_helper {
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
UriSeemsReasonable(std::string(data, data + size));
return 0;
}
} // namespace cups_helper
} // namespace debugd