strlen - find length of a string
#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'').
OpenBSD 3.6 June 29, 1991
[ Back ] |