summaryrefslogtreecommitdiff
path: root/src/sp_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sp_list.h')
-rw-r--r--src/sp_list.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sp_list.h b/src/sp_list.h
index dda139f..7878f78 100644
--- a/src/sp_list.h
+++ b/src/sp_list.h
@@ -9,6 +9,7 @@ typedef struct sp_node_s {
9} sp_node_t; 9} sp_node_t;
10 10
11sp_node_t *sp_list_new(); 11sp_node_t *sp_list_new();
12sp_node_t *sp_list_sort(sp_node_t *, int (*)(sp_node_t *, sp_node_t *));
12void sp_list_insert(sp_node_t *, void *); 13void sp_list_insert(sp_node_t *, void *);
13void sp_list_free(sp_node_t *); 14void sp_list_free(sp_node_t *);
14void sp_list_prepend(sp_node_t *, void *); 15void sp_list_prepend(sp_node_t *, void *);