File: demangle.h

package info (click to toggle)
ltrace 0.3.36-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 904 kB
  • ctags: 455
  • sloc: ansic: 5,923; sh: 2,494; makefile: 154; awk: 56
file content (15 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if HAVE_CONFIG_H
#include "config.h"
#endif

extern char * cplus_demangle (const char *mangled, int options);

const char * my_demangle(const char * function_name);

/* Options passed to cplus_demangle (in 2nd parameter). */

#define DMGL_NO_OPTS    0               /* For readability... */
#define DMGL_PARAMS     (1 << 0)        /* Include function args */
#define DMGL_ANSI       (1 << 1)        /* Include const, volatile, etc */
#define DMGL_JAVA       (1 << 2)        /* Demangle as Java rather than C++. */