diff options
| author | Egon Schmid <eschmid@php.net> | 2000-07-13 18:21:40 +0000 |
|---|---|---|
| committer | Egon Schmid <eschmid@php.net> | 2000-07-13 18:21:40 +0000 |
| commit | 86dfb4c292f84593ec31a92da0698f4dfbbdb9cc (patch) | |
| tree | fe51b2a76461792fb9bdf9f0fccea38b90ee7078 | |
| parent | aa8d04a87cff069105ce5dec5b640570654a6fce (diff) | |
| download | php-git-86dfb4c292f84593ec31a92da0698f4dfbbdb9cc.tar.gz | |
Corrected some protos.
| -rw-r--r-- | ext/zlib/zlib.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 4f52bb6553..6f3424b707 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -598,7 +598,6 @@ PHP_FUNCTION(gzpassthru) { /* }}} */ /* {{{ proto string gzread(int zp, int length) - Binary-safe file read */ PHP_FUNCTION(gzread) { @@ -630,8 +629,8 @@ PHP_FUNCTION(gzread) /* }}} */ -/* {{{ proto string gzcompress(string data [,int level]) - gzip-compress a string */ +/* {{{ proto string gzcompress(string data [, int level]) + Gzip-compress a string */ PHP_FUNCTION(gzcompress) { zval **data, **zlimit = NULL; @@ -681,7 +680,7 @@ PHP_FUNCTION(gzcompress) /* }}} */ /* {{{ proto string gzuncompress(string data ,int length) - unzip a gzip-compressed string */ + Unzip a gzip-compressed string */ PHP_FUNCTION(gzuncompress) { zval **data, **zlimit = NULL; |
