/* ************************************************************************** */ /* */ /* :::::::: */ /* ft_isalnum.c :+: :+: :+: */ /* +:+ */ /* By: djonker +#+ */ /* +#+ */ /* Created: 2020/11/11 15:56:37 by djonker #+# #+# */ /* Updated: 2023/02/07 00:39:54 by houtworm ### ########.fr */ /* */ /* ************************************************************************** */ #include "../libft.h" int ft_isalnum(int c) { if ((c < 'A' || c > 'Z') && (c < 'a' || c > 'z') && (c < '0' || c > '9')) return (0); return (1); }