/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_tolower.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/25 13:04:09 by bchanot #+# #+# */ /* Updated: 2018/03/15 15:12:06 by xuser ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_tolower(int c) { if (c >= 65 && c <= 90) return (c + 32); return (c); }