tony2001 Mon Mar 12 20:55:15 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/standard uuencode.c
Log:
MFH
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/uuencode.c?r1=1.5.2.1.2.3&r2=1.5.2.1.2.4&diff_format=u
Index: php-src/ext/standard/uuencode.c
diff -u php-src/ext/standard/uuencode.c:1.5.2.1.2.3
php-src/ext/standard/uuencode.c:1.5.2.1.2.4
--- php-src/ext/standard/uuencode.c:1.5.2.1.2.3 Mon Jan 1 09:36:09 2007
+++ php-src/ext/standard/uuencode.c Mon Mar 12 20:55:15 2007
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: uuencode.c,v 1.5.2.1.2.3 2007/01/01 09:36:09 sebastian Exp $ */
+/* $Id: uuencode.c,v 1.5.2.1.2.4 2007/03/12 20:55:15 tony2001 Exp $ */
/*
* Portions of this code are based on Berkeley's uuencode/uudecode
@@ -65,7 +65,7 @@
#define PHP_UU_DEC(c) (((c) - ' ') & 077)
-PHPAPI int php_uuencode(char *src, int src_len, char **dest)
+PHPAPI int php_uuencode(char *src, int src_len, char **dest) /* {{{ */
{
int len = 45;
char *p, *s, *e, *ee;
@@ -122,8 +122,9 @@
return (p - *dest);
}
+/* }}} */
-PHPAPI int php_uudecode(char *src, int src_len, char **dest)
+PHPAPI int php_uudecode(char *src, int src_len, char **dest) /* {{{ */
{
int len, total_len=0;
char *s, *e, *p, *ee;
@@ -182,6 +183,7 @@
efree(*dest);
return -1;
}
+/* }}} */
/* {{{ proto string convert_uuencode(string data)
uuencode a string */
@@ -220,3 +222,12 @@
RETURN_STRINGL(dst, dst_len, 0);
}
/* }}} */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: noet sw=4 ts=4 fdm=marker
+ * vim<600: noet sw=4 ts=4
+ */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php