Skip to content

Commit 8cdf97a

Browse files
authored
[chore] Rename list methods (#33)
2 parents 658f60c + 5dce32d commit 8cdf97a

File tree

15 files changed

+291
-280
lines changed

15 files changed

+291
-280
lines changed

libs/libs.cbp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
3434
</Linker>
3535
</Target>
3636
</Build>
37-
<Unit filename="list/main.c">
38-
<Option compilerVar="CC" />
39-
</Unit>
40-
<Unit filename="list/main.h" />
4137
<Unit filename="macros.h" />
4238
<Unit filename="main.h" />
39+
<Unit filename="singly-list/main.c">
40+
<Option compilerVar="CC" />
41+
</Unit>
42+
<Unit filename="singly-list/main.h" />
4343
<Unit filename="structs.h" />
4444
<Unit filename="time/main.c">
4545
<Option compilerVar="CC" />

libs/list/main.c

Lines changed: 0 additions & 215 deletions
This file was deleted.

libs/main.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
#include "./macros.h"
77
#include "./structs.h"
88

9-
// List
10-
#include "./list/main.h"
9+
// Singly linked list
10+
#include "./singly-list/main.h"
1111

1212
// Time
1313
#include "./time/main.h"

0 commit comments

Comments
 (0)