-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strdup.c
34 lines (31 loc) · 1.14 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
34
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nwatanab <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/06 22:08:04 by nwatanab #+# #+# */
/* Updated: 2020/11/20 10:51:17 by nwatanab ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s)
{
int i;
char *p;
i = 0;
while (s[i] != '\0')
i++;
p = (char*)malloc(sizeof(char) * (i + 1));
if (p == NULL)
return (NULL);
i = 0;
while (s[i] != '\0')
{
p[i] = s[i];
i++;
}
p[i] = '\0';
return (p);
}