1 2 3 4 5 6 7
#include "libft.h" int ft_isalnum (int c) { return (ft_isalpha (c) || ft_isdigit (c)); }