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