/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_tolower.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: dgaillet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/11/05 17:23:29 by dgaillet #+# #+# */ /* Updated: 2025/11/05 17:24:21 by dgaillet ### ########lyon.fr */ /* */ /* ************************************************************************** */ int ft_tolower(int c) { if (c >= 'A' && c <= 'Z') return (c + 32); return (c); }