STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Macros | Functions | Variables
ctype.h File Reference
#include <crtdefs.h>

Go to the source code of this file.

Macros

#define _INC_CTYPE
 
#define WEOF   (wint_t)(0xFFFF)
 
#define _CRT_CTYPEDATA_DEFINED
 
#define __PCTYPE_FUNC   __pctype_func()
 
#define _CRT_WCTYPEDATA_DEFINED
 
#define _UPPER   0x1 /* upper case letter */
 
#define _LOWER   0x2 /* lower case letter */
 
#define _DIGIT   0x4 /* digit[0-9] */
 
#define _SPACE   0x8 /* space, tab, carriage return, newline, */
 
#define _PUNCT   0x10 /* punctuation character */
 
#define _CONTROL   0x20 /* control character */
 
#define _BLANK   0x40 /* space char (tab handled separately) */
 
#define _HEX   0x80 /* hexadecimal digit */
 
#define _LEADBYTE   0x8000 /* multibyte leadbyte */
 
#define _ALPHA   (0x0100|_UPPER|_LOWER) /* alphabetic character */
 
#define _CTYPE_DEFINED
 
#define _WCTYPE_DEFINED
 
#define MB_CUR_MAX   ___mb_cur_max_func()
 
#define __chvalidchk(a, b)   (__PCTYPE_FUNC[(a)] & (b))
 
#define _chvalidchk_l(_Char, _Flag, _Locale)   (_Locale==NULL ? __chvalidchk(_Char, _Flag) : ((_locale_t)_Locale)->locinfo->pctype[_Char] & (_Flag))
 
#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))
 
#define _isalpha_l(_Char, _Locale)   _ischartype_l(_Char, _ALPHA, _Locale)
 
#define _isupper_l(_Char, _Locale)   _ischartype_l(_Char, _UPPER, _Locale)
 
#define _islower_l(_Char, _Locale)   _ischartype_l(_Char, _LOWER, _Locale)
 
#define _isdigit_l(_Char, _Locale)   _ischartype_l(_Char, _DIGIT, _Locale)
 
#define _isxdigit_l(_Char, _Locale)   _ischartype_l(_Char, _HEX, _Locale)
 
#define _isspace_l(_Char, _Locale)   _ischartype_l(_Char, _SPACE, _Locale)
 
#define _ispunct_l(_Char, _Locale)   _ischartype_l(_Char, _PUNCT, _Locale)
 
#define _isblank_l(_Char, _Locale)   (((_Char) == '\t') ? _BLANK : _ischartype_l(_Char, _BLANK, _Locale))
 
#define _isalnum_l(_Char, _Locale)   _ischartype_l(_Char, _ALPHA|_DIGIT, _Locale)
 
#define _isprint_l(_Char, _Locale)   _ischartype_l(_Char, _BLANK|_PUNCT|_ALPHA|_DIGIT, _Locale)
 
#define _isgraph_l(_Char, _Locale)   _ischartype_l(_Char, _PUNCT|_ALPHA|_DIGIT, _Locale)
 
#define _iscntrl_l(_Char, _Locale)   _ischartype_l(_Char, _CONTROL, _Locale)
 
#define _tolower(_Char)   ( (_Char)-'A'+'a' )
 
#define _toupper(_Char)   ( (_Char)-'a'+'A' )
 
#define __isascii(_Char)   ( (unsigned)(_Char) < 0x80 )
 
#define __toascii(_Char)   ( (_Char) & 0x7f )
 
#define iswalpha(_c)   ( iswctype(_c,_ALPHA) )
 
#define iswupper(_c)   ( iswctype(_c,_UPPER) )
 
#define iswlower(_c)   ( iswctype(_c,_LOWER) )
 
#define iswdigit(_c)   ( iswctype(_c,_DIGIT) )
 
#define iswxdigit(_c)   ( iswctype(_c,_HEX) )
 
#define iswspace(_c)   ( iswctype(_c,_SPACE) )
 
#define iswpunct(_c)   ( iswctype(_c,_PUNCT) )
 
#define iswblank(_c)   (((_c) == '\t') ? _BLANK : iswctype(_c,_BLANK) )
 
#define iswalnum(_c)   ( iswctype(_c,_ALPHA|_DIGIT) )
 
#define iswprint(_c)   ( iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT) )
 
#define iswgraph(_c)   ( iswctype(_c,_PUNCT|_ALPHA|_DIGIT) )
 
#define iswcntrl(_c)   ( iswctype(_c,_CONTROL) )
 
#define iswascii(_c)   ( (unsigned)(_c) < 0x80 )
 
#define _iswalpha_l(_c, _p)   ( iswctype(_c,_ALPHA) )
 
#define _iswupper_l(_c, _p)   ( iswctype(_c,_UPPER) )
 
#define _iswlower_l(_c, _p)   ( iswctype(_c,_LOWER) )
 
#define _iswdigit_l(_c, _p)   ( iswctype(_c,_DIGIT) )
 
#define _iswxdigit_l(_c, _p)   ( iswctype(_c,_HEX) )
 
#define _iswspace_l(_c, _p)   ( iswctype(_c,_SPACE) )
 
#define _iswpunct_l(_c, _p)   ( iswctype(_c,_PUNCT) )
 
#define _iswblank_l(_c, _p)   (((_c) == '\t') ? _BLANK : iswctype(_c,_BLANK) )
 
#define _iswalnum_l(_c, _p)   ( iswctype(_c,_ALPHA|_DIGIT) )
 
#define _iswprint_l(_c, _p)   ( iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT) )
 
#define _iswgraph_l(_c, _p)   ( iswctype(_c,_PUNCT|_ALPHA|_DIGIT) )
 
#define _iswcntrl_l(_c, _p)   ( iswctype(_c,_CONTROL) )
 
#define _WCTYPE_INLINE_DEFINED
 
#define __iscsymf(_c)   (isalpha(_c) || ((_c) == '_'))
 
#define __iscsym(_c)   (isalnum(_c) || ((_c) == '_'))
 
#define __iswcsymf(_c)   (iswalpha(_c) || ((_c) == '_'))
 
#define __iswcsym(_c)   (iswalnum(_c) || ((_c) == '_'))
 
#define _iscsymf_l(_c, _p)   (_isalpha_l(_c, _p) || ((_c) == '_'))
 
#define _iscsym_l(_c, _p)   (_isalnum_l(_c, _p) || ((_c) == '_'))
 
#define _iswcsymf_l(_c, _p)   (iswalpha(_c) || ((_c) == '_'))
 
#define _iswcsym_l(_c, _p)   (iswalnum(_c) || ((_c) == '_'))
 
#define isascii   __isascii
 
#define toascii   __toascii
 
#define iscsymf   __iscsymf
 
#define iscsym   __iscsym
 

Functions

_CRTIMP const unsigned short *__cdecl __pctype_func (void)
 
_CRTIMP const wctype_t *__cdecl __pwctype_func (void)
 
_Check_return_ _CRTIMP int __cdecl _isctype (_In_ int _C, _In_ int _Type)
 
_Check_return_ _CRTIMP int __cdecl _isctype_l (_In_ int _C, _In_ int _Type, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl isalpha (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _isalpha_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl isupper (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _isupper_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl islower (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _islower_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl isdigit (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _isdigit_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl isxdigit (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _isxdigit_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl isspace (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _isspace_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl ispunct (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _ispunct_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl isblank (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _isblank_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl isalnum (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _isalnum_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl isprint (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _isprint_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl isgraph (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _isgraph_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iscntrl (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _iscntrl_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl toupper (_In_ int _C)
 
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl tolower (_In_ int _C)
 
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl _tolower (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _tolower_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP int __cdecl _toupper (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _toupper_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl __isascii (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl __toascii (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl __iscsymf (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl __iscsym (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl iswalpha (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswalpha_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswupper (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswupper_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswlower (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswlower_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswdigit (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswdigit_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswxdigit (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswxdigit_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswspace (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswspace_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswpunct (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswpunct_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswblank (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswblank_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswalnum (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswalnum_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswprint (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswprint_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswgraph (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswgraph_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswcntrl (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswcntrl_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswascii (_In_ wint_t _C)
 
_Check_return_ _CRTIMP wint_t __cdecl towupper (_In_ wint_t _C)
 
_Check_return_ _CRTIMP wint_t __cdecl _towupper_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP wint_t __cdecl towlower (_In_ wint_t _C)
 
_Check_return_ _CRTIMP wint_t __cdecl _towlower_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl iswctype (_In_ wint_t _C, _In_ wctype_t _Type)
 
_Check_return_ _CRTIMP int __cdecl _iswctype_l (_In_ wint_t _C, _In_ wctype_t _Type, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl __iswcsymf (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswcsymf_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl __iswcsym (_In_ wint_t _C)
 
_Check_return_ _CRTIMP int __cdecl _iswcsym_l (_In_ wint_t _C, _In_opt_ _locale_t _Locale)
 
_Check_return_ _CRTIMP int __cdecl isleadbyte (_In_ int _C)
 
_Check_return_ _CRTIMP int __cdecl _isleadbyte_l (_In_ int _C, _In_opt_ _locale_t _Locale)
 
 _CRT_OBSOLETE (iswctype) _CRTIMP int __cdecl is_wctype(_In_ wint_t _C
 
_CRTIMP int __cdecl ___mb_cur_max_func (void)
 
_CRTIMP int __cdecl ___mb_cur_max_l_func (_locale_t)
 

Variables

_CRTIMP const unsigned short * _pctype
 
_CRTIMP const unsigned short _wctype []
 
_CRTIMP const wctype_t_pwctype
 
_In_ wctype_t _Type
 
_CRTIMP int __mb_cur_max
 

Macro Definition Documentation

#define __chvalidchk (   a,
 
)    (__PCTYPE_FUNC[(a)] & (b))
#define __isascii (   _Char)    ( (unsigned)(_Char) < 0x80 )
#define __iscsym (   _c)    (isalnum(_c) || ((_c) == '_'))
#define __iscsymf (   _c)    (isalpha(_c) || ((_c) == '_'))
#define __iswcsym (   _c)    (iswalnum(_c) || ((_c) == '_'))
#define __iswcsymf (   _c)    (iswalpha(_c) || ((_c) == '_'))
#define __PCTYPE_FUNC   __pctype_func()
#define __toascii (   _Char)    ( (_Char) & 0x7f )
#define _ALPHA   (0x0100|_UPPER|_LOWER) /* alphabetic character */
#define _BLANK   0x40 /* space char (tab handled separately) */
#define _chvalidchk_l (   _Char,
  _Flag,
  _Locale 
)    (_Locale==NULL ? __chvalidchk(_Char, _Flag) : ((_locale_t)_Locale)->locinfo->pctype[_Char] & (_Flag))
#define _CONTROL   0x20 /* control character */
#define _CRT_CTYPEDATA_DEFINED
#define _CRT_WCTYPEDATA_DEFINED
#define _CTYPE_DEFINED
#define _DIGIT   0x4 /* digit[0-9] */
#define _HEX   0x80 /* hexadecimal digit */
#define _INC_CTYPE
#define _isalnum_l (   _Char,
  _Locale 
)    _ischartype_l(_Char, _ALPHA|_DIGIT, _Locale)
#define _isalpha_l (   _Char,
  _Locale 
)    _ischartype_l(_Char, _ALPHA, _Locale)
#define _isblank_l (   _Char,
  _Locale 
)    (((_Char) == '\t') ? _BLANK : _ischartype_l(_Char, _BLANK, _Locale))
#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))
#define _iscntrl_l (   _Char,
  _Locale 
)    _ischartype_l(_Char, _CONTROL, _Locale)
#define _iscsym_l (   _c,
  _p 
)    (_isalnum_l(_c, _p) || ((_c) == '_'))
#define _iscsymf_l (   _c,
  _p 
)    (_isalpha_l(_c, _p) || ((_c) == '_'))
#define _isdigit_l (   _Char,
  _Locale 
)    _ischartype_l(_Char, _DIGIT, _Locale)
#define _isgraph_l (   _Char,
  _Locale 
)    _ischartype_l(_Char, _PUNCT|_ALPHA|_DIGIT, _Locale)
#define _islower_l (   _Char,
  _Locale 
)    _ischartype_l(_Char, _LOWER, _Locale)
#define _isprint_l (   _Char,
  _Locale 
)    _ischartype_l(_Char, _BLANK|_PUNCT|_ALPHA|_DIGIT, _Locale)
#define _ispunct_l (   _Char,
  _Locale 
)    _ischartype_l(_Char, _PUNCT, _Locale)
#define _isspace_l (   _Char,
  _Locale 
)    _ischartype_l(_Char, _SPACE, _Locale)
#define _isupper_l (   _Char,
  _Locale 
)    _ischartype_l(_Char, _UPPER, _Locale)
#define _iswalnum_l (   _c,
  _p 
)    ( iswctype(_c,_ALPHA|_DIGIT) )
#define _iswalpha_l (   _c,
  _p 
)    ( iswctype(_c,_ALPHA) )
#define _iswblank_l (   _c,
  _p 
)    (((_c) == '\t') ? _BLANK : iswctype(_c,_BLANK) )
#define _iswcntrl_l (   _c,
  _p 
)    ( iswctype(_c,_CONTROL) )
#define _iswcsym_l (   _c,
  _p 
)    (iswalnum(_c) || ((_c) == '_'))
#define _iswcsymf_l (   _c,
  _p 
)    (iswalpha(_c) || ((_c) == '_'))
#define _iswdigit_l (   _c,
  _p 
)    ( iswctype(_c,_DIGIT) )
#define _iswgraph_l (   _c,
  _p 
)    ( iswctype(_c,_PUNCT|_ALPHA|_DIGIT) )
#define _iswlower_l (   _c,
  _p 
)    ( iswctype(_c,_LOWER) )
#define _iswprint_l (   _c,
  _p 
)    ( iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT) )
#define _iswpunct_l (   _c,
  _p 
)    ( iswctype(_c,_PUNCT) )
#define _iswspace_l (   _c,
  _p 
)    ( iswctype(_c,_SPACE) )
#define _iswupper_l (   _c,
  _p 
)    ( iswctype(_c,_UPPER) )
#define _iswxdigit_l (   _c,
  _p 
)    ( iswctype(_c,_HEX) )
#define _isxdigit_l (   _Char,
  _Locale 
)    _ischartype_l(_Char, _HEX, _Locale)
#define _LEADBYTE   0x8000 /* multibyte leadbyte */
#define _LOWER   0x2 /* lower case letter */
#define _PUNCT   0x10 /* punctuation character */
#define _SPACE   0x8 /* space, tab, carriage return, newline, */
#define _tolower (   _Char)    ( (_Char)-'A'+'a' )
#define _toupper (   _Char)    ( (_Char)-'a'+'A' )
#define _UPPER   0x1 /* upper case letter */
#define _WCTYPE_DEFINED
#define _WCTYPE_INLINE_DEFINED
#define isascii   __isascii
#define iscsym   __iscsym
#define iscsymf   __iscsymf
#define iswalnum (   _c)    ( iswctype(_c,_ALPHA|_DIGIT) )
#define iswalpha (   _c)    ( iswctype(_c,_ALPHA) )
#define iswascii (   _c)    ( (unsigned)(_c) < 0x80 )
#define iswblank (   _c)    (((_c) == '\t') ? _BLANK : iswctype(_c,_BLANK) )
#define iswcntrl (   _c)    ( iswctype(_c,_CONTROL) )
#define iswdigit (   _c)    ( iswctype(_c,_DIGIT) )
#define iswgraph (   _c)    ( iswctype(_c,_PUNCT|_ALPHA|_DIGIT) )
#define iswlower (   _c)    ( iswctype(_c,_LOWER) )
#define iswprint (   _c)    ( iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT) )
#define iswpunct (   _c)    ( iswctype(_c,_PUNCT) )
#define iswspace (   _c)    ( iswctype(_c,_SPACE) )
#define iswupper (   _c)    ( iswctype(_c,_UPPER) )
#define iswxdigit (   _c)    ( iswctype(_c,_HEX) )
#define MB_CUR_MAX   ___mb_cur_max_func()
#define toascii   __toascii
#define WEOF   (wint_t)(0xFFFF)

Function Documentation

_CRTIMP int __cdecl ___mb_cur_max_func ( void  )
_CRTIMP int __cdecl ___mb_cur_max_l_func ( _locale_t  )
_Check_return_ _CRTIMP int __cdecl __isascii ( _In_ int  _C)
_Check_return_ _CRTIMP int __cdecl __iscsym ( _In_ int  _C)
_Check_return_ _CRTIMP int __cdecl __iscsymf ( _In_ int  _C)
_Check_return_ _CRTIMP int __cdecl __iswcsym ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl __iswcsymf ( _In_ wint_t  _C)
_CRTIMP const unsigned short* __cdecl __pctype_func ( void  )
_CRTIMP const wctype_t* __cdecl __pwctype_func ( void  )
_Check_return_ _CRTIMP int __cdecl __toascii ( _In_ int  _C)
_CRT_OBSOLETE ( iswctype  )
_Check_return_ _CRTIMP int __cdecl _isalnum_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _isalpha_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _isblank_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iscntrl_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _isctype ( _In_ int  _C,
_In_ int  _Type 
)
_Check_return_ _CRTIMP int __cdecl _isctype_l ( _In_ int  _C,
_In_ int  _Type,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _isdigit_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _isgraph_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _isleadbyte_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _islower_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _isprint_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _ispunct_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _isspace_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _isupper_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswalnum_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswalpha_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswblank_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswcntrl_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswcsym_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswcsymf_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswctype_l ( _In_ wint_t  _C,
_In_ wctype_t  _Type,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswdigit_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswgraph_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswlower_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswprint_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswpunct_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswspace_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswupper_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _iswxdigit_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _isxdigit_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _tolower_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl _toupper_l ( _In_ int  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP wint_t __cdecl _towlower_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP wint_t __cdecl _towupper_l ( _In_ wint_t  _C,
_In_opt_ _locale_t  _Locale 
)
_Check_return_ _CRTIMP int __cdecl isblank ( _In_ int  _C)
_Check_return_ _CRTIMP int __cdecl iscntrl ( _In_ int  _C)
_Check_return_ _CRTIMP int __cdecl isgraph ( _In_ int  _C)
_Check_return_ _CRTIMP int __cdecl isleadbyte ( _In_ int  _C)
_Check_return_ _CRTIMP int __cdecl isprint ( _In_ int  _C)
_Check_return_ _CRTIMP int __cdecl ispunct ( _In_ int  _C)
_Check_return_ _CRTIMP int __cdecl iswalnum ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswalpha ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswascii ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswblank ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswcntrl ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswctype ( _In_ wint_t  _C,
_In_ wctype_t  _Type 
)
_Check_return_ _CRTIMP int __cdecl iswdigit ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswgraph ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswlower ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswprint ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswpunct ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswspace ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswupper ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl iswxdigit ( _In_ wint_t  _C)
_Check_return_ _CRTIMP int __cdecl isxdigit ( _In_ int  _C)
_Check_return_ _CRTIMP wint_t __cdecl towlower ( _In_ wint_t  _C)
_Check_return_ _CRTIMP wint_t __cdecl towupper ( _In_ wint_t  _C)

Variable Documentation

_CRTIMP int __mb_cur_max
_CRTIMP const unsigned short* _pctype
_CRTIMP const wctype_t* _pwctype
_In_ wctype_t _Type
_CRTIMP const unsigned short _wctype[]