uninlen

Computes the number of characters in a Unicode string.

Library:LibC
Service:Characters and Strings

Syntax

  #include <unilib.h> 
   
  size_t uninlen (
     const unicode_t   *string
     size_t             max);
  

Parameters

string

(IN) Points to a string.

max

(IN) Specifies the maximum number of characters to count.

Return Values

Returns the number of characters in the Unicode string.

Remarks

The unilen function corresponds to the strlen function.

See Also