Skip to content

Commit c20b2ab

Browse files
committed
folders
1 parent a88eca5 commit c20b2ab

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

ext/zlib/zlib.c

+7
Original file line numberDiff line numberDiff line change
@@ -690,6 +690,7 @@ PHP_ZLIB_ENCODE_FUNC(zlib_encode, 0);
690690
/* {{{ proto binary zlib_decode(binary data[, int max_decoded_len])
691691
Uncompress any raw/gzip/zlib encoded data */
692692
PHP_ZLIB_DECODE_FUNC(zlib_decode, PHP_ZLIB_ENCODING_ANY);
693+
/* }}} */
693694

694695
/* NOTE: The naming of these userland functions was quite unlucky */
695696
/* {{{ proto binary gzdeflate(binary data[, int level = -1[, int encoding = ZLIB_ENCODING_RAW])
@@ -701,18 +702,22 @@ PHP_ZLIB_ENCODE_FUNC(gzdeflate, PHP_ZLIB_ENCODING_RAW);
701702
Encode data with the gzip encoding */
702703
PHP_ZLIB_ENCODE_FUNC(gzencode, PHP_ZLIB_ENCODING_GZIP);
703704
/* }}} */
705+
704706
/* {{{ proto binary gzcompress(binary data[, int level = -1[, int encoding = ZLIB_ENCODING_DEFLATE])
705707
Encode data with the zlib encoding */
706708
PHP_ZLIB_ENCODE_FUNC(gzcompress, PHP_ZLIB_ENCODING_DEFLATE);
707709
/* }}} */
710+
708711
/* {{{ proto binary gzinflate(binary data[, int max_decoded_len])
709712
Decode raw deflate encoded data */
710713
PHP_ZLIB_DECODE_FUNC(gzinflate, PHP_ZLIB_ENCODING_RAW);
711714
/* }}} */
715+
712716
/* {{{ proto binary gzdecode(binary data[, int max_decoded_len])
713717
Decode gzip encoded data */
714718
PHP_ZLIB_DECODE_FUNC(gzdecode, PHP_ZLIB_ENCODING_GZIP);
715719
/* }}} */
720+
716721
/* {{{ proto binary gzuncompress(binary data[, int max_decoded_len])
717722
Decode zlib encoded data */
718723
PHP_ZLIB_DECODE_FUNC(gzuncompress, PHP_ZLIB_ENCODING_DEFLATE);
@@ -967,12 +972,14 @@ static PHP_RINIT_FUNCTION(zlib)
967972
}
968973
/* }}} */
969974

975+
/* {{{ PHP_RSHUTDOWN_FUNCTION */
970976
static PHP_RSHUTDOWN_FUNCTION(zlib)
971977
{
972978
php_zlib_cleanup_ob_gzhandler_mess(TSRMLS_C);
973979

974980
return SUCCESS;
975981
}
982+
/* }}} */
976983

977984
/* {{{ PHP_MINFO_FUNCTION */
978985
static PHP_MINFO_FUNCTION(zlib)

0 commit comments

Comments
 (0)