NAME
wcslen - determine the length of a wide-character string
SYNOPSIS
#include <wchar.h>
I size_t wcslen(const wchar_t * s );
DESCRIPTION
The
R wcslen ()
function is the wide-character equivalent
of the
strlen(3)
function.
It determines the length of the wide-character string pointed to
by
s, not including the terminating L'\0' character.
RETURN VALUE
The
R wcslen ()
function returns the
number of wide characters in s.
CONFORMING TO
C99.
SEE ALSO