unin2title

Converts the specified Unicode string to title capitalization.

Library:LibC
Service:Characters and Strings

Syntax

  #include <unilib.h> 
   
  unicode_t *unin2title (
     unicode_t         *dest,
     const unicode_t   *src,
     size_t             destLen );
  

Parameters

dest

(OUT) Points to the converted string.

src

(IN) Points to the string to change to title capitalization.

destLen

(IN/OUT) Points to the maximum number of Unicode characters that the destination string can hold when the function is called. When the function returns, it contains the number of Unicode characters in the converted string.

Return Values

Returns the address of the converted string.

See Also