diff options
| author | jvoisin | 2022-05-06 21:11:28 +0200 |
|---|---|---|
| committer | jvoisin | 2022-05-06 21:11:28 +0200 |
| commit | 924144799f380863aa3b13f444f478eb81dcef6c (patch) | |
| tree | 9d32bc6a004b8acb49783bdbeef73fecfb98af9d /src/sp_config_scanner.h | |
| parent | d6c78df6c1b54ffbb081d6679bb2eda0005c1dc7 (diff) | |
Another constify pass
Diffstat (limited to 'src/sp_config_scanner.h')
| -rw-r--r-- | src/sp_config_scanner.h | 6 |
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 | ||
| 21 | zend_result sp_config_scan(char *data, zend_result (*process_rule)(sp_parsed_keyword*)); | 21 | zend_result sp_config_scan(char *data, zend_result (*process_rule)(sp_parsed_keyword*)); |
| 22 | zend_string *sp_get_arg_string(sp_parsed_keyword *kw); | 22 | zend_string *sp_get_arg_string(sp_parsed_keyword const *const kw); |
| 23 | zend_string *sp_get_textual_representation(sp_parsed_keyword *parsed_rule); | 23 | zend_string *sp_get_textual_representation(sp_parsed_keyword const *const parsed_rule); |
| 24 | 24 | ||
| 25 | #endif \ No newline at end of file | 25 | #endif |
