-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strdup.c
26 lines (23 loc) · 1.1 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: gmachado <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/07 21:45:57 by gmachado #+# #+# */
/* Updated: 2022/04/13 21:04:40 by gmachado ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s)
{
size_t len_s;
char *copy;
len_s = ft_strlen(s) + 1;
copy = malloc(len_s * sizeof(char));
if (copy == NULL)
return (NULL);
ft_strlcpy(copy, s, len_s);
return (copy);
}