Calculates the length of a string.
[Format]
#include <string.h>
size_t strlen (const char *s);
[Parameters]
s Pointer to the string to check the length of
[Return values]
Number of characters in the string
[Remarks]
The null character at the end of the s string is excluded from the string length.