-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isspace.c
17 lines (16 loc) · 1006 Bytes
/
ft_isspace.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isspace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: alaulom <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/10 11:34:09 by alaulom #+# #+# */
/* Updated: 2014/11/10 11:42:47 by alaulom ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isspace(int c)
{
return (c == ' ' || c == '\t' || c == '\r' || c == '\n'
|| c == '\v' || c == '\f');
}