Determines the number of bytes comprising the multibyte character.
#include <stdlib.h>
int mblen (
const char *s,
size_t n);
(IN) Points to the array of multibyte characters.
(IN) Specifies the number of bytes of the array pointed to by s to be examined.
If successful, returns the length, in bytes, of the multibyte character. Otherwise, returns 0 for any of the following conditions:
Returns -1 if a valid multibyte character is not found with the first n bytes in the string.
At most, n bytes of the array pointed to by s are examined.