From 8addf7ea4f902c62c64bdbff3a891d13ece13a7c Mon Sep 17 00:00:00 2001 From: st529yr Date: Wed, 13 Mar 2024 10:25:40 +0100 Subject: [PATCH] =?UTF-8?q?funguje=C5=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cv4/list_ops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cv4/list_ops.c b/cv4/list_ops.c index 55057b3..ee3c710 100644 --- a/cv4/list_ops.c +++ b/cv4/list_ops.c @@ -3,6 +3,9 @@ #include #include +#include +#include "list_ops.h" +#include "test-framework/unity.h" typedef int list_element_t; @@ -42,7 +45,4 @@ list_t *reverse_list(list_t *list); // destroy the entire list // list will be a dangling pointer after calling this method on it -void delete_list(list_t *list); - -#endif