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

16 lines
950 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jguelen <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 13:11:36 by jguelen #+# #+# */
/* Updated: 2024/10/23 15:57:52 by jguelen ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isdigit(int c)
{
return (c >= '0' && c <= '9');
}