blob: 397271d523495a57f605486861236f25196e72dd (
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/07 09:52:10 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
return (c >= ' ' && c <= '~');
}
|