Skip to content

meetztrk/clutchlist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages