unilist

Appends multiple strings to the string pointed to by the tgt parameter.

Library:LibC
Service:Characters and Strings

Syntax

  #include <unilib.h> 
   
  unicode_t *unilist (
     unicode_t         *tgt, 
     const unicode_t   *s1, 
     ... );
  

Parameters

tgt

(OUT) Points to the original string.

s1

(IN) Points to the first string to be appended.

...

(IN) Specifies additional strings to append or a null-terminating character to signal the end.

Return Values

Returns a pointer to the concatenated string.

Remarks

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.

See Also