unicat
Appends a copy of a specified string to the end of another string
#include <unicode.h>
N_EXTERN_LIBRARY(punicode) unicat (
punicode s1,
const unicode N_FAR *s2);
uses netwin32
Function unicat
(s1 : punicode;
s2 : const unicode
) : punicode;
Pointer to concatenated s1.
unicat corresponds to the C strcat function.
The length of the resulting string is:
unilen (s1) + unilen (s2)
For sample code, see Section 3.11, Example: unicat.