xref: /haiku/src/system/libroot/posix/wchar/wmemmove.c (revision 47a21c5c89fc9fd155a3929e5a8f6056b92a2053)
1 /*
2 ** Copyright 2011, Oliver Tappe, zooey@hirschkaefer.de. All rights reserved.
3 ** Distributed under the terms of the MIT License.
4 */
5 
6 #include <string.h>
7 
8 #include <wchar_private.h>
9 
10 
11 wchar_t*
__wmemmove(wchar_t * dest,const wchar_t * src,size_t count)12 __wmemmove(wchar_t* dest, const wchar_t* src, size_t count)
13 {
14 	return memmove(dest, src, count * sizeof(wchar_t));
15 }
16 
17 
18 B_DEFINE_WEAK_ALIAS(__wmemmove, wmemmove);
19