/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: yantoine +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/07 10:02:38 by yantoine #+# #+# */ /* Updated: 2023/11/08 08:06:13 by hexplor ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isalpha(int c) { if ((c >= 65 && c <= 90) \ || (c >= 97 && c <= 122)) return (1); else return (0); }