]> granicus.if.org Git - php/commitdiff
Comments didn't reflect rewinddir()
authorSean Bright <elixer@php.net>
Sat, 3 Feb 2001 00:50:48 +0000 (00:50 +0000)
committerSean Bright <elixer@php.net>
Sat, 3 Feb 2001 00:50:48 +0000 (00:50 +0000)
win32/readdir.c

index e2f30f11bab1ff66f153bd191bc603054a6b5a69..8c17ce2b225953181d75d9ed0674e941f0e87c47 100644 (file)
@@ -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.
  **********************************************************************/