libft/srcs/ft_islower.c

8 lines
No EOL
111 B
C

#include "libft.h"
int ft_islower(int c)
{
if (c >= 'a' && c <= 'z')
return (1);
return (0);
}