ReactOS 0.4.16-dev-937-g7afcd2a
mbbtype.cpp
Go to the documentation of this file.
1/***
2*mbbtype.c - Return type of byte based on previous byte (MBCS)
3*
4* Copyright (c) Microsoft Corporation. All rights reserved.
5*
6*Purpose:
7* Return type of byte based on previous byte (MBCS)
8*
9*******************************************************************************/
10#ifndef _MBCS
11 #error This file should only be compiled with _MBCS defined
12#endif
13
15#include <locale.h>
16
17/***
18*int _mbbtype(c, ctype) - Return type of byte based on previous byte (MBCS)
19*
20*Purpose:
21* Returns type of supplied byte. This decision is context
22* sensitive so a control test condition is supplied. Normally,
23* this is the type of the previous byte in the string.
24*
25*Entry:
26* unsigned char c = character to be checked
27* int ctype = control test condition (i.e., type of previous char)
28*
29*Exit:
30* _MBC_LEAD = if 1st byte of MBCS char
31* _MBC_TRAIL = if 2nd byte of MBCS char
32* _MBC_SINGLE = valid single byte char
33*
34* _MBC_ILLEGAL = if illegal char
35*
36*WARNING:
37* These fail for UTF-8, which doesn't have lead bytes matched with single
38* trail bytes as this function expects.
39*
40* Applications should not be trying to reverse engineer how any encoding works.
41*
42*Exceptions:
43*
44*******************************************************************************/
45
46extern "C" int __cdecl _mbbtype_l(
47 unsigned char const c,
48 int const ctype,
49 _locale_t const locale
50 )
51{
52 _LocaleUpdate locale_update(locale);
53
54 switch(ctype)
55 {
56 case _MBC_LEAD:
57 if (_ismbbtrail_l(c, locale_update.GetLocaleT()))
58 return _MBC_TRAIL;
59
60 else
61 return _MBC_ILLEGAL;
62
63 case _MBC_TRAIL:
64 case _MBC_SINGLE:
65 case _MBC_ILLEGAL:
66 default:
67 if (_ismbblead_l(c, locale_update.GetLocaleT()))
68 return _MBC_LEAD;
69
70 else if (_ismbbprint_l(c, locale_update.GetLocaleT()))
71 return _MBC_SINGLE;
72
73 else
74 return _MBC_ILLEGAL;
75 }
76}
77
78extern "C" int __cdecl _mbbtype(unsigned char const c, int const ctype)
79{
80 return _mbbtype_l(c, ctype, nullptr);
81}
#define __cdecl
Definition: accygwin.h:79
Definition: _ctype.h:58
Definition: _locale.h:75
#define _ismbbprint_l(_c, pt)
#define _ismbblead_l(_c, p)
#define _ismbbtrail_l(_c, p)
const GLubyte * c
Definition: glext.h:8905
int __cdecl _mbbtype_l(unsigned char const c, int const ctype, _locale_t const locale)
Definition: mbbtype.cpp:46
int __cdecl _mbbtype(unsigned char const c, int const ctype)
Definition: mbbtype.cpp:78
#define _MBC_TRAIL
Definition: msvcrt.h:825
#define _MBC_SINGLE
Definition: msvcrt.h:823
#define _MBC_LEAD
Definition: msvcrt.h:824
#define _MBC_ILLEGAL
Definition: msvcrt.h:826