1WCSLEN(3)                  Linux Programmer's Manual                 WCSLEN(3)
2
3
4

NAME

6       wcslen - determine the length of a wide-character string
7

SYNOPSIS

9       #include <wchar.h>
10
11       size_t wcslen(const wchar_t *s);
12

DESCRIPTION

14       The wcslen() function is the wide-character equivalent of the strlen(3)
15       function.  It  determines  the  length  of  the  wide-character  string
16       pointed to by s, excluding the terminating null wide character (L'\0').
17

RETURN VALUE

19       The wcslen() function returns the number of wide characters in s.
20

ATTRIBUTES

22       For   an   explanation   of   the  terms  used  in  this  section,  see
23       attributes(7).
24
25       ┌──────────┬───────────────┬─────────┐
26Interface Attribute     Value   
27       ├──────────┼───────────────┼─────────┤
28wcslen()  │ Thread safety │ MT-Safe │
29       └──────────┴───────────────┴─────────┘

CONFORMING TO

31       POSIX.1-2001, POSIX.1-2008, C99.
32

SEE ALSO

34       strlen(3)
35

COLOPHON

37       This page is part of release 4.15 of the Linux  man-pages  project.   A
38       description  of  the project, information about reporting bugs, and the
39       latest    version    of    this    page,    can     be     found     at
40       https://www.kernel.org/doc/man-pages/.
41
42
43
44GNU                               2015-08-08                         WCSLEN(3)
Impressum