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