summaryrefslogtreecommitdiff
path: root/lldb/include/lldb/Core/FastDemangle.h
blob: cd6128c73038d171c87ed70a48390707651f5db1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//===-- 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_

namespace lldb_private
{

    char *
    FastDemangle(const char *mangled_name);

    char *
    FastDemangle(const char *mangled_name, long mangled_name_length);

}

#endif