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

int
ft_isdigit (int c)
{
  return (c >= '0' && c <= '9');
}