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_isascii.c
blob: f9e877e8ffc24b076f90decd6c832bf5a622da92 (
plain
)
1
2
3
4
5
6
7
#include
"libft.h"
int
ft_isascii
(
int
c
)
{
return
(
c
>=
0
&&
c
<=
127
);
}