wcscat()

concatenate two wide character strings 

Function


SYNOPSIS

#include <wchar.h>

wchar_t *wcscat(wchar_t *ws1, const wchar_t *ws2);


DESCRIPTION

The wcscat() function appends a copy of the string pointed to by ws2 (including the terminating null character) to the end of the string pointed to by ws1. The first character of ws2 overwrites the null character at the end of ws1. If the objects used for copying overlap, the behavior is undefined.


PARAMETERS

ws1 

Is the null-terminated destination string.

ws2 

Is the null-terminated source string.


RETURN VALUES

The wcscat() function returns the value of ws1.


CONFORMANCE

ANSI/ISO 9899-1990/AM 1-1995.


MULTITHREAD SAFETY LEVEL

MT-Safe.


PORTING ISSUES

None.


AVAILABILITY

PTC MKS Toolkit for Professional Developers
PTC MKS Toolkit for Professional Developers 64-Bit Edition
PTC MKS Toolkit for Enterprise Developers
PTC MKS Toolkit for Enterprise Developers 64-Bit Edition


SEE ALSO

Functions:
wcsncat(), wcsncmp(), wcsncpy(), wcsrchr(), wcsspn()


PTC MKS Toolkit 10.4 Documentation Build 39.