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 ISO/IEC 9899:1990 (``ISO C89'').
FreeBSD 5.2.1 June 4, 1993 FreeBSD 5.2.1 [ Back ] |