-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strcdup.c
38 lines (35 loc) · 1.22 KB
/
ft_strcdup.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strcdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lbopp <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/22 16:26:05 by lbopp #+# #+# */
/* Updated: 2016/11/30 09:33:05 by lbopp ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strcdup(const char *s1, char n)
{
size_t size;
int i;
char *dst;
i = 0;
size = 0;
while (s1[size] != n && s1[size])
size++;
dst = (char *)malloc(sizeof(char) * (size + 1));
if (dst == NULL)
return (0);
else
{
while (s1[i] != n && s1[i])
{
dst[i] = s1[i];
i++;
}
dst[i] = '\0';
return (dst);
}
}