HomeSort by relevance Sort by last modified time
    Searched full:_ischartype_l (Results 1 - 1 of 1) sorted by null

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ctype.h 203 #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)) macro
204 #define _isalpha_l(_Char,_Locale) _ischartype_l(_Char,_ALPHA,_Locale)
205 #define _isupper_l(_Char,_Locale) _ischartype_l(_Char,_UPPER,_Locale)
206 #define _islower_l(_Char,_Locale) _ischartype_l(_Char,_LOWER,_Locale)
207 #define _isdigit_l(_Char,_Locale) _ischartype_l(_Char,_DIGIT,_Locale)
208 #define _isxdigit_l(_Char,_Locale) _ischartype_l(_Char,_HEX,_Locale)
209 #define _isspace_l(_Char,_Locale) _ischartype_l(_Char,_SPACE,_Locale)
210 #define _ispunct_l(_Char,_Locale) _ischartype_l(_Char,_PUNCT,_Locale)
211 #define _isalnum_l(_Char,_Locale) _ischartype_l(_Char,_ALPHA|_DIGIT,_Locale)
212 #define _isprint_l(_Char,_Locale) _ischartype_l(_Char,_BLANK|_PUNCT|_ALPHA|_DIGIT,_Locale
    [all...]

Completed in 62 milliseconds