-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_islower.c
24 lines (22 loc) · 1.01 KB
/
ft_islower.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_islower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yuske <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/20 20:06:58 by yuske #+# #+# */
/* Updated: 2023/03/31 04:46:47 by yuske ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/**
* @brief
*
* @param chr
* @return int
*/
int ft_islower(int chr)
{
return (chr >= 'a' && chr <= 'z');
}