diff options
author | Xinchen Hui <laruence@gmail.com> | 2014-02-24 18:32:09 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2014-02-24 18:32:09 +0800 |
commit | 1e5a4f281d21abab8101301ea155f9c0394ab02f (patch) | |
tree | 22993ba5a8198516d961af221352dfb2febef425 /ext/standard/php_uuencode.h | |
parent | 5fccb0724b71e992b43ea92a4e27284c17d09063 (diff) | |
download | php-git-1e5a4f281d21abab8101301ea155f9c0394ab02f.tar.gz |
Refactor php_uu(en/de)code to returning zend_string
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 5b2b852606..fedfe660e9 100644 --- a/ext/standard/php_uuencode.h +++ b/ext/standard/php_uuencode.h @@ -24,8 +24,8 @@ PHP_FUNCTION(convert_uudecode); PHP_FUNCTION(convert_uuencode); -PHPAPI int php_uudecode(char *src, int src_len, char **dest); -PHPAPI int php_uuencode(char *src, int src_len, char **dest); +PHPAPI zend_string *php_uudecode(char *src, int src_len); +PHPAPI zend_string *php_uuencode(char *src, int src_len); #endif /* PHP_UUENCODE_H */ |