-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isgraph.c
More file actions
22 lines (19 loc) · 1 KB
/
ft_isgraph.c
File metadata and controls
22 lines (19 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isgraph.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lsauvage <lsauvage@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/29 14:38:01 by lsauvage #+# #+# */
/* Updated: 2017/11/29 21:46:40 by lsauvage ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/*
** DESCRIPTION : like ft_isprint but without space
*/
int ft_isgraph(int c)
{
return (c >= 33 && c <= 126);
}