From: Michael Wallner Date: Wed, 30 Aug 2006 12:26:38 +0000 (+0000) Subject: - add php_zlib_output_encoding() decl X-Git-Tag: RELEASE_1_0_0RC1~1843 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aafd59eb916db90a1d658411c671d97a8b57de62;p=php - add php_zlib_output_encoding() decl --- diff --git a/ext/zlib/php_zlib.h b/ext/zlib/php_zlib.h index d647fa9350..61555f1e70 100644 --- a/ext/zlib/php_zlib.h +++ b/ext/zlib/php_zlib.h @@ -54,6 +54,7 @@ typedef struct _php_zlib_context { php_zlib_buffer buffer; } php_zlib_context; +int php_zlib_output_encoding(TSRMLS_D); int php_zlib_encode(const char *in_buf, size_t in_len, char **out_buf, size_t *out_len, int encoding, int level TSRMLS_DC); int php_zlib_decode(const char *in_buf, size_t in_len, char **out_buf, size_t *out_len, int encoding, size_t max_len TSRMLS_DC); php_output_handler *php_zlib_output_handler_init(zval *handler_name TSRMLS_DC);