-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strdup.c
30 lines (27 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
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kokaimov <kokaimov@student.42berlin.de> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/15 21:59:55 by kokaimov #+# #+# */
/* Updated: 2023/11/15 21:59:55 by kokaimov ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s)
{
char *dup;
unsigned int i;
i = 0;
dup = ft_calloc(ft_strlen(s) + 1, sizeof(char));
if (!dup)
return (0);
while (s[i])
{
dup[i] = s[i];
i++;
}
return (dup);
}