/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_tolower.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tosuman +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/16 14:37:20 by tosuman #+# #+# */ /* Updated: 2023/05/16 14:37:40 by tosuman ### ########.fr */ /* */ /* ************************************************************************** */ int ft_tolower(int c) { if (c >= 'A' && c <= 'Z') return (c + 32); return (c); }