/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/07/17 17:34:33 by erey-bet #+# #+# */ /* Updated: 2022/09/26 14:40:50 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isalpha(int c) { if (!(c >= 'A' && c <= 'Z')) if (!(c >= 'a' && c <= 'z')) return (0); return (1); }