#ifndef LIST_H #define LIST_H #include #include #include #define LISTDEFAULTSIZE 4 typedef struct { char** root; int size; int capacity; } List; List* CreateList(void); int AddListItem(const char *, List *); void PrintList(const List*); void DestroyList(List*); #endif