diff options
| author | twosee <twose@qq.com> | 2020-06-07 17:01:19 +0800 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-06-08 10:38:45 +0200 |
| commit | 88355dd338835f7a59415ecb2e7e970658f3867f (patch) | |
| tree | f203c58d7656c341273565e2d6fb84d89837bad2 /ext/standard/php_uuencode.h | |
| parent | f6db43fec8da3d3c0c7def077e9f493ce6129c45 (diff) | |
| download | php-git-88355dd338835f7a59415ecb2e7e970658f3867f.tar.gz | |
Constify char * arguments of APIs
Closes GH-5676.
Diffstat (limited to 'ext/standard/php_uuencode.h')
| -rw-r--r-- | ext/standard/php_uuencode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/php_uuencode.h b/ext/standard/php_uuencode.h index 82549f56d1..5d5c84a9b3 100644 --- a/ext/standard/php_uuencode.h +++ b/ext/standard/php_uuencode.h @@ -17,7 +17,7 @@ #ifndef PHP_UUENCODE_H #define PHP_UUENCODE_H -PHPAPI zend_string *php_uudecode(char *src, size_t src_len); -PHPAPI zend_string *php_uuencode(char *src, size_t src_len); +PHPAPI zend_string *php_uudecode(const char *src, size_t src_len); +PHPAPI zend_string *php_uuencode(const char *src, size_t src_len); #endif /* PHP_UUENCODE_H */ |
