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

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

/*
STDC(199409)
*/