From e56b334e8502b08a8cc8a0f706fbd186cc775f21 Mon Sep 17 00:00:00 2001 From: Lucas Date: Thu, 2 Apr 2026 14:55:12 +0200 Subject: [PATCH] test --- tests/test_basics.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_basics.c b/tests/test_basics.c index b3ed00e..262aa58 100644 --- a/tests/test_basics.c +++ b/tests/test_basics.c @@ -1,4 +1,5 @@ #include +#include #include "../Chains_across_the_Island/Fundamentals/basics/basics.h" // Test pour list_append @@ -27,7 +28,7 @@ Test(basics_suite, test_count) { l = list_append(l, 30); cr_assert_eq(list_count(l), 3, "La liste doit contenir 3 éléments."); - + printf("%i\n", list_count(l)); list_destroy(l); }