From 53a32c2aeb0e1f95ecbe5693e6c297495f5bba80 Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Tue, 14 Mar 2023 18:17:23 +0100 Subject: Generify the function to get the version --- src/list.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/list.h') diff --git a/src/list.h b/src/list.h index da0793d..824b213 100644 --- a/src/list.h +++ b/src/list.h @@ -20,6 +20,8 @@ #ifndef _LIST_H_ #define _LIST_H_ +#include "version.h" + typedef struct list_item_t { void *data; struct list_item_t *next; @@ -42,6 +44,5 @@ void clist_remove (list_t *, list_item_t *); iterator_t clist_iterator (list_t *); int clist_iterator_has_next(iterator_t); void *clist_iterator_next (iterator_t *); -char* clist_version (void); #endif -- cgit v1.2.3