mirror of git://git.musl-libc.org/musl
8 lines
124 B
C
8 lines
124 B
C
|
#include <wchar.h>
|
||
|
|
||
|
wchar_t *wcscat(wchar_t *dest, const wchar_t *src)
|
||
|
{
|
||
|
wcscpy(dest + wcslen(dest), src);
|
||
|
return dest;
|
||
|
}
|