-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_islower.c
executable file
·16 lines (15 loc) · 951 Bytes
/
ft_islower.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_islower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <akharrou@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/18 19:07:25 by akharrou #+# #+# */
/* Updated: 2019/03/22 12:40:09 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
int ft_islower(int c)
{
return ('a' <= c && c <= 'z');
}