ReactOS 0.4.16-dev-959-g2ec3a19
mbsrev.cpp File Reference
#include <corecrt_internal_mbstring.h>
#include <locale.h>
#include <string.h>
Include dependency graph for mbsrev.cpp:

Go to the source code of this file.

Functions

unsigned char *__cdecl _mbsrev_l (unsigned char *string, _locale_t plocinfo)
 
unsigned char *__cdecl _mbsrev (unsigned char *string)
 

Function Documentation

◆ _mbsrev()

unsigned char *__cdecl _mbsrev ( unsigned char string)

Definition at line 103 of file mbsrev.cpp.

106{
107 return _mbsrev_l(string, nullptr);
108}
unsigned char *__cdecl _mbsrev_l(unsigned char *string, _locale_t plocinfo)
Definition: mbsrev.cpp:38

◆ _mbsrev_l()

unsigned char *__cdecl _mbsrev_l ( unsigned char string,
_locale_t  plocinfo 
)

Definition at line 38 of file mbsrev.cpp.

42{
43 unsigned char *start = string;
44 unsigned char *left = string;
45 unsigned char c;
46 _LocaleUpdate _loc_update(plocinfo);
47
48 /* validation section */
49 _VALIDATE_RETURN(string != nullptr, EINVAL, nullptr);
50
51 if (_loc_update.GetLocaleT()->mbcinfo->ismbcodepage == 0)
52 return (unsigned char *)_strrev((char *)string);
53
54
55 /* first go through and reverse the bytes in MBCS chars */
56 while ( *string ) {
57 if ( _ismbblead_l(*string++, _loc_update.GetLocaleT()) ) {
58 if ( *string ) {
59 c = *string;
60 *string = *(string - 1);
61 *(string - 1) = c;
62 string++;
63 }
64 else
65 {
66 /* second byte is EOS
67 There is nothing really satisfying to do here. We have a string
68 that ends in leadbyte,'\0'. Reversing this would lead to the leadbyte
69 becoming falsely attached to the character before it:
70 (XL0 -> LX0, X has suddenly become a trailbyte)
71
72 So what we choose to do is assert and purge the dud byte from within the
73 string.
74 */
75 errno = EINVAL;
76 _ASSERTE(("Bad MBCS string passed into _mbsrev",0));
77
78 /* String has at least moved once already, so this is safe */
79 _ASSERTE(string>start);
80
81 /* move back one to point at the dud leadbyte */
82 --string;
83
84 /* now truncate the string one byte earlier */
85 *string='\0';
86
87 break;
88 }
89 }
90 }
91
92 /* now reverse the whole string */
93 string--;
94 while ( left < string ) {
95 c = *left;
96 *left++ = *string;
97 *string-- = c;
98 }
99
100 return ( start );
101}
#define EINVAL
Definition: acclib.h:90
#define _ismbblead_l(_c, p)
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
#define _ASSERTE(expr)
Definition: crtdbg.h:114
GLuint start
Definition: gl.h:1545
const GLubyte * c
Definition: glext.h:8905
GLint left
Definition: glext.h:7726
_locale_t plocinfo
Definition: ismbbyte.cpp:75
#define c
Definition: ke_i.h:80
char string[160]
Definition: util.h:11
#define errno
Definition: errno.h:18
_CRT_RESTORE_GCC_WARNINGS _CRTIMP char *__cdecl _strrev(_Inout_z_ char *_Str)

Referenced by _mbsrev().