1wcsnlen(3) Library Functions Manual wcsnlen(3)
2
3
4
6 wcsnlen - determine the length of a fixed-size wide-character string
7
9 Standard C library (libc, -lc)
10
12 #include <wchar.h>
13
14 size_t wcsnlen(const wchar_t s[.maxlen], size_t maxlen);
15
16 Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
17
18 wcsnlen():
19 Since glibc 2.10:
20 _POSIX_C_SOURCE >= 200809L
21 Before glibc 2.10:
22 _GNU_SOURCE
23
25 The wcsnlen() function is the wide-character equivalent of the
26 strnlen(3) function. It returns the number of wide-characters in the
27 string pointed to by s, not including the terminating null wide charac‐
28 ter (L'\0'), but at most maxlen wide characters (note: this parameter
29 is not a byte count). In doing this, wcsnlen() looks at only the first
30 maxlen wide characters at s and never beyond s[maxlen-1].
31
33 The wcsnlen() function returns wcslen(s), if that is less than maxlen,
34 or maxlen if there is no null wide character among the first maxlen
35 wide characters pointed to by s.
36
38 For an explanation of the terms used in this section, see at‐
39 tributes(7).
40
41 ┌────────────────────────────────────────────┬───────────────┬─────────┐
42 │Interface │ Attribute │ Value │
43 ├────────────────────────────────────────────┼───────────────┼─────────┤
44 │wcsnlen() │ Thread safety │ MT-Safe │
45 └────────────────────────────────────────────┴───────────────┴─────────┘
46
48 POSIX.1-2008.
49
51 glibc 2.1.
52
54 strnlen(3), wcslen(3)
55
56
57
58Linux man-pages 6.05 2023-07-20 wcsnlen(3)