Appends multiple strings to the string pointed to by the tgt parameter.
#include <unilib.h>
unicode_t *unilist (
unicode_t *tgt,
const unicode_t *s1,
... );
(OUT) Points to the original string.
(IN) Points to the first string to be appended.
(IN) Specifies additional strings to append or a null-terminating character to signal the end.
Returns a pointer to the concatenated string.
The unilist function corresponds to the strlist function.
WARNING:The last argument in the function must be a null-terminating character. Without null termination, concatenation continues unpredictably with the potential of overwriting memory.