DEM(1) — USER COMMANDS
NAME
dem − demangle a C++ name
SYNOPSIS
dem C++_name ...
DESCRIPTION
dem demangles given C++ mangled name(s). For each C++ mangled name, dem prints its demangled name in the following format:
<mangled_name> == <demangled_name>
For example, printf__Fv is listed as:
printf__Fv == printf()
EXAMPLE
To find out the demangled names for printf__Fv and __ct__1XFv , do the following:
% dem printf__Fv __ct__1XFv
printf__Fv == printf()
__ct__1XFv == X::X()
LIMITATIONS
The demangling scheme will not handle the functions that take more than 35 arguments.
SEE ALSO
Sun Release 4.0 — Last change: 9 March 1989