GRASS 8 Programmer's Manual 8.6.0dev(2026)-1d1e47ad9d
Loading...
Searching...
No Matches
dirent.h
Go to the documentation of this file.
1#ifndef GRASS_MSVC_DIRENT_H
2#define GRASS_MSVC_DIRENT_H
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
33 Permission to use, copy, modify, and distribute this software and its
34 documentation for any purpose is hereby granted without fee, provided
35 that this copyright and permissions notice appear in all copies and
36 derivatives.
37
38 This software is supplied "as is" without express or implied warranty.
39
40 But that said, if there are any problems please get in touch.
41
42*/
43
44#ifdef __cplusplus
45}
46#endif
47
48#endif
int closedir(DIR *)
Definition msvc/dirent.c:54
void rewinddir(DIR *)
Definition msvc/dirent.c:92
struct dirent * readdir(DIR *)
Definition msvc/dirent.c:75
struct DIR DIR
Definition dirent.h:18
DIR * opendir(const char *)
Definition msvc/dirent.c:15
char * d_name
Definition dirent.h:21