box-o-sand/lcthw-remnants-2/liblcthw/src/lcthw/list_algos.h
2016-04-17 18:55:43 -04:00

13 lines
254 B
C

#ifndef lcthw_List_algos_h
#define lcthw_List_algos_h
#include <lcthw/list.h>
typedef int (*List_compare)(const void *a, const void *b);
int List_bubble_sort(List *list, List_compare cmp);
List *List_merge_sort(List *list, List_compare cmp);
#endif