diff options
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..670fa3f63e 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, php_size_t src_len); +PHPAPI zend_string *php_uuencode(char *src, php_size_t src_len); #endif /* PHP_UUENCODE_H */ |