-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdup.c
26 lines (23 loc) · 1.08 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sonyacorcoran <sonyacorcoran@student.42 +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/08/14 12:28:38 by sonyacorcor #+# #+# */
/* Updated: 2023/08/21 16:42:24 by sonyacorcor ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s1)
{
char *new;
size_t len;
len = ft_strlen(s1) + 1;
new = malloc(sizeof(char) * len);
if (!new)
return (0);
new = ft_memcpy(new, s1, len);
return (new);
}