-
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) · 1005 Bytes
/
ft_isspace.c
File metadata and controls
17 lines (16 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_isspace.c :+: :+: */
/* +:+ */
/* By: nsterk <nsterk@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/16 09:53:49 by nsterk #+# #+# */
/* Updated: 2020/11/16 09:57:17 by nsterk ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_isspace(int c)
{
return (c == '\t' || c == '\n' || c == '\f'
|| c == '\r' || c == '\v' || c == ' ');
}