aboutsummaryrefslogtreecommitdiffstats
path: root/memory/wcspcpy.c
blob: 652db3f879d5d98d4639a600b4e4767109f54536 (plain) (blame)
1
2
3
4
5
6
#include "memory.h"

wchar_t *wcspcpy(wchar_t *destination, wchar_t const *source)
{
	return wrawmemccpy(destination, source, L'\0') - 1;
}