diff options
author | Sterling Hughes <sterling@php.net> | 2001-08-24 02:24:03 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2001-08-24 02:24:03 +0000 |
commit | 36412eb5def4fd7f43ac2549b8800eeab5d07297 (patch) | |
tree | 5a06b8bdee3040ba4e15546794e9eb74d1b87d70 /ext/zip/zip.c | |
parent | faa5031f2521bf5e842fed1b09669c1d755fbd0e (diff) | |
download | php-git-36412eb5def4fd7f43ac2549b8800eeab5d07297.tar.gz |
proto fix
Diffstat (limited to 'ext/zip/zip.c')
-rw-r--r-- | ext/zip/zip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/zip/zip.c b/ext/zip/zip.c index a56ee46cb6..a454ca397b 100644 --- a/ext/zip/zip.c +++ b/ext/zip/zip.c @@ -114,7 +114,7 @@ PHP_MINFO_FUNCTION(zip) } /* }}} */ -/* {{{ proto resource zip_opendir(string filename) +/* {{{ proto resource zip_open(string filename) Open a new zip archive for reading */ PHP_FUNCTION(zip_open) { @@ -136,7 +136,7 @@ PHP_FUNCTION(zip_open) } /* }}} */ -/* {{{ proto resource zip_readdir(resource zip) +/* {{{ proto resource zip_read(resource zip) Returns the next file in the archive */ PHP_FUNCTION(zip_read) { @@ -163,7 +163,7 @@ PHP_FUNCTION(zip_read) } /* }}} */ -/* {{{ proto void zip_closedir(resource zip) +/* {{{ proto void zip_close(resource zip) Close a Zip archive */ PHP_FUNCTION(zip_close) { |