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