libft/ft_isalpha.c

17 lines
972 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tischmid <timo42@proton.me> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/05/03 14:37:56 by tischmid #+# #+# */
/* Updated: 2023/05/03 21:42:51 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isalpha(int c)
{
return (1024 * ((c | 32) >= 97 && (c | 32) <= 122));
}