ft_word_count - kibotrel/42-Libft GitHub Wiki
int ft_wordcount(char const *s, char c)
Description :
Counts how many words delimited by the character c
are in the string s
.
Return Value :
Returns the number of words found.
int ft_wordcount(char const *s, char c)
Description :
Counts how many words delimited by the character c
are in the string s
.
Return Value :
Returns the number of words found.