/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strlower.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gvoelkne +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2026/03/02 13:27:40 by gvoelkne #+# #+# */ /* Updated: 2026/05/05 15:57:06 by gvoelkne ### ########.fr */ /* */ /* ************************************************************************** */ char *ft_strlower(char *str) { unsigned int idx; idx = 0; while (str[idx]) { if (str[idx] >= 'A' && str[idx] <= 'Z') str[idx] += 32; idx++; } return (str); }