#include <corecrt_internal_mbstring.h>
#include <locale.h>
#include <string.h>
Go to the source code of this file.
◆ _mbsrev()
Definition at line 103 of file mbsrev.cpp.
106{
108}
unsigned char *__cdecl _mbsrev_l(unsigned char *string, _locale_t plocinfo)
◆ _mbsrev_l()
Definition at line 38 of file mbsrev.cpp.
42{
47
48
50
51 if (_loc_update.GetLocaleT()->mbcinfo->ismbcodepage == 0)
52 return (
unsigned char *)
_strrev((
char *)
string);
53
54
55
56 while ( *string ) {
57 if (
_ismbblead_l(*
string++, _loc_update.GetLocaleT()) ) {
58 if ( *string ) {
60 *string = *(string - 1);
62 string++;
63 }
64 else
65 {
66
67
68
69
70
71
72
73
74
76 _ASSERTE((
"Bad MBCS string passed into _mbsrev",0));
77
78
80
81
83
84
85 *string='\0';
86
87 break;
88 }
89 }
90 }
91
92
93 string--;
94 while (
left <
string ) {
98 }
99
101}
#define _ismbblead_l(_c, p)
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
_CRT_RESTORE_GCC_WARNINGS _CRTIMP char *__cdecl _strrev(_Inout_z_ char *_Str)
Referenced by _mbsrev().