-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdup.c
33 lines (30 loc) · 1.15 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
31
32
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: amezioun <amezioun@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/18 19:02:32 by amezioun #+# #+# */
/* Updated: 2024/01/11 18:26:56 by amezioun ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s1)
{
int i;
int strlen;
char *str;
i = 0;
strlen = ft_strlen(s1);
str = (char *)malloc(sizeof(char) * (strlen + 1));
if (str == NULL)
return (NULL);
while (s1[i])
{
str[i] = s1[i];
i++;
}
str[i] = '\0';
return (str);
}