summaryrefslogtreecommitdiff
path: root/ext/standard/dir.c
diff options
context:
space:
mode:
authorEgon Schmid <eschmid@php.net>2000-02-24 07:49:43 +0000
committerEgon Schmid <eschmid@php.net>2000-02-24 07:49:43 +0000
commit3b5efa05f7a6ddc3dc8fdfff9d902f9ecd0116c1 (patch)
tree613edf9844dcf87f20a08300494b553acc18cd4a /ext/standard/dir.c
parentdcf5f1a8d59fd7436a580116c2d1234cdac52879 (diff)
downloadphp-git-3b5efa05f7a6ddc3dc8fdfff9d902f9ecd0116c1.tar.gz
More protos.
Diffstat (limited to 'ext/standard/dir.c')
-rw-r--r--ext/standard/dir.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/standard/dir.c b/ext/standard/dir.c
index 0e96d8629b..727a31d8ed 100644
--- a/ext/standard/dir.c
+++ b/ext/standard/dir.c
@@ -1,4 +1,4 @@
-/*
+e/*
+----------------------------------------------------------------------+
| PHP version 4.0 |
+----------------------------------------------------------------------+
@@ -190,7 +190,7 @@ PHP_FUNCTION(opendir)
/* }}} */
/* {{{ proto class dir(string directory)
-Directory class with properties, handle and class and methods read, rewind and close */
+ Directory class with properties, handle and class and methods read, rewind and close */
PHP_FUNCTION(getdir)
{
@@ -199,7 +199,7 @@ PHP_FUNCTION(getdir)
/* }}} */
/* {{{ proto void closedir([int dir_handle])
-Close directory connection identified by the dir_handle */
+ Close directory connection identified by the dir_handle */
PHP_FUNCTION(closedir)
{
@@ -237,7 +237,7 @@ PHP_FUNCTION(chdir)
}
/* }}} */
-/* {{{ proto string getcwd()
+/* {{{ proto string getcwd(void)
Gets the current directory */
PHP_FUNCTION(getcwd)
@@ -269,7 +269,7 @@ PHP_FUNCTION(getcwd)
/* }}} */
/* {{{ proto void rewinddir([int dir_handle])
-Rewind dir_handle back to the start */
+ Rewind dir_handle back to the start */
PHP_FUNCTION(rewinddir)
{
@@ -283,7 +283,7 @@ PHP_FUNCTION(rewinddir)
}
/* }}} */
/* {{{ proto string readdir([int dir_handle])
-Read directory entry from dir_handle */
+ Read directory entry from dir_handle */
PHP_FUNCTION(readdir)
{