src/cx/list.h

changeset 741
1210ee2d755f
parent 739
529c35a768f3
child 759
475335643af4
equal deleted inserted replaced
740:378578666c83 741:1210ee2d755f
143 struct cx_list_s const *list, 143 struct cx_list_s const *list,
144 void const *elem 144 void const *elem
145 ); 145 );
146 146
147 /** 147 /**
148 * Member function for sorting the list in place. 148 * Member function for sorting the list in-place.
149 */ 149 */
150 void (*sort)(struct cx_list_s *list); 150 void (*sort)(struct cx_list_s *list);
151 151
152 /** 152 /**
153 * Member function for comparing this list to another list of the same type. 153 * Member function for comparing this list to another list of the same type.
582 ) { 582 ) {
583 return list->cl->find(list, elem); 583 return list->cl->find(list, elem);
584 } 584 }
585 585
586 /** 586 /**
587 * Sorts the list in place. 587 * Sorts the list in-place.
588 * 588 *
589 * \remark The underlying sort algorithm is implementation defined. 589 * \remark The underlying sort algorithm is implementation defined.
590 * 590 *
591 * @param list the list 591 * @param list the list
592 */ 592 */

mercurial