-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_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: ysaito <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/06/28 17:09:21 by ysaito #+# #+# */
/* Updated: 2021/11/01 21:00:06 by ysaito ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s1)
{
size_t len;
char *copy;
len = ft_strlen(s1);
copy = malloc(sizeof(char *) * (len + 1));
if (copy == NULL)
return (NULL);
ft_memcpy(copy, s1, len + 1);
return (copy);
}