From 1e5a4f281d21abab8101301ea155f9c0394ab02f Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Mon, 24 Feb 2014 18:32:09 +0800 Subject: Refactor php_uu(en/de)code to returning zend_string --- ext/standard/php_uuencode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/standard/php_uuencode.h') 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 */ -- cgit v1.2.1