-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdup.c
31 lines (28 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tbrebion <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/24 12:29:02 by tbrebion #+# #+# */
/* Updated: 2021/11/24 15:33:35 by tbrebion ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *str)
{
int i;
char *res;
i = 0;
res = malloc(sizeof(char) * (ft_strlen(str) + 1));
if (res == NULL)
return (NULL);
while (str[i])
{
res[i] = str[i];
i++;
}
res[i] = '\0';
return (res);
}