/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalnum.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: grobledo +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/02/02 18:17:39 by grobledo #+# #+# */ /* Updated: 2023/02/02 18:17:41 by grobledo ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isalnum(int c) { if (ft_isalpha(c) || ft_isdigit(c)) return (1); return (0); }