#ifndef LIST_H #define LIST_H #include #include #include #include typedef struct { unsigned int Capcity; unsigned int Size; char** Strings; } List; List* CreateList(void); #endif