fungujeň

This commit is contained in:
Tančáková 2024-03-13 10:25:40 +01:00
parent f531887a85
commit 8addf7ea4f

View File

@ -3,6 +3,9 @@
#include <stdlib.h>
#include <stdbool.h>
#include <stdarg.h>
#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