ReactOS 0.4.16-dev-937-g7afcd2a
ismbstr.cpp File Reference
#include <corecrt_internal_mbstring.h>
#include <locale.h>
Include dependency graph for ismbstr.cpp:

Go to the source code of this file.

Macros

#define _ALLOW_OLD_VALIDATE_MACROS
 

Functions

int __cdecl _ismbstrail_l (unsigned char const *string, unsigned char const *current, _locale_t const locale)
 
int __cdecl _ismbstrail (unsigned char const *const string, unsigned char const *const current)
 

Macro Definition Documentation

◆ _ALLOW_OLD_VALIDATE_MACROS

#define _ALLOW_OLD_VALIDATE_MACROS

Definition at line 22 of file ismbstr.cpp.

Function Documentation

◆ _ismbstrail()

int __cdecl _ismbstrail ( unsigned char const *const  string,
unsigned char const *const  current 
)

Definition at line 58 of file ismbstr.cpp.

62{
63 return _ismbstrail_l(string, current, nullptr);
64}
int __cdecl _ismbstrail_l(unsigned char const *string, unsigned char const *current, _locale_t const locale)
Definition: ismbstr.cpp:28
struct task_struct * current
Definition: linux.c:32

Referenced by common_mktemp_s_continue(), and test_mbcp().

◆ _ismbstrail_l()

int __cdecl _ismbstrail_l ( unsigned char const string,
unsigned char const current,
_locale_t const  locale 
)

Definition at line 28 of file ismbstr.cpp.

33{
34 _VALIDATE_RETURN(string != nullptr, EINVAL, 0);
35 _VALIDATE_RETURN(current != nullptr, EINVAL, 0);
36
37 _LocaleUpdate locale_update(locale);
38
39 if (locale_update.GetLocaleT()->mbcinfo->ismbcodepage == 0)
40 return 0;
41
42 while (string <= current && *string)
43 {
44 if (_ismbblead_l((*string), locale_update.GetLocaleT()))
45 {
46 if (++string == current) // check trail byte
47 return -1;
48
49 if (*string == 0)
50 return 0;
51 }
52 ++string;
53 }
54
55 return 0;
56}
#define EINVAL
Definition: acclib.h:90
Definition: _locale.h:75
#define _ismbblead_l(_c, p)
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
char string[160]
Definition: util.h:11

Referenced by _ismbstrail().