/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_strdup.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/10/11 05:45:32 by rbousset #+# ## ## #+# */ /* Updated: 2019/10/13 08:36:24 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include "libft.h" #include char *ft_strdup(const char *s1) { size_t slen; char *new_str; new_str = ""; slen = ft_strlen(s1); new_str = (char *)malloc((slen + 1) * sizeof(char)); if (new_str == NULL) return (NULL); ft_memcpy(new_str, s1, slen); new_str[slen] = '\0'; return (new_str); }