12 lines
157 B
C
12 lines
157 B
C
#ifndef LIST_H
|
|
#define LIST_H
|
|
|
|
typedef struct {
|
|
unsigned int Capcity;
|
|
unsigned int Size;
|
|
char** Strings;
|
|
} List;
|
|
|
|
List* CreateList(void);
|
|
|
|
#endif |