summaryrefslogtreecommitdiff
path: root/src/wchar/wcscpy.c
blob: 2f92bc3fa40cb2199b774a016f883ce4bba0d716 (plain)
1
2
3
4
5
6
7
8
9
10
#include <wchar.h>

wchar_t * wcscpy(wchar_t * restrict s1, const wchar_t * restrict s2)
{
	return wcsncpy(s1, s2, wcslen(s2));
}

/*
STDC(199409)
*/