OSDN Git Service

* NEWS: Add and adjust release notes for 4.0.
[mingw/mingw-org-wsl.git] / include / mbctype.h
1 /**
2  * @file mbctype.h
3  * Copyright 2012, 2013 MinGW.org project
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 #ifndef _MBCTYPE_H
25 #define _MBCTYPE_H
26 #pragma GCC system_header
27 #include <_mingw.h>
28
29 /* 
30  * Functions for testing multibyte character types and converting characters.
31  */
32
33 /* return values for _mbsbtype  and  _mbbtype in mbstring.h */
34 #define _MBC_SINGLE 0 
35 #define _MBC_LEAD 1  
36 #define _MBC_TRAIL 2
37 #define _MBC_ILLEGAL (-1)
38
39 /*  args for setmbcp (in lieu of actual codepage)  */
40 #define _MB_CP_SBCS 0
41 #define _MB_CP_OEM (-2)
42 #define _MB_CP_ANSI (-3)
43 #define _MB_CP_LOCALE (-4)
44
45 /* TODO: bit masks */
46 /*
47 #define _MS
48 #define _MP
49 #define _M1
50 #define _M2
51 #define _SBUP
52 #define _SBLOW
53 */
54
55 #ifndef RC_INVOKED
56
57 #ifdef __cplusplus 
58 extern "C" {
59 #endif
60
61 #ifndef __STRICT_ANSI__
62
63 _CRTIMP int __cdecl __MINGW_NOTHROW _setmbcp (int);
64 _CRTIMP int __cdecl __MINGW_NOTHROW _getmbcp (void);
65
66 /* byte classification  */
67 /* NB: Corresponding _ismbc* functions are in mbstring.h */
68
69 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbbalpha (unsigned int);
70 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbbalnum (unsigned int);
71 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbbgraph (unsigned int);
72 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbbprint (unsigned int);
73 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbbpunct (unsigned int);
74
75 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbbkana (unsigned int);
76 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbbkalnum (unsigned int);
77 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbbkprint (unsigned int);
78 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbbkpunct (unsigned int);
79
80
81 /* these are also in mbstring.h */
82 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbblead (unsigned int);
83 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbbtrail (unsigned int);
84 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbslead (const unsigned char*, const unsigned char*);
85 _CRTIMP int __cdecl __MINGW_NOTHROW _ismbstrail (const unsigned char*, const unsigned char*);
86
87 __MINGW_IMPORT unsigned char _mbctype[];
88 __MINGW_IMPORT unsigned char _mbcasemap[];
89
90 /* TODO : _MBCS_ mappings go in tchar.h */
91
92 #endif  /* Not strict ANSI */
93
94 #ifdef __cplusplus
95 }
96 #endif
97
98 #endif  /* Not RC_INVOKED */
99
100 #endif  /* Not _MCTYPE_H */