Commit b583a636 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

include: Add wmemmove to wchar.h.

parent 9e093cbc
...@@ -501,6 +501,11 @@ static inline wchar_t* __cdecl wmemcpy(wchar_t *dst, const wchar_t *src, size_t ...@@ -501,6 +501,11 @@ static inline wchar_t* __cdecl wmemcpy(wchar_t *dst, const wchar_t *src, size_t
return memcpy(dst, src, n * sizeof(wchar_t)); return memcpy(dst, src, n * sizeof(wchar_t));
} }
static inline wchar_t* __cdecl wmemmove(wchar_t *dst, const wchar_t *src, size_t n)
{
return memmove(dst, src, n * sizeof(wchar_t));
}
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment