blob: a63cadc4c710e1a3b1a3227c88c1f5ff01ad2771 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef SP_CONFIG_UTILS
#define SP_CONFIG_UTILS
int parse_keywords(sp_config_functions *, char *);
zend_string *get_param(size_t *, char *restrict, sp_type, const char *restrict);
int array_to_list(char **, sp_list_node **);
sp_list_node *parse_functions_list(char *value);
#endif /* SP_CONFIG_UTILS */
|