/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_str_is_numeric.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tmaze +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/04/09 10:29:18 by tmaze #+# #+# */ /* Updated: 2018/04/09 10:59:32 by tmaze ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_str_is_numeric(char *str) { int i; i = 0; while (str[i]) if (!ft_isdigit(str[i++])) return (0); return (1); }