summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_strjoin.c
blob: f666781bba51700b781394dc20d4c25a674bcb90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* ************************************************************************** */
/*                                                          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"
#include <stdlib.h>

size_t
	ft_strleen(const char *s)
{
	size_t	i;

	i = 0;
	while (s[i] != '\0')
		i++;
	return (i);
}

static char
	*ft_recalloc(size_t size)
{
	char	*str;

	str = 0;
	str = malloc((size + 1) * sizeof(char));
	if (!str)
		return (NULL);
	ft_bzero(str, size);
	return (str);
}

char
	*ft_strjoin(const char *s1, const char *s2)
{
	char	*str;
	size_t	i;
	size_t	j;
	size_t	size;

	size = (ft_strleen(s1) + ft_strleen(s2));
	str = (char*)ft_recalloc(ft_strleen(s1) + ft_strleen(s2));
	i = 0;
	j = 0;
	if (!str)
		return (NULL);
	while (i < ft_strleen(s1))
	{
		str[i] = s1[i];
		i++;
	}
	while (i < size)
	{
		str[i] = s2[j];
		i++;
		j++;
	}
	str[i] = '\0';
	return (str);
}