-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isdigit.c
16 lines (15 loc) · 948 Bytes
/
ft_isdigit.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rjada <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/10/07 19:35:35 by rjada #+# #+# */
/* Updated: 2021/10/10 19:03:15 by rjada ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isdigit(int c)
{
return (c >= 48 && c <= 57);
}