From 3b5efa05f7a6ddc3dc8fdfff9d902f9ecd0116c1 Mon Sep 17 00:00:00 2001 From: Egon Schmid Date: Thu, 24 Feb 2000 07:49:43 +0000 Subject: [PATCH] More protos. --- ext/standard/dir.c | 12 ++++++------ 1 file 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) { -- 2.50.1