strlen
OS/161 Reference Manual
Name
strlen - determine length of string
Library
Standard C Library (libc, -lc)
Synopsis
#include <string.h>
size_t
strlen(const char *string);
Description
strlen returns the length of the string string. The length
does not include the null terminator.