aboutsummaryrefslogtreecommitdiffstats
path: root/memory/wcscpy.c
blob: b58334576d3da6ade24417dca0939ee0cd018319 (plain) (blame)
1
2
3
4
5
6
7
#include "memory.h"

wchar_t *wcscpy(wchar_t *destination, wchar_t const *source)
{
	wcspcpy(destination, source);
	return destination;
}