1STRLEN(3) Linux Programmer's Manual STRLEN(3)
2
3
4
6 strlen - calculate the length of a string
7
9 #include <string.h>
10
11 size_t strlen(const char *s);
12
14 The strlen() function calculates the length of the string pointed to by
15 s, excluding the terminating null byte ('\0').
16
18 The strlen() function returns the number of bytes in the string pointed
19 to by s.
20
22 For an explanation of the terms used in this section, see at‐
23 tributes(7).
24
25 ┌────────────────────────────────────────────┬───────────────┬─────────┐
26 │Interface │ Attribute │ Value │
27 ├────────────────────────────────────────────┼───────────────┼─────────┤
28 │strlen() │ Thread safety │ MT-Safe │
29 └────────────────────────────────────────────┴───────────────┴─────────┘
30
32 POSIX.1-2001, POSIX.1-2008, C89, C99, C11, SVr4, 4.3BSD.
33
35 In cases where the input buffer may not contain a terminating null
36 byte, strnlen(3) should be used instead.
37
39 string(3), strnlen(3), wcslen(3), wcsnlen(3)
40
42 This page is part of release 5.13 of the Linux man-pages project. A
43 description of the project, information about reporting bugs, and the
44 latest version of this page, can be found at
45 https://www.kernel.org/doc/man-pages/.
46
47
48
49GNU 2021-08-27 STRLEN(3)