STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ctype.h
Go to the documentation of this file.
1 /***
2 *ctype.h - character conversion macros and ctype macros
3 *
4 * Copyright (c) Microsoft Corporation. All rights reserved.
5 *
6 *Purpose:
7 * Defines macros for character classification/conversion.
8 * [ANSI/System V]
9 *
10 * [Public]
11 *
12 ****/
13 
14 #pragma once
15 
16 #ifndef _INC_CTYPE
17 #define _INC_CTYPE
18 
19 #include <crtdefs.h>
20 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif /* __cplusplus */
24 
25 #ifndef WEOF
26 #define WEOF (wint_t)(0xFFFF)
27 #endif /* WEOF */
28 
29 #ifndef _CRT_CTYPEDATA_DEFINED
30 #define _CRT_CTYPEDATA_DEFINED
31 #ifndef _CTYPE_DISABLE_MACROS
32 
33 #ifdef _CRTBLD
34 extern const unsigned short __newctype[];
35 #if defined (_DLL) && defined (_M_IX86)
36 /* Retained for compatibility with VC++ 5.0 and earlier versions */
37 _CRTIMP const unsigned short ** __cdecl __p__pctype(void);
38 #endif /* defined (_DLL) && defined (_M_IX86) */
39 #endif /* _CRTBLD */
40 
41 #ifndef __PCTYPE_FUNC
42 #if defined (_CRT_DISABLE_PERFCRIT_LOCKS) && !defined (_DLL)
43 #define __PCTYPE_FUNC _pctype
44 #else /* defined (_CRT_DISABLE_PERFCRIT_LOCKS) && !defined (_DLL) */
45 #define __PCTYPE_FUNC __pctype_func()
46 #endif /* defined (_CRT_DISABLE_PERFCRIT_LOCKS) && !defined (_DLL) */
47 #endif /* __PCTYPE_FUNC */
48 
49 _CRTIMP const unsigned short * __cdecl __pctype_func(void);
50 #if !defined (_M_CEE_PURE)
51 _CRTIMP extern const unsigned short *_pctype;
52 #else /* !defined (_M_CEE_PURE) */
53 #define _pctype (__pctype_func())
54 #endif /* !defined (_M_CEE_PURE) */
55 #endif /* _CTYPE_DISABLE_MACROS */
56 #endif /* _CRT_CTYPEDATA_DEFINED */
57 
58 #ifndef _CRT_WCTYPEDATA_DEFINED
59 #define _CRT_WCTYPEDATA_DEFINED
60 #ifndef _CTYPE_DISABLE_MACROS
61 #if !defined (_M_CEE_PURE)
62 _CRTIMP extern const unsigned short _wctype[];
63 #endif /* !defined (_M_CEE_PURE) */
64 
65 #ifdef _CRTBLD
66 extern const unsigned short __newctype[];
67 #if defined (_DLL) && defined (_M_IX86)
68 /* Retained for compatibility with VC++ 5.0 and earlier versions */
69 _CRTIMP const wctype_t ** __cdecl __p__pwctype(void);
70 #endif /* defined (_DLL) && defined (_M_IX86) */
71 #endif /* _CRTBLD */
72 
73 _CRTIMP const wctype_t * __cdecl __pwctype_func(void);
74 #if !defined (_M_CEE_PURE)
75 _CRTIMP extern const wctype_t *_pwctype;
76 #else /* !defined (_M_CEE_PURE) */
77 #define _pwctype (__pwctype_func())
78 #endif /* !defined (_M_CEE_PURE) */
79 #endif /* _CTYPE_DISABLE_MACROS */
80 #endif /* _CRT_WCTYPEDATA_DEFINED */
81 
82 #ifdef _CRTBLD
83 #ifndef _CTYPE_DISABLE_MACROS
84 extern const unsigned char __newclmap[];
85 extern const unsigned char __newcumap[];
86 #endif /* _CTYPE_DISABLE_MACROS */
87 
88 extern pthreadlocinfo __ptlocinfo;
89 extern pthreadmbcinfo __ptmbcinfo;
90 extern int __globallocalestatus;
91 extern int __locale_changed;
92 extern struct threadlocaleinfostruct __initiallocinfo;
93 extern _locale_tstruct __initiallocalestructinfo;
94 pthreadlocinfo __cdecl __updatetlocinfo(void);
95 pthreadmbcinfo __cdecl __updatetmbcinfo(void);
96 #endif /* _CRTBLD */
97 
98 
99 /* set bit masks for the possible character types */
100 
101 #define _UPPER 0x1 /* upper case letter */
102 #define _LOWER 0x2 /* lower case letter */
103 #define _DIGIT 0x4 /* digit[0-9] */
104 #define _SPACE 0x8 /* space, tab, carriage return, newline, */
105  /* vertical tab or form feed */
106 #define _PUNCT 0x10 /* punctuation character */
107 #define _CONTROL 0x20 /* control character */
108 #define _BLANK 0x40 /* space char (tab handled separately) */
109 #define _HEX 0x80 /* hexadecimal digit */
110 
111 #define _LEADBYTE 0x8000 /* multibyte leadbyte */
112 #define _ALPHA (0x0100|_UPPER|_LOWER) /* alphabetic character */
113 
114 
115 /* character classification function prototypes */
116 
117 #ifndef _CTYPE_DEFINED
118 
119 _Check_return_ _CRTIMP int __cdecl _isctype(_In_ int _C, _In_ int _Type);
129 _Check_return_ _CRTIMP int __cdecl isxdigit(_In_ int _C);
133 _Check_return_ _CRTIMP int __cdecl ispunct(_In_ int _C);
135 _Check_return_ _CRTIMP int __cdecl isblank(_In_ int _C);
139 _Check_return_ _CRTIMP int __cdecl isprint(_In_ int _C);
141 _Check_return_ _CRTIMP int __cdecl isgraph(_In_ int _C);
143 _Check_return_ _CRTIMP int __cdecl iscntrl(_In_ int _C);
151 _Check_return_ _CRTIMP int __cdecl __isascii(_In_ int _C);
152 _Check_return_ _CRTIMP int __cdecl __toascii(_In_ int _C);
153 _Check_return_ _CRTIMP int __cdecl __iscsymf(_In_ int _C);
154 _Check_return_ _CRTIMP int __cdecl __iscsym(_In_ int _C);
155 #define _CTYPE_DEFINED
156 #endif /* _CTYPE_DEFINED */
157 
158 #ifndef _WCTYPE_DEFINED
159 
160 /* wide function prototypes, also declared in wchar.h */
161 
162 /* character classification function prototypes */
163 
189 
196 
201 
202 #ifdef _CRT_USE_WINAPI_FAMILY_DESKTOP_APP
203 _Check_return_ _CRTIMP int __cdecl isleadbyte(_In_ int _C);
206 #endif /* _CRT_USE_WINAPI_FAMILY_DESKTOP_APP */
207 
208 #define _WCTYPE_DEFINED
209 #endif /* _WCTYPE_DEFINED */
210 
211 /* the character classification macro definitions */
212 
213 #ifndef _CTYPE_DISABLE_MACROS
214 
215 /*
216  * Maximum number of bytes in multi-byte character in the current locale
217  * (also defined in stdlib.h).
218  */
219 #ifndef MB_CUR_MAX
220 #ifdef _CRTBLD
221 #if defined (_DLL) && defined (_M_IX86)
222 /* Retained for compatibility with VC++ 5.0 and earlier versions */
223 _CRTIMP int * __cdecl __p___mb_cur_max(void);
224 #endif /* defined (_DLL) && defined (_M_IX86) */
225 #define __MB_CUR_MAX(ptloci) (ptloci)->mb_cur_max
226 #endif /* _CRTBLD */
227 
228 #if defined (_CRT_DISABLE_PERFCRIT_LOCKS) && !defined (_DLL)
229 #define MB_CUR_MAX __mb_cur_max
230 #else /* defined (_CRT_DISABLE_PERFCRIT_LOCKS) && !defined (_DLL) */
231 #define MB_CUR_MAX ___mb_cur_max_func()
232 #endif /* defined (_CRT_DISABLE_PERFCRIT_LOCKS) && !defined (_DLL) */
233 #if !defined (_M_CEE_PURE)
234 /* No data exports in pure code */
235 _CRTIMP extern int __mb_cur_max;
236 #else /* !defined (_M_CEE_PURE) */
237 #define __mb_cur_max (___mb_cur_max_func())
238 #endif /* !defined (_M_CEE_PURE) */
239 _CRTIMP int __cdecl ___mb_cur_max_func(void);
241 #endif /* MB_CUR_MAX */
242 
243 /* Introduced to detect error when character testing functions are called
244  * with illegal input of integer.
245  */
246 #ifdef _DEBUG
247 _CRTIMP int __cdecl _chvalidator(_In_ int _Ch, _In_ int _Mask);
248 #define __chvalidchk(a,b) _chvalidator(a,b)
249 #else /* _DEBUG */
250 #define __chvalidchk(a,b) (__PCTYPE_FUNC[(a)] & (b))
251 #endif /* _DEBUG */
252 
253 
254 #ifdef _CRTBLD
255 #define __ascii_isalpha(c) ( __chvalidchk(c, _ALPHA))
256 #define __ascii_isdigit(c) ( __chvalidchk(c, _DIGIT))
257 #define __ascii_tolower(c) ( (((c) >= 'A') && ((c) <= 'Z')) ? ((c) - 'A' + 'a') : (c) )
258 #define __ascii_toupper(c) ( (((c) >= 'a') && ((c) <= 'z')) ? ((c) - 'a' + 'A') : (c) )
259 #define __ascii_iswalpha(c) ( ('A' <= (c) && (c) <= 'Z') || ( 'a' <= (c) && (c) <= 'z'))
260 #define __ascii_iswdigit(c) ( '0' <= (c) && (c) <= '9')
261 #define __ascii_towlower(c) ( (((c) >= L'A') && ((c) <= L'Z')) ? ((c) - L'A' + L'a') : (c) )
262 #define __ascii_towupper(c) ( (((c) >= L'a') && ((c) <= L'z')) ? ((c) - L'a' + L'A') : (c) )
263 #endif /* _CRTBLD */
264 
265 #if defined (_CRT_DISABLE_PERFCRIT_LOCKS) && !defined (_DLL)
266 #ifndef __cplusplus
267 #define isalpha(_c) (MB_CUR_MAX > 1 ? _isctype(_c,_ALPHA) : __chvalidchk(_c, _ALPHA))
268 #define isupper(_c) (MB_CUR_MAX > 1 ? _isctype(_c,_UPPER) : __chvalidchk(_c, _UPPER))
269 #define islower(_c) (MB_CUR_MAX > 1 ? _isctype(_c,_LOWER) : __chvalidchk(_c, _LOWER))
270 #define isdigit(_c) (MB_CUR_MAX > 1 ? _isctype(_c,_DIGIT) : __chvalidchk(_c, _DIGIT))
271 #define isxdigit(_c) (MB_CUR_MAX > 1 ? _isctype(_c,_HEX) : __chvalidchk(_c, _HEX))
272 #define isspace(_c) (MB_CUR_MAX > 1 ? _isctype(_c,_SPACE) : __chvalidchk(_c, _SPACE))
273 #define ispunct(_c) (MB_CUR_MAX > 1 ? _isctype(_c,_PUNCT) : __chvalidchk(_c, _PUNCT))
274 #define isblank(_c) (MB_CUR_MAX > 1 ? (((_c) == '\t') ? _BLANK : _isctype(_c,_BLANK)) : (((_c) == '\t') ? _BLANK : __chvalidchk(_c, _BLANK)))
275 #define isalnum(_c) (MB_CUR_MAX > 1 ? _isctype(_c,_ALPHA|_DIGIT) : __chvalidchk(_c, (_ALPHA|_DIGIT)))
276 #define isprint(_c) (MB_CUR_MAX > 1 ? _isctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT) : __chvalidchk(_c, (_BLANK|_PUNCT|_ALPHA|_DIGIT)))
277 #define isgraph(_c) (MB_CUR_MAX > 1 ? _isctype(_c,_PUNCT|_ALPHA|_DIGIT) : __chvalidchk(_c, (_PUNCT|_ALPHA|_DIGIT)))
278 #define iscntrl(_c) (MB_CUR_MAX > 1 ? _isctype(_c,_CONTROL) : __chvalidchk(_c, _CONTROL))
279 #endif /* __cplusplus */
280 #endif /* defined (_CRT_DISABLE_PERFCRIT_LOCKS) && !defined (_DLL) */
281 
282 #ifdef _DEBUG
283 _CRTIMP int __cdecl _chvalidator_l(_In_opt_ _locale_t, _In_ int _Ch, _In_ int _Mask);
284 #define _chvalidchk_l(_Char, _Flag, _Locale) _chvalidator_l(_Locale, _Char, _Flag)
285 #else /* _DEBUG */
286 #define _chvalidchk_l(_Char, _Flag, _Locale) (_Locale==NULL ? __chvalidchk(_Char, _Flag) : ((_locale_t)_Locale)->locinfo->pctype[_Char] & (_Flag))
287 #endif /* _DEBUG */
288 
289 #ifdef _CRTBLD
290 #define __ascii_isalpha_l(_Char, _Locale) ( _chvalidchk_l(_Char, _ALPHA, _Locale))
291 #define __ascii_isdigit_l(_Char, _Locale) ( _chvalidchk_l(_Char, _DIGIT, _Locale))
292 #endif /* _CRTBLD */
293 
294 #define _ischartype_l(_Char, _Flag, _Locale) ( ((_Locale)!=NULL && (((_locale_t)(_Locale))->locinfo->mb_cur_max) > 1) ? _isctype_l(_Char, (_Flag), _Locale) : _chvalidchk_l(_Char,_Flag,_Locale))
295 #define _isalpha_l(_Char, _Locale) _ischartype_l(_Char, _ALPHA, _Locale)
296 #define _isupper_l(_Char, _Locale) _ischartype_l(_Char, _UPPER, _Locale)
297 #define _islower_l(_Char, _Locale) _ischartype_l(_Char, _LOWER, _Locale)
298 #define _isdigit_l(_Char, _Locale) _ischartype_l(_Char, _DIGIT, _Locale)
299 #define _isxdigit_l(_Char, _Locale) _ischartype_l(_Char, _HEX, _Locale)
300 #define _isspace_l(_Char, _Locale) _ischartype_l(_Char, _SPACE, _Locale)
301 #define _ispunct_l(_Char, _Locale) _ischartype_l(_Char, _PUNCT, _Locale)
302 #define _isblank_l(_Char, _Locale) (((_Char) == '\t') ? _BLANK : _ischartype_l(_Char, _BLANK, _Locale))
303 #define _isalnum_l(_Char, _Locale) _ischartype_l(_Char, _ALPHA|_DIGIT, _Locale)
304 #define _isprint_l(_Char, _Locale) _ischartype_l(_Char, _BLANK|_PUNCT|_ALPHA|_DIGIT, _Locale)
305 #define _isgraph_l(_Char, _Locale) _ischartype_l(_Char, _PUNCT|_ALPHA|_DIGIT, _Locale)
306 #define _iscntrl_l(_Char, _Locale) _ischartype_l(_Char, _CONTROL, _Locale)
307 
308 #define _tolower(_Char) ( (_Char)-'A'+'a' )
309 #define _toupper(_Char) ( (_Char)-'a'+'A' )
310 
311 #define __isascii(_Char) ( (unsigned)(_Char) < 0x80 )
312 #define __toascii(_Char) ( (_Char) & 0x7f )
313 
314 #ifndef _WCTYPE_INLINE_DEFINED
315 
316 #ifdef _CRTBLD
317 #define _CRT_WCTYPE_NOINLINE
318 #else /* _CRTBLD */
319 #undef _CRT_WCTYPE_NOINLINE
320 #endif /* _CRTBLD */
321 
322 #if !defined (__cplusplus) || defined (_M_CEE_PURE) || defined (MRTDLL) || defined (_CRT_WCTYPE_NOINLINE)
323 #define iswalpha(_c) ( iswctype(_c,_ALPHA) )
324 #define iswupper(_c) ( iswctype(_c,_UPPER) )
325 #define iswlower(_c) ( iswctype(_c,_LOWER) )
326 #define iswdigit(_c) ( iswctype(_c,_DIGIT) )
327 #define iswxdigit(_c) ( iswctype(_c,_HEX) )
328 #define iswspace(_c) ( iswctype(_c,_SPACE) )
329 #define iswpunct(_c) ( iswctype(_c,_PUNCT) )
330 #define iswblank(_c) (((_c) == '\t') ? _BLANK : iswctype(_c,_BLANK) )
331 #define iswalnum(_c) ( iswctype(_c,_ALPHA|_DIGIT) )
332 #define iswprint(_c) ( iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT) )
333 #define iswgraph(_c) ( iswctype(_c,_PUNCT|_ALPHA|_DIGIT) )
334 #define iswcntrl(_c) ( iswctype(_c,_CONTROL) )
335 #define iswascii(_c) ( (unsigned)(_c) < 0x80 )
336 
337 #define _iswalpha_l(_c,_p) ( iswctype(_c,_ALPHA) )
338 #define _iswupper_l(_c,_p) ( iswctype(_c,_UPPER) )
339 #define _iswlower_l(_c,_p) ( iswctype(_c,_LOWER) )
340 #define _iswdigit_l(_c,_p) ( iswctype(_c,_DIGIT) )
341 #define _iswxdigit_l(_c,_p) ( iswctype(_c,_HEX) )
342 #define _iswspace_l(_c,_p) ( iswctype(_c,_SPACE) )
343 #define _iswpunct_l(_c,_p) ( iswctype(_c,_PUNCT) )
344 #define _iswblank_l(_c,_p) (((_c) == '\t') ? _BLANK : iswctype(_c,_BLANK) )
345 #define _iswalnum_l(_c,_p) ( iswctype(_c,_ALPHA|_DIGIT) )
346 #define _iswprint_l(_c,_p) ( iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT) )
347 #define _iswgraph_l(_c,_p) ( iswctype(_c,_PUNCT|_ALPHA|_DIGIT) )
348 #define _iswcntrl_l(_c,_p) ( iswctype(_c,_CONTROL) )
349 #endif /* !defined (__cplusplus) || defined (_M_CEE_PURE) || defined (MRTDLL) || defined (_CRT_WCTYPE_NOINLINE) */
350 #define _WCTYPE_INLINE_DEFINED
351 #endif /* _WCTYPE_INLINE_DEFINED */
352 
353 /* MS C version 2.0 extended ctype macros */
354 
355 #define __iscsymf(_c) (isalpha(_c) || ((_c) == '_'))
356 #define __iscsym(_c) (isalnum(_c) || ((_c) == '_'))
357 #define __iswcsymf(_c) (iswalpha(_c) || ((_c) == '_'))
358 #define __iswcsym(_c) (iswalnum(_c) || ((_c) == '_'))
359 
360 #define _iscsymf_l(_c, _p) (_isalpha_l(_c, _p) || ((_c) == '_'))
361 #define _iscsym_l(_c, _p) (_isalnum_l(_c, _p) || ((_c) == '_'))
362 #define _iswcsymf_l(_c, _p) (iswalpha(_c) || ((_c) == '_'))
363 #define _iswcsym_l(_c, _p) (iswalnum(_c) || ((_c) == '_'))
364 
365 #endif /* _CTYPE_DISABLE_MACROS */
366 
367 
368 #if !__STDC__
369 
370 /* Non-ANSI names for compatibility */
371 
372 #ifndef _CTYPE_DEFINED
377 #else /* _CTYPE_DEFINED */
378 #define isascii __isascii
379 #define toascii __toascii
380 #define iscsymf __iscsymf
381 #define iscsym __iscsym
382 #endif /* _CTYPE_DEFINED */
383 
384 #endif /* !__STDC__ */
385 
386 #ifdef __cplusplus
387 }
388 #endif /* __cplusplus */
389 
390 #endif /* _INC_CTYPE */
#define _iswxdigit_l(_c, _p)
Definition: ctype.h:341
#define _iswalpha_l(_c, _p)
Definition: ctype.h:337
_Check_return_ _CRTIMP wint_t __cdecl _towupper_l(_In_ wint_t _C, _In_opt_ _locale_t _Locale)
_Check_return_ _CRTIMP wint_t __cdecl towupper(_In_ wint_t _C)
#define iscsym
Definition: ctype.h:381
#define _iswalnum_l(_c, _p)
Definition: ctype.h:345
_Check_return_ _CRTIMP int __cdecl _toupper_l(_In_ int _C, _In_opt_ _locale_t _Locale)
#define iswgraph(_c)
Definition: ctype.h:333
#define _isxdigit_l(_Char, _Locale)
Definition: ctype.h:299
#define iswprint(_c)
Definition: ctype.h:332
struct threadmbcinfostruct * pthreadmbcinfo
Definition: crtdefs.h:2075
_Check_return_ _CRTIMP wint_t __cdecl _towlower_l(_In_ wint_t _C, _In_opt_ _locale_t _Locale)
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl isalpha(_In_ int _C)
#define toascii
Definition: ctype.h:379
#define _CRTIMP
Definition: crtdefs.h:23
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl tolower(_In_ int _C)
#define _isupper_l(_Char, _Locale)
Definition: ctype.h:296
#define iswlower(_c)
Definition: ctype.h:325
_CRTIMP int __mb_cur_max
#define iswpunct(_c)
Definition: ctype.h:329
Definition: crtdefs.h:2092
#define _iswcntrl_l(_c, _p)
Definition: ctype.h:348
unsigned short wctype_t
Definition: crtdefs.h:542
#define _isgraph_l(_Char, _Locale)
Definition: ctype.h:305
#define _iswgraph_l(_c, _p)
Definition: ctype.h:347
#define _iswupper_l(_c, _p)
Definition: ctype.h:338
unsigned short wint_t
Definition: crtdefs.h:541
#define iswascii(_c)
Definition: ctype.h:335
#define _isspace_l(_Char, _Locale)
Definition: ctype.h:300
#define iswdigit(_c)
Definition: ctype.h:326
#define __isascii(_Char)
Definition: ctype.h:311
#define _tolower(_Char)
Definition: ctype.h:308
_CRTIMP const unsigned short _wctype[]
_Check_return_ _CRTIMP int __cdecl iswctype(_In_ wint_t _C, _In_ wctype_t _Type)
_Check_return_ _CRTIMP int __cdecl isleadbyte(_In_ int _C)
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl toupper(_In_ int _C)
#define iswalnum(_c)
Definition: ctype.h:331
#define __iswcsym(_c)
Definition: ctype.h:358
_CRTIMP const wctype_t * _pwctype
#define _CRT_JIT_INTRINSIC
Definition: crtdefs.h:414
#define _iswdigit_l(_c, _p)
Definition: ctype.h:340
#define _Check_return_
Definition: sal.h:563
_CRTIMP int __cdecl ___mb_cur_max_l_func(_locale_t)
#define _In_
Definition: sal.h:314
_Check_return_ _In_z_ const char * _Locale
Definition: locale.h:117
#define _In_opt_
Definition: sal.h:315
#define isascii
Definition: ctype.h:378
#define __iscsym(_c)
Definition: ctype.h:356
#define iswcntrl(_c)
Definition: ctype.h:334
_Check_return_ _CRTIMP int __cdecl isxdigit(_In_ int _C)
_Check_return_ _CRTIMP int __cdecl isgraph(_In_ int _C)
#define _ispunct_l(_Char, _Locale)
Definition: ctype.h:301
_In_ wchar_t _C
Definition: wchar.h:1295
#define _isalnum_l(_Char, _Locale)
Definition: ctype.h:303
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl isspace(_In_ int _C)
#define _toupper(_Char)
Definition: ctype.h:309
_Check_return_ _CRTIMP int __cdecl _tolower_l(_In_ int _C, _In_opt_ _locale_t _Locale)
_Check_return_ _CRTIMP wint_t __cdecl towlower(_In_ wint_t _C)
_Check_return_ _CRTIMP int __cdecl _iswctype_l(_In_ wint_t _C, _In_ wctype_t _Type, _In_opt_ _locale_t _Locale)
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl isalnum(_In_ int _C)
#define _iswspace_l(_c, _p)
Definition: ctype.h:342
#define _isalpha_l(_Char, _Locale)
Definition: ctype.h:295
_In_ wctype_t _Type
Definition: ctype.h:205
_In_ size_t _In_ unsigned int _Ch
Definition: mbstring.h:161
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl islower(_In_ int _C)
#define _isprint_l(_Char, _Locale)
Definition: ctype.h:304
#define _isdigit_l(_Char, _Locale)
Definition: ctype.h:298
#define _CRT_NONSTDC_DEPRECATE(_NewName)
Definition: crtdefs.h:488
#define _iswprint_l(_c, _p)
Definition: ctype.h:346
_CRTIMP const unsigned short * _pctype
#define iswalpha(_c)
Definition: ctype.h:323
#define _islower_l(_Char, _Locale)
Definition: ctype.h:297
#define iswupper(_c)
Definition: ctype.h:324
_Check_return_ _CRTIMP int __cdecl ispunct(_In_ int _C)
_Check_return_ _CRTIMP int __cdecl _isctype_l(_In_ int _C, _In_ int _Type, _In_opt_ _locale_t _Locale)
#define _iswpunct_l(_c, _p)
Definition: ctype.h:343
_CRTIMP const unsigned short *__cdecl __pctype_func(void)
_CRTIMP int __cdecl ___mb_cur_max_func(void)
#define __toascii(_Char)
Definition: ctype.h:312
_Check_return_ _CRTIMP int __cdecl iscntrl(_In_ int _C)
#define _iswcsymf_l(_c, _p)
Definition: ctype.h:362
#define iscsymf
Definition: ctype.h:380
#define __iswcsymf(_c)
Definition: ctype.h:357
#define _iswcsym_l(_c, _p)
Definition: ctype.h:363
#define iswspace(_c)
Definition: ctype.h:328
_Check_return_ _CRTIMP int __cdecl isblank(_In_ int _C)
_CRT_OBSOLETE(iswctype) _CRTIMP int __cdecl is_wctype(_In_ wint_t _C
_CRT_MANAGED_FP_DEPRECATE _In_ unsigned int _Mask
Definition: float.h:120
#define __iscsymf(_c)
Definition: ctype.h:355
#define _iswlower_l(_c, _p)
Definition: ctype.h:339
#define _iscntrl_l(_Char, _Locale)
Definition: ctype.h:306
#define _isblank_l(_Char, _Locale)
Definition: ctype.h:302
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl isupper(_In_ int _C)
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl isdigit(_In_ int _C)
#define iswblank(_c)
Definition: ctype.h:330
_Check_return_ _CRTIMP int __cdecl isprint(_In_ int _C)
_Check_return_ _CRTIMP int __cdecl _isleadbyte_l(_In_ int _C, _In_opt_ _locale_t _Locale)
#define _iswblank_l(_c, _p)
Definition: ctype.h:344
_Check_return_ _CRTIMP int __cdecl _isctype(_In_ int _C, _In_ int _Type)
Definition: crtdefs.h:2078
#define iswxdigit(_c)
Definition: ctype.h:327
_CRTIMP const wctype_t *__cdecl __pwctype_func(void)