tony2001 Thu Aug 14 09:29:22 2008 UTC
Modified files: (Branch: PHP_5_3)
/php-src/ext/standard quot_print.c
Log:
fix folding
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/quot_print.c?r1=1.29.2.2.2.1.2.2&r2=1.29.2.2.2.1.2.3&diff_format=u
Index: php-src/ext/standard/quot_print.c
diff -u php-src/ext/standard/quot_print.c:1.29.2.2.2.1.2.2
php-src/ext/standard/quot_print.c:1.29.2.2.2.1.2.3
--- php-src/ext/standard/quot_print.c:1.29.2.2.2.1.2.2 Fri Jun 20 14:53:57 2008
+++ php-src/ext/standard/quot_print.c Thu Aug 14 09:29:22 2008
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: quot_print.c,v 1.29.2.2.2.1.2.2 2008/06/20 14:53:57 felipe Exp $ */
+/* $Id: quot_print.c,v 1.29.2.2.2.1.2.3 2008/08/14 09:29:22 tony2001 Exp $ */
#include <stdlib.h>
@@ -34,7 +34,7 @@
/*
* Converting HEX char to INT value
*/
-static char php_hex2int(int c)
+static char php_hex2int(int c) /* {{{ */
{
if (isdigit(c)) {
return c - '0';
@@ -49,8 +49,9 @@
return -1;
}
}
+/* }}} */
-PHPAPI unsigned char *php_quot_print_decode(const unsigned char *str, size_t
length, size_t *ret_length, int replace_us_by_ws)
+PHPAPI unsigned char *php_quot_print_decode(const unsigned char *str, size_t
length, size_t *ret_length, int replace_us_by_ws) /* {{{ */
{
register unsigned int i;
register unsigned const char *p1;
@@ -140,7 +141,7 @@
*ret_length = decoded_len;
return retval;
}
-
+/* }}} */
/*
*
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php