Man Page dem.1




NAME

     dem - demangle a C++ name


SYNOPSIS

     dem C++_name ...


DESCRIPTION

     dem demangles one or more C++ names that you  specify.   For
     each  C++  mangled  name,  dem prints a demangled name which
     closely resembles the name that you originally declare.  dem
     uses the following format:

     mangled_name == demangled name

     dem handles the mangled names for  versions 3.0, 3.0.1, 4.0,
     4.1, 4.2, and 5.0 of the Sun WorkShop C++ compiler.


EXAMPLE

     To find out the demangled name for __0FGprintfv, __ct__1XFv,
     and __0fDiosEsetfl, execute the following command:

     % dem __0FGprintfv __ct__1XFv __0fDiosEsetfl

     The output is:

     __0FGprintfv == printf(void)
     __ct__1XFv == X::X(void)
     __0fDiosEsetfl == ios::setf(long)


SEE ALSO

     nm(1), c++filt(1)