unicat

Appends a copy of a specified string to the end of another string.

Library:LibC
Service:Characters and Strings

Syntax

  #include <unilib.h> 
   
  unicode_t *unicat (
     unicode_t         *tgt, 
     const unicode_t   *src);
  

Parameters

tgt

(OUT) Points to the original string.

src

(IN) Points to the string to be appended.

Return Values

Returns a pointer to the concatenated string.

Remarks

The unicat function corresponds to the strcat function.

The length of the resulting string is:

     unilen (tgt) + unilen (src)
  

See Also