diff options
| author | 2011-06-13 18:30:37 +0200 | |
|---|---|---|
| committer | 2011-06-13 18:30:37 +0200 | |
| commit | c7412d4813ccb994fdd219f421eaba8bb37831dd (patch) | |
| tree | 5b7f3016ceb337b31afdd62c9fee646f33e8b271 /libcnary/include/list.h | |
| parent | 3277a11f0beedda8b5d65ffccb05fabd4e8ded28 (diff) | |
| download | libplist-c7412d4813ccb994fdd219f421eaba8bb37831dd.tar.gz libplist-c7412d4813ccb994fdd219f421eaba8bb37831dd.tar.bz2 | |
Bundle libcnary for better packaging1.5
Diffstat (limited to 'libcnary/include/list.h')
| -rw-r--r-- | libcnary/include/list.h | 24 |
1 files changed, 24 insertions, 0 deletions
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 @@ | |||
| 1 | /* | ||
| 2 | * list.h | ||
| 3 | * | ||
| 4 | * Created on: Mar 8, 2011 | ||
| 5 | * Author: posixninja | ||
| 6 | */ | ||
| 7 | |||
| 8 | #ifndef LIST_H_ | ||
| 9 | #define LIST_H_ | ||
| 10 | |||
| 11 | #include "object.h" | ||
| 12 | |||
| 13 | typedef struct list_t { | ||
| 14 | void* next; | ||
| 15 | void* prev; | ||
| 16 | } list_t; | ||
| 17 | |||
| 18 | void list_init(struct list_t* list); | ||
| 19 | void list_destroy(struct list_t* list); | ||
| 20 | |||
| 21 | int list_add(struct list_t* list, struct object_t* object); | ||
| 22 | int list_remove(struct list_t* list, struct object_t* object); | ||
| 23 | |||
| 24 | #endif /* LIST_H_ */ | ||
