Matt Morehouse | 293c269 | 2018-06-05 00:11:41 +0000 | [diff] [blame] | 1 | //==-- fuzzer_initialize.h - Fuzz Clang ------------------------------------==// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Matt Morehouse | 293c269 | 2018-06-05 00:11:41 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // Defines a function that returns the command line arguments for a specific |
| 10 | // call to the fuzz target. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include <vector> |
| 15 | |
| 16 | namespace clang_fuzzer { |
| 17 | const std::vector<const char *>& GetCLArgs(); |
| 18 | } |