tgrekov-ft_printf
HIVE printf Feb 2024
Loading...
Searching...
No Matches
ft_isdigit.c
Go to the documentation of this file.
1
/* ************************************************************************** */
2
/* */
3
/* ::: :::::::: */
4
/* ft_isdigit.c :+: :+: :+: */
5
/* +:+ +:+ +:+ */
6
/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
7
/* +#+#+#+#+#+ +#+ */
8
/* Created: 2023/10/23 13:26:17 by tgrekov #+# #+# */
9
/* Updated: 2023/11/04 22:24:42 by tgrekov ### ########.fr */
10
/* */
11
/* ************************************************************************** */
12
26
int
ft_isdigit
(
int
c)
27
{
28
return
(c >=
'0'
&& c <=
'9'
);
29
}
ft_isdigit
int ft_isdigit(int c)
Is c a numeric character.
Definition
ft_isdigit.c:26
libft
ft_isdigit.c