From 00566020a82667f786be2a4e35a90d48ded274ed Mon Sep 17 00:00:00 2001 From: Kapliuk Date: Wed, 13 Mar 2024 16:19:24 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=BD=D0=BE=D0=B2=D0=B8=D1=82=D0=B8=20'c?= =?UTF-8?q?v4/list=5Fops.c'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cv4/list_ops.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cv4/list_ops.c b/cv4/list_ops.c index b535771..8d7a0f8 100644 --- a/cv4/list_ops.c +++ b/cv4/list_ops.c @@ -1,4 +1,5 @@ #include "list_ops.h" +#include list_t *new_list(size_t length, list_element_t elements[]){ list_t* list = (list_t*)malloc(sizeof(list_t) + length * sizeof(list_element_t));