/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalnum.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: yantoine +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/07 10:17:01 by yantoine #+# #+# */ /* Updated: 2023/11/08 08:05:51 by hexplor ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isalnum(int c) { if (ft_isalpha(c) == 1 || ft_isdigit(c) == 1) return (1); else return (0); }