ft_tolower - kibotrel/42-Libft GitHub Wiki
int ft_tolower(int c)
Description :
Converts the given integer c
if it's an uppercase alphabetical ASCII code into its lowercase counterpart.
Return Value :
Returns the lowercase counterpart of the ASCII code c
if it's an uppercase alphabetical character otherwise c
is returned.