aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Core/CxaDemangle.h
blob: 0cd54fb36a323dc1ccbdf4c410b743818604291c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//===-- CxaDemangle.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_CxaDemangle_h_
#define liblldb_CxaDemangle_h_

namespace lldb_private
{

    char*
    __cxa_demangle(const char* mangled_name, char* buf, size_t* n, int* status);

}

#endif