summaryrefslogtreecommitdiff
path: root/src/sp_config_utils.h
diff options
context:
space:
mode:
authorjvoisin2017-12-21 14:03:18 +0100
committerjvoisin2017-12-21 14:03:18 +0100
commit0d98f51e7dbde4a40c0039910d43ad378eaefa83 (patch)
tree78749747bc46c80f85bc2c3cdfb629b331d200f1 /src/sp_config_utils.h
parentf91cf7390c060986e51b77990f4e472165b97dad (diff)
Rename sp_node_t to sp_list_node
Since we now have sp_list and sp_tree, it makes sense to specify that nodes are only for lists.
Diffstat (limited to 'src/sp_config_utils.h')
-rw-r--r--src/sp_config_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp_config_utils.h b/src/sp_config_utils.h
index e561d57..9fef996 100644
--- a/src/sp_config_utils.h
+++ b/src/sp_config_utils.h
@@ -3,7 +3,7 @@
3 3
4int parse_keywords(sp_config_functions *, char *); 4int parse_keywords(sp_config_functions *, char *);
5char *get_param(size_t *, char *restrict, sp_type, const char *restrict); 5char *get_param(size_t *, char *restrict, sp_type, const char *restrict);
6int array_to_list(char **, sp_node_t **); 6int array_to_list(char **, sp_list_node **);
7sp_node_t *parse_functions_list(char *value); 7sp_list_node *parse_functions_list(char *value);
8 8
9#endif /* SP_CONFIG_UTILS */ 9#endif /* SP_CONFIG_UTILS */