From c7412d4813ccb994fdd219f421eaba8bb37831dd Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 13 Jun 2011 18:30:37 +0200 Subject: Bundle libcnary for better packaging --- libcnary/include/list.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 libcnary/include/list.h (limited to 'libcnary/include/list.h') diff --git a/libcnary/include/list.h b/libcnary/include/list.h new file mode 100644 index 0000000..237aba0 --- /dev/null +++ b/libcnary/include/list.h @@ -0,0 +1,24 @@ +/* + * list.h + * + * Created on: Mar 8, 2011 + * Author: posixninja + */ + +#ifndef LIST_H_ +#define LIST_H_ + +#include "object.h" + +typedef struct list_t { + void* next; + void* prev; +} list_t; + +void list_init(struct list_t* list); +void list_destroy(struct list_t* list); + +int list_add(struct list_t* list, struct object_t* object); +int list_remove(struct list_t* list, struct object_t* object); + +#endif /* LIST_H_ */ -- cgit v1.1-32-gdbae