-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_islower.c
20 lines (18 loc) · 993 Bytes
/
ft_islower.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_islower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jfreitas <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/15 13:27:46 by jfreitas #+# #+# */
/* Updated: 2019/11/14 10:38:14 by jfreitas ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_islower(int c)
{
if (c >= 'a' && c <= 'z')
return (1);
return (0);
}