-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathft_isspace.c
21 lines (20 loc) · 1019 Bytes
/
ft_isspace.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isspace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vbrazhni <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/07/01 15:37:24 by vbrazhni #+# #+# */
/* Updated: 2018/07/01 15:37:25 by vbrazhni ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isspace(int c)
{
return (c == '\t' ||
c == '\n' ||
c == '\v' ||
c == '\f' ||
c == '\r' ||
c == ' ');
}