/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_str_lower.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/09/23 22:51:32 by bchanot #+# #+# */ /* Updated: 2018/10/14 03:23:59 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" char *ft_str_lower(char *src) { size_t i; i = -1; while (src[++i]) src[i] = ft_tolower(src[i]); return (src); }