diff options
author | 2023-03-14 18:17:23 +0100 | |
---|---|---|
committer | 2023-03-14 18:17:23 +0100 | |
commit | 53a32c2aeb0e1f95ecbe5693e6c297495f5bba80 (patch) | |
tree | 8bc20d0409734a3ce86f3af1b58a7e0b81694551 /src/list.h | |
parent | c9cb97f8acb76b317dd4d913438c1098e752e90c (diff) | |
download | utils-53a32c2aeb0e1f95ecbe5693e6c297495f5bba80.tar.gz utils-53a32c2aeb0e1f95ecbe5693e6c297495f5bba80.zip |
Generify the function to get the version
Diffstat (limited to 'src/list.h')
-rw-r--r-- | src/list.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |