repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
locking/lockdep: Fix print_collision() unused warning
[linux/fpc-iii.git]
/
tools
/
build
/
feature
/
test-cplus-demangle.c
blob
610c686e0009a572d471954e32bea26a96a046b0
1
extern
int
printf
(
const char
*
format
, ...);
2
extern
char
*
cplus_demangle
(
const char
*,
int
);
3
4
int
main
(
void
)
5
{
6
char
symbol
[
4096
] =
"FieldName__9ClassNameFd"
;
7
char
*
tmp
;
8
9
tmp
=
cplus_demangle
(
symbol
,
0
);
10
11
printf
(
"demangled symbol: {%s}
\n
"
,
tmp
);
12
13
return
0
;
14
}