-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isspace.c
executable file
·19 lines (18 loc) · 1.01 KB
/
ft_isspace.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isspace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pmalope <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/06/13 10:36:51 by pmalope #+# #+# */
/* Updated: 2019/06/13 10:39:05 by pmalope ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isspace(int c)
{
if (c == '\t' || c == '\v' || c == '\n' || c == '\r' \
|| c == '\f' || c == ' ')
return (1);
return (0);
}