-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isspace.c
More file actions
17 lines (16 loc) · 1008 Bytes
/
ft_isspace.c
File metadata and controls
17 lines (16 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_isspace.c :+: :+: */
/* +:+ */
/* By: rcappend <rcappend@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/15 10:08:47 by rcappend #+# #+# */
/* Updated: 2021/04/29 13:36:34 by rcappend ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_isspace(int c)
{
return ((c == ' ' || c == '\t' || c == '\n' || \
c == '\v' || c == '\f' || c == '\r'));
}