summaryrefslogtreecommitdiff
path: root/src/sp_list.h
diff options
context:
space:
mode:
authorBen Foster2017-10-25 22:25:30 +0100
committerBen Foster2017-10-26 21:14:00 +0100
commit59b3db273e6e628afb188681e178ea53d571b03d (patch)
treece000e1cf87ea9c206bc81e2b958173e28f7c464 /src/sp_list.h
parenteab3fb2fd6e6e827327a4971b3371fb67a7d8600 (diff)
Renames `sp_new_list` -> `sp_list_new`
To be consistent with the rest of the `sp_list` functions.
Diffstat (limited to 'src/sp_list.h')
-rw-r--r--src/sp_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_list.h b/src/sp_list.h
index 476c64c..dda139f 100644
--- a/src/sp_list.h
+++ b/src/sp_list.h
@@ -8,7 +8,7 @@ typedef struct sp_node_s {
8 8
9} sp_node_t; 9} sp_node_t;
10 10
11sp_node_t *sp_new_list(); 11sp_node_t *sp_list_new();
12void sp_list_insert(sp_node_t *, void *); 12void sp_list_insert(sp_node_t *, void *);
13void sp_list_free(sp_node_t *); 13void sp_list_free(sp_node_t *);
14void sp_list_prepend(sp_node_t *, void *); 14void sp_list_prepend(sp_node_t *, void *);