-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_strdup.c
More file actions
35 lines (32 loc) · 1.17 KB
/
ft_strdup.c
File metadata and controls
35 lines (32 loc) · 1.17 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: sudaniel <sudaniel@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/10 15:06:39 by sudaniel #+# #+# */
/* Updated: 2024/10/10 15:45:20 by sudaniel ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strdup(const char *s1)
{
char *p;
size_t size;
size = ft_strlen(s1) + 1;
p = (char *) malloc(size);
if (!p)
return (NULL);
ft_strlcpy(p, s1, size);
return (p);
}
/*
int main(void)
{
char *s = "Hello";
char *p = ft_strdup(s);
printf("%s\n", p);
return (0);
}
*/