-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_strdup.c
27 lines (24 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
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hbaddrul <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/05/03 19:06:40 by hbaddrul #+# #+# */
/* Updated: 2021/11/21 20:35:10 by hbaddrul ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
#include "libft.h"
char *ft_strdup(const char *s1)
{
char *ret;
size_t len;
len = ft_strlen(s1);
ret = malloc(sizeof(char) * (len + 1));
if (!ret)
return (0);
ft_strlcpy(ret, s1, len + 1);
return (ret);
}