-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdup.c
30 lines (27 loc) · 1.11 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: lbartels <[email protected]> +#+ */
/* +#+ */
/* Created: 2023/10/05 17:19:41 by lbartels #+# #+# */
/* Updated: 2023/10/26 19:52:19 by lbartels ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s)
{
char *ptr;
int i;
ptr = (char *)ft_calloc(sizeof(char), (ft_strlen(s) + 1));
if (!ptr)
return (NULL);
i = 0;
while (s[i] != '\0')
{
ptr[i] = s[i];
i++;
}
return (ptr);
}