/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_str_is_numeric.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/01 16:36:35 by gtertysh #+# #+# */ /* Updated: 2016/11/01 20:14:51 by gtertysh ### ########.fr */ /* */ /* ************************************************************************** */ int ft_str_is_numeric(char *str) { if (!*str) return (1); while (*str) { if (!(*str >= '0' && *str <= '9')) return (0); str++; } return (1); }