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
28cc0b8b
Commit
28cc0b8b
authored
Mar 13, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Mar 13, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Improve toupper_l implementation.
parent
13f6194b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
12 deletions
+17
-12
ctype.c
dlls/msvcrt/ctype.c
+17
-12
No files found.
dlls/msvcrt/ctype.c
View file @
28cc0b8b
...
@@ -339,37 +339,42 @@ int CDECL MSVCRT___iscsymf(int c)
...
@@ -339,37 +339,42 @@ int CDECL MSVCRT___iscsymf(int c)
int
CDECL
MSVCRT__toupper_l
(
int
c
,
MSVCRT__locale_t
locale
)
int
CDECL
MSVCRT__toupper_l
(
int
c
,
MSVCRT__locale_t
locale
)
{
{
MSVCRT_pthreadlocinfo
locinfo
;
MSVCRT_pthreadlocinfo
locinfo
;
unsigned
char
str
[
2
],
*
p
=
str
;
WCHAR
wide
,
upper
;
if
(
!
locale
)
if
(
!
locale
)
locinfo
=
get_locinfo
();
locinfo
=
get_locinfo
();
else
else
locinfo
=
locale
->
locinfo
;
locinfo
=
locale
->
locinfo
;
if
(
c
<
256
)
if
(
(
unsigned
)
c
<
256
)
return
locinfo
->
pcumap
[
(
unsigned
char
)
c
];
return
locinfo
->
pcumap
[
c
];
if
(
locinfo
->
pctype
[(
c
>>
8
)
&
255
]
&
MSVCRT__LEADBYTE
)
if
(
locinfo
->
pctype
[(
c
>>
8
)
&
255
]
&
MSVCRT__LEADBYTE
)
{
WCHAR
wide
,
upper
;
char
str
[
2
],
*
p
=
str
;
*
p
++
=
(
c
>>
8
)
&
255
;
*
p
++
=
(
c
>>
8
)
&
255
;
else
{
*
MSVCRT__errno
()
=
MSVCRT_EILSEQ
;
str
[
1
]
=
0
;
}
*
p
++
=
c
&
255
;
*
p
++
=
c
&
255
;
if
(
!
MultiByteToWideChar
(
locinfo
->
lc_codepage
,
if
(
!
MultiByteToWideChar
(
locinfo
->
lc_codepage
,
MB_ERR_INVALID_CHARS
,
str
,
2
,
&
wide
,
1
))
MB_ERR_INVALID_CHARS
,
(
char
*
)
str
,
p
-
str
,
&
wide
,
1
))
return
c
;
return
c
;
upper
=
toupperW
(
wide
);
upper
=
toupperW
(
wide
);
if
(
upper
==
wide
)
if
(
upper
==
wide
)
return
c
;
WideCharToMultiByte
(
locinfo
->
lc_codepage
,
0
,
&
upper
,
1
,
str
,
2
,
NULL
,
NULL
);
return
str
[
0
]
+
(
str
[
1
]
<<
8
);
return
str
[
0
]
+
(
str
[
1
]
<<
8
);
}
switch
(
WideCharToMultiByte
(
locinfo
->
lc_codepage
,
0
,
&
upper
,
1
,
(
char
*
)
str
,
2
,
NULL
,
NULL
))
{
case
0
:
return
c
;
return
c
;
case
1
:
return
str
[
0
];
default:
return
str
[
0
]
+
(
str
[
1
]
<<
8
);
}
}
}
/*********************************************************************
/*********************************************************************
...
...
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