-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_islower.c
18 lines (16 loc) · 971 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: ccline <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/06 11:06:07 by ccline #+# #+# */
/* Updated: 2019/10/06 11:06:35 by ccline ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_islower(int c)
{
return (c <= 'z' && c >= 'a');
}