libft
src
ft_isspace.c
Go to the documentation of this file.
1
/* ************************************************************************** */
3
/* */
4
/* ::: :::::::: */
5
/* ft_isspace.c :+: :+: :+: */
6
/* +:+ +:+ +:+ */
7
/* By: unite <marvin@42.fr> +#+ +:+ +#+ */
8
/* +#+#+#+#+#+ +#+ */
9
/* Created: 2019/09/06 22:30:10 by unite #+# #+# */
10
/* Updated: 2020/07/16 03:04:36 by unite ### ########.fr */
11
/* */
12
/* ************************************************************************** */
13
14
#include "
libft.h
"
15
20
int
ft_isspace
(
int
c)
21
{
22
return
((c >= 9 && c <= 13) || c ==
' '
);
23
}
ft_isspace
int ft_isspace(int c)
Replicates behaviour of isspace from libc.
Definition:
ft_isspace.c:20
libft.h
Generated by
1.8.16