-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_islower_bonus.c
More file actions
18 lines (16 loc) · 970 Bytes
/
ft_islower_bonus.c
File metadata and controls
18 lines (16 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_islower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lrocca <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/01/13 12:24:29 by lrocca #+# #+# */
/* Updated: 2021/01/13 12:25:08 by lrocca ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_islower(int c)
{
return (c >= 'a' && c <= 'z');
}