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
e12fa1f3
Commit
e12fa1f3
authored
Mar 18, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 18, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
memory.h: Add _memicmp_l declaration.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d0d6e35e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
corecrt_wstring.h
include/msvcrt/corecrt_wstring.h
+1
-0
memory.h
include/msvcrt/memory.h
+1
-0
No files found.
include/msvcrt/corecrt_wstring.h
View file @
e12fa1f3
...
...
@@ -21,6 +21,7 @@ _ACRTIMP errno_t __cdecl memcpy_s(void*,size_t,const void*,size_t);
_ACRTIMP
void
*
__cdecl
memset
(
void
*
,
int
,
size_t
);
_ACRTIMP
void
*
__cdecl
_memccpy
(
void
*
,
const
void
*
,
int
,
unsigned
int
);
_ACRTIMP
int
__cdecl
_memicmp
(
const
void
*
,
const
void
*
,
unsigned
int
);
_ACRTIMP
int
__cdecl
_memicmp_l
(
const
void
*
,
const
void
*
,
unsigned
int
,
_locale_t
);
static
inline
int
memicmp
(
const
void
*
s1
,
const
void
*
s2
,
size_t
len
)
{
return
_memicmp
(
s1
,
s2
,
len
);
}
static
inline
void
*
memccpy
(
void
*
s1
,
const
void
*
s2
,
int
c
,
size_t
n
)
{
return
_memccpy
(
s1
,
s2
,
c
,
n
);
}
...
...
include/msvcrt/memory.h
View file @
e12fa1f3
...
...
@@ -24,6 +24,7 @@ errno_t __cdecl memcpy_s(void*,size_t,const void*,size_t);
void
*
__cdecl
memset
(
void
*
,
int
,
size_t
);
void
*
__cdecl
_memccpy
(
void
*
,
const
void
*
,
int
,
unsigned
int
);
int
__cdecl
_memicmp
(
const
void
*
,
const
void
*
,
unsigned
int
);
int
__cdecl
_memicmp_l
(
const
void
*
,
const
void
*
,
unsigned
int
,
_locale_t
);
static
inline
int
memicmp
(
const
void
*
s1
,
const
void
*
s2
,
size_t
len
)
{
return
_memicmp
(
s1
,
s2
,
len
);
}
static
inline
void
*
memccpy
(
void
*
s1
,
const
void
*
s2
,
int
c
,
size_t
n
)
{
return
_memccpy
(
s1
,
s2
,
c
,
n
);
}
...
...
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