Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
voidMakeReverse();
Remarks
Reverses the order of the characters in this CString object.
Example
The following example demonstrates the use of CString::MakeReverse.
// example for CString::MakeReverse
CString s( "abc" );
s.MakeReverse();
ASSERT( s == "cba" );