-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_isspace.c
17 lines (16 loc) · 1005 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: dpoveda- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/09/17 17:39:21 by dpoveda- #+# #+# */
/* Updated: 2021/09/17 17:39:23 by dpoveda- ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isspace(int c)
{
return (c == '\t' || c == '\n' || c == '\v'
|| c == '\f' || c == '\r' || c == ' ');
}