#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(char *, List *); void PrintList(List*); void DestroyList(List*); #endif