index
:
Libft
master
Reimplementation of libc functions
Thomas Vanbesien
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
ft_isdigit.c
blob: 43de53fde367de33457cbe1cdc48c427f0a88645 (
plain
)
1
2
3
4
5
6
7
#include
"libft.h"
int
ft_isdigit
(
int
c
)
{
return
(
c
>=
'0'
&&
c
<=
'9'
);
}