-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isspace.c
16 lines (15 loc) · 960 Bytes
/
ft_isspace.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isspace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nle-roux <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/15 11:36:54 by nle-roux #+# #+# */
/* Updated: 2023/11/15 11:40:03 by nle-roux ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isspace(int c)
{
return ((c >= 9 && c <= 13) || c == 32);
}