-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_implode.c
40 lines (37 loc) · 1.24 KB
/
ft_implode.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_implode.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: magoumi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/10/24 14:58:37 by magoumi #+# #+# */
/* Updated: 2018/10/25 11:00:42 by magoumi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_implode(char separateur, char **ary)
{
int i;
int j;
char *str;
char *ret;
if (NULL == (str = (char*)malloc(ft_arylen(ary) + 1)))
return (NULL);
i = 0;
ret = str;
while (ary[i])
{
j = 0;
while (ary[i][j])
{
*str++ = ary[i][j];
j++;
}
if (ary[i + 1])
*str++ = separateur;
i++;
}
*str = '\0';
return (ret);
}