-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isprint.c
More file actions
19 lines (18 loc) · 979 Bytes
/
Copy pathft_isprint.c
File metadata and controls
19 lines (18 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_isprint.c :+: :+: */
/* +:+ */
/* By: rvan-sch <rvan-sch@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2019/11/22 20:36:14 by rvan-sch #+# #+# */
/* Updated: 2019/11/22 23:53:09 by rvan-sch ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
if (c >= ' ' && c <= '~')
return (1);
else
return (0);
}