Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e3ec37e8
Commit
e3ec37e8
authored
May 12, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
May 12, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added _isctype_l implementation.
parent
69ea5768
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
ctype.c
dlls/msvcrt/ctype.c
+12
-3
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcrt/ctype.c
View file @
e3ec37e8
...
...
@@ -66,11 +66,12 @@ WORD** CDECL MSVCRT___pctype_func(void)
}
/*********************************************************************
* _isctype (MSVCRT.@)
* _isctype
_l
(MSVCRT.@)
*/
int
CDECL
_isctype
(
int
c
,
int
typ
e
)
int
CDECL
_isctype
_l
(
int
c
,
int
type
,
MSVCRT__locale_t
local
e
)
{
MSVCRT__locale_t
locale
=
get_locale
();
if
(
!
locale
)
locale
=
get_locale
();
if
(
c
>=
-
1
&&
c
<=
255
)
return
locale
->
locinfo
->
pctype
[
c
]
&
type
;
...
...
@@ -94,6 +95,14 @@ int CDECL _isctype(int c, int type)
}
/*********************************************************************
* _isctype (MSVCRT.@)
*/
int
CDECL
_isctype
(
int
c
,
int
type
)
{
return
_isctype_l
(
c
,
type
,
NULL
);
}
/*********************************************************************
* isalnum (MSVCRT.@)
*/
int
CDECL
MSVCRT_isalnum
(
int
c
)
...
...
dlls/msvcrt/msvcrt.spec
View file @
e3ec37e8
...
...
@@ -535,7 +535,7 @@
@ cdecl _isatty(long)
# stub _iscntrl_l(long ptr)
@ cdecl _isctype(long long)
# stub
_isctype_l(long long ptr)
@ cdecl
_isctype_l(long long ptr)
# stub _isdigit_l(long ptr)
# stub _isgraph_l(long ptr)
# stub _isleadbyte_l(long ptr)
...
...
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