/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/10/18 15:38:41 by narnaud #+# #+# */ /* Updated: 2021/10/23 13:26:03 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isalpha(int ch) { if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z')) return (1); else return (0); }