-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_is_lowercase.c
20 lines (18 loc) · 994 Bytes
/
ft_is_lowercase.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_is_lowercase.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vportell <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/05 12:37:26 by vportell #+# #+# */
/* Updated: 2016/11/05 13:11:37 by vportell ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_is_lowercase(int c)
{
if (c > 96 && c < 123)
return (1);
return (0);
}