-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdup.c
33 lines (30 loc) · 1.17 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: mmita <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/19 12:37:56 by mmita #+# #+# */
/* Updated: 2022/11/19 13:16:45 by mmita ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <stdlib.h>
#include <string.h>
char *ft_strdup(const char *s1)
{
char *ptr;
size_t i;
i = 0;
ptr = (char *)malloc(sizeof(*ptr) * (ft_strlen(s1) + 1));
if (ptr == NULL)
return (0);
while (s1[i] != '\0')
{
ptr[i] = s1[i];
i++;
}
ptr[i] = '\0';
return (ptr);
}