msvcrt: Add _iswupper_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>
oldstable
Nikolay Sivov 2018-11-15 08:14:26 +03:00 committed by Alexandre Julliard
parent 3eab7798ad
commit 2d0e30f96f
10 changed files with 17 additions and 9 deletions

View File

@ -32,7 +32,7 @@
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) ucrtbase._iswpunct_l
@ cdecl _iswspace_l(long ptr) ucrtbase._iswspace_l
@ stub _iswupper_l
@ cdecl _iswupper_l(long ptr) ucrtbase._iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) ucrtbase._isxdigit_l
@ cdecl _memccpy(ptr ptr long long) ucrtbase._memccpy

View File

@ -1028,7 +1028,7 @@
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
@ stub _iswupper_l
@ cdecl _iswupper_l(long ptr) MSVCRT__iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l
@ cdecl _itoa(long ptr long) MSVCRT__itoa

View File

@ -1374,7 +1374,7 @@
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
@ stub _iswupper_l
@ cdecl _iswupper_l(long ptr) MSVCRT__iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l
@ cdecl _itoa(long ptr long) MSVCRT__itoa

View File

@ -1380,7 +1380,7 @@
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
@ stub _iswupper_l
@ cdecl _iswupper_l(long ptr) MSVCRT__iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l
@ cdecl _itoa(long ptr long) MSVCRT__itoa

View File

@ -1245,7 +1245,7 @@
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) msvcr120._iswpunct_l
@ cdecl _iswspace_l(long ptr) msvcr120._iswspace_l
@ stub _iswupper_l
@ cdecl _iswupper_l(long ptr) msvcr120._iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) msvcr120._isxdigit_l
@ cdecl _itoa(long ptr long) msvcr120._itoa

View File

@ -700,7 +700,7 @@
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
@ stub _iswupper_l
@ cdecl _iswupper_l(long ptr) MSVCRT__iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l
@ cdecl _itoa(long ptr long) MSVCRT__itoa

View File

@ -678,7 +678,7 @@
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
@ stub _iswupper_l
@ cdecl _iswupper_l(long ptr) MSVCRT__iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l
@ cdecl _itoa(long ptr long) MSVCRT__itoa

View File

@ -643,7 +643,7 @@
# stub _iswprint_l(long ptr)
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
# stub _iswupper_l(long ptr)
@ cdecl _iswupper_l(long ptr) MSVCRT__iswupper_l
# stub _iswxdigit_l(long ptr)
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l
@ cdecl _itoa(long ptr long) MSVCRT__itoa

View File

@ -1918,6 +1918,14 @@ INT CDECL MSVCRT_iswupper( MSVCRT_wchar_t wc )
return isupperW( wc );
}
/*********************************************************************
* _iswupper_l (MSVCRT.@)
*/
int CDECL MSVCRT__iswupper_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return isupperW( wc );
}
/*********************************************************************
* iswxdigit (MSVCRT.@)
*/

View File

@ -519,7 +519,7 @@
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
@ stub _iswupper_l
@ cdecl _iswupper_l(long ptr) MSVCRT__iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l
@ cdecl _itoa(long ptr long) MSVCRT__itoa