/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/27 14:54:35 by bchanot #+# #+# */ /* Updated: 2015/12/04 01:43:06 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isalpha(int c) { if ((c >= 65 && c <= 90) || (c >= 97 && c <= 122)) return (1); return (0); }