msvcrt: Add _iswlower_l().
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3e1a562901
commit
3eab7798ad
@ -28,7 +28,7 @@
|
||||
@ cdecl _iswctype_l(long long ptr) ucrtbase._iswctype_l
|
||||
@ cdecl _iswdigit_l(long ptr) ucrtbase._iswdigit_l
|
||||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ cdecl _iswlower_l(long ptr) ucrtbase._iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ cdecl _iswpunct_l(long ptr) ucrtbase._iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) ucrtbase._iswspace_l
|
||||
|
@ -1024,7 +1024,7 @@
|
||||
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
|
||||
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
|
||||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
|
@ -1370,7 +1370,7 @@
|
||||
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
|
||||
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
|
||||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
|
@ -1376,7 +1376,7 @@
|
||||
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
|
||||
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
|
||||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
|
@ -1241,7 +1241,7 @@
|
||||
@ cdecl _iswctype_l(long long ptr) msvcr120._iswctype_l
|
||||
@ cdecl _iswdigit_l(long ptr) msvcr120._iswdigit_l
|
||||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ cdecl _iswlower_l(long ptr) msvcr120._iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ cdecl _iswpunct_l(long ptr) msvcr120._iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) msvcr120._iswspace_l
|
||||
|
@ -696,7 +696,7 @@
|
||||
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
|
||||
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
|
||||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
|
@ -674,7 +674,7 @@
|
||||
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
|
||||
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
|
||||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
|
@ -639,7 +639,7 @@
|
||||
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
|
||||
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
|
||||
# stub _iswgraph_l(long ptr)
|
||||
# stub _iswlower_l(long ptr)
|
||||
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
|
||||
# stub _iswprint_l(long ptr)
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
|
@ -1862,6 +1862,14 @@ INT CDECL MSVCRT_iswlower( MSVCRT_wchar_t wc )
|
||||
return islowerW( wc );
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* _iswlower_l (MSVCRT.@)
|
||||
*/
|
||||
int CDECL MSVCRT__iswlower_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
|
||||
{
|
||||
return islowerW( wc );
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* iswprint (MSVCRT.@)
|
||||
*/
|
||||
|
@ -515,7 +515,7 @@
|
||||
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
|
||||
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
|
||||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
|
Loading…
x
Reference in New Issue
Block a user