. array_udiff_assoc(). (Andrey)
. array_udiff_uassoc(). (Andrey)
. array_diff_uassoc(). (Andrey)
- . uuencode(). (Ilia)
- . uudecode(). (Ilia)
+ . convert_uuencode(). (Ilia)
+ . convert_uudecode(). (Ilia)
- Added "resume_pos" context option to "ftp://" wrapper. (Sara)
- Added optional parameter to OCIWriteTemporaryLob() to specify the type of LOB
(Patch by Novicky Marek <novicky@aarongroup.cz>). (Thies)
PHP_FE(base64_decode, NULL)
PHP_FE(base64_encode, NULL)
- PHP_FE(uuencode, NULL)
- PHP_FE(uudecode, NULL)
+ PHP_FE(convert_uuencode, NULL)
+ PHP_FE(convert_uudecode, NULL)
PHP_FE(abs, NULL)
PHP_FE(ceil, NULL)
#ifndef PHP_UUENCODE_H
#define PHP_UUENCODE_H
-PHP_FUNCTION(uudecode);
-PHP_FUNCTION(uuencode);
+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);
/* {{{ proto string uuencode(string data)
uuencode a string */
-PHP_FUNCTION(uuencode)
+PHP_FUNCTION(convert_uuencode)
{
char *src, *dst;
int src_len, dst_len;
/* {{{ proto string uudecode(string data)
decode a uuencoded string */
-PHP_FUNCTION(uudecode)
+PHP_FUNCTION(convert_uudecode)
{
char *src, *dst;
int src_len, dst_len;