Defined in header <wchar.h> | ||
---|---|---|
(1) | ||
wchar_t *wcscat( wchar_t *dest, const wchar_t *src ); | (since C95) (until C99) | |
wchar_t *wcscat( wchar_t *restrict dest, const wchar_t *restrict src ); | (since C99) | |
errno_t wcscat_s( wchar_t *restrict dest, rsize_t destsz, const wchar_t *restrict src ); | (2) | (since C11) |
src
to the end of the wide string pointed to by dest
. The wide character src[0]
replaces the null terminator at the end of dest
. The resulting wide string is null-terminated. The behavior is undefined if the destination array is not large enough for the contents of both str
and dest
and the terminating null wide character. The behavior is undefined if the strings overlap. destsz
) with unspecified values and that the following errors are detected at runtime and call the currently installed constraint handler function: src
or dest
is a null pointer destsz
is zero or greater than RSIZE_MAX/sizeof(wchar_t)
destsz
wide characters of dest
dest
would not fit every wide character, including the null terminator, of src
) wcscat_s
is only guaranteed to be available if __STDC_LIB_EXT1__
is defined by the implementation and if the user defines __STDC_WANT_LIB_EXT1__
to the integer constant 1
before including <wchar.h>
.dest | - | pointer to the null-terminated wide string to append to |
src | - | pointer to the null-terminated wide string to copy from |
destsz | - | maximum number of characters to write, typically the size of the destination buffer |
dest
L'\0'
to dest[0]
(unless dest
is a null pointer or destsz
is zero or greater than RSIZE_MAX/sizeof(wchar_t)
).#include <wchar.h> #include <stdio.h> #include <locale.h> int main(void) { wchar_t str[50] = L"Земля, прощай."; wcscat(str, L" "); wcscat(str, L"В добрый путь."); setlocale(LC_ALL, "en_US.utf8"); printf("%ls", str); }
Output:
Земля, прощай. В добрый путь.
(C95)(C11) | appends a certain amount of wide characters from one wide string to another (function) |
(C11) | concatenates two strings (function) |
(C95)(C11) | copies one wide string to another (function) |
C++ documentation for wcscat |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/c/string/wide/wcscat