Files
visual-structs/list.h
T
2022-10-29 00:43:17 -05:00

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