-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_iswhitespace.c
23 lines (22 loc) · 1008 Bytes
/
ft_iswhitespace.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_iswhitespace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: luiroel <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/18 15:13:09 by luiroel #+# #+# */
/* Updated: 2020/02/20 15:42:55 by luiroel ### ########.fr */
/* */
/* ************************************************************************** */
int ft_iswhitespace(char c)
{
if ((c >= 8 && c <= 13) || c == 32)
{
return (1);
}
else
{
return (0);
}
}