-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isdigit.c
More file actions
16 lines (15 loc) · 956 Bytes
/
ft_isdigit.c
File metadata and controls
16 lines (15 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yettabaa <yettabaa@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/05 21:21:33 by yettabaa #+# #+# */
/* Updated: 2022/10/12 02:48:05 by yettabaa ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isdigit(int arg)
{
return (arg >= '0' && arg <= '9');
}