-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strdup.c
30 lines (27 loc) · 1.22 KB
/
ft_strdup.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
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_strdup.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/10/09 19:47:40 by davfelix #+# ## ## #+# */
/* Updated: 2018/10/11 18:28:26 by davfelix ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s1)
{
char *s_copy;
int len;
int i;
i = 0;
len = ft_strlen(s1);
s_copy = NULL;
s_copy = (char *)malloc(sizeof(*s_copy) * (len + 1));
if (s_copy == NULL)
return (NULL);
ft_strcpy(s_copy, s1);
return (s_copy);
}