1#ifndef DIRENT_INCLUDED
2#define DIRENT_INCLUDED
3
4/*
5
6    Declaration of POSIX directory browsing functions and types for Win32.
7
8    Author:  Kevlin Henney (kevlin@acm.org, kevlin@curbralan.com)
9    History: Created March 1997. Updated June 2003.
10    Rights:  See end of file.
11
12*/
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18typedef struct DIR DIR;
19
20struct dirent {
21    char *d_name;
22};
23
24DIR *opendir(const char *);
25int closedir(DIR *);
26struct dirent *readdir(DIR *);
27void rewinddir(DIR *);
28
29/*
30
31    Copyright Kevlin Henney, 1997, 2003. All rights reserved.
32    Copyright (c) 2015 The Khronos Group Inc.
33    Copyright (c) 2015 Valve Corporation
34    Copyright (c) 2015 LunarG, Inc.
35
36    Permission to use, copy, modify, and distribute this software and its
37    documentation for any purpose is hereby granted without fee, provided
38    that this copyright and permissions notice appear in all copies and
39    derivatives.
40
41    This software is supplied "as is" without express or implied warranty.
42
43    But that said, if there are any problems please get in touch.
44
45*/
46
47#ifdef __cplusplus
48}
49#endif
50
51#endif
52