-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isdigit.c
executable file
·15 lines (15 loc) · 950 Bytes
/
ft_isdigit.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmasstou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/03 11:53:38 by mmasstou #+# #+# */
/* Updated: 2021/11/03 12:09:00 by mmasstou ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isdigit( int d)
{
return (d >= '0' && d <= '9');
}