From 59b3db273e6e628afb188681e178ea53d571b03d Mon Sep 17 00:00:00 2001 From: Ben Foster Date: Wed, 25 Oct 2017 22:25:30 +0100 Subject: Renames `sp_new_list` -> `sp_list_new` To be consistent with the rest of the `sp_list` functions. --- src/sp_list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sp_list.h') 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 { } sp_node_t; -sp_node_t *sp_new_list(); +sp_node_t *sp_list_new(); void sp_list_insert(sp_node_t *, void *); void sp_list_free(sp_node_t *); void sp_list_prepend(sp_node_t *, void *); -- cgit v1.3