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