ucx/list.h

changeset 18
69636f81db31
parent 12
fe50a85e69e7
child 23
ccc294fafb9b
     1.1 --- a/ucx/list.h	Sat Dec 31 22:48:28 2011 +0100
     1.2 +++ b/ucx/list.h	Wed Jan 04 14:51:54 2012 +0100
     1.3 @@ -18,6 +18,9 @@
     1.4      UcxList *next;
     1.5  };
     1.6  
     1.7 +UcxList *ucx_list_clone(UcxList *l, copy_func fnc, void *data);
     1.8 +int ucx_list_equals(UcxList *l1, UcxList *l2, cmp_func fnc, void *data);
     1.9 +
    1.10  void ucx_list_free(UcxList *l);
    1.11  UcxList *ucx_list_append(UcxList *l, void *data);
    1.12  UcxList *ucx_list_prepend(UcxList *l, void *data);

mercurial