/* ************************************************************************** */ /* */ /* .--. _ */ /* test19.c :+: :+: :+: */ /* |:_/ || |_ _ ___ __ */ /* By: houtworm // \ \ __| | | \ \/ / */ /* (| | )|_| |_| |> < */ /* Created: 2023/02/21 03:06:47 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ /* Updated: 2023/02/24 13:04:00 by houtworm ### ########.fr */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include int main(void) { int c; c = '+'; if (ft_isdigit(c)) return (1); return (0); }