-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isdigit.c
23 lines (21 loc) · 1005 Bytes
/
ft_isdigit.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mbouderr <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/04 22:36:36 by mbouderr #+# #+# */
/* Updated: 2022/10/27 02:28:02 by mbouderr ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isdigit(int c)
{
if ((c >= 48 && c <= 57))
{
return (1);
}
else
return (0);
}