/* ************************************************************************** */ /* */ /* :::::::: */ /* ft_isxdigit.c :+: :+: */ /* +:+ */ /* By: djonker +#+ */ /* +#+ */ /* Created: 2021/02/06 17:19:46 by djonker #+# #+# */ /* Updated: 2023/10/18 16:59:27 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #include "../libft.h" int ft_isxdigit(char *str) { while (*str != '\0') { if ((*str >= 'a' && *str <= 'f') || (*str >= 'A' && *str <= 'F')) str++; else if (*str >= '0' && *str <= '9') str++; else return (0); } return (1); }