Files
libft/ft_isalpha.c

9 lines
128 B
C

#include "libft.h"
int ft_isalpha(const char c)
{
if ((c > 65 && c < 90) || (c > 97 && c < 122))
return (1);
return (0);
}