/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalnum.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: nalebrun +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/10 10:12:06 by nalebrun #+# #+# */ /* Updated: 2024/11/25 16:14:32 by nalebrun ### ########.fr */ /* */ /* ************************************************************************** */ #include "../../libft.h" int ft_isalnum(int c) { if (ft_isalpha(c) || ft_isdigit(c)) return (1); else return (0); }