aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_isalpha.c
blob: c19cf580d13779239c5dc5f28cb824a742ab5d44 (plain)
1
2
3
4
5
6
7
#include "libft.h"

int
ft_isalpha (int c)
{
  return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'));
}