summaryrefslogtreecommitdiff
path: root/ext/standard/uuencode.c
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 /ext/standard/uuencode.c
parentb5f6cda2e92fb97c34def9a46d1a2fffdd86d58f (diff)
downloadphp-git-8f6b374d1dcb9a823b562252fa3be27bd5bc9e85.tar.gz
By popular demand renaming uu(encode/decode) to convert_uu(encode/decode).
Diffstat (limited to 'ext/standard/uuencode.c')
-rw-r--r--ext/standard/uuencode.c4
1 files changed, 2 insertions, 2 deletions
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;