-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isdigit.c
More file actions
18 lines (16 loc) · 972 Bytes
/
ft_isdigit.c
File metadata and controls
18 lines (16 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cmachado <cmachado@student.42lisboa.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/14 16:18:31 by cmachado #+# #+# */
/* Updated: 2022/02/25 22:53:07 by cmachado ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isdigit(int arg)
{
return (arg > 47 && arg < 58);
}