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