/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalnum.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: erey-bet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/09/26 16:47:30 by erey-bet #+# #+# */ /* Updated: 2022/09/26 16:50:25 by erey-bet ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isalnum(int c) { if (!(c >= 'A' && c <= 'Z')) if (!(c >= 'a' && c <= 'z')) if (!(c >= '0' && c <= '9')) return (0); return (1); }