diff options
Diffstat (limited to 'libft/src/ft_strjoin.c')
-rw-r--r-- | libft/src/ft_strjoin.c | 44 |
1 files changed, 44 insertions, 0 deletions
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 <marvin@le-101.fr> +:+ +: +: +:+ */ +/* #+# #+ #+ #+# */ +/* Created: 2019/10/12 16:35:23 by rbousset #+# ## ## #+# */ +/* Updated: 2019/10/13 08:36:17 by rbousset ### #+. /#+ ###.fr */ +/* / */ +/* / */ +/* ************************************************************************** */ + +#include <libft.h> + +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); +} |