-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strdup_test.c
46 lines (43 loc) · 1.56 KB
/
ft_strdup_test.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
35
36
37
38
39
40
41
42
43
44
45
46
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup_test.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abenamar <abenamar@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/04 11:09:08 by abenamar #+# #+# */
/* Updated: 2022/12/28 21:41:43 by abenamar ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft_test.h"
void ft_strdup_test(void)
{
char *str1;
char *str2;
printf(RESET "\nft_strdup\t");
str1 = ft_strdup("");
str2 = strdup("");
ft_assert(1, !strcmp(str1, str2));
free(str1);
free(str2);
str1 = ft_strdup("test");
str2 = strdup("test");
ft_assert(2, !strcmp(str1, str2));
free(str1);
free(str2);
str1 = ft_strdup("This is a test");
str2 = strdup("This is a test");
ft_assert(3, !strcmp(str1, str2));
free(str1);
free(str2);
str1 = ft_strdup("This is a test");
str2 = strdup(str1);
ft_assert(4, !strcmp(str1, str2));
free(str1);
free(str2);
str2 = strdup("This is a test");
str1 = ft_strdup(str2);
ft_assert(5, !strcmp(str1, str2));
free(str1);
free(str2);
}