diff options
Diffstat (limited to 'win32/contrib/dirent/dirent.h')
-rw-r--r-- | win32/contrib/dirent/dirent.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/win32/contrib/dirent/dirent.h b/win32/contrib/dirent/dirent.h deleted file mode 100644 index 46e0ed127..000000000 --- a/win32/contrib/dirent/dirent.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - - Declaration of POSIX directory browsing functions and types for Win32. - - Kevlin Henney (mailto:kevlin@acm.org), March 1997. - - Copyright Kevlin Henney, 1997. All rights reserved. - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose is hereby granted without fee, provided - that this copyright and permissions notice appear in all copies and - derivatives, and that no charge may be made for the software and its - documentation except to cover cost of distribution. - -*/ - -#ifndef DIRENT_INCLUDED -#define DIRENT_INCLUDED - -typedef struct DIR DIR; - -struct dirent -{ - unsigned short d_reclen; - char *d_name; -}; - -DIR *opendir(const char *); -int closedir(DIR *); -struct dirent *readdir(DIR *); -void rewinddir(DIR *); - -#endif |