summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-10-28 04:02:11 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-10-28 04:02:11 +0000
commit8f6b374d1dcb9a823b562252fa3be27bd5bc9e85 (patch)
tree1790e47ae2d194d1d94067383b4678bfbb9d7cce
parentb5f6cda2e92fb97c34def9a46d1a2fffdd86d58f (diff)
downloadphp-git-8f6b374d1dcb9a823b562252fa3be27bd5bc9e85.tar.gz
By popular demand renaming uu(encode/decode) to convert_uu(encode/decode).
-rw-r--r--NEWS4
-rw-r--r--ext/standard/basic_functions.c4
-rw-r--r--ext/standard/php_uuencode.h4
-rw-r--r--ext/standard/uuencode.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/NEWS b/NEWS
index ddf37c798d..27bb936b2c 100644
--- a/NEWS
+++ b/NEWS
@@ -32,8 +32,8 @@ PHP NEWS
. 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)
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c
index 5fb9a539f4..14c51179a9 100644
--- a/ext/standard/basic_functions.c
+++ b/ext/standard/basic_functions.c
@@ -490,8 +490,8 @@ function_entry basic_functions[] = {
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)
diff --git a/ext/standard/php_uuencode.h b/ext/standard/php_uuencode.h
index 37ca9d5f05..76caa31f0d 100644
--- a/ext/standard/php_uuencode.h
+++ b/ext/standard/php_uuencode.h
@@ -21,8 +21,8 @@
#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);
diff --git a/ext/standard/uuencode.c b/ext/standard/uuencode.c
index fa6d981928..38e78471b8 100644
--- a/ext/standard/uuencode.c
+++ b/ext/standard/uuencode.c
@@ -172,7 +172,7 @@ PHPAPI int php_uudecode(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;
@@ -189,7 +189,7 @@ PHP_FUNCTION(uuencode)
/* {{{ proto string uudecode(string data)
decode a uuencoded string */
-PHP_FUNCTION(uudecode)
+PHP_FUNCTION(convert_uudecode)
{
char *src, *dst;
int src_len, dst_len;