From b583a636c15b7d377967ed05acf8c7473e916062 Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Mon, 28 May 2018 15:49:56 -0600 Subject: [PATCH] include: Add wmemmove to wchar.h. Signed-off-by: Alex Henrie Signed-off-by: Piotr Caban Signed-off-by: Alexandre Julliard --- include/msvcrt/wchar.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/msvcrt/wchar.h b/include/msvcrt/wchar.h index 4a6b7882736..2114c43e576 100644 --- a/include/msvcrt/wchar.h +++ b/include/msvcrt/wchar.h @@ -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)); } +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 } #endif