17 lines
949 B
C
17 lines
949 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_islower.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tchivert <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2019/04/06 16:54:54 by tchivert #+# #+# */
|
|
/* Updated: 2019/09/04 05:13:27 by tchivert ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_islower(int c)
|
|
{
|
|
return (c >= 97 && c <= 122);
|
|
}
|