mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Comments didn't reflect rewinddir()
This commit is contained in:
parent
c5baa5ede1
commit
bf6ce01b78
1 changed files with 7 additions and 6 deletions
|
@ -6,14 +6,15 @@
|
|||
#include "php.h"
|
||||
|
||||
/**********************************************************************
|
||||
* Implement dirent-style opendir/readdir/closedir on Window 95/NT
|
||||
* Implement dirent-style opendir/readdir/rewinddir/closedir on Win32
|
||||
*
|
||||
* Functions defined are opendir(), readdir() and closedir() with the
|
||||
* same prototypes as the normal dirent.h implementation.
|
||||
* Functions defined are opendir(), readdir(), rewinddir() and
|
||||
* closedir() with the same prototypes as the normal dirent.h
|
||||
* implementation.
|
||||
*
|
||||
* Does not implement telldir(), seekdir(), rewinddir() or scandir().
|
||||
* The dirent struct is compatible with Unix, except that d_ino is
|
||||
* always 1 and d_off is made up as we go along.
|
||||
* Does not implement telldir(), seekdir(), or scandir(). The dirent
|
||||
* struct is compatible with Unix, except that d_ino is always 1 and
|
||||
* d_off is made up as we go along.
|
||||
*
|
||||
* The DIR typedef is not compatible with Unix.
|
||||
**********************************************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue