diff options
author | 2022-11-30 22:50:56 +0100 | |
---|---|---|
committer | 2022-11-30 22:50:56 +0100 | |
commit | c6461422f7fd056a951a2e5ec553bbfbd7ddd50e (patch) | |
tree | b056e213141a465c6492602071cec68cc453c842 /src/list.c | |
parent | 43b7cbf59dde3538140af7bf28bc9d6e5401de52 (diff) | |
download | utils-c6461422f7fd056a951a2e5ec553bbfbd7ddd50e.tar.gz utils-c6461422f7fd056a951a2e5ec553bbfbd7ddd50e.zip |
Rename iterator_has_next() to clist_iterator_has_next()
Diffstat (limited to 'src/list.c')
-rw-r--r-- | src/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -90,7 +90,7 @@ iterator_t clist_iterator(list_t *list) return *iterator; } -int iterator_has_next(iterator_t *iterator) +int clist_iterator_has_next(iterator_t *iterator) { return iterator->current != NULL; } |