1WCSNLEN(3) Linux Programmer's Manual WCSNLEN(3)
2
3
4
6 wcsnlen - determine the length of a fixed-size wide-character string
7
9 #include <wchar.h>
10
11 size_t wcsnlen(const wchar_t *s, size_t maxlen);
12
13 Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
14
15 wcsnlen():
16 Since glibc 2.10:
17 _POSIX_C_SOURCE >= 200809L
18 Before glibc 2.10:
19 _GNU_SOURCE
20
22 The wcsnlen() function is the wide-character equivalent of the
23 strnlen(3) function. It returns the number of wide-characters in the
24 string pointed to by s, not including the terminating null wide charac‐
25 ter (L'\0'), but at most maxlen wide characters (note: this parameter
26 is not a byte count). In doing this, wcsnlen() looks at only the first
27 maxlen wide characters at s and never beyond s+maxlen.
28
30 The wcsnlen() function returns wcslen(s), if that is less than maxlen,
31 or maxlen if there is no null wide character among the first maxlen
32 wide characters pointed to by s.
33
35 The wcsnlen() function is provided in glibc since version 2.1.
36
38 For an explanation of the terms used in this section, see
39 attributes(7).
40
41 ┌──────────┬───────────────┬─────────┐
42 │Interface │ Attribute │ Value │
43 ├──────────┼───────────────┼─────────┤
44 │wcsnlen() │ Thread safety │ MT-Safe │
45 └──────────┴───────────────┴─────────┘
47 POSIX.1-2008.
48
50 strnlen(3), wcslen(3)
51
53 This page is part of release 4.15 of the Linux man-pages project. A
54 description of the project, information about reporting bugs, and the
55 latest version of this page, can be found at
56 https://www.kernel.org/doc/man-pages/.
57
58
59
60GNU 2016-03-15 WCSNLEN(3)