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