minishell
ft_isdigit.c
Go to the documentation of this file.
1
/* ************************************************************************** */
2
/* */
3
/* ::: :::::::: */
4
/* ft_isdigit.c :+: :+: :+: */
5
/* +:+ +:+ +:+ */
6
/* By: kfujita <kfujita@student.42tokyo.jp> +#+ +:+ +#+ */
7
/* +#+#+#+#+#+ +#+ */
8
/* Created: 2022/04/06 19:24:11 by kfujita #+# #+# */
9
/* Updated: 2022/04/25 23:03:03 by kfujita ### ########.fr */
10
/* */
11
/* ************************************************************************** */
12
13
#include "
ft_is.h
"
14
15
int
ft_isdigit
(
int
c)
16
{
17
return
(
'0'
<= c && c <=
'9'
);
18
}
ft_is.h
ft_isdigit
int ft_isdigit(int c)
Definition:
ft_isdigit.c:15
libft
ft_is
ft_isdigit.c
Generated by
1.9.1