]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Core/CxaDemangle.h
MFV r304057:
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / Core / CxaDemangle.h
1 //===-- CxaDemangle.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_CxaDemangle_h_
11 #define liblldb_CxaDemangle_h_
12
13 namespace lldb_private
14 {
15
16     char*
17     __cxa_demangle(const char* mangled_name, char* buf, size_t* n, int* status);
18
19 }
20
21 #endif