summaryrefslogtreecommitdiff
path: root/lichen.c
diff options
context:
space:
mode:
Diffstat (limited to 'lichen.c')
-rw-r--r--lichen.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lichen.c b/lichen.c
index d7f0f82..912dbff 100644
--- a/lichen.c
+++ b/lichen.c
@@ -133,3 +133,10 @@ int li_copy_list(struct li_ll_t **dst, struct li_ll_t *src, void *(*copy_data)(v
return 0;
}
+
+
+int li_sort_list(struct li_ll_t *list, int (*compare_data)(void *, void*)) {
+ list = list;
+ compare_data = compare_data;
+ return 0;
+}