summaryrefslogtreecommitdiff
path: root/ext/standard/quot_print.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/quot_print.c')
-rw-r--r--ext/standard/quot_print.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/standard/quot_print.c b/ext/standard/quot_print.c
index 7bf0be4078..1946ea6127 100644
--- a/ext/standard/quot_print.c
+++ b/ext/standard/quot_print.c
@@ -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;
}
-
+/* }}} */
/*
*