-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdup.c
33 lines (30 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
31
32
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: phelebra <xhelp00@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/10 17:08:17 by phelebra #+# #+# */
/* Updated: 2023/01/16 14:09:52 by phelebra ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s)
{
char *ptr;
size_t n;
size_t i;
n = ft_strlen(s);
ptr = malloc(sizeof(char) * n + 1);
if (!ptr)
return (NULL);
i = 0;
while (i < n)
{
ptr[i] = s[i];
i++;
}
ptr[i] = '\0';
return (ptr);
}