aboutsummaryrefslogtreecommitdiffstats
path: root/ft_isalnum.c
blob: 4b477f8e8ed3e09e0a0036b61bfbb829118f70d8 (plain)
1
2
3
4
5
6
7
#include "libft.h"

int
ft_isalnum (int c)
{
  return (ft_isalpha (c) || ft_isdigit (c));
}