pipex/libft/ft_isdigit.c
Etienne Rey-bethbeder 5f970ff3d8 0.1
2023-01-11 17:36:09 +01:00

19 lines
968 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/17 18:06:14 by erey-bet #+# #+# */
/* Updated: 2022/09/26 14:41:48 by erey-bet ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isdigit(int c)
{
if (c > 47 && c < 58)
return (1);
return (0);
}