-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_isdigit.c
16 lines (15 loc) · 950 Bytes
/
ft_isdigit.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yuotsuka <yuotsuka@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/18 21:00:15 by yuotsuka #+# #+# */
/* Updated: 2024/05/02 20:53:51 by yuotsuka ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isdigit(int c)
{
return (c >= '0' && c <= '9');
}