42_C_PISCINE/C/c02v1/ex04/ft_str_is_lowercase.c
Camille Chauvet 29ed24d567 init
2023-05-17 16:45:25 +00:00

23 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_str_is_lowercase.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/17 13:51:45 by cchauvet #+# #+# */
/* Updated: 2022/07/18 08:36:27 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
int ft_str_is_lowercase(char *str)
{
while (*str != 0)
{
if (!('a' <= *str && *str <= 'z'))
return (0);
str++;
}
return (1);
}