/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mdenys +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/10/29 14:03:52 by mdenys #+# #+# */ /* Updated: 2020/10/30 11:46:57 by mdenys ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isalpha(int c) { if ((c > 64 && c < 91) || (c > 96 && c < 123)) return (1); return (0); }