/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_isalnum.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/10/07 18:07:44 by rbousset #+# ## ## #+# */ /* Updated: 2019/10/13 08:45:57 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include "libft.h" int ft_isalnum(int c) { if (ft_isalpha(c) || ft_isdigit(c)) return (1); return (0); }