Files
libft/ft_isalpha.c

8 lines
115 B
C

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