-
Notifications
You must be signed in to change notification settings - Fork 2
/
ft_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: smbaabu <smbaabu@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/03/19 19:05:46 by smbaabu #+# #+# */
/* Updated: 2019/03/19 19:09:59 by smbaabu ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isspace(char c)
{
return (c == ' ' || c == '\t' || c == '\n'
|| c == '\v' || c == '\f' || c == '\r');
}