Matt Morehouse | f051f5d | 2017-08-08 20:15:04 +0000 | [diff] [blame^] | 1 | //==-- handle_cxx.h - Helper function for Clang fuzzers --------------------==// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Defines HandleCXX for use by the Clang fuzzers. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_CLANG_TOOLS_CLANG_FUZZER_HANDLE_CXX_HANDLECXX_H |
| 15 | #define LLVM_CLANG_TOOLS_CLANG_FUZZER_HANDLE_CXX_HANDLECXX_H |
| 16 | |
| 17 | #include <string> |
| 18 | #include <vector> |
| 19 | |
| 20 | namespace clang_fuzzer { |
| 21 | void HandleCXX(const std::string &S, |
| 22 | const std::vector<const char *> &ExtraArgs); |
| 23 | } // namespace clang_fuzzer |
| 24 | |
| 25 | #endif |