21 lines
305 B
C
21 lines
305 B
C
#ifndef LIST_H
|
|
#define LIST_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#define LISTDEFAULTSIZE 4
|
|
|
|
typedef struct {
|
|
void** content;
|
|
int size;
|
|
int capacity;
|
|
} List;
|
|
|
|
List* CreateList(void);
|
|
int AddListItem(void *, List *);
|
|
void DestroyList(List*);
|
|
|
|
#endif |