20 lines
1,007 B
C
20 lines
1,007 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_isalpha.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/07/17 17:34:33 by erey-bet #+# #+# */
|
|
/* Updated: 2022/09/26 14:40:50 by erey-bet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_isalpha(int c)
|
|
{
|
|
if (!(c >= 'A' && c <= 'Z'))
|
|
if (!(c >= 'a' && c <= 'z'))
|
|
return (0);
|
|
return (1);
|
|
}
|