-
Notifications
You must be signed in to change notification settings - Fork 4
/
ft_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: ykoh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/03/05 14:58:32 by ykoh #+# #+# */
/* Updated: 2020/04/08 23:35:01 by ykoh ### ########.fr */
/* */
/* ************************************************************************** */
int ft_islower(int c)
{
return (c >= 'a' && c <= 'z');
}