Linux Audio
Check our new training course
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __PERF_DEMANGLE_CXX 3#define __PERF_DEMANGLE_CXX 1 4 5#ifdef __cplusplus 6extern "C" { 7#endif 8 9char *cxx_demangle_sym(const char *str, bool params, bool modifiers); 10 11#ifdef __cplusplus 12} 13#endif 14 15 16#endif /* __PERF_DEMANGLE_CXX */