-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strdup.c
30 lines (27 loc) · 1.12 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: schetty <schetty@student.42kl.edu.my> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/05/07 22:05:55 by schetty #+# #+# */
/* Updated: 2021/11/10 03:17:15 by schetty ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s)
{
size_t len;
char *ptr;
len = 0;
while (s[len])
len++;
ptr = malloc(sizeof(char) * (len + 1));
if (!ptr)
return (NULL);
ptr[len] = '\0';
while (len--)
ptr[len] = s[len];
return (ptr);
}