/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strtoupper.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/10 04:12:04 by cacharle #+# #+# */ /* Updated: 2020/08/02 14:14:17 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft_str.h" char *ft_strtoupper(char *s) { size_t i; if (s == NULL) return (NULL); i = 0; while (s[i] != '\0') { s[i] = ft_toupper(s[i]); i++; } return (s); }