![]() -> Click here to learn how to get live help <- |
WCSNCATIndexNAMEwcsncat - concatenate two wide-character stringsSYNOPSIS#include <wchar.h> wchar_t *wcsncat(wchar_t *dest, const wchar_t *src, size_t n); DESCRIPTIONThe fBwcsncatfP function is the wide-character equivalent of the fBstrncatfP function. It copies at most fInfP wide characters from the wide-character string pointed to by fIsrcfP to the end of the wide-character string pointed to by fIdestfP, and adds a terminating L' ' character.The strings may not overlap. The programmer must ensure that there is room for at least fIwcslen(dest)+n+1fP wide characters at fIdestfP. RETURN VALUEfBwcsncatfP returns fIdestfP.CONFORMING TOISO/ANSI C, UNIX98SEE ALSOstrncat(3), wcscat(3)
Index |