uniset

Sets all characters in a Unicode string to a given character.

Library:LibC
Service:Characters and Strings

Syntax

  #include <unilib.h> 
   
  unicode_t *uniset (
     unicode_t   *base,
     unicode_t    ch);
  

Parameters

base

(IN/OUT) Points to the array for the string to modify.

ch

(IN) Specifies the character to copy into the base string.

Return Values

Returns a pointer to the base parameter.

Remarks

The uniset function stops when it finds the null-terminating character.

The uniset function corresponds to the strset function.

See Also