-
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) · 949 Bytes
/
ft_isprint.c
File metadata and controls
16 lines (15 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_isprint.c :+: :+: */
/* +:+ */
/* By: nsterk <marvin@codam.nl> +#+ */
/* +#+ */
/* Created: 2020/09/20 18:16:05 by nsterk #+# #+# */
/* Updated: 2021/03/03 01:36:35 by nsterk ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
return (c >= 32 && c <= 126);
}