engineerOfLies/gfc

gfc_list - sort

Closed this issue · 2 comments

add a sorting function that will take a function pointer to resolve ordering
int gfc_list_sort_func(void *a, void *b);
should return 1, 0, or -1 depending on sorting order (ala strcmp).
void gfc_list_sort(GFC_List *list, int (*gfc_list_sort_func)(void *a, void *b));

use merge sort, the elemetns are all pointers anyway

gfc_list_sort() works