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
ea6a10de
Commit
ea6a10de
authored
Jan 15, 2001
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed toupper/_toupper mixup.
parent
f7f1defb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
crtdll.spec
dlls/crtdll/crtdll.spec
+2
-2
ctype.c
dlls/msvcrt/ctype.c
+2
-2
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+2
-0
No files found.
dlls/crtdll/crtdll.spec
View file @
ea6a10de
...
...
@@ -496,8 +496,8 @@ debug_channels (crtdll)
@ forward time msvcrt.time
@ forward tmpfile msvcrt.tmpfile
@ forward tmpnam msvcrt.tmpnam
@ forward tolower msvcrt.
_
tolower
@ forward toupper msvcrt.
_
toupper
@ forward tolower msvcrt.tolower
@ forward toupper msvcrt.toupper
@ forward towlower msvcrt.towlower
@ forward towupper msvcrt.towupper
@ forward ungetc msvcrt.ungetc
...
...
dlls/msvcrt/ctype.c
View file @
ea6a10de
...
...
@@ -238,7 +238,7 @@ int __cdecl MSVCRT___iscsymf(int c)
*/
int
__cdecl
MSVCRT__toupper
(
int
c
)
{
return
toupper
(
c
);
return
c
-
0x20
;
/* sic */
}
/*********************************************************************
...
...
@@ -246,5 +246,5 @@ int __cdecl MSVCRT__toupper(int c)
*/
int
__cdecl
MSVCRT__tolower
(
int
c
)
{
return
tolower
(
c
);
return
c
+
0x20
;
/* sic */
}
dlls/msvcrt/msvcrt.spec
View file @
ea6a10de
...
...
@@ -731,6 +731,8 @@ debug_channels (msvcrt)
@ cdecl time(ptr) MSVCRT_time
@ cdecl tmpfile() MSVCRT_tmpfile
@ cdecl tmpnam(str) MSVCRT_tmpnam
@ cdecl tolower(long) tolower
@ cdecl toupper(long) toupper
@ forward towlower ntdll.towlower
@ forward towupper ntdll.towupper
@ stub ungetc #(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