-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strdup.c
32 lines (29 loc) · 1.15 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
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jecarol <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/02/11 17:36:32 by jecarol #+# #+# */
/* Updated: 2017/02/11 17:36:33 by jecarol ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s1)
{
char *result;
int i;
int j;
i = 0;
if (!(result = (char*)malloc(sizeof(char) * (ft_strlen(s1) + 1))))
return (NULL);
j = (ft_strlen(s1));
while (j >= 0)
{
result[i] = s1[i];
i++;
j--;
}
return (result);
}