-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isdigit.c
16 lines (15 loc) · 957 Bytes
/
ft_isdigit.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mesafi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/03/30 17:06:07 by mesafi #+# #+# */
/* Updated: 2020/01/20 13:28:44 by mesafi ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isdigit(int arg)
{
return (arg >= '0' && arg <= '9');
}