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