utf8cpy

Copies a UTF-8 string.

Library:LibC
Service:Characters and Strings

Syntax

  #include <utf8.h> 
   
  utf8_t *utf8cpy (
     utf8_t        *tgt,   
     const utf8_t  *src);
  

Parameters

tgt

(OUT) Points to the array into which to copy the characters.

src

(IN) Points to the string containing the characters to copy.

Return Values

Returns the value of tgt.

Remarks

Copying of overlapping objects is not guaranteed to work properly.

See Also