/* ************************************************************************** */1/* */2/* ::: :::::::: */3/* ft_is_digit.c :+: :+: :+: */4/* +:+ +:+ +:+ */5/* By: yabtaour <[email protected]> +#+ +:+ +#+ */6/* +#+#+#+#+#+ +#+ */7/* Created: 2022/05/21 00:40:57 by yabtaour #+# #+# */8/* Updated: 2022/05/21 00:41:00 by yabtaour ### ########.fr */9/* */10/* ************************************************************************** */11#include "philosophers.h"1213int ft_d(int c)14{15if (c >= '0' && c <= '9')16return (1);17return (0);18}192021