strlen - find length of string
Standard C Library (libc, -lc)
#include <string.h>
size_t
strlen(const char *s);
The strlen() function computes the length of the string s.
The strlen() function returns the number of characters that precede the
terminating NUL character.
string(3)
The strlen() function conforms to ANSI X3.159-1989 (``ANSI C'').
BSD June 4, 1993 BSD
[ Back ] |