Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
45b4b420
Commit
45b4b420
authored
Oct 06, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added _iswdigit_l implementation.
parent
c867f332
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
6 deletions
+14
-6
msvcr100.spec
dlls/msvcr100/msvcr100.spec
+2
-2
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+2
-2
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
wcs.c
dlls/msvcrt/wcs.c
+8
-0
No files found.
dlls/msvcr100/msvcr100.spec
View file @
45b4b420
...
...
@@ -824,7 +824,7 @@
@ stub _iswcsym_l
@ stub _iswcsymf_l
@ stub _iswctype_l
@
stub
_iswdigit_l
@
cdecl _iswdigit_l(long ptr) msvcrt.
_iswdigit_l
@ stub _iswgraph_l
@ stub _iswlower_l
@ stub _iswprint_l
...
...
@@ -1267,7 +1267,7 @@
@ cdecl _vswprintf_c(ptr long wstr ptr) msvcrt._vswprintf_c
@ cdecl _vswprintf_c_l(ptr long wstr ptr ptr) msvcrt._vswprintf_c_l
@ cdecl _vswprintf_l(ptr wstr ptr ptr) msvcrt._vswprintf_l
@ cdecl _vswprintf_p(ptr long wstr ptr) msvcr
t._vswprintf
@ cdecl _vswprintf_p(ptr long wstr ptr) msvcr
90._vswprintf_p
@ cdecl _vswprintf_p_l(ptr long wstr ptr ptr) msvcrt._vswprintf_p_l
@ cdecl _vswprintf_s_l(ptr long wstr ptr ptr) msvcrt._vswprintf_s_l
@ stub _vwprintf_l
...
...
dlls/msvcr80/msvcr80.spec
View file @
45b4b420
...
...
@@ -670,7 +670,7 @@
@ stub _iswcsym_l
@ stub _iswcsymf_l
@ stub _iswctype_l
@
stub
_iswdigit_l
@
cdecl _iswdigit_l(long ptr) msvcrt.
_iswdigit_l
@ stub _iswgraph_l
@ stub _iswlower_l
@ stub _iswprint_l
...
...
@@ -1120,7 +1120,7 @@
@ cdecl _vswprintf_c(ptr long wstr ptr) msvcrt._vswprintf_c
@ cdecl _vswprintf_c_l(ptr long wstr ptr ptr) msvcrt._vswprintf_c_l
@ cdecl _vswprintf_l(ptr wstr ptr ptr) msvcrt._vswprintf_l
@ cdecl _vswprintf_p(ptr long wstr ptr) msvcr
t._vswprintf
@ cdecl _vswprintf_p(ptr long wstr ptr) msvcr
90._vswprintf_p
@ cdecl _vswprintf_p_l(ptr long wstr ptr ptr) msvcrt._vswprintf_p_l
@ cdecl _vswprintf_s_l(ptr long wstr ptr ptr) msvcrt._vswprintf_s_l
@ stub _vwprintf_l
...
...
dlls/msvcr90/msvcr90.spec
View file @
45b4b420
...
...
@@ -658,7 +658,7 @@
@ stub _iswcsym_l
@ stub _iswcsymf_l
@ stub _iswctype_l
@
stub
_iswdigit_l
@
cdecl _iswdigit_l(long ptr) msvcrt.
_iswdigit_l
@ stub _iswgraph_l
@ stub _iswlower_l
@ stub _iswprint_l
...
...
dlls/msvcrt/msvcrt.spec
View file @
45b4b420
...
...
@@ -607,7 +607,7 @@
@ cdecl _iswalpha_l(long ptr) MSVCRT__iswalpha_l
# stub _iswcntrl_l(long ptr)
# stub _iswctype_l(long long ptr)
# stub _iswdigit_l(long ptr)
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
# stub _iswgraph_l(long ptr)
# stub _iswlower_l(long ptr)
# stub _iswprint_l(long ptr)
...
...
dlls/msvcrt/wcs.c
View file @
45b4b420
...
...
@@ -1111,6 +1111,14 @@ INT CDECL MSVCRT_iswdigit( MSVCRT_wchar_t wc )
}
/*********************************************************************
* _iswdigit_l (MSVCRT.@)
*/
INT
CDECL
MSVCRT__iswdigit_l
(
MSVCRT_wchar_t
wc
,
MSVCRT__locale_t
locale
)
{
return
isdigitW
(
wc
);
}
/*********************************************************************
* iswgraph (MSVCRT.@)
*/
INT
CDECL
MSVCRT_iswgraph
(
MSVCRT_wchar_t
wc
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment