blob: c31170920fbc36e9d782b22f71e377379fb5712e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isprint.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/07 09:52:09 by cacharle #+# #+# */
/* Updated: 2019/10/20 13:03:36 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
return (c >= ' ' && c <= '~');
}
|