ft_charrcount - kibotrel/42-Libft GitHub Wiki
int ft_charrcount(char *str, char c)
Description :
Counts how many characters in the string str
are not the given character c
.
Return Value :
Returns the string length minus the amount of the character c
encountered.