-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_iswhitespace.c
16 lines (15 loc) · 971 Bytes
/
ft_iswhitespace.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_iswhitespace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rvandepu <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/17 14:41:09 by rvandepu #+# #+# */
/* Updated: 2024/01/22 11:57:26 by rvandepu ### ########.fr */
/* */
/* ************************************************************************** */
int ft_iswhitespace(int c)
{
return (c == ' ' || ('\t' <= c && c <= '\r'));
}