-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isprint.c
More file actions
16 lines (15 loc) · 958 Bytes
/
Copy pathft_isprint.c
File metadata and controls
16 lines (15 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isprint.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gfoote <gfoote@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/04 18:06:03 by gfoote #+# #+# */
/* Updated: 2019/04/05 14:10:56 by gfoote ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
return ((c > 31 && c < 127) ? 1 : 0);
}