diff options
author | 2022-11-30 22:51:35 +0100 | |
---|---|---|
committer | 2022-11-30 22:51:35 +0100 | |
commit | c70ac3e80e0110731a445ac9ac7f615ef85ab488 (patch) | |
tree | ac7a8d6690dfd1232f7c59766dfc56fd62e59e0f /src/list.h | |
parent | c6461422f7fd056a951a2e5ec553bbfbd7ddd50e (diff) | |
download | utils-c70ac3e80e0110731a445ac9ac7f615ef85ab488.tar.gz utils-c70ac3e80e0110731a445ac9ac7f615ef85ab488.zip |
Rename iterator_next() to clist_iterator_next()
Diffstat (limited to 'src/list.h')
-rw-r--r-- | src/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,6 +41,6 @@ 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 *iterator_next (iterator_t *); +list_item_t *clist_iterator_next (iterator_t *); #endif |