/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_str_is_lowercase.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/01 16:45:43 by gtertysh #+# #+# */ /* Updated: 2016/11/01 20:15:05 by gtertysh ### ########.fr */ /* */ /* ************************************************************************** */ int ft_str_is_lowercase(char *str) { if (!*str) return (1); while (*str) { if (!(*str >= 'a' && *str <= 'z')) return (0); str++; } return (1); }