Skip to content

PerlFFI/FFI-Platypus-Lang-CPP-Demangle-XS

Repository files navigation

FFI::Platypus::Lang::CPP::Demangle::XS linux

Demangle C++ symbols using the C++ ABI API

SYNOPSIS

use FFI::Platypus::Lang::CPP::Demangle::XS;

my $demangled = demangle($c_symbol);

DESCRIPTION

This module provides an interface for demangling C++ symbols.

It is an alternative to c++filt for FFI::Platyus::Lang::CPP.

Perl 5.8.1 or newer is required.

FUNCTIONS

demangle

my $demangled = demangle($c_symbol);

Demangle the given symbol. If the input symbol is not a valid C++ symbol, then it will return undef. If there is any other error (memory allocation, for example), it will throw an exception.

SEE ALSO

AUTHOR

Graham Ollis [email protected]

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Graham Ollis.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.