/* ************************************************************************** */ /* */ /* :::::::: */ /* ft_islowc.c :+: :+: :+: */ /* +:+ */ /* By: djonker +#+ */ /* +#+ */ /* 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); }