std::wcslen (3) - Linux Manuals
std::wcslen: std::wcslen
NAME
Synopsis
Defined in header <cwchar>
std::size_t wcslen( const wchar_t* str );
Returns the length of a wide string, that is the number of non-null wide characters that precede the terminating null wide character.
The behavior is undefined if there is no null character in the wide character array pointed to by str.
Parameters
str - pointer to the null-terminated wide string to be examined
Return value
The length of the null-terminated wide string str.
Example
// Run this code
Output:
See also
strlen (function)
mblen (function)