-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isprint.c
16 lines (15 loc) · 951 Bytes
/
ft_isprint.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_isprint.c :+: :+: */
/* +:+ */
/* By: splattje <splattje@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2023/10/02 15:35:43 by splattje #+# #+# */
/* Updated: 2023/10/17 11:30:21 by splattje ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
return ((c >= 32 && c <= 126));
}