From e59970a60b0dc4e5510b3385f4685f20c8d2bb9a Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Wed, 18 Mar 2020 18:43:49 +0100 Subject: [PATCH] ctype.h: Add _to[w]lower_l and _to[w]upper_l declarations. Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- 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 d090538faef..b9929383d03 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 00e77c959b4..6b6cf07cd96 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);