/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_tolower.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: nalebrun +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/12 12:07:21 by nalebrun #+# #+# */ /* Updated: 2024/11/27 12:58:25 by nalebrun ### ########.fr */ /* */ /* ************************************************************************** */ #include "../../libft.h" int ft_tolower(int c) { if (c >= 65 && c <= 90) return (c + 32); else return (c); }