42_C_PISCINE/C/c02v4/ex02/ft_str_is_alpha.c

25 lines
1.0 KiB
C
Raw Permalink Normal View History

2023-05-17 12:45:25 -04:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_str_is_alpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/17 13:51:45 by cchauvet #+# #+# */
/* Updated: 2022/07/17 15:22:03 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
int ft_str_is_alpha(char *str)
{
while (*str != 0)
{
if (!(('a' <= *str && *str <= 'z') || ('A' <= *str && 'Z' >= *str)))
{
return (0);
}
str++;
}
return (1);
}