-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdup.c
33 lines (30 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
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: amayo-ca <[email protected]...> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/27 10:24:20 by amayo-ca #+# #+# */
/* Updated: 2022/01/27 14:40:45 by amayo-ca ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *src)
{
int i;
int len;
char *ptr;
i = 0;
len = ft_strlen(src);
ptr = (char *)malloc(sizeof(char) * (len + 1));
if (ptr == NULL)
return (NULL);
while (i < len)
{
ptr[i] = src[i];
i++;
}
ptr[i] = '\0';
return (ptr);
}