-
Notifications
You must be signed in to change notification settings - Fork 12
/
main.c
105 lines (84 loc) · 3.15 KB
/
main.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apuchill <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/09 17:27:11 by apuchill #+# #+# */
/* Updated: 2020/02/19 14:00:58 by apuchill ### ########.fr */
/* */
/* ************************************************************************** */
#include "header.h"
#include "libft.h"
int main(void)
{
/* Test header */
printf(HEADER_L(" .-'-. .-'-. .-'-. .-'-. .-'-. .-'-. .-'-. .-'-. \n.-' '-.-' '-.-' '-.-' '-.-' '-.-' '-.-' '-.-' '-\n"));
printf(HEADER_T(" Libft tests by apuchill ") HEADER_A("@42saopaulo") "\n");
printf(HEADER_L("'-. .-'-. .-'-. .-'-. .-'-. .-'-. .-'-. .-'-. .-\n '-.-' '-.-' '-.-' '-.-' '-.-' '-.-' '-.-' '-.-' \n\n\n"));
/* Part 1 header */
printf(PARTS("================================== ∙ Part 1 ∙ ==================================\n"));
/* ft_strlen */
printf(FUNCTION("\n* ft_strlen\n\n"));
test_strlen_0();
test_strlen_1();
test_strlen_2();
test_strlen_3();
test_strlen_4();
test_strlen_5();
/* ft_isalnum */
printf(FUNCTION("\n* ft_isalnum\t"));
fflush(stdout);
test_isalnum();
/* ft_isalpha */
printf(FUNCTION("\n* ft_isalpha\t"));
fflush(stdout);
test_isalpha();
/* ft_isascii */
printf(FUNCTION("\n* ft_isascii\t"));
fflush(stdout);
test_isascii();
/* ft_isdigit */
printf(FUNCTION("\n* ft_isdigit\t"));
fflush(stdout);
test_isdigit();
/* ft_isprint */
printf(FUNCTION("\n* ft_isprint\t"));
fflush(stdout);
test_isprint();
/* Part 2 header */
printf(PARTS("\n\n================================== ∙ Part 2 ∙ ==================================\n"));
/* ft_substr */
printf(FUNCTION("\n* ft_substr\t"));
fflush(stdout);
/* ft_strjoin */
printf(FUNCTION("\n* ft_strjoin\t"));
fflush(stdout);
/* ft_strtrim */
printf(FUNCTION("\n* ft_strtrim\t"));
fflush(stdout);
/* ft_split */
printf(FUNCTION("\n* ft_split\t"));
fflush(stdout);
/* ft_itoa */
printf(FUNCTION("\n* ft_itoa\t"));
fflush(stdout);
/* ft_strmapi */
printf(FUNCTION("\n* ft_strmapi\t"));
fflush(stdout);
/* ft_putchar_fd */
printf(FUNCTION("\n* ft_putchar_fd\t"));
fflush(stdout);
/* ft_putstr_fd */
printf(FUNCTION("\n* ft_putstr_fd\t"));
fflush(stdout);
/* ft_putendl_fd */
printf(FUNCTION("\n* ft_putendl_fd\t"));
fflush(stdout);
/* ft_putnbr_fd */
printf(FUNCTION("\n* ft_putnbr_fd\t"));
fflush(stdout);
/* End footer */
printf(PARTS("\n\n================================= ∙ The End ∙ ==================================\n"));
}