-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdup.c
30 lines (27 loc) · 1.13 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
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aymoulou <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/08/19 17:43:19 by aymoulou #+# #+# */
/* Updated: 2021/08/19 17:44:29 by aymoulou ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s1)
{
int i;
char *str;
str = (char *)malloc(sizeof(char) * (ft_strlen(s1) + 1));
if (!str)
return (NULL);
if (!s1)
return (NULL);
i = -1;
while (s1[++i])
str[i] = s1[i];
str[i] = '\0';
return (str);
}