-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_iscl_group1.c
20 lines (18 loc) · 1007 Bytes
/
ft_iscl_group1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_iscl_group1.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vpopovyc <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/01/24 19:57:17 by vpopovyc #+# #+# */
/* Updated: 2017/02/06 15:13:06 by vpopovyc ### ########.fr */
/* */
/* ************************************************************************** */
#include "includes/libft.h"
int ft_iscl_group1(char c)
{
if (c == 'd' || c == 'i')
return (1);
return (0);
}