summaryrefslogtreecommitdiff
path: root/src/string/wcpcpy.c
blob: fdf878f64cf8ea57fa362a93329f4d8764ac6572 (plain) (blame)
1
2
3
4
5
6
#include <wchar.h>

wchar_t *wcpcpy(wchar_t *d, const wchar_t *s)
{
	return wcscpy(d, s) + wcslen(s);
}