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