| Locale-Sensitive C/C++ String Operation Functionchar *_strrev(char *string);
 unsigned char *_mbsrev(unsigned char *string);
 wchar_t *_wcsrev(wchar_t *string);
 _TXCHAR *_tcsrev(_TXCHAR *string);
 Internationalization (I18n) Function OverviewThe _strrevfunction reverses the order of the characters instring, leaving the null-terminator in its place. Use _wcsrevor_mbsrevfor wide character or multibyte equivalent. For_mbsrev, the order of bytes in each multibyte character instringis not changed. _tcsrevis the Windows-only Generic version of the function; with the _MBCS or _UNICODE compiler flags determining its mapping to either_mbsrevor_wcsrev.
 I18n IssuesFor Windows MBCS platforms, ensure that the multibyte code page is set properly, as _mbsrevdepends on it. By default, the multibyte code page is set to the system-default ANSI code page obtained from the operating system at program startup. Use _getmbcp and _setmbcp to query or change the current multibyte code page, respectively. Recommended Function Replacements 
 Locale-Sensitive C/C++ 
              String Operation Functions   
 |