blob: 4c5d94734987c8fa011f4232dcecd93c87aa473b (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "memory.h"
wchar_t *wmemcpy(wchar_t *restrict destination, wchar_t const *restrict source,
size_t count)
{
mempcpy(destination, source, count);
return destination;
}
|