minishell/libft/libft/ft_isalpha.c
2025-02-12 15:12:42 +01:00

17 lines
980 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jguelen <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 09:41:00 by jguelen #+# #+# */
/* Updated: 2024/10/23 15:57:05 by jguelen ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isalpha(int c)
{
return ((c <= 'z' && c >= 'a')
|| (c <= 'Z' && c >= 'A'));
}