unincat
Copies the specified number of characters from one string to the end of another string
#include <unicode.h>
N_EXTERN_LIBRARY(punicode) unincat (
punicode s1,
const unicode N_FAR *s2,
size_t n);
uses netwin32
Function unincat
(s1 : punicode;
s2 : const unicode;
n : size_t
) : punicode;
Pointer to s1.
unincat copies at most n characters of s2 to the end of s1, then appends a null character. The maximum length of the resulting string is:
unilen(s1)+ n
unincat corresponds to the C strncat function.
For sample code, see Section 3.18, Example: unincat.