#include "libft.h" int ft_isalpha(const char c) { return ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')); }