-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isgraph.c
executable file
·16 lines (15 loc) · 950 Bytes
/
ft_isgraph.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isgraph.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <akharrou@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/24 14:00:14 by akharrou #+# #+# */
/* Updated: 2019/02/24 14:01:20 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isgraph(int c)
{
return (c >= 33 && c <= 126);
}