Skip to content

Commit 6d18649

Browse files
committedOct 20, 2022
cleaned code and added details to display infos
1 parent 1b6bca5 commit 6d18649

File tree

1 file changed

+3
-21
lines changed

1 file changed

+3
-21
lines changed
 

‎src/main.c

+3-21
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ int main(int argc, char *argv[])
7777
{
7878
if (method1 || default_mode)
7979
{
80-
printf("Méthode 1 :\n\n");
80+
printf("Method 1 : simple list\n\n");
8181
printf("Start loading file using method 1\n");
8282
clock_t function_time;
8383
function_time = clock();
@@ -96,7 +96,7 @@ int main(int argc, char *argv[])
9696

9797
if (method2 || default_mode)
9898
{
99-
printf("\nMéthode 2 :\n\n");
99+
printf("\nMethod 2 : optimized list with index\n\n");
100100
printf("Start loading file using method 2\n");
101101
clock_t function_time2;
102102
function_time2 = clock();
@@ -115,22 +115,4 @@ int main(int argc, char *argv[])
115115
}
116116

117117
return 0;
118-
}
119-
120-
// /**
121-
// * @mainpage My Personal Index Page
122-
// *
123-
// * @section intro_sec Introduction
124-
// *
125-
// * This is the introduction for my C-lang project.
126-
// * Here is a table of content of the documentation : @tableofcontents
127-
// *
128-
// * @section install_sec Installation
129-
// *
130-
// * This is a section about how to install the project.
131-
// *
132-
// * @subsection step1 Step 1: Downloading the code.
133-
// *
134-
// * blabla...
135-
// *
136-
// */
118+
}

0 commit comments

Comments
 (0)