/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: hulamy +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/11/25 13:55:15 by hulamy #+# #+# */ /* Updated: 2019/11/25 13:55:17 by hulamy ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isalpha(int c) { return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')); }