blob: d82ded0a2d340c86b8f77167bf1857bde0babd82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_isprint.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/10/07 18:23:39 by rbousset #+# ## ## #+# */
/* Updated: 2019/10/13 08:41:21 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
int
ft_isprint(int c)
{
if (c >= 32 && c <= 126)
return (1);
return (0);
}
|