From d62f358393ba80825bb340a96be789ba314e3960 Mon Sep 17 00:00:00 2001 From: aindros Date: Wed, 8 Jan 2020 22:11:47 +0100 Subject: src --- src/list.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/list.h (limited to 'src/list.h') diff --git a/src/list.h b/src/list.h new file mode 100644 index 0000000..083e239 --- /dev/null +++ b/src/list.h @@ -0,0 +1,16 @@ +#ifndef _LIST_H_ +#define _LIST_H_ + +typedef struct list_t { + void* data; + struct List* next; + struct List* first; + struct List* current; + int size; +} List; + +List* List_Create(void); +void List_Add (List*, void*, int); +void List_Remove(); + +#endif -- cgit v1.2.3