diff options
Diffstat (limited to 'clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.h')
-rw-r--r-- | clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.h b/clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.h index 1985e91ba2c..8d2e2e6f008 100644 --- a/clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.h +++ b/clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.h @@ -17,6 +17,10 @@ namespace clang_fuzzer { class Function; +class LoopFunction; + std::string FunctionToString(const Function &input); std::string ProtoToCxx(const uint8_t *data, size_t size); +std::string LoopFunctionToString(const LoopFunction &input); +std::string LoopProtoToCxx(const uint8_t *data, size_t size); } |