diff options
author | 2023-03-13 17:12:26 +0100 | |
---|---|---|
committer | 2023-03-13 17:12:26 +0100 | |
commit | 3f846f386c6e51f707ab418b549e4fb4180960de (patch) | |
tree | 263d1dfe2ccd904257cb7e3dde9caa95c3de8f43 /src/list.h | |
parent | 22ad5660800e534e18e653ed31ccaec650df8769 (diff) | |
download | utils-3f846f386c6e51f707ab418b549e4fb4180960de.tar.gz utils-3f846f386c6e51f707ab418b549e4fb4180960de.zip |
Change data return in clist_iterator_next
We want only data and not the node structure.
Diffstat (limited to 'src/list.h')
-rw-r--r-- | src/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ void clist_add_all (list_t *, list_t *); void clist_remove (list_t *, list_item_t *); iterator_t clist_iterator (list_t *); int clist_iterator_has_next(iterator_t); -list_item_t *clist_iterator_next (iterator_t *); +void *clist_iterator_next (iterator_t *); char* clist_version (void); #endif |