From c29bf2efbdc4f4186f3fe571601b4d1acac4b321 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Fri, 7 Jul 2023 20:08:13 -0400 Subject: Implement trivial linked list * Bring-your-own-node (generic / zero allocations) * Doubly-linked and circular, forward and backward traversable * Random insert/removal in constant time * All operations are no-fail * [Some type safety concessions though] Signed-off-by: Malfurious --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a13a74..b8644a7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,7 @@ add_compile_definitions( add_executable(${PROJECT_NAME} console.c helpers.c + list.c misplays.c ) -- cgit v1.2.3