/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_str_upper.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/09/23 20:05:47 by bchanot #+# #+# */ /* Updated: 2018/10/14 03:24:17 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" char *ft_str_upper(char *src) { size_t i; i = -1; while (src[++i]) src[i] = ft_toupper(src[i]); return (src); }