-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isdigit.c
25 lines (22 loc) · 1.08 KB
/
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
24
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tauer <tauer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/06 15:29:56 by tauer #+# #+# */
/* Updated: 2023/11/06 15:29:56 by tauer ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isdigit(int c)
{
return (c >= '0' && c <= '9');
}
// int main(void)
// {
// for(int i = 45; i <= 60; i++)
// printf("%c : %d\n", i, ft_isdigit(i));
// return (0);
// }