aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Utility/FastDemangle.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Utility/FastDemangle.h')
-rw-r--r--include/lldb/Utility/FastDemangle.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/lldb/Utility/FastDemangle.h b/include/lldb/Utility/FastDemangle.h
new file mode 100644
index 000000000000..f779aaa04606
--- /dev/null
+++ b/include/lldb/Utility/FastDemangle.h
@@ -0,0 +1,26 @@
+//===-- FastDemangle.h ------------------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef liblldb_FastDemangle_h_
+#define liblldb_FastDemangle_h_
+
+#include <cstddef>
+
+#include <functional>
+
+namespace lldb_private {
+
+char *FastDemangle(const char *mangled_name);
+
+char *
+FastDemangle(const char *mangled_name, size_t mangled_name_length,
+ std::function<void(const char *s)> primitive_type_hook = nullptr);
+}
+
+#endif