![]() -> Click here to learn how to get live help <- |
WCSCATIndexNAMEwcscat - concatenate two wide-character stringsSYNOPSIS#include <wchar.h> wchar_t *wcscat(wchar_t *dest, const wchar_t *src); DESCRIPTIONThe fBwcscatfP function is the wide-character equivalent of the fBstrcatfP function. It copies the wide-character string pointed to by fIsrcfP, including the terminating L' ' character, to the end of the wide-character string pointed to by fIdestfP.The strings may not overlap. The programmer must ensure that there is room for at least fIwcslen(dest)+wcslen(src)+1fP wide characters at fIdestfP. RETURN VALUEfBwcscatfP returns fIdestfP.CONFORMING TOISO/ANSI C, UNIX98SEE ALSOstrcat(3), wcsncat(3), wcscpy(3), wcpcpy(3)
Index |