ft_strace/libft/ft_isdigit.c

18 lines
970 B
C
Executable file

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thrieg <thrieg@student.42mulhouse.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/08 12:57:11 by thrieg #+# #+# */
/* Updated: 2025/02/16 19:03:45 by thrieg ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isdigit(int c)
{
if (c < '0' || c > '9')
return (0);
return (1);
}