Searched refs:_iswctype_l (Results 1 – 5 of 5) sorted by relevance
/reactos/dll/win32/msvcrt/ |
H A D | stubs.c | 305 return _iswctype_l(c, _ALPHA|_DIGIT, locale); in _iswalnum_l() 317 return _iswctype_l(c, _ALPHA, locale); in _iswalpha_l() 330 return _iswctype_l(c, _CONTROL, locale); in _iswcntrl_l() 337 _iswctype_l( in _iswctype_l() function 355 return _iswctype_l(c, _DIGIT, locale); in _iswdigit_l() 367 return _iswctype_l(c, _PUNCT | _ALPHA | _DIGIT, locale); in _iswgraph_l() 379 return _iswctype_l(c , _LOWER, locale); in _iswlower_l() 403 return _iswctype_l(c, _PUNCT, locale); in _iswpunct_l() 415 return _iswctype_l(c, _SPACE, locale); in _iswspace_l() 427 return _iswctype_l(c, _UPPER, locale); in _iswupper_l() [all …]
|
H A D | msvcrt.spec | 688 @ cdecl -version=0x600+ _iswctype_l(long ptr)
|
/reactos/sdk/include/crt/ |
H A D | ctype.h | 573 _iswctype_l( 676 #define _iswalpha_l(_c,_p) (_iswctype_l(_c,_ALPHA,_p)) 677 #define _iswupper_l(_c,_p) (_iswctype_l(_c,_UPPER,_p)) 678 #define _iswlower_l(_c,_p) (_iswctype_l(_c,_LOWER,_p)) 679 #define _iswdigit_l(_c,_p) (_iswctype_l(_c,_DIGIT,_p)) 680 #define _iswxdigit_l(_c,_p) (_iswctype_l(_c,_HEX,_p)) 681 #define _iswspace_l(_c,_p) (_iswctype_l(_c,_SPACE,_p)) 682 #define _iswpunct_l(_c,_p) (_iswctype_l(_c,_PUNCT,_p)) 683 #define _iswalnum_l(_c,_p) (_iswctype_l(_c,_ALPHA|_DIGIT,_p)) 685 #define _iswgraph_l(_c,_p) (_iswctype_l(_c,_PUNCT|_ALPHA|_DIGIT,_p)) [all …]
|
H A D | wchar.h | 586 #define _iswalpha_l(_c,_p) (_iswctype_l(_c,_ALPHA,_p)) 587 #define _iswupper_l(_c,_p) (_iswctype_l(_c,_UPPER,_p)) 588 #define _iswlower_l(_c,_p) (_iswctype_l(_c,_LOWER,_p)) 589 #define _iswdigit_l(_c,_p) (_iswctype_l(_c,_DIGIT,_p)) 590 #define _iswxdigit_l(_c,_p) (_iswctype_l(_c,_HEX,_p)) 591 #define _iswspace_l(_c,_p) (_iswctype_l(_c,_SPACE,_p)) 592 #define _iswpunct_l(_c,_p) (_iswctype_l(_c,_PUNCT,_p)) 593 #define _iswalnum_l(_c,_p) (_iswctype_l(_c,_ALPHA|_DIGIT,_p)) 594 #define _iswprint_l(_c,_p) (_iswctype_l(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT,_p)) 595 #define _iswgraph_l(_c,_p) (_iswctype_l(_c,_PUNCT|_ALPHA|_DIGIT,_p)) [all …]
|
/reactos/modules/rostests/apitests/crt/ |
H A D | msvcrt_crt_apitest.cmake | 424 # _iswctype_l
|