Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 684 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 684 Bytes

ClutchList

You can create a new list or manage your list with this tool.

Creating a new list

You should define a clutchList pointer and call function newList.
clutchList* list = newList();

Add an item

You can call addItem or insertItem for add an item.
addItem functions need two parameters, clutchList pointer and item pointer.
addItem(clutchList*, &item);

insertItem functions need more parameter, it is index, the second function parameter should be index. insertItem(clutchList*, int index, &item);

Manage your LinkedList

Do not try to write functions again and again for each LinkedList.Create custom struct