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
e59970a6
Commit
e59970a6
authored
Mar 18, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 18, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ctype.h: Add _to[w]lower_l and _to[w]upper_l declarations.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
23bc78c1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
corecrt_wctype.h
include/msvcrt/corecrt_wctype.h
+2
-0
ctype.h
include/msvcrt/ctype.h
+2
-0
No files found.
include/msvcrt/corecrt_wctype.h
View file @
e59970a6
...
...
@@ -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
);
...
...
include/msvcrt/ctype.h
View file @
e59970a6
...
...
@@ -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
);
...
...
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