blob: 52ededc10705a20fb0b2dca356c156deeed88589 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_isdigit.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/10/07 17:46:41 by rbousset #+# ## ## #+# */
/* Updated: 2019/10/13 08:41:27 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
int
ft_isdigit(int c)
{
if (c >= 48 && c <= 57)
return (1);
return (0);
}
|