-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_strdup.c
More file actions
35 lines (33 loc) · 1.14 KB
/
ft_strdup.c
File metadata and controls
35 lines (33 loc) · 1.14 KB
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
34
35
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ldoppler <ldoppler@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/17 14:00:05 by ldoppler #+# #+# */
/* Updated: 2023/10/24 12:51:53 by ldoppler ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s)
{
char *ret;
int i;
i = 0;
while (s[i] != '\0')
{
i++;
}
ret = malloc(i * sizeof(char) + 1);
if (!ret)
return (NULL);
i = 0;
while (s[i] != '\0')
{
ret[i] = s[i];
i++;
}
ret[i] = '\0';
return (ret);
}