mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 03:34:16 +00:00
7 lines
80 B
C
7 lines
80 B
C
#include "libft.h"
|
|
|
|
int ft_isdigit(int c)
|
|
{
|
|
return ((c >= '0' && c <= '9'));
|
|
}
|