Name

strlen function — Computes length of a string

Synopsis

size_t strlen(const char* s)

The strlen function returns the length of the null-terminated string s, that is, the number of bytes that come before the null byte at the end of the string.