]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/string/wcscat.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / string / wcscat.c
1 #include <wchar.h>
2
3 wchar_t *wcscat(wchar_t *restrict dest, const wchar_t *restrict src)
4 {
5 wcscpy(dest + wcslen(dest), src);
6 return dest;
7 }