summaryrefslogtreecommitdiffstats
path: root/list.h
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2021-12-26 22:43:47 +0100
committerpgen <p.gen.progs@gmail.com>2021-12-26 22:43:47 +0100
commit1341af59fb5a3632ee660a98bd4256b6e156bfe4 (patch)
tree643820f9f54fd96876a77340ffacd2b02a23cdd9 /list.h
parent68790618f37e0e4013cb741fe61dc7ddb5a78937 (diff)
Make ll_quicksort static in list
Diffstat (limited to 'list.h')
-rw-r--r--list.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/list.h b/list.h
index b331297..cf7e637 100644
--- a/list.h
+++ b/list.h
@@ -50,10 +50,6 @@ ll_insert_after(ll_t * const list, ll_node_t * node, void * const data);
#endif
void
-ll_quicksort(ll_node_t * l, ll_node_t * h, int (*comp)(void *, void *),
- void (*swap)(void * a, void *));
-
-void
ll_sort(ll_t * list, int (*comp)(void *, void *),
void (*swap)(void * a, void *));