-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isprint.c
16 lines (15 loc) · 949 Bytes
/
ft_isprint.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isprint.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: deryacar <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/12 21:31:31 by deryacar #+# #+# */
/* Updated: 2023/07/19 12:27:11 by deryacar ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
return (c >= 32 && c <= 126);
}