-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_islower.c
18 lines (16 loc) · 1001 Bytes
/
ft_islower.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_islower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ademenet <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/12/17 10:46:49 by ademenet #+# #+# */
/* Updated: 2015/12/17 11:02:37 by ademenet ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_islower(int c)
{
return ((unsigned char)c >= 'a' && (unsigned char)c <= 'z');
}