1WCSCAT(3) Linux Programmer's Manual WCSCAT(3)
2
3
4
6 wcscat - concatenate two wide-character strings
7
9 #include <wchar.h>
10
11 wchar_t *wcscat(wchar_t *dest, const wchar_t *src);
12
14 The wcscat() function is the wide-character equivalent of the strcat()
15 function. It copies the wide-character string pointed to by src,
16 including the terminating L'\0' character, to the end of the wide-char‐
17 acter string pointed to by dest.
18
19 The strings may not overlap.
20
21 The programmer must ensure that there is room for at least
22 wcslen(dest)+wcslen(src)+1 wide characters at dest.
23
25 wcscat() returns dest.
26
28 C99.
29
31 strcat(3), wcpcpy(3), wcscpy(3), wcsncat(3)
32
33
34
35GNU 1999-07-25 WCSCAT(3)