-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_islower.c
16 lines (15 loc) · 950 Bytes
/
ft_islower.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_islower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hezzahir <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/16 23:57:20 by hezzahir #+# #+# */
/* Updated: 2018/11/16 23:57:37 by hezzahir ### ########.fr */
/* */
/* ************************************************************************** */
int ft_islower(int c)
{
return (c >= 97 && c <= 122);
}