ucx/list.h

changeset 229
9db71925eaa8
parent 228
9f385abc72fb
child 250
b7d1317b138e
     1.1 --- a/ucx/list.h	Fri Nov 18 15:17:04 2016 +0100
     1.2 +++ b/ucx/list.h	Fri Nov 18 15:33:58 2016 +0100
     1.3 @@ -276,37 +276,6 @@
     1.4  UcxList *ucx_list_prepend_a(UcxAllocator *allocator, UcxList *list, void *data);
     1.5  
     1.6  /**
     1.7 - * Inserts an element at the beginning of the list, if it is not present
     1.8 - * in the list.
     1.9 - * 
    1.10 - * @param list the list where to insert the data or <code>NULL</code> to create
    1.11 - * a new list
    1.12 - * @param data the data to insert
    1.13 - * @param cmpfnc the compare function
    1.14 - * @param cmpdata additional data for the compare function
    1.15 - * @return a pointer to the new list head
    1.16 - * @see ucx_list_prepend()
    1.17 - */
    1.18 -UcxList *ucx_list_prepend_once(UcxList *list, void *data,
    1.19 -        cmp_func cmpfnc, void *cmpdata);
    1.20 -
    1.21 -/**
    1.22 - * Inserts an element at the beginning of the list, if it is not present in
    1.23 - * the list, using a UcxAllocator.
    1.24 - * 
    1.25 - * @param allocator the allocator to use
    1.26 - * @param list the list where to insert the data or <code>NULL</code> to create
    1.27 - * a new list
    1.28 - * @param data the data to insert
    1.29 - * @param cmpfnc the compare function
    1.30 - * @param cmpdata additional data for the compare function
    1.31 - * @return a pointer to the new list head
    1.32 - * @see ucx_list_prepend_a()
    1.33 - */
    1.34 -UcxList *ucx_list_prepend_once_a(UcxAllocator *allocator,
    1.35 -        UcxList *list, void *data, cmp_func cmpfnc, void *cmpdata);
    1.36 -
    1.37 -/**
    1.38   * Concatenates two lists.
    1.39   * 
    1.40   * Either of the two arguments may be <code>NULL</code>.

mercurial