-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isblank.c
executable file
·16 lines (15 loc) · 952 Bytes
/
ft_isblank.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isblank.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <akharrou@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/24 13:58:18 by akharrou #+# #+# */
/* Updated: 2019/02/24 13:58:42 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isblank(int c)
{
return (c == ' ' || c == '\t');
}