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
27e2c21b
Commit
27e2c21b
authored
Mar 19, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 19, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ctype.h: Add more declarations.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4713675f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
corecrt_wctype.h
include/msvcrt/corecrt_wctype.h
+3
-0
ctype.h
include/msvcrt/ctype.h
+2
-0
No files found.
include/msvcrt/corecrt_wctype.h
View file @
27e2c21b
...
...
@@ -24,6 +24,8 @@ extern "C" {
#define _LEADBYTE 0x8000
#define _ALPHA (0x0100|_UPPER|_LOWER)
/* (C1_ALPHA|_UPPER|_LOWER) */
int
__cdecl
_iswblank_l
(
wint_t
,
_locale_t
);
int
__cdecl
_iswctype_l
(
wint_t
,
wctype_t
,
_locale_t
);
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
);
...
...
@@ -31,6 +33,7 @@ int __cdecl isleadbyte(int);
int
__cdecl
iswalnum
(
wint_t
);
int
__cdecl
iswalpha
(
wint_t
);
int
__cdecl
iswascii
(
wint_t
);
int
__cdecl
iswblank
(
wint_t
);
int
__cdecl
iswcntrl
(
wint_t
);
int
__cdecl
iswctype
(
wint_t
,
wctype_t
);
int
__cdecl
iswdigit
(
wint_t
);
...
...
include/msvcrt/ctype.h
View file @
27e2c21b
...
...
@@ -22,6 +22,7 @@ int __cdecl __isascii(int);
int
__cdecl
__iscsym
(
int
);
int
__cdecl
__iscsymf
(
int
);
int
__cdecl
__toascii
(
int
);
int
__cdecl
_isblank_l
(
int
,
_locale_t
);
int
__cdecl
_isctype
(
int
,
int
);
int
__cdecl
_tolower
(
int
);
int
__cdecl
_tolower_l
(
int
,
_locale_t
);
...
...
@@ -29,6 +30,7 @@ int __cdecl _toupper(int);
int
__cdecl
_toupper_l
(
int
,
_locale_t
);
int
__cdecl
isalnum
(
int
);
int
__cdecl
isalpha
(
int
);
int
__cdecl
isblank
(
int
);
int
__cdecl
iscntrl
(
int
);
int
__cdecl
isdigit
(
int
);
int
__cdecl
isgraph
(
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