src/cx/array_list.h

changeset 677
b09aae58bba4
parent 670
4ad8ea3aee49
child 759
475335643af4
equal deleted inserted replaced
676:d0680a23d850 677:b09aae58bba4
163 * @param initial_capacity the initial number of elements the array can store 163 * @param initial_capacity the initial number of elements the array can store
164 * @return the created list 164 * @return the created list
165 */ 165 */
166 CxList *cxArrayListCreate( 166 CxList *cxArrayListCreate(
167 CxAllocator const *allocator, 167 CxAllocator const *allocator,
168 CxListComparator comparator, 168 cx_compare_func comparator,
169 size_t item_size, 169 size_t item_size,
170 size_t initial_capacity 170 size_t initial_capacity
171 ); 171 );
172 172
173 /** 173 /**

mercurial