-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdup.c
33 lines (30 loc) · 1.16 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: lstorey <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/10 11:35:49 by lstorey #+# #+# */
/* Updated: 2023/11/21 14:37:57 by lstorey ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s1)
{
size_t strl;
size_t i;
char *scpy;
i = 0;
strl = ft_strlen(s1);
scpy = (char *)malloc(sizeof (char) * (strl + 1));
if (scpy == NULL)
return (0);
while (i < strl)
{
scpy[i] = s1[i];
i++;
}
scpy[i] = '\0';
return (scpy);
}