lib/libft/ft_tolower.c

8 lines
81 B
C

i32
ft_tolower(char c)
{
if (c >= 'A' && c <= 'Z')
c = c + 32;
return (c);
}