Something went wrong. Try again.
My solution for the ft_printf assignment.
Something went wrong. Try again.
1234567891011121314151617181920212223242526/* ************************************************************************** *//* *//* ::: :::::::: *//* ft_strlower.c :+: :+: :+: *//* +:+ +:+ +:+ *//* By: gvoelkne <marvin@42.fr> +#+ +:+ +#+ *//* +#+#+#+#+#+ +#+ *//* 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);}