/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 09:53:04 by scebula #+# #+# */ /* Updated: 2015/11/26 09:54:06 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isalpha(int c) { return (('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z')); }