1 2 3 4 5 6 7
#include "libft.h" int ft_isalpha (int c) { return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')); }