-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isprint.c
21 lines (19 loc) · 1019 Bytes
/
ft_isprint.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isprint.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fvieira <fvieira@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/15 12:16:49 by fvieira #+# #+# */
/* Updated: 2022/08/22 15:19:35 by fvieira ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isprint(int argument)
{
if (argument <= 31 || argument >= 127)
return (0);
else
return (1);
}