]> granicus.if.org Git - php/commitdiff
fix folding
authorAntony Dovgal <tony2001@php.net>
Thu, 14 Aug 2008 09:29:22 +0000 (09:29 +0000)
committerAntony Dovgal <tony2001@php.net>
Thu, 14 Aug 2008 09:29:22 +0000 (09:29 +0000)
ext/standard/quot_print.c

index a1e537940d6e07b9726520706a6b0045fd12111e..47393e78ca0bde63151cdf984cae32c97e2adf19 100644 (file)
@@ -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 @@ static char php_hex2int(int c)
                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 @@ PHPAPI unsigned char *php_quot_print_decode(const unsigned char *str, size_t len
        *ret_length = decoded_len;
        return retval;
 }
-
+/* }}} */
 
 /*
 *