aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/demangle-cxx.h
blob: 9359937a881a73604bb4796f9201a0d3193e78ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __PERF_DEMANGLE_CXX
#define __PERF_DEMANGLE_CXX 1

#include <stdbool.h>

#ifdef __cplusplus
extern "C" {
#endif

char *cxx_demangle_sym(const char *str, bool params, bool modifiers);

#ifdef __cplusplus
}
#endif


#endif /* __PERF_DEMANGLE_CXX */