wcslen(3) — Subroutines
NAME
wcslen − Determines the number of characters in a wide-character string
LIBRARY
Standard C Library (libc.a)
SYNOPSIS
#include <wchar.h> size_t wcslen(
const wchar_t ∗wcstring);
PARAMETERS
wcstringA wide-character string.
DESCRIPTION
The wcslen() function computes the number of wchar_t characters in the string pointed to by the wcstring parameter.
RETURN VALUES
The wcslen() function returns the number of wchar_t characters that precede the terminating wchar_t null character.
RELATED INFORMATION
Functions: strlen(3).