-
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) · 950 Bytes
/
ft_isdigit.c
File metadata and controls
16 lines (15 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kjungoo <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/11 15:46:48 by kjungoo #+# #+# */
/* Updated: 2022/07/13 16:02:31 by kjungoo ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isdigit(int c)
{
return ('0' <= c && c <= '9');
}