-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isspace_bonus.c
19 lines (17 loc) · 1 KB
/
ft_isspace_bonus.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isspace_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lrocca <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/02/23 18:37:36 by lrocca #+# #+# */
/* Updated: 2021/02/24 15:48:24 by lrocca ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isspace(int c)
{
return (c == '\t' || c == '\n' || c == '\v' \
|| c == '\f' || c == '\r' || c == ' ');
}