Everything

wcslen


Calculates the length of a wide string except the terminating null wide character.

[Format]

#include <wchar.h>

size_t wcslen(const wchar_t *s);

[Parameters]

s Pointer to the wide string to check the length of

[Return values]

Number of characters in the wide string

[Remarks]

The wcslen function is the wide-character version of the strlen function.