-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathft_isprint.c
More file actions
19 lines (18 loc) · 983 Bytes
/
ft_isprint.c
File metadata and controls
19 lines (18 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isprint.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mimeyer <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/05/19 11:51:11 by mimeyer #+# #+# */
/* Updated: 2019/05/21 09:58:29 by mimeyer ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
if ((c >= 32) && (c <= 126))
return (1);
else
return (0);
}