xref: /openbsd-src/gnu/llvm/clang/tools/clang-fuzzer/fuzzer-initialize/fuzzer_initialize.h (revision e5dd70708596ae51455a0ffa086a00c5b29f8583)
1*e5dd7070Spatrick //==-- fuzzer_initialize.h - Fuzz Clang ------------------------------------==//
2*e5dd7070Spatrick //
3*e5dd7070Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*e5dd7070Spatrick // See https://llvm.org/LICENSE.txt for license information.
5*e5dd7070Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*e5dd7070Spatrick //
7*e5dd7070Spatrick //===----------------------------------------------------------------------===//
8*e5dd7070Spatrick //
9*e5dd7070Spatrick // Defines a function that returns the command line arguments for a specific
10*e5dd7070Spatrick // call to the fuzz target.
11*e5dd7070Spatrick //
12*e5dd7070Spatrick //===----------------------------------------------------------------------===//
13*e5dd7070Spatrick 
14*e5dd7070Spatrick #include <vector>
15*e5dd7070Spatrick 
16*e5dd7070Spatrick namespace clang_fuzzer {
17*e5dd7070Spatrick const std::vector<const char *>& GetCLArgs();
18*e5dd7070Spatrick }
19