blob: a92ba7a70d65316bc500b6a63e32db86787718a9 [file] [log] [blame]
// Copyright 2021 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 "third_party/crashpad/crashpad/util/ios/ios_intermediate_dump_reader.h"
extern "C" int LLVMFuzzerTestOneInput(const char* data, size_t size) {
crashpad::internal::IOSIntermediateDumpByteArray dump_interface(data, size);
crashpad::internal::IOSIntermediateDumpReader reader;
reader.Initialize(dump_interface);
return 0;
}