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
bab91aa4
Commit
bab91aa4
authored
Sep 17, 2001
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 17, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented _mbsupr.
parent
49c7aff2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
1 deletion
+23
-1
mbcs.c
dlls/msvcrt/mbcs.c
+22
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcrt/mbcs.c
View file @
bab91aa4
...
...
@@ -572,6 +572,28 @@ unsigned char * _mbslwr( unsigned char *string )
/*********************************************************************
* _mbsupr(MSVCRT.@)
*/
unsigned
char
*
_mbsupr
(
unsigned
char
*
string
)
{
unsigned
char
*
p
;
if
(
MSVCRT___mb_cur_max
>
1
)
{
FIXME
(
"%s
\n
"
,
string
);
return
string
;
}
p
=
string
;
while
(
*
p
)
{
*
p
=
toupper
(
*
p
);
p
++
;
}
return
string
;
}
/*********************************************************************
* _mbsnbcpy(MSVCRT.@)
*/
unsigned
char
*
_mbsnbcpy
(
unsigned
char
*
dest
,
const
unsigned
char
*
src
,
MSVCRT_size_t
n
)
...
...
dlls/msvcrt/msvcrt.spec
View file @
bab91aa4
...
...
@@ -392,7 +392,7 @@ debug_channels (msvcrt)
@ cdecl _mbsstr(str str) strstr
@ stub _mbstok #(str str)
@ cdecl _mbstrlen(str) _mbstrlen
@
stub _mbsupr #(str)
@
cdecl _mbsupr(str) _mbsupr
@ cdecl _memccpy(ptr ptr long long) memccpy
@ forward -noimport _memicmp ntdll._memicmp
@ cdecl _mkdir(str) _mkdir
...
...
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