}
/* }}} */
-/* {{{ proto int opendir(string path)
+/* {{{ proto mixed opendir(string path)
Open a directory and return a dir_handle */
PHP_FUNCTION(opendir)
}
/* }}} */
-/* {{{ proto void closedir([int dir_handle])
+/* {{{ proto void closedir([resource dir_handle])
Close directory connection identified by the dir_handle */
PHP_FUNCTION(closedir)
}
/* }}} */
-/* {{{ proto string getcwd(void)
+/* {{{ proto mixed getcwd(void)
Gets the current directory */
PHP_FUNCTION(getcwd)
}
/* }}} */
-/* {{{ proto void rewinddir([int dir_handle])
+/* {{{ proto void rewinddir([resource dir_handle])
Rewind dir_handle back to the start */
PHP_FUNCTION(rewinddir)
rewinddir(dirp->dir);
}
/* }}} */
-/* {{{ proto string readdir([int dir_handle])
+/* {{{ proto string readdir([resource dir_handle])
Read directory entry from dir_handle */
PHP_NAMED_FUNCTION(php_if_readdir)