-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_isspace.c
16 lines (15 loc) · 961 Bytes
/
ft_isspace.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isspace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gamarcha <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/06/03 13:03:16 by gamarcha #+# #+# */
/* Updated: 2021/06/03 13:03:58 by gamarcha ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isspace(int c)
{
return (c == ' ' || (c >= 9 && c <= 13));
}