blob: 0b583011fbfbe47ff31d3fdd039ee4d61530066e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <wchar.h>
wchar_t * wmemcpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)
{
size_t i;
for (i = 0; i < n; i++) {
s1[i] = s2[i];
}
return s1;
}
/*
STDC(199409)
*/
|