blob: d7b7d1e510f6a9af4856d833f73c287d5a62480e (
plain)
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: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
t_bool ft_isfulldigit(char *str)
{
unsigned int i;
i = 0;
while (ft_isdigit(str[i]))
i++;
return (i == ft_strlen(str));
}
|