/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalnum.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: vvobis +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/04/02 15:59:18 by vvobis #+# #+# */ /* Updated: 2024/04/02 15:59:23 by vvobis ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isalnum(int c) { if (ft_isdigit(c) || ft_isalpha(c)) return (1); return (0); }