/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalnum.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tomoron +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/10/30 12:09:17 by tomoron #+# #+# */ /* Updated: 2023/10/30 23:17:18 by tomoron ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isalnum(int c) { if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9')) return (1); return (0); }