Module: wine Branch: master Commit: e59970a60b0dc4e5510b3385f4685f20c8d2bb9a URL: https://source.winehq.org/git/wine.git/?a=commit;h=e59970a60b0dc4e5510b3385f...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Mar 18 18:43:49 2020 +0100
ctype.h: Add _to[w]lower_l and _to[w]upper_l declarations.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/msvcrt/corecrt_wctype.h | 2 ++ include/msvcrt/ctype.h | 2 ++ 2 files changed, 4 insertions(+)
diff --git a/include/msvcrt/corecrt_wctype.h b/include/msvcrt/corecrt_wctype.h index d090538fae..b9929383d0 100644 --- a/include/msvcrt/corecrt_wctype.h +++ b/include/msvcrt/corecrt_wctype.h @@ -24,6 +24,8 @@ extern "C" { #define _LEADBYTE 0x8000 #define _ALPHA (0x0100|_UPPER|_LOWER) /* (C1_ALPHA|_UPPER|_LOWER) */
+wchar_t __cdecl _towlower_l(wchar_t,_locale_t); +wchar_t __cdecl _towupper_l(wchar_t,_locale_t); int __cdecl is_wctype(wint_t,wctype_t); int __cdecl isleadbyte(int); int __cdecl iswalnum(wint_t); diff --git a/include/msvcrt/ctype.h b/include/msvcrt/ctype.h index 00e77c959b..6b6cf07cd9 100644 --- a/include/msvcrt/ctype.h +++ b/include/msvcrt/ctype.h @@ -24,7 +24,9 @@ int __cdecl __iscsymf(int); int __cdecl __toascii(int); int __cdecl _isctype(int,int); int __cdecl _tolower(int); +int __cdecl _tolower_l(int,_locale_t); int __cdecl _toupper(int); +int __cdecl _toupper_l(int,_locale_t); int __cdecl isalnum(int); int __cdecl isalpha(int); int __cdecl iscntrl(int);