diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-01-27 20:39:31 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-01-27 20:39:31 +0000 |
commit | d59d500af7204cf419d91553dccfc2ff0069ca65 (patch) | |
tree | 4a7db0482e34008067657447c3e5c1cc19e34215 /win32/readdir.h | |
parent | e4ec7372e951f11c1d5696605858e404434782a9 (diff) | |
download | php-git-d59d500af7204cf419d91553dccfc2ff0069ca65.tar.gz |
Moved the scandir code into it's own files so that it can be used by other
OSes where libc does not have a native scandir() implementation.
Diffstat (limited to 'win32/readdir.h')
-rw-r--r-- | win32/readdir.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/win32/readdir.h b/win32/readdir.h index b63015355a..419dc95c24 100644 --- a/win32/readdir.h +++ b/win32/readdir.h @@ -39,10 +39,5 @@ struct dirent *readdir(DIR *); int readdir_r(DIR *, struct dirent *, struct dirent **); int closedir(DIR *); int rewinddir(DIR *); -int scandir(const char *dirname, - struct dirent **namelist[], - int (*selector) (const struct dirent *entry), - int (*compare) (const struct dirent **a, const struct dirent **b)); -int alphasort(const struct dirent **a, const struct dirent **b); #endif /* READDIR_H */ |