utf8list

Appends multiple strings pointed to a string.

Library:LibC
Service:Characters and Strings

Syntax

  #include <utf8.h> 
   
  utf8_t  *utf8list (
     utf8_t         *tgt,
     const utf8_t   *s1,
     ... );
  

Parameters

tgt

(OUT) Points to the string to which to append a copy of another string.

s1 ... sn

(IN) Points to the strings to be appended.

Return Values

Returns the value of tgt.

Remarks

The last argument in the function must be a null-terminating character.