Commit bbf20dbb authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Don't use isspaceW.

parent 8d2a2c94
......@@ -2333,7 +2333,7 @@ __int64 CDECL MSVCRT__wcstoi64_l(const MSVCRT_wchar_t *nptr,
if(endptr)
*endptr = (MSVCRT_wchar_t*)nptr;
while(isspaceW(*nptr)) nptr++;
while(MSVCRT__iswspace_l(*nptr, locale)) nptr++;
if(*nptr == '-') {
negative = TRUE;
......@@ -2506,7 +2506,7 @@ unsigned __int64 CDECL MSVCRT__wcstoui64_l(const MSVCRT_wchar_t *nptr,
if(endptr)
*endptr = (MSVCRT_wchar_t*)nptr;
while(isspaceW(*nptr)) nptr++;
while(MSVCRT__iswspace_l(*nptr, locale)) nptr++;
if(*nptr == '-') {
negative = TRUE;
......@@ -2675,7 +2675,7 @@ __int64 CDECL MSVCRT__wtoi64_l(const MSVCRT_wchar_t *str, MSVCRT__locale_t local
ULONGLONG RunningTotal = 0;
BOOL bMinus = FALSE;
while (isspaceW(*str)) {
while (MSVCRT__iswspace_l(*str, locale)) {
str++;
} /* while */
......
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