blob: a8d59d11eda09008b4961331e4d7d91d09b3f4c6 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include "memory.h"
wchar_t *wcscat(wchar_t *restrict destination, wchar_t const *restrict source)
{
wcscpy(destination + wcslen(destination), source);
return destination;
}
|