@@ -0,0 +1,12 @@
#ifndef LIST_H
#define LIST_H
typedef struct {
unsigned int Capcity;
unsigned int Size;
char** Strings;
} List;
List* CreateList(void);
#endif
The note is not visible to the blocked user.