#include <string.h> size_t strlen(const char *string);
This function returns the number of characters in string.
The length of the string.
ANSI, POSIX
if (strlen(fname) > PATH_MAX) invalid_file(fname);
Go to the first, previous, next, last section, table of contents.