-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdup.c
28 lines (25 loc) · 1.14 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: ssacrist <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/12/15 17:33:08 by ssacrist #+# #+# */
/* Updated: 2019/12/23 12:00:39 by ssacrist ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s1)
{
char *tab;
int i;
tab = malloc(sizeof(char) * (ft_strlen(s1) + 1));
if (!tab)
return (NULL);
i = 0;
while (s1[i])
i++;
tab[i] = '\0';
return (ft_memmove((void *)tab, (const void *)s1, ft_strlen(s1)));
}