Files
libft/ft_isdigit.c

7 lines
80 B
C

#include "libft.h"
int ft_isdigit(int c)
{
return ((c >= '0' && c <= '9'));
}