ucx/list.h

changeset 129
61edec666928
parent 128
b79b1ce438dd
child 146
aa376dba1ba8
     1.1 --- a/ucx/list.h	Tue Jul 23 14:43:45 2013 +0200
     1.2 +++ b/ucx/list.h	Wed Jul 24 14:26:17 2013 +0200
     1.3 @@ -60,10 +60,13 @@
     1.4          for (UcxList* elem = list ; elem != NULL ; elem = elem->next)
     1.5  
     1.6  /**
     1.7 - * UCX list type
     1.8 + * UCX list type.
     1.9   * @see UcxList
    1.10   */
    1.11  typedef struct UcxList UcxList;
    1.12 +/**
    1.13 + * UCX list structure.
    1.14 + */
    1.15  struct UcxList {
    1.16      /**
    1.17       * List element payload.
    1.18 @@ -105,6 +108,7 @@
    1.19   * argument for the <code>data</code> parameter, if you want the copy_func() to
    1.20   * make use of the allocator.
    1.21   * 
    1.22 + * @param allocator the allocator to use
    1.23   * @param list the list to copy
    1.24   * @param cpyfnc a pointer to the function that shall copy an element (may be
    1.25   * <code>NULL</code>)

mercurial