blob: e76311ff39c41b9b0a425e3ed3c523f74a6d1e8d [file] [log] [blame]
Matt Morehousef051f5d2017-08-08 20:15:04 +00001//==-- 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
20namespace clang_fuzzer {
21void HandleCXX(const std::string &S,
22 const std::vector<const char *> &ExtraArgs);
23} // namespace clang_fuzzer
24
25#endif