/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_tolower.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: thrieg +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/14 16:44:42 by thrieg #+# #+# */ /* Updated: 2025/02/16 19:05:25 by thrieg ### ########.fr */ /* */ /* ************************************************************************** */ int ft_tolower(int c) { if (c >= 'A' && c <= 'Z') return (c + 32); return (c); }