wcscat
From cppreference.com
| Defined in header
<wchar.h>
|
||
| wchar_t *wcscat( wchar_t *dest, const wchar_t *src );
|
||
Appends a wide string pointed to by src to a wide string pointed to by dest. The resulting wide string is null-terminated. If the strings overlap, the behavior is undefined.
Contents |
[edit] Parameters
| dest | - | pointer to the null-terminated wide string to append to |
| src | - | pointer to the null-terminated wide string to copy from |
[edit] Return value
dest
[edit] Example
| This section is incomplete Reason: no example |
[edit] See also
| appends a certain amount of wide characters from one wide string to another (function) |
|
| copies one wide string to another (function) |
|
|
C++ documentation for wcscat
|
|