summaryrefslogtreecommitdiff
path: root/src/sp_config_scanner.h
diff options
context:
space:
mode:
authorjvoisin2022-05-06 21:11:28 +0200
committerjvoisin2022-05-06 21:11:28 +0200
commit924144799f380863aa3b13f444f478eb81dcef6c (patch)
tree9d32bc6a004b8acb49783bdbeef73fecfb98af9d /src/sp_config_scanner.h
parentd6c78df6c1b54ffbb081d6679bb2eda0005c1dc7 (diff)
Another constify pass
Diffstat (limited to 'src/sp_config_scanner.h')
-rw-r--r--src/sp_config_scanner.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sp_config_scanner.h b/src/sp_config_scanner.h
index 3284713..8ce1fb7 100644
--- a/src/sp_config_scanner.h
+++ b/src/sp_config_scanner.h
@@ -19,7 +19,7 @@ typedef struct {
19} sp_parsed_keyword; 19} sp_parsed_keyword;
20 20
21zend_result sp_config_scan(char *data, zend_result (*process_rule)(sp_parsed_keyword*)); 21zend_result sp_config_scan(char *data, zend_result (*process_rule)(sp_parsed_keyword*));
22zend_string *sp_get_arg_string(sp_parsed_keyword *kw); 22zend_string *sp_get_arg_string(sp_parsed_keyword const *const kw);
23zend_string *sp_get_textual_representation(sp_parsed_keyword *parsed_rule); 23zend_string *sp_get_textual_representation(sp_parsed_keyword const *const parsed_rule);
24 24
25#endif \ No newline at end of file 25#endif