xref: /openbmc/linux/tools/perf/util/demangle-cxx.h (revision 06ba8020)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_DEMANGLE_CXX
3 #define __PERF_DEMANGLE_CXX 1
4 
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 
9 char *cxx_demangle_sym(const char *str, bool params, bool modifiers);
10 
11 #ifdef __cplusplus
12 }
13 #endif
14 
15 
16 #endif /* __PERF_DEMANGLE_CXX */
17