Add a simple testdemangle.c test program

This commit is contained in:
Søren Sandmann Pedersen
2011-08-31 19:57:33 -04:00
parent f347b87e46
commit 139437ecbe
2 changed files with 17 additions and 1 deletions

7
testdemangle.c Normal file
View File

@ -0,0 +1,7 @@
#include "elfparser.h"
int
main ()
{
printf ("%s\n", elf_demangle ("_ZN8Inkscape7FiltersL12filter2D_FIRIhLj4EEEvPT_iiPKS2_iiiiPKNS_4Util10FixedPointIjLj16EEEii"));
}