blob: 8600f8ef04026323368d3febf26b8ab911741e69 [file] [log] [blame]
Ian Elliott2d4ab1e2015-01-13 17:52:38 -07001#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.
Jon Ashburn23d36b12016-02-02 17:47:28 -070011
Ian Elliott2d4ab1e2015-01-13 17:52:38 -070012*/
13
14#ifdef __cplusplus
Jon Ashburn23d36b12016-02-02 17:47:28 -070015extern "C" {
Ian Elliott2d4ab1e2015-01-13 17:52:38 -070016#endif
17
18typedef struct DIR DIR;
19
Jon Ashburn23d36b12016-02-02 17:47:28 -070020struct dirent {
Ian Elliott2d4ab1e2015-01-13 17:52:38 -070021 char *d_name;
22};
23
Jon Ashburn23d36b12016-02-02 17:47:28 -070024DIR *opendir(const char *);
25int closedir(DIR *);
Ian Elliott2d4ab1e2015-01-13 17:52:38 -070026struct dirent *readdir(DIR *);
Jon Ashburn23d36b12016-02-02 17:47:28 -070027void rewinddir(DIR *);
Ian Elliott2d4ab1e2015-01-13 17:52:38 -070028
29/*
30
31 Copyright Kevlin Henney, 1997, 2003. All rights reserved.
Jon Ashburn23d36b12016-02-02 17:47:28 -070032 Copyright (c) 2015 The Khronos Group Inc.
33 Copyright (c) 2015 Valve Corporation
34 Copyright (c) 2015 LunarG, Inc.
Ian Elliott2d4ab1e2015-01-13 17:52:38 -070035
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.
Jon Ashburn23d36b12016-02-02 17:47:28 -070040
Ian Elliott2d4ab1e2015-01-13 17:52:38 -070041 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