Work around MinGW mangling of "host:/path"
[msysgit/historical-msysgit.git] / mingw / include / wctype.h
blob9ca33bb0b272dac586d60f1b13c24778d7710327
1 /*
2 * wctype.h
4 * Functions for testing wide character types and converting characters.
6 * This file is part of the Mingw32 package.
8 * Contributors:
9 * Created by Mumit Khan <khan@xraylith.wisc.edu>
11 * THIS SOFTWARE IS NOT COPYRIGHTED
13 * This source code is offered for use in the public domain. You may
14 * use, modify or distribute it freely.
16 * This code is distributed in the hope that it will be useful but
17 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
18 * DISCLAIMED. This includes but is not limited to warranties of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 #ifndef _WCTYPE_H_
24 #define _WCTYPE_H_
26 /* All the headers include this file. */
27 #include <_mingw.h>
29 #define __need_wchar_t
30 #define __need_wint_t
31 #ifndef RC_INVOKED
32 #include <stddef.h>
33 #endif /* Not RC_INVOKED */
36 * The following flags are used to tell iswctype and _isctype what character
37 * types you are looking for.
39 #define _UPPER 0x0001
40 #define _LOWER 0x0002
41 #define _DIGIT 0x0004
42 #define _SPACE 0x0008
43 #define _PUNCT 0x0010
44 #define _CONTROL 0x0020
45 #define _BLANK 0x0040
46 #define _HEX 0x0080
47 #define _LEADBYTE 0x8000
49 #define _ALPHA 0x0103
51 #ifndef RC_INVOKED
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
57 #ifndef WEOF
58 #define WEOF (wchar_t)(0xFFFF)
59 #endif
61 #ifndef _WCTYPE_T_DEFINED
62 typedef wchar_t wctype_t;
63 #define _WCTYPE_T_DEFINED
64 #endif
66 /* Wide character equivalents - also in ctype.h */
67 _CRTIMP int __cdecl iswalnum(wint_t);
68 _CRTIMP int __cdecl iswalpha(wint_t);
69 _CRTIMP int __cdecl iswascii(wint_t);
70 _CRTIMP int __cdecl iswcntrl(wint_t);
71 _CRTIMP int __cdecl iswctype(wint_t, wctype_t);
72 _CRTIMP int __cdecl is_wctype(wint_t, wctype_t); /* Obsolete! */
73 _CRTIMP int __cdecl iswdigit(wint_t);
74 _CRTIMP int __cdecl iswgraph(wint_t);
75 _CRTIMP int __cdecl iswlower(wint_t);
76 _CRTIMP int __cdecl iswprint(wint_t);
77 _CRTIMP int __cdecl iswpunct(wint_t);
78 _CRTIMP int __cdecl iswspace(wint_t);
79 _CRTIMP int __cdecl iswupper(wint_t);
80 _CRTIMP int __cdecl iswxdigit(wint_t);
82 #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) \
83 || !defined __STRICT_ANSI__ || defined __cplusplus
84 int __cdecl iswblank (wint_t);
85 #endif
87 /* Older MS docs uses wchar_t for arg and return type, while newer
88 online MS docs say arg is wint_t and return is int.
89 ISO C uses wint_t for both. */
90 _CRTIMP wint_t __cdecl towlower (wint_t);
91 _CRTIMP wint_t __cdecl towupper (wint_t);
93 _CRTIMP int __cdecl isleadbyte (int);
95 /* Also in ctype.h */
97 #ifdef __DECLSPEC_SUPPORTED
98 __MINGW_IMPORT unsigned short _ctype[];
99 # ifdef __MSVCRT__
100 __MINGW_IMPORT unsigned short* _pctype;
101 # else /* CRTDLL */
102 __MINGW_IMPORT unsigned short* _pctype_dll;
103 # define _pctype _pctype_dll
104 # endif
106 #else /* ! __DECLSPEC_SUPPORTED */
107 extern unsigned short** _imp___ctype;
108 #define _ctype (*_imp___ctype)
109 # ifdef __MSVCRT__
110 extern unsigned short** _imp___pctype;
111 # define _pctype (*_imp___pctype)
112 # else /* CRTDLL */
113 extern unsigned short** _imp___pctype_dll;
114 # define _pctype (*_imp___pctype_dll)
115 # endif /* CRTDLL */
116 #endif /* __DECLSPEC_SUPPORTED */
119 #if !(defined (__NO_INLINE__) || defined(__NO_CTYPE_INLINES) \
120 || defined(__WCTYPE_INLINES_DEFINED))
121 #define __WCTYPE_INLINES_DEFINED
122 __CRT_INLINE int __cdecl iswalnum(wint_t wc) {return (iswctype(wc,_ALPHA|_DIGIT));}
123 __CRT_INLINE int __cdecl iswalpha(wint_t wc) {return (iswctype(wc,_ALPHA));}
124 __CRT_INLINE int __cdecl iswascii(wint_t wc) {return ((wc & ~0x7F) ==0);}
125 __CRT_INLINE int __cdecl iswcntrl(wint_t wc) {return (iswctype(wc,_CONTROL));}
126 __CRT_INLINE int __cdecl iswdigit(wint_t wc) {return (iswctype(wc,_DIGIT));}
127 __CRT_INLINE int __cdecl iswgraph(wint_t wc) {return (iswctype(wc,_PUNCT|_ALPHA|_DIGIT));}
128 __CRT_INLINE int __cdecl iswlower(wint_t wc) {return (iswctype(wc,_LOWER));}
129 __CRT_INLINE int __cdecl iswprint(wint_t wc) {return (iswctype(wc,_BLANK|_PUNCT|_ALPHA|_DIGIT));}
130 __CRT_INLINE int __cdecl iswpunct(wint_t wc) {return (iswctype(wc,_PUNCT));}
131 __CRT_INLINE int __cdecl iswspace(wint_t wc) {return (iswctype(wc,_SPACE));}
132 __CRT_INLINE int __cdecl iswupper(wint_t wc) {return (iswctype(wc,_UPPER));}
133 __CRT_INLINE int __cdecl iswxdigit(wint_t wc) {return (iswctype(wc,_HEX));}
134 __CRT_INLINE int __cdecl isleadbyte(int c) {return (_pctype[(unsigned char)(c)] & _LEADBYTE);}
136 #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) \
137 || !defined __STRICT_ANSI__ || defined __cplusplus
138 __CRT_INLINE int __cdecl iswblank (wint_t wc)
139 {return (iswctype(wc, _BLANK) || wc == L'\t');}
140 #endif
142 #endif /* !(defined(__NO_CTYPE_INLINES) || defined(__WCTYPE_INLINES_DEFINED)) */
144 typedef wchar_t wctrans_t;
146 /* These are resolved by libmingwex.a. Note, that they are also exported
147 by the MS C++ runtime lib (msvcp60.dll). The msvcp60.dll implementations
148 of wctrans and towctrans are not C99 compliant in that wctrans("tolower")
149 returns 0, while std specifies that a non-zero value should be returned
150 for a valid string descriptor. If you want the MS behaviour (and you have
151 msvcp60.dll in your path) add -lmsvcp60 to your command line. */
153 wint_t __cdecl towctrans(wint_t, wctrans_t);
154 wctrans_t __cdecl wctrans(const char*);
155 wctype_t __cdecl wctype(const char*);
157 #ifdef __cplusplus
159 #endif
161 #endif /* Not RC_INVOKED */
163 #endif /* Not _WCTYPE_H_ */