diff options
| author | Ben Foster | 2017-10-25 22:25:30 +0100 |
|---|---|---|
| committer | Ben Foster | 2017-10-26 21:14:00 +0100 |
| commit | 59b3db273e6e628afb188681e178ea53d571b03d (patch) | |
| tree | ce000e1cf87ea9c206bc81e2b958173e28f7c464 /src/sp_list.h | |
| parent | eab3fb2fd6e6e827327a4971b3371fb67a7d8600 (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.h | 2 |
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 | ||
| 11 | sp_node_t *sp_new_list(); | 11 | sp_node_t *sp_list_new(); |
| 12 | void sp_list_insert(sp_node_t *, void *); | 12 | void sp_list_insert(sp_node_t *, void *); |
| 13 | void sp_list_free(sp_node_t *); | 13 | void sp_list_free(sp_node_t *); |
| 14 | void sp_list_prepend(sp_node_t *, void *); | 14 | void sp_list_prepend(sp_node_t *, void *); |
