fractol/libft/src/ft_islowc.c
2023-03-01 04:36:42 +01:00

21 lines
995 B
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_islowc.c :+: :+: :+: */
/* +:+ */
/* By: djonker <marvin@codam.nl> +#+ */
/* +#+ */
/* Created: 2021/04/13 17:57:31 by djonker #+# #+# */
/* Updated: 2023/02/07 00:39:58 by houtworm ### ########.fr */
/* */
/* ************************************************************************** */
#include "../libft.h"
int ft_islowc(char c)
{
if (c >= 'a' && c <= 'z')
return (1);
return (0);
}