]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Core/FastDemangle.h
Merge ACPICA 20160422.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / Core / FastDemangle.h
1 //===-- FastDemangle.h ------------------------------------------*- C++ -*-===//
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 #ifndef liblldb_FastDemangle_h_
11 #define liblldb_FastDemangle_h_
12
13 namespace lldb_private
14 {
15
16     char *
17     FastDemangle(const char *mangled_name);
18
19     char *
20     FastDemangle(const char *mangled_name, long mangled_name_length);
21
22 }
23
24 #endif