/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_tolower.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: vvobis +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/04/03 12:01:54 by vvobis #+# #+# */ /* Updated: 2024/04/03 12:15:18 by vvobis ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_tolower(int c) { if (c >= 65 && c <= 90) c += 32; return (c); }