Commit 2d0e30f9 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msvcrt: Add _iswupper_l().

parent 3eab7798
......@@ -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
......
......@@ -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
......
......@@ -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
......
......@@ -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
......
......@@ -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
......
......@@ -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
......
......@@ -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
......
......@@ -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
......
......@@ -1919,6 +1919,14 @@ INT CDECL MSVCRT_iswupper( MSVCRT_wchar_t wc )
}
/*********************************************************************
* _iswupper_l (MSVCRT.@)
*/
int CDECL MSVCRT__iswupper_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return isupperW( wc );
}
/*********************************************************************
* iswxdigit (MSVCRT.@)
*/
INT CDECL MSVCRT_iswxdigit( MSVCRT_wchar_t wc )
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment