-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strdup.c
28 lines (25 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
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ademenet <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/23 17:44:06 by ademenet #+# #+# */
/* Updated: 2015/12/15 16:06:35 by ademenet ### ########.fr */
/* */
/* ************************************************************************** */
#include <string.h>
#include "libft.h"
char *ft_strdup(const char *s1)
{
char *dst;
size_t len;
len = ft_strlen(s1);
dst = ft_strnew(len);
if (!dst)
return (NULL);
while (len--)
dst[len] = s1[len];
return (dst);
}