index
:
libft.git
cub3d
fractol
ft_ls
ft_select
ft_ssl
malloc
master
minishell
push_swap
rendu
scop
School project: Rewritting some libc functions and adding new ones
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
ft_isdigit.c
blob: a41e1fd72f269388190ef92299fde816ad03952b (
plain
)
1
2
3
4
int
ft_isdigit
(
int
c
)
{
return
(
c
>=
'0'
&&
c
<=
'9'
);
}