-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strdup.c
26 lines (23 loc) · 1.09 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: lpires-n <lpires-n@student.42sp.org.br> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/04 21:50:19 by lpires-n #+# #+# */
/* Updated: 2022/06/09 23:37:49 by lpires-n ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s)
{
size_t len;
char *s1;
if (s == NULL)
return (NULL);
len = ft_strlen(s);
s1 = (char *)malloc((len + 1) * sizeof(char));
ft_memcpy(s1, s, len + 1);
return (s1);
}