-
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: chanheki <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/06 15:15:46 by chanheki #+# #+# */
/* Updated: 2022/07/13 00:45:41 by chanheki ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
return (c >= 0x20 && c < 0x7f);
}