/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_islower.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/11/13 15:40:23 by bchanot #+# #+# */ /* Updated: 2017/11/13 15:42:13 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_islower(int c) { if (c >= 97 && c <= 122) return (true); return (false); }