ft_strlen - kibotrel/42-Libft GitHub Wiki

size_t	ft_strlen(const char *s)

Description :

Computes the length of the string s.

Return Value :

Returns the calculated length of the string s.

Source code