ucx/list.h

Sat, 18 Feb 2012 18:36:30 +0100

author
Mike Becker <universe@uap-core.de>
date
Sat, 18 Feb 2012 18:36:30 +0100
changeset 27
22644e2572bc
parent 26
59f147baea31
child 35
fdabd1240b69
permissions
-rw-r--r--

removed old foreach + refactored list tests

olaf@2 1 /*
olaf@2 2 *
olaf@2 3 */
olaf@2 4
olaf@2 5 #ifndef LIST_H
olaf@2 6 #define LIST_H
olaf@2 7
olaf@6 8 #include "ucx.h"
olaf@6 9 #include <stddef.h>
olaf@6 10
olaf@2 11 #ifdef __cplusplus
olaf@2 12 extern "C" {
olaf@2 13 #endif
universe@26 14
olaf@5 15 typedef struct UcxList UcxList;
olaf@5 16 struct UcxList {
olaf@5 17 void *data;
olaf@5 18 UcxList *next;
olaf@5 19 };
olaf@2 20
universe@18 21 UcxList *ucx_list_clone(UcxList *l, copy_func fnc, void *data);
universe@18 22 int ucx_list_equals(UcxList *l1, UcxList *l2, cmp_func fnc, void *data);
universe@18 23
olaf@12 24 void ucx_list_free(UcxList *l);
olaf@6 25 UcxList *ucx_list_append(UcxList *l, void *data);
olaf@6 26 UcxList *ucx_list_prepend(UcxList *l, void *data);
olaf@9 27 UcxList *ucx_list_concat(UcxList *l1, UcxList *l2);
olaf@6 28 UcxList *ucx_list_last(UcxList *l);
olaf@6 29 UcxList *ucx_list_get(UcxList *l, int index);
olaf@6 30 size_t ucx_list_size(UcxList *l);
olaf@2 31
universe@23 32 /* list specific functions */
universe@23 33 UcxList *ucx_list_remove(UcxList *l, UcxList *e);
olaf@2 34
olaf@2 35 #ifdef __cplusplus
olaf@2 36 }
olaf@2 37 #endif
olaf@2 38
olaf@2 39 #endif /* LIST_H */
olaf@2 40

mercurial