diff options
author | 2022-11-30 22:51:35 +0100 | |
---|---|---|
committer | 2022-11-30 22:51:35 +0100 | |
commit | c70ac3e80e0110731a445ac9ac7f615ef85ab488 (patch) | |
tree | ac7a8d6690dfd1232f7c59766dfc56fd62e59e0f /test | |
parent | c6461422f7fd056a951a2e5ec553bbfbd7ddd50e (diff) | |
download | utils-c70ac3e80e0110731a445ac9ac7f615ef85ab488.tar.gz utils-c70ac3e80e0110731a445ac9ac7f615ef85ab488.zip |
Rename iterator_next() to clist_iterator_next()
Diffstat (limited to 'test')
-rw-r--r-- | test/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/main.c b/test/main.c index 77b78ac..e1c0c6c 100644 --- a/test/main.c +++ b/test/main.c @@ -56,7 +56,7 @@ int main(int argc, char** argv) it = clist_iterator(&list1); while(clist_iterator_has_next(&it)) { - current = iterator_next(&it); + current = clist_iterator_next(&it); printf("%s\n", (char *) current->data); } |