From a287db1124beda38507739f892c085bd3654ebd7 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Fri, 17 Jan 2020 19:34:53 +0100 Subject: Added libft --- libft/src/ft_strjoin.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 libft/src/ft_strjoin.c (limited to 'libft/src/ft_strjoin.c') diff --git a/libft/src/ft_strjoin.c b/libft/src/ft_strjoin.c new file mode 100644 index 0000000..2e00daf --- /dev/null +++ b/libft/src/ft_strjoin.c @@ -0,0 +1,44 @@ +/* ************************************************************************** */ +/* LE - / */ +/* / */ +/* ft_strjoin.c .:: .:/ . .:: */ +/* +:+:+ +: +: +:+:+ */ +/* By: rbousset +:+ +: +: +:+ */ +/* #+# #+ #+ #+# */ +/* Created: 2019/10/12 16:35:23 by rbousset #+# ## ## #+# */ +/* Updated: 2019/10/13 08:36:17 by rbousset ### #+. /#+ ###.fr */ +/* / */ +/* / */ +/* ************************************************************************** */ + +#include + +char + *ft_strjoin(const char *s1, const char *s2) +{ + char *str; + size_t i; + size_t j; + size_t len; + + if (!s1 || !s2) + return (NULL); + len = ft_strlen(s1) + ft_strlen(s2); + if (!(str = ft_nstr(len))) + return (NULL); + i = 0; + j = 0; + while (s1[i] != '\0') + { + str[i] = s1[i]; + i++; + } + while (s2[j] != '\0') + { + str[i] = s2[j]; + i++; + j++; + } + str[i] = '\0'; + return (str); +} -- cgit v1.2.3