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
a88d75f4
Commit
a88d75f4
authored
Jul 21, 2020
by
Piotr Caban
Committed by
Alexandre Julliard
Jul 21, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Copy wcslen implementation from ntdll.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
068a419e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
wcs.c
dlls/msvcrt/wcs.c
+4
-2
No files found.
dlls/msvcrt/wcs.c
View file @
a88d75f4
...
@@ -2658,9 +2658,11 @@ MSVCRT_wchar_t* CDECL MSVCRT_wcsrchr(const MSVCRT_wchar_t *str, MSVCRT_wchar_t c
...
@@ -2658,9 +2658,11 @@ MSVCRT_wchar_t* CDECL MSVCRT_wcsrchr(const MSVCRT_wchar_t *str, MSVCRT_wchar_t c
/***********************************************************************
/***********************************************************************
* wcslen (MSVCRT.@)
* wcslen (MSVCRT.@)
*/
*/
in
t
CDECL
MSVCRT_wcslen
(
const
MSVCRT_wchar_t
*
str
)
MSVCRT_size_
t
CDECL
MSVCRT_wcslen
(
const
MSVCRT_wchar_t
*
str
)
{
{
return
strlenW
(
str
);
const
MSVCRT_wchar_t
*
s
=
str
;
while
(
*
s
)
s
++
;
return
s
-
str
;
}
}
/*********************************************************************
/*********************************************************************
...
...
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