strlen(3) - Linux man page
Name
strlen - calculate the length of a string
Synopsis
#include <string.h>
size_t strlen(const char *s);
Description
The
strlen() function calculates the length of the string
s, not including the
terminating '\0' character.
Return Value
The
strlen() function returns the number of characters in
s.
Conforming to
SVr4, 4.3BSD, C89, C99.
See Also
string(3),
wcslen(3),
wcsnlen(3)
Referenced By
lber-types(3),
strchr(3),
strnlen(3)