-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isdigit.c
16 lines (15 loc) · 952 Bytes
/
ft_isdigit.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_isdigit.c :+: :+: */
/* +:+ */
/* By: splattje <[email protected]> +#+ */
/* +#+ */
/* Created: 2023/10/02 15:11:00 by splattje #+# #+# */
/* Updated: 2023/10/18 16:57:20 by splattje ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_isdigit(int c)
{
return ((c >= '0' && c <= '9'));
}