llvm/clang/tools/clang-fuzzer/handle-llvm/input_arrays.h

//==-- input_arrays.h - Helper function for LLVM fuzzer inputs -------------==//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// Define a few static variables used by the LLVM Proto Fuzzer
//
//===----------------------------------------------------------------------===//

#include <climits>

static const int kArraySize =;
static const int kNumArrays =;
static const int kTotalSize =;

// Define two arrays that will hold the input and output for the two functions
static int OptArrays[kNumArrays][kArraySize];
static int UnoptArrays[kNumArrays][kArraySize];

// Define a corpus of possible inputs
static int InputArrays[kNumArrays][kArraySize] =;