-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isdigit.c
18 lines (16 loc) · 982 Bytes
/
ft_isdigit.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: isalayan <isalayan@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/15 11:39:38 by isalayan #+# #+# */
/* Updated: 2024/06/15 15:57:13 by isalayan ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isdigit(int digit)
{
return (digit >= '0' && digit <= '9');
}