From: Rémi Bernon <rbernon(a)codeweavers.com> --- include/msvcrt/ctype.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/msvcrt/ctype.h b/include/msvcrt/ctype.h index 312888c3cfc..88e79411f64 100644 --- a/include/msvcrt/ctype.h +++ b/include/msvcrt/ctype.h @@ -25,6 +25,10 @@ _ACRTIMP int __cdecl __toascii(int); _ACRTIMP int __cdecl _isblank_l(int,_locale_t); _ACRTIMP int __cdecl _isctype(int,int); _ACRTIMP int __cdecl _isctype_l(int,int,_locale_t); +_ACRTIMP int __cdecl _islower_l(int,_locale_t); +_ACRTIMP int __cdecl _isupper_l(int,_locale_t); +_ACRTIMP int __cdecl _isdigit_l(int,_locale_t); +_ACRTIMP int __cdecl _isxdigit_l(int,_locale_t); _ACRTIMP int __cdecl _tolower(int); _ACRTIMP int __cdecl _tolower_l(int,_locale_t); _ACRTIMP int __cdecl _toupper(int); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6730