include: Add wmemmove to wchar.h.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Alex Henrie 2018-05-28 15:49:56 -06:00 committed by Alexandre Julliard
parent 9e093cbcc7
commit b583a636c1
1 changed files with 5 additions and 0 deletions

View File

@ -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