NAME

strlen - get string length

SYNOPSIS

#include "zkString.h"

size_t strlen(const char *s);

DESCRIPTION

The strlen() function computes the number of bytes in the string to which s points, not including the terminating null byte.

RETURN VALUE

The strlen() function returns the length of s; no return value is reserved to indicate an error.

ERRORS

No errors are defined.